PR c++/67445 - returning temporary initializer_list.
[gcc.git] / gcc / cp / call.c
1 /* Functions related to invoking -*- C++ -*- methods and overloaded functions.
2 Copyright (C) 1987-2018 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) and
4 modified by Brendan Kehoe (brendan@cygnus.com).
5
6 This file is part of GCC.
7
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.
12
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.
17
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/>. */
21
22
23 /* High-level class interface. */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "target.h"
29 #include "cp-tree.h"
30 #include "timevar.h"
31 #include "stringpool.h"
32 #include "cgraph.h"
33 #include "stor-layout.h"
34 #include "trans-mem.h"
35 #include "flags.h"
36 #include "toplev.h"
37 #include "intl.h"
38 #include "convert.h"
39 #include "langhooks.h"
40 #include "c-family/c-objc.h"
41 #include "internal-fn.h"
42 #include "stringpool.h"
43 #include "attribs.h"
44
45 /* The various kinds of conversion. */
46
47 enum conversion_kind {
48 ck_identity,
49 ck_lvalue,
50 ck_fnptr,
51 ck_qual,
52 ck_std,
53 ck_ptr,
54 ck_pmem,
55 ck_base,
56 ck_ref_bind,
57 ck_user,
58 ck_ambig,
59 ck_list,
60 ck_aggr,
61 ck_rvalue
62 };
63
64 /* The rank of the conversion. Order of the enumerals matters; better
65 conversions should come earlier in the list. */
66
67 enum conversion_rank {
68 cr_identity,
69 cr_exact,
70 cr_promotion,
71 cr_std,
72 cr_pbool,
73 cr_user,
74 cr_ellipsis,
75 cr_bad
76 };
77
78 /* An implicit conversion sequence, in the sense of [over.best.ics].
79 The first conversion to be performed is at the end of the chain.
80 That conversion is always a cr_identity conversion. */
81
82 struct conversion {
83 /* The kind of conversion represented by this step. */
84 conversion_kind kind;
85 /* The rank of this conversion. */
86 conversion_rank rank;
87 BOOL_BITFIELD user_conv_p : 1;
88 BOOL_BITFIELD ellipsis_p : 1;
89 BOOL_BITFIELD this_p : 1;
90 /* True if this conversion would be permitted with a bending of
91 language standards, e.g. disregarding pointer qualifiers or
92 converting integers to pointers. */
93 BOOL_BITFIELD bad_p : 1;
94 /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
95 temporary should be created to hold the result of the
96 conversion. If KIND is ck_ambig, true if the context is
97 copy-initialization. */
98 BOOL_BITFIELD need_temporary_p : 1;
99 /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
100 from a pointer-to-derived to pointer-to-base is being performed. */
101 BOOL_BITFIELD base_p : 1;
102 /* If KIND is ck_ref_bind, true when either an lvalue reference is
103 being bound to an lvalue expression or an rvalue reference is
104 being bound to an rvalue expression. If KIND is ck_rvalue,
105 true when we are treating an lvalue as an rvalue (12.8p33). If
106 KIND is ck_base, always false. If ck_identity, we will be
107 binding a reference directly or decaying to a pointer. */
108 BOOL_BITFIELD rvaluedness_matches_p: 1;
109 BOOL_BITFIELD check_narrowing: 1;
110 /* The type of the expression resulting from the conversion. */
111 tree type;
112 union {
113 /* The next conversion in the chain. Since the conversions are
114 arranged from outermost to innermost, the NEXT conversion will
115 actually be performed before this conversion. This variant is
116 used only when KIND is neither ck_identity, ck_ambig nor
117 ck_list. Please use the next_conversion function instead
118 of using this field directly. */
119 conversion *next;
120 /* The expression at the beginning of the conversion chain. This
121 variant is used only if KIND is ck_identity or ck_ambig. */
122 tree expr;
123 /* The array of conversions for an initializer_list, so this
124 variant is used only when KIN D is ck_list. */
125 conversion **list;
126 } u;
127 /* The function candidate corresponding to this conversion
128 sequence. This field is only used if KIND is ck_user. */
129 struct z_candidate *cand;
130 };
131
132 #define CONVERSION_RANK(NODE) \
133 ((NODE)->bad_p ? cr_bad \
134 : (NODE)->ellipsis_p ? cr_ellipsis \
135 : (NODE)->user_conv_p ? cr_user \
136 : (NODE)->rank)
137
138 #define BAD_CONVERSION_RANK(NODE) \
139 ((NODE)->ellipsis_p ? cr_ellipsis \
140 : (NODE)->user_conv_p ? cr_user \
141 : (NODE)->rank)
142
143 static struct obstack conversion_obstack;
144 static bool conversion_obstack_initialized;
145 struct rejection_reason;
146
147 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
148 static int equal_functions (tree, tree);
149 static int joust (struct z_candidate *, struct z_candidate *, bool,
150 tsubst_flags_t);
151 static int compare_ics (conversion *, conversion *);
152 static void maybe_warn_class_memaccess (location_t, tree,
153 const vec<tree, va_gc> *);
154 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
155 #define convert_like(CONV, EXPR, COMPLAIN) \
156 convert_like_real ((CONV), (EXPR), NULL_TREE, 0, \
157 /*issue_conversion_warnings=*/true, \
158 /*c_cast_p=*/false, (COMPLAIN))
159 #define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN ) \
160 convert_like_real ((CONV), (EXPR), (FN), (ARGNO), \
161 /*issue_conversion_warnings=*/true, \
162 /*c_cast_p=*/false, (COMPLAIN))
163 static tree convert_like_real (conversion *, tree, tree, int, bool,
164 bool, tsubst_flags_t);
165 static void op_error (location_t, enum tree_code, enum tree_code, tree,
166 tree, tree, bool);
167 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
168 tsubst_flags_t);
169 static void print_z_candidate (location_t, const char *, struct z_candidate *);
170 static void print_z_candidates (location_t, struct z_candidate *);
171 static tree build_this (tree);
172 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
173 static bool any_strictly_viable (struct z_candidate *);
174 static struct z_candidate *add_template_candidate
175 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
176 tree, tree, tree, int, unification_kind_t, tsubst_flags_t);
177 static struct z_candidate *add_template_candidate_real
178 (struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
179 tree, tree, tree, int, tree, unification_kind_t, tsubst_flags_t);
180 static void add_builtin_candidates
181 (struct z_candidate **, enum tree_code, enum tree_code,
182 tree, tree *, int, tsubst_flags_t);
183 static void add_builtin_candidate
184 (struct z_candidate **, enum tree_code, enum tree_code,
185 tree, tree, tree, tree *, tree *, int, tsubst_flags_t);
186 static bool is_complete (tree);
187 static void build_builtin_candidate
188 (struct z_candidate **, tree, tree, tree, tree *, tree *,
189 int, tsubst_flags_t);
190 static struct z_candidate *add_conv_candidate
191 (struct z_candidate **, tree, tree, const vec<tree, va_gc> *, tree,
192 tree, tsubst_flags_t);
193 static struct z_candidate *add_function_candidate
194 (struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
195 tree, int, tsubst_flags_t);
196 static conversion *implicit_conversion (tree, tree, tree, bool, int,
197 tsubst_flags_t);
198 static conversion *reference_binding (tree, tree, tree, bool, int,
199 tsubst_flags_t);
200 static conversion *build_conv (conversion_kind, tree, conversion *);
201 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
202 static conversion *next_conversion (conversion *);
203 static bool is_subseq (conversion *, conversion *);
204 static conversion *maybe_handle_ref_bind (conversion **);
205 static void maybe_handle_implicit_object (conversion **);
206 static struct z_candidate *add_candidate
207 (struct z_candidate **, tree, tree, const vec<tree, va_gc> *, size_t,
208 conversion **, tree, tree, int, struct rejection_reason *, int);
209 static tree source_type (conversion *);
210 static void add_warning (struct z_candidate *, struct z_candidate *);
211 static bool reference_compatible_p (tree, tree);
212 static conversion *direct_reference_binding (tree, conversion *);
213 static bool promoted_arithmetic_type_p (tree);
214 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
215 static char *name_as_c_string (tree, tree, bool *);
216 static tree prep_operand (tree);
217 static void add_candidates (tree, tree, const vec<tree, va_gc> *, tree, tree,
218 bool, tree, tree, int, struct z_candidate **,
219 tsubst_flags_t);
220 static conversion *merge_conversion_sequences (conversion *, conversion *);
221 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
222
223 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
224 NAME can take many forms... */
225
226 bool
227 check_dtor_name (tree basetype, tree name)
228 {
229 /* Just accept something we've already complained about. */
230 if (name == error_mark_node)
231 return true;
232
233 if (TREE_CODE (name) == TYPE_DECL)
234 name = TREE_TYPE (name);
235 else if (TYPE_P (name))
236 /* OK */;
237 else if (identifier_p (name))
238 {
239 if ((MAYBE_CLASS_TYPE_P (basetype)
240 || TREE_CODE (basetype) == ENUMERAL_TYPE)
241 && name == constructor_name (basetype))
242 return true;
243 else
244 name = get_type_value (name);
245 }
246 else
247 {
248 /* In the case of:
249
250 template <class T> struct S { ~S(); };
251 int i;
252 i.~S();
253
254 NAME will be a class template. */
255 gcc_assert (DECL_CLASS_TEMPLATE_P (name));
256 return false;
257 }
258
259 if (!name || name == error_mark_node)
260 return false;
261 return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
262 }
263
264 /* We want the address of a function or method. We avoid creating a
265 pointer-to-member function. */
266
267 tree
268 build_addr_func (tree function, tsubst_flags_t complain)
269 {
270 tree type = TREE_TYPE (function);
271
272 /* We have to do these by hand to avoid real pointer to member
273 functions. */
274 if (TREE_CODE (type) == METHOD_TYPE)
275 {
276 if (TREE_CODE (function) == OFFSET_REF)
277 {
278 tree object = build_address (TREE_OPERAND (function, 0));
279 return get_member_function_from_ptrfunc (&object,
280 TREE_OPERAND (function, 1),
281 complain);
282 }
283 function = build_address (function);
284 }
285 else
286 function = decay_conversion (function, complain, /*reject_builtin=*/false);
287
288 return function;
289 }
290
291 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
292 POINTER_TYPE to those. Note, pointer to member function types
293 (TYPE_PTRMEMFUNC_P) must be handled by our callers. There are
294 two variants. build_call_a is the primitive taking an array of
295 arguments, while build_call_n is a wrapper that handles varargs. */
296
297 tree
298 build_call_n (tree function, int n, ...)
299 {
300 if (n == 0)
301 return build_call_a (function, 0, NULL);
302 else
303 {
304 tree *argarray = XALLOCAVEC (tree, n);
305 va_list ap;
306 int i;
307
308 va_start (ap, n);
309 for (i = 0; i < n; i++)
310 argarray[i] = va_arg (ap, tree);
311 va_end (ap);
312 return build_call_a (function, n, argarray);
313 }
314 }
315
316 /* Update various flags in cfun and the call itself based on what is being
317 called. Split out of build_call_a so that bot_manip can use it too. */
318
319 void
320 set_flags_from_callee (tree call)
321 {
322 /* Handle both CALL_EXPRs and AGGR_INIT_EXPRs. */
323 tree decl = cp_get_callee_fndecl_nofold (call);
324
325 /* We check both the decl and the type; a function may be known not to
326 throw without being declared throw(). */
327 bool nothrow = decl && TREE_NOTHROW (decl);
328 tree callee = cp_get_callee (call);
329 if (callee)
330 nothrow |= TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (callee)));
331 else if (TREE_CODE (call) == CALL_EXPR
332 && internal_fn_flags (CALL_EXPR_IFN (call)) & ECF_NOTHROW)
333 nothrow = true;
334
335 if (!nothrow && at_function_scope_p () && cfun && cp_function_chain)
336 cp_function_chain->can_throw = 1;
337
338 if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
339 current_function_returns_abnormally = 1;
340
341 TREE_NOTHROW (call) = nothrow;
342 }
343
344 tree
345 build_call_a (tree function, int n, tree *argarray)
346 {
347 tree decl;
348 tree result_type;
349 tree fntype;
350 int i;
351
352 function = build_addr_func (function, tf_warning_or_error);
353
354 gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
355 fntype = TREE_TYPE (TREE_TYPE (function));
356 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
357 || TREE_CODE (fntype) == METHOD_TYPE);
358 result_type = TREE_TYPE (fntype);
359 /* An rvalue has no cv-qualifiers. */
360 if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
361 result_type = cv_unqualified (result_type);
362
363 function = build_call_array_loc (input_location,
364 result_type, function, n, argarray);
365 set_flags_from_callee (function);
366
367 decl = get_callee_fndecl (function);
368
369 if (decl && !TREE_USED (decl))
370 {
371 /* We invoke build_call directly for several library
372 functions. These may have been declared normally if
373 we're building libgcc, so we can't just check
374 DECL_ARTIFICIAL. */
375 gcc_assert (DECL_ARTIFICIAL (decl)
376 || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
377 "__", 2));
378 mark_used (decl);
379 }
380
381 require_complete_eh_spec_types (fntype, decl);
382
383 TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
384
385 /* Don't pass empty class objects by value. This is useful
386 for tags in STL, which are used to control overload resolution.
387 We don't need to handle other cases of copying empty classes. */
388 if (! decl || ! DECL_BUILT_IN (decl))
389 for (i = 0; i < n; i++)
390 {
391 tree arg = CALL_EXPR_ARG (function, i);
392 if (is_empty_class (TREE_TYPE (arg))
393 && ! TREE_ADDRESSABLE (TREE_TYPE (arg)))
394 {
395 tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
396 arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
397 CALL_EXPR_ARG (function, i) = arg;
398 }
399 }
400
401 return function;
402 }
403
404 /* New overloading code. */
405
406 struct z_candidate;
407
408 struct candidate_warning {
409 z_candidate *loser;
410 candidate_warning *next;
411 };
412
413 /* Information for providing diagnostics about why overloading failed. */
414
415 enum rejection_reason_code {
416 rr_none,
417 rr_arity,
418 rr_explicit_conversion,
419 rr_template_conversion,
420 rr_arg_conversion,
421 rr_bad_arg_conversion,
422 rr_template_unification,
423 rr_invalid_copy,
424 rr_inherited_ctor,
425 rr_constraint_failure
426 };
427
428 struct conversion_info {
429 /* The index of the argument, 0-based. */
430 int n_arg;
431 /* The actual argument or its type. */
432 tree from;
433 /* The type of the parameter. */
434 tree to_type;
435 };
436
437 struct rejection_reason {
438 enum rejection_reason_code code;
439 union {
440 /* Information about an arity mismatch. */
441 struct {
442 /* The expected number of arguments. */
443 int expected;
444 /* The actual number of arguments in the call. */
445 int actual;
446 /* Whether the call was a varargs call. */
447 bool call_varargs_p;
448 } arity;
449 /* Information about an argument conversion mismatch. */
450 struct conversion_info conversion;
451 /* Same, but for bad argument conversions. */
452 struct conversion_info bad_conversion;
453 /* Information about template unification failures. These are the
454 parameters passed to fn_type_unification. */
455 struct {
456 tree tmpl;
457 tree explicit_targs;
458 int num_targs;
459 const tree *args;
460 unsigned int nargs;
461 tree return_type;
462 unification_kind_t strict;
463 int flags;
464 } template_unification;
465 /* Information about template instantiation failures. These are the
466 parameters passed to instantiate_template. */
467 struct {
468 tree tmpl;
469 tree targs;
470 } template_instantiation;
471 } u;
472 };
473
474 struct z_candidate {
475 /* The FUNCTION_DECL that will be called if this candidate is
476 selected by overload resolution. */
477 tree fn;
478 /* If not NULL_TREE, the first argument to use when calling this
479 function. */
480 tree first_arg;
481 /* The rest of the arguments to use when calling this function. If
482 there are no further arguments this may be NULL or it may be an
483 empty vector. */
484 const vec<tree, va_gc> *args;
485 /* The implicit conversion sequences for each of the arguments to
486 FN. */
487 conversion **convs;
488 /* The number of implicit conversion sequences. */
489 size_t num_convs;
490 /* If FN is a user-defined conversion, the standard conversion
491 sequence from the type returned by FN to the desired destination
492 type. */
493 conversion *second_conv;
494 struct rejection_reason *reason;
495 /* If FN is a member function, the binfo indicating the path used to
496 qualify the name of FN at the call site. This path is used to
497 determine whether or not FN is accessible if it is selected by
498 overload resolution. The DECL_CONTEXT of FN will always be a
499 (possibly improper) base of this binfo. */
500 tree access_path;
501 /* If FN is a non-static member function, the binfo indicating the
502 subobject to which the `this' pointer should be converted if FN
503 is selected by overload resolution. The type pointed to by
504 the `this' pointer must correspond to the most derived class
505 indicated by the CONVERSION_PATH. */
506 tree conversion_path;
507 tree template_decl;
508 tree explicit_targs;
509 candidate_warning *warnings;
510 z_candidate *next;
511 int viable;
512
513 /* The flags active in add_candidate. */
514 int flags;
515 };
516
517 /* Returns true iff T is a null pointer constant in the sense of
518 [conv.ptr]. */
519
520 bool
521 null_ptr_cst_p (tree t)
522 {
523 tree type = TREE_TYPE (t);
524
525 /* [conv.ptr]
526
527 A null pointer constant is an integral constant expression
528 (_expr.const_) rvalue of integer type that evaluates to zero or
529 an rvalue of type std::nullptr_t. */
530 if (NULLPTR_TYPE_P (type))
531 return true;
532
533 if (cxx_dialect >= cxx11)
534 {
535 STRIP_ANY_LOCATION_WRAPPER (t);
536
537 /* Core issue 903 says only literal 0 is a null pointer constant. */
538 if (TREE_CODE (type) == INTEGER_TYPE
539 && !char_type_p (type)
540 && TREE_CODE (t) == INTEGER_CST
541 && integer_zerop (t)
542 && !TREE_OVERFLOW (t))
543 return true;
544 }
545 else if (CP_INTEGRAL_TYPE_P (type))
546 {
547 t = fold_non_dependent_expr (t);
548 STRIP_NOPS (t);
549 if (integer_zerop (t) && !TREE_OVERFLOW (t))
550 return true;
551 }
552
553 return false;
554 }
555
556 /* Returns true iff T is a null member pointer value (4.11). */
557
558 bool
559 null_member_pointer_value_p (tree t)
560 {
561 tree type = TREE_TYPE (t);
562 if (!type)
563 return false;
564 else if (TYPE_PTRMEMFUNC_P (type))
565 return (TREE_CODE (t) == CONSTRUCTOR
566 && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
567 else if (TYPE_PTRDATAMEM_P (type))
568 return integer_all_onesp (t);
569 else
570 return false;
571 }
572
573 /* Returns nonzero if PARMLIST consists of only default parms,
574 ellipsis, and/or undeduced parameter packs. */
575
576 bool
577 sufficient_parms_p (const_tree parmlist)
578 {
579 for (; parmlist && parmlist != void_list_node;
580 parmlist = TREE_CHAIN (parmlist))
581 if (!TREE_PURPOSE (parmlist)
582 && !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
583 return false;
584 return true;
585 }
586
587 /* Allocate N bytes of memory from the conversion obstack. The memory
588 is zeroed before being returned. */
589
590 static void *
591 conversion_obstack_alloc (size_t n)
592 {
593 void *p;
594 if (!conversion_obstack_initialized)
595 {
596 gcc_obstack_init (&conversion_obstack);
597 conversion_obstack_initialized = true;
598 }
599 p = obstack_alloc (&conversion_obstack, n);
600 memset (p, 0, n);
601 return p;
602 }
603
604 /* Allocate rejection reasons. */
605
606 static struct rejection_reason *
607 alloc_rejection (enum rejection_reason_code code)
608 {
609 struct rejection_reason *p;
610 p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
611 p->code = code;
612 return p;
613 }
614
615 static struct rejection_reason *
616 arity_rejection (tree first_arg, int expected, int actual)
617 {
618 struct rejection_reason *r = alloc_rejection (rr_arity);
619 int adjust = first_arg != NULL_TREE;
620 r->u.arity.expected = expected - adjust;
621 r->u.arity.actual = actual - adjust;
622 return r;
623 }
624
625 static struct rejection_reason *
626 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
627 {
628 struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
629 int adjust = first_arg != NULL_TREE;
630 r->u.conversion.n_arg = n_arg - adjust;
631 r->u.conversion.from = from;
632 r->u.conversion.to_type = to;
633 return r;
634 }
635
636 static struct rejection_reason *
637 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to)
638 {
639 struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
640 int adjust = first_arg != NULL_TREE;
641 r->u.bad_conversion.n_arg = n_arg - adjust;
642 r->u.bad_conversion.from = from;
643 r->u.bad_conversion.to_type = to;
644 return r;
645 }
646
647 static struct rejection_reason *
648 explicit_conversion_rejection (tree from, tree to)
649 {
650 struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
651 r->u.conversion.n_arg = 0;
652 r->u.conversion.from = from;
653 r->u.conversion.to_type = to;
654 return r;
655 }
656
657 static struct rejection_reason *
658 template_conversion_rejection (tree from, tree to)
659 {
660 struct rejection_reason *r = alloc_rejection (rr_template_conversion);
661 r->u.conversion.n_arg = 0;
662 r->u.conversion.from = from;
663 r->u.conversion.to_type = to;
664 return r;
665 }
666
667 static struct rejection_reason *
668 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
669 const tree *args, unsigned int nargs,
670 tree return_type, unification_kind_t strict,
671 int flags)
672 {
673 size_t args_n_bytes = sizeof (*args) * nargs;
674 tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
675 struct rejection_reason *r = alloc_rejection (rr_template_unification);
676 r->u.template_unification.tmpl = tmpl;
677 r->u.template_unification.explicit_targs = explicit_targs;
678 r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
679 /* Copy args to our own storage. */
680 memcpy (args1, args, args_n_bytes);
681 r->u.template_unification.args = args1;
682 r->u.template_unification.nargs = nargs;
683 r->u.template_unification.return_type = return_type;
684 r->u.template_unification.strict = strict;
685 r->u.template_unification.flags = flags;
686 return r;
687 }
688
689 static struct rejection_reason *
690 template_unification_error_rejection (void)
691 {
692 return alloc_rejection (rr_template_unification);
693 }
694
695 static struct rejection_reason *
696 invalid_copy_with_fn_template_rejection (void)
697 {
698 struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
699 return r;
700 }
701
702 static struct rejection_reason *
703 inherited_ctor_rejection (void)
704 {
705 struct rejection_reason *r = alloc_rejection (rr_inherited_ctor);
706 return r;
707 }
708
709 // Build a constraint failure record, saving information into the
710 // template_instantiation field of the rejection. If FN is not a template
711 // declaration, the TMPL member is the FN declaration and TARGS is empty.
712
713 static struct rejection_reason *
714 constraint_failure (tree fn)
715 {
716 struct rejection_reason *r = alloc_rejection (rr_constraint_failure);
717 if (tree ti = DECL_TEMPLATE_INFO (fn))
718 {
719 r->u.template_instantiation.tmpl = TI_TEMPLATE (ti);
720 r->u.template_instantiation.targs = TI_ARGS (ti);
721 }
722 else
723 {
724 r->u.template_instantiation.tmpl = fn;
725 r->u.template_instantiation.targs = NULL_TREE;
726 }
727 return r;
728 }
729
730 /* Dynamically allocate a conversion. */
731
732 static conversion *
733 alloc_conversion (conversion_kind kind)
734 {
735 conversion *c;
736 c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
737 c->kind = kind;
738 return c;
739 }
740
741 /* Make sure that all memory on the conversion obstack has been
742 freed. */
743
744 void
745 validate_conversion_obstack (void)
746 {
747 if (conversion_obstack_initialized)
748 gcc_assert ((obstack_next_free (&conversion_obstack)
749 == obstack_base (&conversion_obstack)));
750 }
751
752 /* Dynamically allocate an array of N conversions. */
753
754 static conversion **
755 alloc_conversions (size_t n)
756 {
757 return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
758 }
759
760 static conversion *
761 build_conv (conversion_kind code, tree type, conversion *from)
762 {
763 conversion *t;
764 conversion_rank rank = CONVERSION_RANK (from);
765
766 /* Note that the caller is responsible for filling in t->cand for
767 user-defined conversions. */
768 t = alloc_conversion (code);
769 t->type = type;
770 t->u.next = from;
771
772 switch (code)
773 {
774 case ck_ptr:
775 case ck_pmem:
776 case ck_base:
777 case ck_std:
778 if (rank < cr_std)
779 rank = cr_std;
780 break;
781
782 case ck_qual:
783 case ck_fnptr:
784 if (rank < cr_exact)
785 rank = cr_exact;
786 break;
787
788 default:
789 break;
790 }
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;
796 }
797
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. */
801
802 static conversion *
803 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
804 {
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;
811
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;
817
818 /* Can't make an array of these types. */
819 if (TYPE_REF_P (elttype)
820 || TREE_CODE (elttype) == FUNCTION_TYPE
821 || VOID_TYPE_P (elttype))
822 return NULL;
823
824 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
825 {
826 conversion *sub
827 = implicit_conversion (elttype, TREE_TYPE (val), val,
828 false, flags, complain);
829 if (sub == NULL)
830 return NULL;
831
832 subconvs[i] = sub;
833 }
834
835 t = alloc_conversion (ck_list);
836 t->type = type;
837 t->u.list = subconvs;
838 t->rank = cr_exact;
839
840 for (i = 0; i < len; ++i)
841 {
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;
849 }
850
851 return t;
852 }
853
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. */
857
858 static conversion *
859 next_conversion (conversion *conv)
860 {
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;
867 }
868
869 /* Subroutine of build_aggr_conv: check whether CTOR, a braced-init-list,
870 is a valid aggregate initializer for array type ATYPE. */
871
872 static bool
873 can_convert_array (tree atype, tree ctor, int flags, tsubst_flags_t complain)
874 {
875 unsigned i;
876 tree elttype = TREE_TYPE (atype);
877 for (i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
878 {
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;
889 }
890 return true;
891 }
892
893 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
894 aggregate class, if such a conversion is possible. */
895
896 static conversion *
897 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
898 {
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;
903
904 /* We already called reshape_init in implicit_conversion. */
905
906 /* The conversions within the init-list aren't affected by the enclosing
907 context; they're always simple copy-initialization. */
908 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
909
910 for (; field; field = next_initializable_field (DECL_CHAIN (field)))
911 {
912 tree ftype = TREE_TYPE (field);
913 tree val;
914 bool ok;
915
916 if (i < CONSTRUCTOR_NELTS (ctor))
917 val = CONSTRUCTOR_ELT (ctor, i)->value;
918 else if (DECL_INITIAL (field))
919 val = get_nsdmi (field, /*ctor*/false, complain);
920 else if (TYPE_REF_P (ftype))
921 /* Value-initialization of reference is ill-formed. */
922 return NULL;
923 else
924 {
925 if (empty_ctor == NULL_TREE)
926 empty_ctor = build_constructor (init_list_type_node, NULL);
927 val = empty_ctor;
928 }
929 ++i;
930
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);
937
938 if (!ok)
939 return NULL;
940
941 if (TREE_CODE (type) == UNION_TYPE)
942 break;
943 }
944
945 if (i < CONSTRUCTOR_NELTS (ctor))
946 return NULL;
947
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;
955 }
956
957 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
958 array type, if such a conversion is possible. */
959
960 static conversion *
961 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
962 {
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;
971
972 /* We might need to propagate the size from the element to the array. */
973 complete_type (type);
974
975 if (TYPE_DOMAIN (type)
976 && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
977 {
978 unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
979 if (alen < len)
980 return NULL;
981 }
982
983 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
984
985 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
986 {
987 conversion *sub
988 = implicit_conversion (elttype, TREE_TYPE (val), val,
989 false, flags, complain);
990 if (sub == NULL)
991 return NULL;
992
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;
999 }
1000
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;
1008 }
1009
1010 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
1011 complex type, if such a conversion is possible. */
1012
1013 static conversion *
1014 build_complex_conv (tree type, tree ctor, int flags,
1015 tsubst_flags_t complain)
1016 {
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;
1025
1026 if (len != 2)
1027 return NULL;
1028
1029 flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1030
1031 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
1032 {
1033 conversion *sub
1034 = implicit_conversion (elttype, TREE_TYPE (val), val,
1035 false, flags, complain);
1036 if (sub == NULL)
1037 return NULL;
1038
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;
1045 }
1046
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;
1054 }
1055
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. */
1058
1059 static conversion *
1060 build_identity_conv (tree type, tree expr)
1061 {
1062 conversion *c;
1063
1064 c = alloc_conversion (ck_identity);
1065 c->type = type;
1066 c->u.expr = expr;
1067
1068 return c;
1069 }
1070
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. */
1074
1075 static conversion *
1076 build_ambiguous_conv (tree type, tree expr)
1077 {
1078 conversion *c;
1079
1080 c = alloc_conversion (ck_ambig);
1081 c->type = type;
1082 c->u.expr = expr;
1083
1084 return c;
1085 }
1086
1087 tree
1088 strip_top_quals (tree t)
1089 {
1090 if (TREE_CODE (t) == ARRAY_TYPE)
1091 return t;
1092 return cp_build_qualified_type (t, 0);
1093 }
1094
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. */
1099
1100 static conversion *
1101 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1102 int flags, tsubst_flags_t complain)
1103 {
1104 enum tree_code fcode, tcode;
1105 conversion *conv;
1106 bool fromref = false;
1107 tree qualified_to;
1108
1109 to = non_reference (to);
1110 if (TYPE_REF_P (from))
1111 {
1112 fromref = true;
1113 from = TREE_TYPE (from);
1114 }
1115 qualified_to = to;
1116 to = strip_top_quals (to);
1117 from = strip_top_quals (from);
1118
1119 if (expr && type_unknown_p (expr))
1120 {
1121 if (TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1122 {
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);
1128 }
1129 else if (TREE_CODE (to) == BOOLEAN_TYPE)
1130 {
1131 /* Necessary for eg, TEMPLATE_ID_EXPRs (c++/50961). */
1132 expr = resolve_nondeduced_context (expr, complain);
1133 from = TREE_TYPE (expr);
1134 }
1135 }
1136
1137 fcode = TREE_CODE (from);
1138 tcode = TREE_CODE (to);
1139
1140 conv = build_identity_conv (from, expr);
1141 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1142 {
1143 from = type_decays_to (from);
1144 fcode = TREE_CODE (from);
1145 /* Tell convert_like_real that we're using the address. */
1146 conv->rvaluedness_matches_p = true;
1147 conv = build_conv (ck_lvalue, from, conv);
1148 }
1149 /* Wrapping a ck_rvalue around a class prvalue (as a result of using
1150 obvalue_p) seems odd, since it's already a prvalue, but that's how we
1151 express the copy constructor call required by copy-initialization. */
1152 else if (fromref || (expr && obvalue_p (expr)))
1153 {
1154 if (expr)
1155 {
1156 tree bitfield_type;
1157 bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1158 if (bitfield_type)
1159 {
1160 from = strip_top_quals (bitfield_type);
1161 fcode = TREE_CODE (from);
1162 }
1163 }
1164 conv = build_conv (ck_rvalue, from, conv);
1165 if (flags & LOOKUP_PREFER_RVALUE)
1166 /* Tell convert_like_real to set LOOKUP_PREFER_RVALUE. */
1167 conv->rvaluedness_matches_p = true;
1168 }
1169
1170 /* Allow conversion between `__complex__' data types. */
1171 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1172 {
1173 /* The standard conversion sequence to convert FROM to TO is
1174 the standard conversion sequence to perform componentwise
1175 conversion. */
1176 conversion *part_conv = standard_conversion
1177 (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags,
1178 complain);
1179
1180 if (part_conv)
1181 {
1182 conv = build_conv (part_conv->kind, to, conv);
1183 conv->rank = part_conv->rank;
1184 }
1185 else
1186 conv = NULL;
1187
1188 return conv;
1189 }
1190
1191 if (same_type_p (from, to))
1192 {
1193 if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1194 conv->type = qualified_to;
1195 return conv;
1196 }
1197
1198 /* [conv.ptr]
1199 A null pointer constant can be converted to a pointer type; ... A
1200 null pointer constant of integral type can be converted to an
1201 rvalue of type std::nullptr_t. */
1202 if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1203 || NULLPTR_TYPE_P (to))
1204 && ((expr && null_ptr_cst_p (expr))
1205 || NULLPTR_TYPE_P (from)))
1206 conv = build_conv (ck_std, to, conv);
1207 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1208 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1209 {
1210 /* For backwards brain damage compatibility, allow interconversion of
1211 pointers and integers with a pedwarn. */
1212 conv = build_conv (ck_std, to, conv);
1213 conv->bad_p = true;
1214 }
1215 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1216 {
1217 /* For backwards brain damage compatibility, allow interconversion of
1218 enums and integers with a pedwarn. */
1219 conv = build_conv (ck_std, to, conv);
1220 conv->bad_p = true;
1221 }
1222 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1223 || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1224 {
1225 tree to_pointee;
1226 tree from_pointee;
1227
1228 if (tcode == POINTER_TYPE)
1229 {
1230 to_pointee = TREE_TYPE (to);
1231 from_pointee = TREE_TYPE (from);
1232
1233 /* Since this is the target of a pointer, it can't have function
1234 qualifiers, so any TYPE_QUALS must be for attributes const or
1235 noreturn. Strip them. */
1236 if (TREE_CODE (to_pointee) == FUNCTION_TYPE
1237 && TYPE_QUALS (to_pointee))
1238 to_pointee = build_qualified_type (to_pointee, TYPE_UNQUALIFIED);
1239 if (TREE_CODE (from_pointee) == FUNCTION_TYPE
1240 && TYPE_QUALS (from_pointee))
1241 from_pointee = build_qualified_type (from_pointee, TYPE_UNQUALIFIED);
1242 }
1243 else
1244 {
1245 to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1246 from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1247 }
1248
1249 if (tcode == POINTER_TYPE
1250 && same_type_ignoring_top_level_qualifiers_p (from_pointee,
1251 to_pointee))
1252 ;
1253 else if (VOID_TYPE_P (to_pointee)
1254 && !TYPE_PTRDATAMEM_P (from)
1255 && TREE_CODE (from_pointee) != FUNCTION_TYPE)
1256 {
1257 tree nfrom = TREE_TYPE (from);
1258 /* Don't try to apply restrict to void. */
1259 int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
1260 from_pointee = cp_build_qualified_type (void_type_node, quals);
1261 from = build_pointer_type (from_pointee);
1262 conv = build_conv (ck_ptr, from, conv);
1263 }
1264 else if (TYPE_PTRDATAMEM_P (from))
1265 {
1266 tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1267 tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1268
1269 if (same_type_p (fbase, tbase))
1270 /* No base conversion needed. */;
1271 else if (DERIVED_FROM_P (fbase, tbase)
1272 && (same_type_ignoring_top_level_qualifiers_p
1273 (from_pointee, to_pointee)))
1274 {
1275 from = build_ptrmem_type (tbase, from_pointee);
1276 conv = build_conv (ck_pmem, from, conv);
1277 }
1278 else
1279 return NULL;
1280 }
1281 else if (CLASS_TYPE_P (from_pointee)
1282 && CLASS_TYPE_P (to_pointee)
1283 /* [conv.ptr]
1284
1285 An rvalue of type "pointer to cv D," where D is a
1286 class type, can be converted to an rvalue of type
1287 "pointer to cv B," where B is a base class (clause
1288 _class.derived_) of D. If B is an inaccessible
1289 (clause _class.access_) or ambiguous
1290 (_class.member.lookup_) base class of D, a program
1291 that necessitates this conversion is ill-formed.
1292 Therefore, we use DERIVED_FROM_P, and do not check
1293 access or uniqueness. */
1294 && DERIVED_FROM_P (to_pointee, from_pointee))
1295 {
1296 from_pointee
1297 = cp_build_qualified_type (to_pointee,
1298 cp_type_quals (from_pointee));
1299 from = build_pointer_type (from_pointee);
1300 conv = build_conv (ck_ptr, from, conv);
1301 conv->base_p = true;
1302 }
1303
1304 if (same_type_p (from, to))
1305 /* OK */;
1306 else if (c_cast_p && comp_ptr_ttypes_const (to, from))
1307 /* In a C-style cast, we ignore CV-qualification because we
1308 are allowed to perform a static_cast followed by a
1309 const_cast. */
1310 conv = build_conv (ck_qual, to, conv);
1311 else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1312 conv = build_conv (ck_qual, to, conv);
1313 else if (expr && string_conv_p (to, expr, 0))
1314 /* converting from string constant to char *. */
1315 conv = build_conv (ck_qual, to, conv);
1316 else if (fnptr_conv_p (to, from))
1317 conv = build_conv (ck_fnptr, to, conv);
1318 /* Allow conversions among compatible ObjC pointer types (base
1319 conversions have been already handled above). */
1320 else if (c_dialect_objc ()
1321 && objc_compare_types (to, from, -4, NULL_TREE))
1322 conv = build_conv (ck_ptr, to, conv);
1323 else if (ptr_reasonably_similar (to_pointee, from_pointee))
1324 {
1325 conv = build_conv (ck_ptr, to, conv);
1326 conv->bad_p = true;
1327 }
1328 else
1329 return NULL;
1330
1331 from = to;
1332 }
1333 else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1334 {
1335 tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1336 tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1337 tree fbase = class_of_this_parm (fromfn);
1338 tree tbase = class_of_this_parm (tofn);
1339
1340 if (!DERIVED_FROM_P (fbase, tbase))
1341 return NULL;
1342
1343 tree fstat = static_fn_type (fromfn);
1344 tree tstat = static_fn_type (tofn);
1345 if (same_type_p (tstat, fstat)
1346 || fnptr_conv_p (tstat, fstat))
1347 /* OK */;
1348 else
1349 return NULL;
1350
1351 if (!same_type_p (fbase, tbase))
1352 {
1353 from = build_memfn_type (fstat,
1354 tbase,
1355 cp_type_quals (tbase),
1356 type_memfn_rqual (tofn));
1357 from = build_ptrmemfunc_type (build_pointer_type (from));
1358 conv = build_conv (ck_pmem, from, conv);
1359 conv->base_p = true;
1360 }
1361 if (fnptr_conv_p (tstat, fstat))
1362 conv = build_conv (ck_fnptr, to, conv);
1363 }
1364 else if (tcode == BOOLEAN_TYPE)
1365 {
1366 /* [conv.bool]
1367
1368 A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1369 to member type can be converted to a prvalue of type bool. ...
1370 For direct-initialization (8.5 [dcl.init]), a prvalue of type
1371 std::nullptr_t can be converted to a prvalue of type bool; */
1372 if (ARITHMETIC_TYPE_P (from)
1373 || UNSCOPED_ENUM_P (from)
1374 || fcode == POINTER_TYPE
1375 || TYPE_PTRMEM_P (from)
1376 || NULLPTR_TYPE_P (from))
1377 {
1378 conv = build_conv (ck_std, to, conv);
1379 if (fcode == POINTER_TYPE
1380 || TYPE_PTRDATAMEM_P (from)
1381 || (TYPE_PTRMEMFUNC_P (from)
1382 && conv->rank < cr_pbool)
1383 || NULLPTR_TYPE_P (from))
1384 conv->rank = cr_pbool;
1385 if (NULLPTR_TYPE_P (from) && (flags & LOOKUP_ONLYCONVERTING))
1386 conv->bad_p = true;
1387 return conv;
1388 }
1389
1390 return NULL;
1391 }
1392 /* We don't check for ENUMERAL_TYPE here because there are no standard
1393 conversions to enum type. */
1394 /* As an extension, allow conversion to complex type. */
1395 else if (ARITHMETIC_TYPE_P (to))
1396 {
1397 if (! (INTEGRAL_CODE_P (fcode)
1398 || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1399 || SCOPED_ENUM_P (from))
1400 return NULL;
1401 conv = build_conv (ck_std, to, conv);
1402
1403 /* Give this a better rank if it's a promotion. */
1404 if (same_type_p (to, type_promotes_to (from))
1405 && next_conversion (conv)->rank <= cr_promotion)
1406 conv->rank = cr_promotion;
1407 }
1408 else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1409 && vector_types_convertible_p (from, to, false))
1410 return build_conv (ck_std, to, conv);
1411 else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1412 && is_properly_derived_from (from, to))
1413 {
1414 if (conv->kind == ck_rvalue)
1415 conv = next_conversion (conv);
1416 conv = build_conv (ck_base, to, conv);
1417 /* The derived-to-base conversion indicates the initialization
1418 of a parameter with base type from an object of a derived
1419 type. A temporary object is created to hold the result of
1420 the conversion unless we're binding directly to a reference. */
1421 conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1422 }
1423 else
1424 return NULL;
1425
1426 if (flags & LOOKUP_NO_NARROWING)
1427 conv->check_narrowing = true;
1428
1429 return conv;
1430 }
1431
1432 /* Returns nonzero if T1 is reference-related to T2. */
1433
1434 bool
1435 reference_related_p (tree t1, tree t2)
1436 {
1437 if (t1 == error_mark_node || t2 == error_mark_node)
1438 return false;
1439
1440 t1 = TYPE_MAIN_VARIANT (t1);
1441 t2 = TYPE_MAIN_VARIANT (t2);
1442
1443 /* [dcl.init.ref]
1444
1445 Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1446 to "cv2 T2" if T1 is the same type as T2, or T1 is a base class
1447 of T2. */
1448 return (same_type_p (t1, t2)
1449 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1450 && DERIVED_FROM_P (t1, t2)));
1451 }
1452
1453 /* Returns nonzero if T1 is reference-compatible with T2. */
1454
1455 static bool
1456 reference_compatible_p (tree t1, tree t2)
1457 {
1458 /* [dcl.init.ref]
1459
1460 "cv1 T1" is reference compatible with "cv2 T2" if
1461 * T1 is reference-related to T2 or
1462 * T2 is "noexcept function" and T1 is "function", where the
1463 function types are otherwise the same,
1464 and cv1 is the same cv-qualification as, or greater cv-qualification
1465 than, cv2. */
1466 return ((reference_related_p (t1, t2)
1467 || fnptr_conv_p (t1, t2))
1468 && at_least_as_qualified_p (t1, t2));
1469 }
1470
1471 /* A reference of the indicated TYPE is being bound directly to the
1472 expression represented by the implicit conversion sequence CONV.
1473 Return a conversion sequence for this binding. */
1474
1475 static conversion *
1476 direct_reference_binding (tree type, conversion *conv)
1477 {
1478 tree t;
1479
1480 gcc_assert (TYPE_REF_P (type));
1481 gcc_assert (!TYPE_REF_P (conv->type));
1482
1483 t = TREE_TYPE (type);
1484
1485 if (conv->kind == ck_identity)
1486 /* Mark the identity conv as to not decay to rvalue. */
1487 conv->rvaluedness_matches_p = true;
1488
1489 /* [over.ics.rank]
1490
1491 When a parameter of reference type binds directly
1492 (_dcl.init.ref_) to an argument expression, the implicit
1493 conversion sequence is the identity conversion, unless the
1494 argument expression has a type that is a derived class of the
1495 parameter type, in which case the implicit conversion sequence is
1496 a derived-to-base Conversion.
1497
1498 If the parameter binds directly to the result of applying a
1499 conversion function to the argument expression, the implicit
1500 conversion sequence is a user-defined conversion sequence
1501 (_over.ics.user_), with the second standard conversion sequence
1502 either an identity conversion or, if the conversion function
1503 returns an entity of a type that is a derived class of the
1504 parameter type, a derived-to-base conversion. */
1505 if (is_properly_derived_from (conv->type, t))
1506 {
1507 /* Represent the derived-to-base conversion. */
1508 conv = build_conv (ck_base, t, conv);
1509 /* We will actually be binding to the base-class subobject in
1510 the derived class, so we mark this conversion appropriately.
1511 That way, convert_like knows not to generate a temporary. */
1512 conv->need_temporary_p = false;
1513 }
1514
1515 return build_conv (ck_ref_bind, type, conv);
1516 }
1517
1518 /* Returns the conversion path from type FROM to reference type TO for
1519 purposes of reference binding. For lvalue binding, either pass a
1520 reference type to FROM or an lvalue expression to EXPR. If the
1521 reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1522 the conversion returned. If C_CAST_P is true, this
1523 conversion is coming from a C-style cast. */
1524
1525 static conversion *
1526 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1527 tsubst_flags_t complain)
1528 {
1529 conversion *conv = NULL;
1530 tree to = TREE_TYPE (rto);
1531 tree from = rfrom;
1532 tree tfrom;
1533 bool related_p;
1534 bool compatible_p;
1535 cp_lvalue_kind gl_kind;
1536 bool is_lvalue;
1537
1538 if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1539 {
1540 expr = instantiate_type (to, expr, tf_none);
1541 if (expr == error_mark_node)
1542 return NULL;
1543 from = TREE_TYPE (expr);
1544 }
1545
1546 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1547 {
1548 maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1549 /* DR 1288: Otherwise, if the initializer list has a single element
1550 of type E and ... [T's] referenced type is reference-related to E,
1551 the object or reference is initialized from that element... */
1552 if (CONSTRUCTOR_NELTS (expr) == 1)
1553 {
1554 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1555 if (error_operand_p (elt))
1556 return NULL;
1557 tree etype = TREE_TYPE (elt);
1558 if (reference_related_p (to, etype))
1559 {
1560 expr = elt;
1561 from = etype;
1562 goto skip;
1563 }
1564 }
1565 /* Otherwise, if T is a reference type, a prvalue temporary of the type
1566 referenced by T is copy-list-initialized, and the reference is bound
1567 to that temporary. */
1568 CONSTRUCTOR_IS_DIRECT_INIT (expr) = false;
1569 skip:;
1570 }
1571
1572 if (TYPE_REF_P (from))
1573 {
1574 from = TREE_TYPE (from);
1575 if (!TYPE_REF_IS_RVALUE (rfrom)
1576 || TREE_CODE (from) == FUNCTION_TYPE)
1577 gl_kind = clk_ordinary;
1578 else
1579 gl_kind = clk_rvalueref;
1580 }
1581 else if (expr)
1582 gl_kind = lvalue_kind (expr);
1583 else if (CLASS_TYPE_P (from)
1584 || TREE_CODE (from) == ARRAY_TYPE)
1585 gl_kind = clk_class;
1586 else
1587 gl_kind = clk_none;
1588
1589 /* Don't allow a class prvalue when LOOKUP_NO_TEMP_BIND. */
1590 if ((flags & LOOKUP_NO_TEMP_BIND)
1591 && (gl_kind & clk_class))
1592 gl_kind = clk_none;
1593
1594 /* Same mask as real_lvalue_p. */
1595 is_lvalue = gl_kind && !(gl_kind & (clk_rvalueref|clk_class));
1596
1597 tfrom = from;
1598 if ((gl_kind & clk_bitfield) != 0)
1599 tfrom = unlowered_expr_type (expr);
1600
1601 /* Figure out whether or not the types are reference-related and
1602 reference compatible. We have to do this after stripping
1603 references from FROM. */
1604 related_p = reference_related_p (to, tfrom);
1605 /* If this is a C cast, first convert to an appropriately qualified
1606 type, so that we can later do a const_cast to the desired type. */
1607 if (related_p && c_cast_p
1608 && !at_least_as_qualified_p (to, tfrom))
1609 to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1610 compatible_p = reference_compatible_p (to, tfrom);
1611
1612 /* Directly bind reference when target expression's type is compatible with
1613 the reference and expression is an lvalue. In DR391, the wording in
1614 [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1615 const and rvalue references to rvalues of compatible class type.
1616 We should also do direct bindings for non-class xvalues. */
1617 if ((related_p || compatible_p) && gl_kind)
1618 {
1619 /* [dcl.init.ref]
1620
1621 If the initializer expression
1622
1623 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1624 is reference-compatible with "cv2 T2,"
1625
1626 the reference is bound directly to the initializer expression
1627 lvalue.
1628
1629 [...]
1630 If the initializer expression is an rvalue, with T2 a class type,
1631 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1632 is bound to the object represented by the rvalue or to a sub-object
1633 within that object. */
1634
1635 conv = build_identity_conv (tfrom, expr);
1636 conv = direct_reference_binding (rto, conv);
1637
1638 if (TYPE_REF_P (rfrom))
1639 /* Handle rvalue reference to function properly. */
1640 conv->rvaluedness_matches_p
1641 = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1642 else
1643 conv->rvaluedness_matches_p
1644 = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1645
1646 if ((gl_kind & clk_bitfield) != 0
1647 || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1648 /* For the purposes of overload resolution, we ignore the fact
1649 this expression is a bitfield or packed field. (In particular,
1650 [over.ics.ref] says specifically that a function with a
1651 non-const reference parameter is viable even if the
1652 argument is a bitfield.)
1653
1654 However, when we actually call the function we must create
1655 a temporary to which to bind the reference. If the
1656 reference is volatile, or isn't const, then we cannot make
1657 a temporary, so we just issue an error when the conversion
1658 actually occurs. */
1659 conv->need_temporary_p = true;
1660
1661 /* Don't allow binding of lvalues (other than function lvalues) to
1662 rvalue references. */
1663 if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1664 && TREE_CODE (to) != FUNCTION_TYPE)
1665 conv->bad_p = true;
1666
1667 /* Nor the reverse. */
1668 if (!is_lvalue && !TYPE_REF_IS_RVALUE (rto)
1669 && (!CP_TYPE_CONST_NON_VOLATILE_P (to)
1670 || (flags & LOOKUP_NO_RVAL_BIND))
1671 && TREE_CODE (to) != FUNCTION_TYPE)
1672 conv->bad_p = true;
1673
1674 if (!compatible_p)
1675 conv->bad_p = true;
1676
1677 return conv;
1678 }
1679 /* [class.conv.fct] A conversion function is never used to convert a
1680 (possibly cv-qualified) object to the (possibly cv-qualified) same
1681 object type (or a reference to it), to a (possibly cv-qualified) base
1682 class of that type (or a reference to it).... */
1683 else if (CLASS_TYPE_P (from) && !related_p
1684 && !(flags & LOOKUP_NO_CONVERSION))
1685 {
1686 /* [dcl.init.ref]
1687
1688 If the initializer expression
1689
1690 -- has a class type (i.e., T2 is a class type) can be
1691 implicitly converted to an lvalue of type "cv3 T3," where
1692 "cv1 T1" is reference-compatible with "cv3 T3". (this
1693 conversion is selected by enumerating the applicable
1694 conversion functions (_over.match.ref_) and choosing the
1695 best one through overload resolution. (_over.match_).
1696
1697 the reference is bound to the lvalue result of the conversion
1698 in the second case. */
1699 z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1700 complain);
1701 if (cand)
1702 return cand->second_conv;
1703 }
1704
1705 /* From this point on, we conceptually need temporaries, even if we
1706 elide them. Only the cases above are "direct bindings". */
1707 if (flags & LOOKUP_NO_TEMP_BIND)
1708 return NULL;
1709
1710 /* [over.ics.rank]
1711
1712 When a parameter of reference type is not bound directly to an
1713 argument expression, the conversion sequence is the one required
1714 to convert the argument expression to the underlying type of the
1715 reference according to _over.best.ics_. Conceptually, this
1716 conversion sequence corresponds to copy-initializing a temporary
1717 of the underlying type with the argument expression. Any
1718 difference in top-level cv-qualification is subsumed by the
1719 initialization itself and does not constitute a conversion. */
1720
1721 /* [dcl.init.ref]
1722
1723 Otherwise, the reference shall be an lvalue reference to a
1724 non-volatile const type, or the reference shall be an rvalue
1725 reference.
1726
1727 We try below to treat this as a bad conversion to improve diagnostics,
1728 but if TO is an incomplete class, we need to reject this conversion
1729 now to avoid unnecessary instantiation. */
1730 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto)
1731 && !COMPLETE_TYPE_P (to))
1732 return NULL;
1733
1734 /* We're generating a temporary now, but don't bind any more in the
1735 conversion (specifically, don't slice the temporary returned by a
1736 conversion operator). */
1737 flags |= LOOKUP_NO_TEMP_BIND;
1738
1739 /* Core issue 899: When [copy-]initializing a temporary to be bound
1740 to the first parameter of a copy constructor (12.8) called with
1741 a single argument in the context of direct-initialization,
1742 explicit conversion functions are also considered.
1743
1744 So don't set LOOKUP_ONLYCONVERTING in that case. */
1745 if (!(flags & LOOKUP_COPY_PARM))
1746 flags |= LOOKUP_ONLYCONVERTING;
1747
1748 if (!conv)
1749 conv = implicit_conversion (to, from, expr, c_cast_p,
1750 flags, complain);
1751 if (!conv)
1752 return NULL;
1753
1754 if (conv->user_conv_p)
1755 {
1756 /* If initializing the temporary used a conversion function,
1757 recalculate the second conversion sequence. */
1758 for (conversion *t = conv; t; t = next_conversion (t))
1759 if (t->kind == ck_user
1760 && DECL_CONV_FN_P (t->cand->fn))
1761 {
1762 tree ftype = TREE_TYPE (TREE_TYPE (t->cand->fn));
1763 int sflags = (flags|LOOKUP_NO_CONVERSION)&~LOOKUP_NO_TEMP_BIND;
1764 conversion *new_second
1765 = reference_binding (rto, ftype, NULL_TREE, c_cast_p,
1766 sflags, complain);
1767 if (!new_second)
1768 return NULL;
1769 return merge_conversion_sequences (t, new_second);
1770 }
1771 }
1772
1773 conv = build_conv (ck_ref_bind, rto, conv);
1774 /* This reference binding, unlike those above, requires the
1775 creation of a temporary. */
1776 conv->need_temporary_p = true;
1777 conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1778
1779 /* [dcl.init.ref]
1780
1781 Otherwise, the reference shall be an lvalue reference to a
1782 non-volatile const type, or the reference shall be an rvalue
1783 reference. */
1784 if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1785 conv->bad_p = true;
1786
1787 /* [dcl.init.ref]
1788
1789 Otherwise, a temporary of type "cv1 T1" is created and
1790 initialized from the initializer expression using the rules for a
1791 non-reference copy initialization. If T1 is reference-related to
1792 T2, cv1 must be the same cv-qualification as, or greater
1793 cv-qualification than, cv2; otherwise, the program is ill-formed. */
1794 if (related_p && !at_least_as_qualified_p (to, from))
1795 conv->bad_p = true;
1796
1797 return conv;
1798 }
1799
1800 /* Returns the implicit conversion sequence (see [over.ics]) from type
1801 FROM to type TO. The optional expression EXPR may affect the
1802 conversion. FLAGS are the usual overloading flags. If C_CAST_P is
1803 true, this conversion is coming from a C-style cast. */
1804
1805 static conversion *
1806 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
1807 int flags, tsubst_flags_t complain)
1808 {
1809 conversion *conv;
1810
1811 if (from == error_mark_node || to == error_mark_node
1812 || expr == error_mark_node)
1813 return NULL;
1814
1815 /* Other flags only apply to the primary function in overload
1816 resolution, or after we've chosen one. */
1817 flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
1818 |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
1819 |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
1820
1821 /* FIXME: actually we don't want warnings either, but we can't just
1822 have 'complain &= ~(tf_warning|tf_error)' because it would cause
1823 the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
1824 We really ought not to issue that warning until we've committed
1825 to that conversion. */
1826 complain &= ~tf_error;
1827
1828 /* Call reshape_init early to remove redundant braces. */
1829 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr)
1830 && CLASS_TYPE_P (to)
1831 && COMPLETE_TYPE_P (complete_type (to))
1832 && !CLASSTYPE_NON_AGGREGATE (to))
1833 {
1834 expr = reshape_init (to, expr, complain);
1835 if (expr == error_mark_node)
1836 return NULL;
1837 from = TREE_TYPE (expr);
1838 }
1839
1840 if (TYPE_REF_P (to))
1841 conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
1842 else
1843 conv = standard_conversion (to, from, expr, c_cast_p, flags, complain);
1844
1845 if (conv)
1846 return conv;
1847
1848 if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1849 {
1850 if (is_std_init_list (to))
1851 return build_list_conv (to, expr, flags, complain);
1852
1853 /* As an extension, allow list-initialization of _Complex. */
1854 if (TREE_CODE (to) == COMPLEX_TYPE)
1855 {
1856 conv = build_complex_conv (to, expr, flags, complain);
1857 if (conv)
1858 return conv;
1859 }
1860
1861 /* Allow conversion from an initializer-list with one element to a
1862 scalar type. */
1863 if (SCALAR_TYPE_P (to))
1864 {
1865 int nelts = CONSTRUCTOR_NELTS (expr);
1866 tree elt;
1867
1868 if (nelts == 0)
1869 elt = build_value_init (to, tf_none);
1870 else if (nelts == 1)
1871 elt = CONSTRUCTOR_ELT (expr, 0)->value;
1872 else
1873 elt = error_mark_node;
1874
1875 conv = implicit_conversion (to, TREE_TYPE (elt), elt,
1876 c_cast_p, flags, complain);
1877 if (conv)
1878 {
1879 conv->check_narrowing = true;
1880 if (BRACE_ENCLOSED_INITIALIZER_P (elt))
1881 /* Too many levels of braces, i.e. '{{1}}'. */
1882 conv->bad_p = true;
1883 return conv;
1884 }
1885 }
1886 else if (TREE_CODE (to) == ARRAY_TYPE)
1887 return build_array_conv (to, expr, flags, complain);
1888 }
1889
1890 if (expr != NULL_TREE
1891 && (MAYBE_CLASS_TYPE_P (from)
1892 || MAYBE_CLASS_TYPE_P (to))
1893 && (flags & LOOKUP_NO_CONVERSION) == 0)
1894 {
1895 struct z_candidate *cand;
1896
1897 if (CLASS_TYPE_P (to)
1898 && BRACE_ENCLOSED_INITIALIZER_P (expr)
1899 && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
1900 return build_aggr_conv (to, expr, flags, complain);
1901
1902 cand = build_user_type_conversion_1 (to, expr, flags, complain);
1903 if (cand)
1904 {
1905 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
1906 && CONSTRUCTOR_NELTS (expr) == 1
1907 && !is_list_ctor (cand->fn))
1908 {
1909 /* "If C is not an initializer-list constructor and the
1910 initializer list has a single element of type cv U, where U is
1911 X or a class derived from X, the implicit conversion sequence
1912 has Exact Match rank if U is X, or Conversion rank if U is
1913 derived from X." */
1914 tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1915 tree elttype = TREE_TYPE (elt);
1916 if (reference_related_p (to, elttype))
1917 return implicit_conversion (to, elttype, elt,
1918 c_cast_p, flags, complain);
1919 }
1920 conv = cand->second_conv;
1921 }
1922
1923 /* We used to try to bind a reference to a temporary here, but that
1924 is now handled after the recursive call to this function at the end
1925 of reference_binding. */
1926 return conv;
1927 }
1928
1929 return NULL;
1930 }
1931
1932 /* Add a new entry to the list of candidates. Used by the add_*_candidate
1933 functions. ARGS will not be changed until a single candidate is
1934 selected. */
1935
1936 static struct z_candidate *
1937 add_candidate (struct z_candidate **candidates,
1938 tree fn, tree first_arg, const vec<tree, va_gc> *args,
1939 size_t num_convs, conversion **convs,
1940 tree access_path, tree conversion_path,
1941 int viable, struct rejection_reason *reason,
1942 int flags)
1943 {
1944 struct z_candidate *cand = (struct z_candidate *)
1945 conversion_obstack_alloc (sizeof (struct z_candidate));
1946
1947 cand->fn = fn;
1948 cand->first_arg = first_arg;
1949 cand->args = args;
1950 cand->convs = convs;
1951 cand->num_convs = num_convs;
1952 cand->access_path = access_path;
1953 cand->conversion_path = conversion_path;
1954 cand->viable = viable;
1955 cand->reason = reason;
1956 cand->next = *candidates;
1957 cand->flags = flags;
1958 *candidates = cand;
1959
1960 return cand;
1961 }
1962
1963 /* Return the number of remaining arguments in the parameter list
1964 beginning with ARG. */
1965
1966 int
1967 remaining_arguments (tree arg)
1968 {
1969 int n;
1970
1971 for (n = 0; arg != NULL_TREE && arg != void_list_node;
1972 arg = TREE_CHAIN (arg))
1973 n++;
1974
1975 return n;
1976 }
1977
1978 /* Create an overload candidate for the function or method FN called
1979 with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
1980 FLAGS is passed on to implicit_conversion.
1981
1982 This does not change ARGS.
1983
1984 CTYPE, if non-NULL, is the type we want to pretend this function
1985 comes from for purposes of overload resolution. */
1986
1987 static struct z_candidate *
1988 add_function_candidate (struct z_candidate **candidates,
1989 tree fn, tree ctype, tree first_arg,
1990 const vec<tree, va_gc> *args, tree access_path,
1991 tree conversion_path, int flags,
1992 tsubst_flags_t complain)
1993 {
1994 tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
1995 int i, len;
1996 conversion **convs;
1997 tree parmnode;
1998 tree orig_first_arg = first_arg;
1999 int skip;
2000 int viable = 1;
2001 struct rejection_reason *reason = NULL;
2002
2003 /* At this point we should not see any functions which haven't been
2004 explicitly declared, except for friend functions which will have
2005 been found using argument dependent lookup. */
2006 gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
2007
2008 /* The `this', `in_chrg' and VTT arguments to constructors are not
2009 considered in overload resolution. */
2010 if (DECL_CONSTRUCTOR_P (fn))
2011 {
2012 if (ctor_omit_inherited_parms (fn))
2013 /* Bring back parameters omitted from an inherited ctor. */
2014 parmlist = FUNCTION_FIRST_USER_PARMTYPE (DECL_ORIGIN (fn));
2015 else
2016 parmlist = skip_artificial_parms_for (fn, parmlist);
2017 skip = num_artificial_parms_for (fn);
2018 if (skip > 0 && first_arg != NULL_TREE)
2019 {
2020 --skip;
2021 first_arg = NULL_TREE;
2022 }
2023 }
2024 else
2025 skip = 0;
2026
2027 len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
2028 convs = alloc_conversions (len);
2029
2030 /* 13.3.2 - Viable functions [over.match.viable]
2031 First, to be a viable function, a candidate function shall have enough
2032 parameters to agree in number with the arguments in the list.
2033
2034 We need to check this first; otherwise, checking the ICSes might cause
2035 us to produce an ill-formed template instantiation. */
2036
2037 parmnode = parmlist;
2038 for (i = 0; i < len; ++i)
2039 {
2040 if (parmnode == NULL_TREE || parmnode == void_list_node)
2041 break;
2042 parmnode = TREE_CHAIN (parmnode);
2043 }
2044
2045 if ((i < len && parmnode)
2046 || !sufficient_parms_p (parmnode))
2047 {
2048 int remaining = remaining_arguments (parmnode);
2049 viable = 0;
2050 reason = arity_rejection (first_arg, i + remaining, len);
2051 }
2052
2053 /* An inherited constructor (12.6.3 [class.inhctor.init]) that has a first
2054 parameter of type "reference to cv C" (including such a constructor
2055 instantiated from a template) is excluded from the set of candidate
2056 functions when used to construct an object of type D with an argument list
2057 containing a single argument if C is reference-related to D. */
2058 if (viable && len == 1 && parmlist && DECL_CONSTRUCTOR_P (fn)
2059 && flag_new_inheriting_ctors
2060 && DECL_INHERITED_CTOR (fn))
2061 {
2062 tree ptype = non_reference (TREE_VALUE (parmlist));
2063 tree dtype = DECL_CONTEXT (fn);
2064 tree btype = DECL_INHERITED_CTOR_BASE (fn);
2065 if (reference_related_p (ptype, dtype)
2066 && reference_related_p (btype, ptype))
2067 {
2068 viable = false;
2069 reason = inherited_ctor_rejection ();
2070 }
2071 }
2072
2073 /* Second, for a function to be viable, its constraints must be
2074 satisfied. */
2075 if (flag_concepts && viable
2076 && !constraints_satisfied_p (fn))
2077 {
2078 reason = constraint_failure (fn);
2079 viable = false;
2080 }
2081
2082 /* When looking for a function from a subobject from an implicit
2083 copy/move constructor/operator=, don't consider anything that takes (a
2084 reference to) an unrelated type. See c++/44909 and core 1092. */
2085 if (viable && parmlist && (flags & LOOKUP_DEFAULTED))
2086 {
2087 if (DECL_CONSTRUCTOR_P (fn))
2088 i = 1;
2089 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
2090 && DECL_OVERLOADED_OPERATOR_IS (fn, NOP_EXPR))
2091 i = 2;
2092 else
2093 i = 0;
2094 if (i && len == i)
2095 {
2096 parmnode = chain_index (i-1, parmlist);
2097 if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
2098 ctype))
2099 viable = 0;
2100 }
2101
2102 /* This only applies at the top level. */
2103 flags &= ~LOOKUP_DEFAULTED;
2104 }
2105
2106 if (! viable)
2107 goto out;
2108
2109 /* Third, for F to be a viable function, there shall exist for each
2110 argument an implicit conversion sequence that converts that argument
2111 to the corresponding parameter of F. */
2112
2113 parmnode = parmlist;
2114
2115 for (i = 0; i < len; ++i)
2116 {
2117 tree argtype, to_type;
2118 tree arg;
2119 conversion *t;
2120 int is_this;
2121
2122 if (parmnode == void_list_node)
2123 break;
2124
2125 if (i == 0 && first_arg != NULL_TREE)
2126 arg = first_arg;
2127 else
2128 arg = CONST_CAST_TREE (
2129 (*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
2130 argtype = lvalue_type (arg);
2131
2132 is_this = (i == 0 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2133 && ! DECL_CONSTRUCTOR_P (fn));
2134
2135 if (parmnode)
2136 {
2137 tree parmtype = TREE_VALUE (parmnode);
2138 int lflags = flags;
2139
2140 parmnode = TREE_CHAIN (parmnode);
2141
2142 /* The type of the implicit object parameter ('this') for
2143 overload resolution is not always the same as for the
2144 function itself; conversion functions are considered to
2145 be members of the class being converted, and functions
2146 introduced by a using-declaration are considered to be
2147 members of the class that uses them.
2148
2149 Since build_over_call ignores the ICS for the `this'
2150 parameter, we can just change the parm type. */
2151 if (ctype && is_this)
2152 {
2153 parmtype = cp_build_qualified_type
2154 (ctype, cp_type_quals (TREE_TYPE (parmtype)));
2155 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
2156 {
2157 /* If the function has a ref-qualifier, the implicit
2158 object parameter has reference type. */
2159 bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
2160 parmtype = cp_build_reference_type (parmtype, rv);
2161 /* The special handling of 'this' conversions in compare_ics
2162 does not apply if there is a ref-qualifier. */
2163 is_this = false;
2164 }
2165 else
2166 {
2167 parmtype = build_pointer_type (parmtype);
2168 /* We don't use build_this here because we don't want to
2169 capture the object argument until we've chosen a
2170 non-static member function. */
2171 arg = build_address (arg);
2172 argtype = lvalue_type (arg);
2173 }
2174 }
2175
2176 /* Core issue 899: When [copy-]initializing a temporary to be bound
2177 to the first parameter of a copy constructor (12.8) called with
2178 a single argument in the context of direct-initialization,
2179 explicit conversion functions are also considered.
2180
2181 So set LOOKUP_COPY_PARM to let reference_binding know that
2182 it's being called in that context. We generalize the above
2183 to handle move constructors and template constructors as well;
2184 the standardese should soon be updated similarly. */
2185 if (ctype && i == 0 && (len-skip == 1)
2186 && DECL_CONSTRUCTOR_P (fn)
2187 && parmtype != error_mark_node
2188 && (same_type_ignoring_top_level_qualifiers_p
2189 (non_reference (parmtype), ctype)))
2190 {
2191 if (!(flags & LOOKUP_ONLYCONVERTING))
2192 lflags |= LOOKUP_COPY_PARM;
2193 /* We allow user-defined conversions within init-lists, but
2194 don't list-initialize the copy parm, as that would mean
2195 using two levels of braces for the same type. */
2196 if ((flags & LOOKUP_LIST_INIT_CTOR)
2197 && BRACE_ENCLOSED_INITIALIZER_P (arg))
2198 lflags |= LOOKUP_NO_CONVERSION;
2199 }
2200 else
2201 lflags |= LOOKUP_ONLYCONVERTING;
2202
2203 t = implicit_conversion (parmtype, argtype, arg,
2204 /*c_cast_p=*/false, lflags, complain);
2205 to_type = parmtype;
2206 }
2207 else
2208 {
2209 t = build_identity_conv (argtype, arg);
2210 t->ellipsis_p = true;
2211 to_type = argtype;
2212 }
2213
2214 if (t && is_this)
2215 t->this_p = true;
2216
2217 convs[i] = t;
2218 if (! t)
2219 {
2220 viable = 0;
2221 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2222 break;
2223 }
2224
2225 if (t->bad_p)
2226 {
2227 viable = -1;
2228 reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type);
2229 }
2230 }
2231
2232 out:
2233 return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2234 access_path, conversion_path, viable, reason, flags);
2235 }
2236
2237 /* Create an overload candidate for the conversion function FN which will
2238 be invoked for expression OBJ, producing a pointer-to-function which
2239 will in turn be called with the argument list FIRST_ARG/ARGLIST,
2240 and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
2241 passed on to implicit_conversion.
2242
2243 Actually, we don't really care about FN; we care about the type it
2244 converts to. There may be multiple conversion functions that will
2245 convert to that type, and we rely on build_user_type_conversion_1 to
2246 choose the best one; so when we create our candidate, we record the type
2247 instead of the function. */
2248
2249 static struct z_candidate *
2250 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2251 const vec<tree, va_gc> *arglist,
2252 tree access_path, tree conversion_path,
2253 tsubst_flags_t complain)
2254 {
2255 tree totype = TREE_TYPE (TREE_TYPE (fn));
2256 int i, len, viable, flags;
2257 tree parmlist, parmnode;
2258 conversion **convs;
2259 struct rejection_reason *reason;
2260
2261 for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2262 parmlist = TREE_TYPE (parmlist);
2263 parmlist = TYPE_ARG_TYPES (parmlist);
2264
2265 len = vec_safe_length (arglist) + 1;
2266 convs = alloc_conversions (len);
2267 parmnode = parmlist;
2268 viable = 1;
2269 flags = LOOKUP_IMPLICIT;
2270 reason = NULL;
2271
2272 /* Don't bother looking up the same type twice. */
2273 if (*candidates && (*candidates)->fn == totype)
2274 return NULL;
2275
2276 for (i = 0; i < len; ++i)
2277 {
2278 tree arg, argtype, convert_type = NULL_TREE;
2279 conversion *t;
2280
2281 if (i == 0)
2282 arg = obj;
2283 else
2284 arg = (*arglist)[i - 1];
2285 argtype = lvalue_type (arg);
2286
2287 if (i == 0)
2288 {
2289 t = build_identity_conv (argtype, NULL_TREE);
2290 t = build_conv (ck_user, totype, t);
2291 /* Leave the 'cand' field null; we'll figure out the conversion in
2292 convert_like_real if this candidate is chosen. */
2293 convert_type = totype;
2294 }
2295 else if (parmnode == void_list_node)
2296 break;
2297 else if (parmnode)
2298 {
2299 t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2300 /*c_cast_p=*/false, flags, complain);
2301 convert_type = TREE_VALUE (parmnode);
2302 }
2303 else
2304 {
2305 t = build_identity_conv (argtype, arg);
2306 t->ellipsis_p = true;
2307 convert_type = argtype;
2308 }
2309
2310 convs[i] = t;
2311 if (! t)
2312 break;
2313
2314 if (t->bad_p)
2315 {
2316 viable = -1;
2317 reason = bad_arg_conversion_rejection (NULL_TREE, i, arg, convert_type);
2318 }
2319
2320 if (i == 0)
2321 continue;
2322
2323 if (parmnode)
2324 parmnode = TREE_CHAIN (parmnode);
2325 }
2326
2327 if (i < len
2328 || ! sufficient_parms_p (parmnode))
2329 {
2330 int remaining = remaining_arguments (parmnode);
2331 viable = 0;
2332 reason = arity_rejection (NULL_TREE, i + remaining, len);
2333 }
2334
2335 return add_candidate (candidates, totype, obj, arglist, len, convs,
2336 access_path, conversion_path, viable, reason, flags);
2337 }
2338
2339 static void
2340 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2341 tree type1, tree type2, tree *args, tree *argtypes,
2342 int flags, tsubst_flags_t complain)
2343 {
2344 conversion *t;
2345 conversion **convs;
2346 size_t num_convs;
2347 int viable = 1, i;
2348 tree types[2];
2349 struct rejection_reason *reason = NULL;
2350
2351 types[0] = type1;
2352 types[1] = type2;
2353
2354 num_convs = args[2] ? 3 : (args[1] ? 2 : 1);
2355 convs = alloc_conversions (num_convs);
2356
2357 /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2358 conversion ops are allowed. We handle that here by just checking for
2359 boolean_type_node because other operators don't ask for it. COND_EXPR
2360 also does contextual conversion to bool for the first operand, but we
2361 handle that in build_conditional_expr, and type1 here is operand 2. */
2362 if (type1 != boolean_type_node)
2363 flags |= LOOKUP_ONLYCONVERTING;
2364
2365 for (i = 0; i < 2; ++i)
2366 {
2367 if (! args[i])
2368 break;
2369
2370 t = implicit_conversion (types[i], argtypes[i], args[i],
2371 /*c_cast_p=*/false, flags, complain);
2372 if (! t)
2373 {
2374 viable = 0;
2375 /* We need something for printing the candidate. */
2376 t = build_identity_conv (types[i], NULL_TREE);
2377 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2378 types[i]);
2379 }
2380 else if (t->bad_p)
2381 {
2382 viable = 0;
2383 reason = bad_arg_conversion_rejection (NULL_TREE, i, args[i],
2384 types[i]);
2385 }
2386 convs[i] = t;
2387 }
2388
2389 /* For COND_EXPR we rearranged the arguments; undo that now. */
2390 if (args[2])
2391 {
2392 convs[2] = convs[1];
2393 convs[1] = convs[0];
2394 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2395 /*c_cast_p=*/false, flags,
2396 complain);
2397 if (t)
2398 convs[0] = t;
2399 else
2400 {
2401 viable = 0;
2402 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2403 boolean_type_node);
2404 }
2405 }
2406
2407 add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2408 num_convs, convs,
2409 /*access_path=*/NULL_TREE,
2410 /*conversion_path=*/NULL_TREE,
2411 viable, reason, flags);
2412 }
2413
2414 static bool
2415 is_complete (tree t)
2416 {
2417 return COMPLETE_TYPE_P (complete_type (t));
2418 }
2419
2420 /* Returns nonzero if TYPE is a promoted arithmetic type. */
2421
2422 static bool
2423 promoted_arithmetic_type_p (tree type)
2424 {
2425 /* [over.built]
2426
2427 In this section, the term promoted integral type is used to refer
2428 to those integral types which are preserved by integral promotion
2429 (including e.g. int and long but excluding e.g. char).
2430 Similarly, the term promoted arithmetic type refers to promoted
2431 integral types plus floating types. */
2432 return ((CP_INTEGRAL_TYPE_P (type)
2433 && same_type_p (type_promotes_to (type), type))
2434 || TREE_CODE (type) == REAL_TYPE);
2435 }
2436
2437 /* Create any builtin operator overload candidates for the operator in
2438 question given the converted operand types TYPE1 and TYPE2. The other
2439 args are passed through from add_builtin_candidates to
2440 build_builtin_candidate.
2441
2442 TYPE1 and TYPE2 may not be permissible, and we must filter them.
2443 If CODE is requires candidates operands of the same type of the kind
2444 of which TYPE1 and TYPE2 are, we add both candidates
2445 CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2). */
2446
2447 static void
2448 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2449 enum tree_code code2, tree fnname, tree type1,
2450 tree type2, tree *args, tree *argtypes, int flags,
2451 tsubst_flags_t complain)
2452 {
2453 switch (code)
2454 {
2455 case POSTINCREMENT_EXPR:
2456 case POSTDECREMENT_EXPR:
2457 args[1] = integer_zero_node;
2458 type2 = integer_type_node;
2459 break;
2460 default:
2461 break;
2462 }
2463
2464 switch (code)
2465 {
2466
2467 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2468 and VQ is either volatile or empty, there exist candidate operator
2469 functions of the form
2470 VQ T& operator++(VQ T&);
2471 T operator++(VQ T&, int);
2472 5 For every pair T, VQ), where T is an enumeration type or an arithmetic
2473 type other than bool, and VQ is either volatile or empty, there exist
2474 candidate operator functions of the form
2475 VQ T& operator--(VQ T&);
2476 T operator--(VQ T&, int);
2477 6 For every pair T, VQ), where T is a cv-qualified or cv-unqualified
2478 complete object type, and VQ is either volatile or empty, there exist
2479 candidate operator functions of the form
2480 T*VQ& operator++(T*VQ&);
2481 T*VQ& operator--(T*VQ&);
2482 T* operator++(T*VQ&, int);
2483 T* operator--(T*VQ&, int); */
2484
2485 case POSTDECREMENT_EXPR:
2486 case PREDECREMENT_EXPR:
2487 if (TREE_CODE (type1) == BOOLEAN_TYPE)
2488 return;
2489 /* FALLTHRU */
2490 case POSTINCREMENT_EXPR:
2491 case PREINCREMENT_EXPR:
2492 if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2493 {
2494 type1 = build_reference_type (type1);
2495 break;
2496 }
2497 return;
2498
2499 /* 7 For every cv-qualified or cv-unqualified object type T, there
2500 exist candidate operator functions of the form
2501
2502 T& operator*(T*);
2503
2504 8 For every function type T, there exist candidate operator functions of
2505 the form
2506 T& operator*(T*); */
2507
2508 case INDIRECT_REF:
2509 if (TYPE_PTR_P (type1)
2510 && (TYPE_PTROB_P (type1)
2511 || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2512 break;
2513 return;
2514
2515 /* 9 For every type T, there exist candidate operator functions of the form
2516 T* operator+(T*);
2517
2518 10For every promoted arithmetic type T, there exist candidate operator
2519 functions of the form
2520 T operator+(T);
2521 T operator-(T); */
2522
2523 case UNARY_PLUS_EXPR: /* unary + */
2524 if (TYPE_PTR_P (type1))
2525 break;
2526 /* FALLTHRU */
2527 case NEGATE_EXPR:
2528 if (ARITHMETIC_TYPE_P (type1))
2529 break;
2530 return;
2531
2532 /* 11For every promoted integral type T, there exist candidate operator
2533 functions of the form
2534 T operator~(T); */
2535
2536 case BIT_NOT_EXPR:
2537 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2538 break;
2539 return;
2540
2541 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
2542 is the same type as C2 or is a derived class of C2, T is a complete
2543 object type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
2544 there exist candidate operator functions of the form
2545 CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2546 where CV12 is the union of CV1 and CV2. */
2547
2548 case MEMBER_REF:
2549 if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2550 {
2551 tree c1 = TREE_TYPE (type1);
2552 tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2553
2554 if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2555 && (TYPE_PTRMEMFUNC_P (type2)
2556 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2557 break;
2558 }
2559 return;
2560
2561 /* 13For every pair of promoted arithmetic types L and R, there exist can-
2562 didate operator functions of the form
2563 LR operator*(L, R);
2564 LR operator/(L, R);
2565 LR operator+(L, R);
2566 LR operator-(L, R);
2567 bool operator<(L, R);
2568 bool operator>(L, R);
2569 bool operator<=(L, R);
2570 bool operator>=(L, R);
2571 bool operator==(L, R);
2572 bool operator!=(L, R);
2573 where LR is the result of the usual arithmetic conversions between
2574 types L and R.
2575
2576 14For every pair of types T and I, where T is a cv-qualified or cv-
2577 unqualified complete object type and I is a promoted integral type,
2578 there exist candidate operator functions of the form
2579 T* operator+(T*, I);
2580 T& operator[](T*, I);
2581 T* operator-(T*, I);
2582 T* operator+(I, T*);
2583 T& operator[](I, T*);
2584
2585 15For every T, where T is a pointer to complete object type, there exist
2586 candidate operator functions of the form112)
2587 ptrdiff_t operator-(T, T);
2588
2589 16For every pointer or enumeration type T, there exist candidate operator
2590 functions of the form
2591 bool operator<(T, T);
2592 bool operator>(T, T);
2593 bool operator<=(T, T);
2594 bool operator>=(T, T);
2595 bool operator==(T, T);
2596 bool operator!=(T, T);
2597
2598 17For every pointer to member type T, there exist candidate operator
2599 functions of the form
2600 bool operator==(T, T);
2601 bool operator!=(T, T); */
2602
2603 case MINUS_EXPR:
2604 if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2605 break;
2606 if (TYPE_PTROB_P (type1)
2607 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2608 {
2609 type2 = ptrdiff_type_node;
2610 break;
2611 }
2612 /* FALLTHRU */
2613 case MULT_EXPR:
2614 case TRUNC_DIV_EXPR:
2615 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2616 break;
2617 return;
2618
2619 case EQ_EXPR:
2620 case NE_EXPR:
2621 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2622 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2623 break;
2624 if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2625 {
2626 type2 = type1;
2627 break;
2628 }
2629 if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2630 {
2631 type1 = type2;
2632 break;
2633 }
2634 /* Fall through. */
2635 case LT_EXPR:
2636 case GT_EXPR:
2637 case LE_EXPR:
2638 case GE_EXPR:
2639 case MAX_EXPR:
2640 case MIN_EXPR:
2641 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2642 break;
2643 if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2644 break;
2645 if (TREE_CODE (type1) == ENUMERAL_TYPE
2646 && TREE_CODE (type2) == ENUMERAL_TYPE)
2647 break;
2648 if (TYPE_PTR_P (type1)
2649 && null_ptr_cst_p (args[1]))
2650 {
2651 type2 = type1;
2652 break;
2653 }
2654 if (null_ptr_cst_p (args[0])
2655 && TYPE_PTR_P (type2))
2656 {
2657 type1 = type2;
2658 break;
2659 }
2660 return;
2661
2662 case PLUS_EXPR:
2663 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2664 break;
2665 /* FALLTHRU */
2666 case ARRAY_REF:
2667 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2668 {
2669 type1 = ptrdiff_type_node;
2670 break;
2671 }
2672 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2673 {
2674 type2 = ptrdiff_type_node;
2675 break;
2676 }
2677 return;
2678
2679 /* 18For every pair of promoted integral types L and R, there exist candi-
2680 date operator functions of the form
2681 LR operator%(L, R);
2682 LR operator&(L, R);
2683 LR operator^(L, R);
2684 LR operator|(L, R);
2685 L operator<<(L, R);
2686 L operator>>(L, R);
2687 where LR is the result of the usual arithmetic conversions between
2688 types L and R. */
2689
2690 case TRUNC_MOD_EXPR:
2691 case BIT_AND_EXPR:
2692 case BIT_IOR_EXPR:
2693 case BIT_XOR_EXPR:
2694 case LSHIFT_EXPR:
2695 case RSHIFT_EXPR:
2696 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2697 break;
2698 return;
2699
2700 /* 19For every triple L, VQ, R), where L is an arithmetic or enumeration
2701 type, VQ is either volatile or empty, and R is a promoted arithmetic
2702 type, there exist candidate operator functions of the form
2703 VQ L& operator=(VQ L&, R);
2704 VQ L& operator*=(VQ L&, R);
2705 VQ L& operator/=(VQ L&, R);
2706 VQ L& operator+=(VQ L&, R);
2707 VQ L& operator-=(VQ L&, R);
2708
2709 20For every pair T, VQ), where T is any type and VQ is either volatile
2710 or empty, there exist candidate operator functions of the form
2711 T*VQ& operator=(T*VQ&, T*);
2712
2713 21For every pair T, VQ), where T is a pointer to member type and VQ is
2714 either volatile or empty, there exist candidate operator functions of
2715 the form
2716 VQ T& operator=(VQ T&, T);
2717
2718 22For every triple T, VQ, I), where T is a cv-qualified or cv-
2719 unqualified complete object type, VQ is either volatile or empty, and
2720 I is a promoted integral type, there exist candidate operator func-
2721 tions of the form
2722 T*VQ& operator+=(T*VQ&, I);
2723 T*VQ& operator-=(T*VQ&, I);
2724
2725 23For every triple L, VQ, R), where L is an integral or enumeration
2726 type, VQ is either volatile or empty, and R is a promoted integral
2727 type, there exist candidate operator functions of the form
2728
2729 VQ L& operator%=(VQ L&, R);
2730 VQ L& operator<<=(VQ L&, R);
2731 VQ L& operator>>=(VQ L&, R);
2732 VQ L& operator&=(VQ L&, R);
2733 VQ L& operator^=(VQ L&, R);
2734 VQ L& operator|=(VQ L&, R); */
2735
2736 case MODIFY_EXPR:
2737 switch (code2)
2738 {
2739 case PLUS_EXPR:
2740 case MINUS_EXPR:
2741 if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2742 {
2743 type2 = ptrdiff_type_node;
2744 break;
2745 }
2746 /* FALLTHRU */
2747 case MULT_EXPR:
2748 case TRUNC_DIV_EXPR:
2749 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2750 break;
2751 return;
2752
2753 case TRUNC_MOD_EXPR:
2754 case BIT_AND_EXPR:
2755 case BIT_IOR_EXPR:
2756 case BIT_XOR_EXPR:
2757 case LSHIFT_EXPR:
2758 case RSHIFT_EXPR:
2759 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2760 break;
2761 return;
2762
2763 case NOP_EXPR:
2764 if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2765 break;
2766 if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2767 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2768 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2769 || ((TYPE_PTRMEMFUNC_P (type1)
2770 || TYPE_PTR_P (type1))
2771 && null_ptr_cst_p (args[1])))
2772 {
2773 type2 = type1;
2774 break;
2775 }
2776 return;
2777
2778 default:
2779 gcc_unreachable ();
2780 }
2781 type1 = build_reference_type (type1);
2782 break;
2783
2784 case COND_EXPR:
2785 /* [over.built]
2786
2787 For every pair of promoted arithmetic types L and R, there
2788 exist candidate operator functions of the form
2789
2790 LR operator?(bool, L, R);
2791
2792 where LR is the result of the usual arithmetic conversions
2793 between types L and R.
2794
2795 For every type T, where T is a pointer or pointer-to-member
2796 type, there exist candidate operator functions of the form T
2797 operator?(bool, T, T); */
2798
2799 if (promoted_arithmetic_type_p (type1)
2800 && promoted_arithmetic_type_p (type2))
2801 /* That's OK. */
2802 break;
2803
2804 /* Otherwise, the types should be pointers. */
2805 if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
2806 return;
2807
2808 /* We don't check that the two types are the same; the logic
2809 below will actually create two candidates; one in which both
2810 parameter types are TYPE1, and one in which both parameter
2811 types are TYPE2. */
2812 break;
2813
2814 case REALPART_EXPR:
2815 case IMAGPART_EXPR:
2816 if (ARITHMETIC_TYPE_P (type1))
2817 break;
2818 return;
2819
2820 default:
2821 gcc_unreachable ();
2822 }
2823
2824 /* Make sure we don't create builtin candidates with dependent types. */
2825 bool u1 = uses_template_parms (type1);
2826 bool u2 = type2 ? uses_template_parms (type2) : false;
2827 if (u1 || u2)
2828 {
2829 /* Try to recover if one of the types is non-dependent. But if
2830 there's only one type, there's nothing we can do. */
2831 if (!type2)
2832 return;
2833 /* And we lose if both are dependent. */
2834 if (u1 && u2)
2835 return;
2836 /* Or if they have different forms. */
2837 if (TREE_CODE (type1) != TREE_CODE (type2))
2838 return;
2839
2840 if (u1 && !u2)
2841 type1 = type2;
2842 else if (u2 && !u1)
2843 type2 = type1;
2844 }
2845
2846 /* If we're dealing with two pointer types or two enumeral types,
2847 we need candidates for both of them. */
2848 if (type2 && !same_type_p (type1, type2)
2849 && TREE_CODE (type1) == TREE_CODE (type2)
2850 && (TYPE_REF_P (type1)
2851 || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2852 || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
2853 || TYPE_PTRMEMFUNC_P (type1)
2854 || MAYBE_CLASS_TYPE_P (type1)
2855 || TREE_CODE (type1) == ENUMERAL_TYPE))
2856 {
2857 if (TYPE_PTR_OR_PTRMEM_P (type1))
2858 {
2859 tree cptype = composite_pointer_type (type1, type2,
2860 error_mark_node,
2861 error_mark_node,
2862 CPO_CONVERSION,
2863 tf_none);
2864 if (cptype != error_mark_node)
2865 {
2866 build_builtin_candidate
2867 (candidates, fnname, cptype, cptype, args, argtypes,
2868 flags, complain);
2869 return;
2870 }
2871 }
2872
2873 build_builtin_candidate
2874 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
2875 build_builtin_candidate
2876 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
2877 return;
2878 }
2879
2880 build_builtin_candidate
2881 (candidates, fnname, type1, type2, args, argtypes, flags, complain);
2882 }
2883
2884 tree
2885 type_decays_to (tree type)
2886 {
2887 if (TREE_CODE (type) == ARRAY_TYPE)
2888 return build_pointer_type (TREE_TYPE (type));
2889 if (TREE_CODE (type) == FUNCTION_TYPE)
2890 return build_pointer_type (type);
2891 return type;
2892 }
2893
2894 /* There are three conditions of builtin candidates:
2895
2896 1) bool-taking candidates. These are the same regardless of the input.
2897 2) pointer-pair taking candidates. These are generated for each type
2898 one of the input types converts to.
2899 3) arithmetic candidates. According to the standard, we should generate
2900 all of these, but I'm trying not to...
2901
2902 Here we generate a superset of the possible candidates for this particular
2903 case. That is a subset of the full set the standard defines, plus some
2904 other cases which the standard disallows. add_builtin_candidate will
2905 filter out the invalid set. */
2906
2907 static void
2908 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
2909 enum tree_code code2, tree fnname, tree *args,
2910 int flags, tsubst_flags_t complain)
2911 {
2912 int ref1, i;
2913 int enum_p = 0;
2914 tree type, argtypes[3], t;
2915 /* TYPES[i] is the set of possible builtin-operator parameter types
2916 we will consider for the Ith argument. */
2917 vec<tree, va_gc> *types[2];
2918 unsigned ix;
2919
2920 for (i = 0; i < 3; ++i)
2921 {
2922 if (args[i])
2923 argtypes[i] = unlowered_expr_type (args[i]);
2924 else
2925 argtypes[i] = NULL_TREE;
2926 }
2927
2928 switch (code)
2929 {
2930 /* 4 For every pair T, VQ), where T is an arithmetic or enumeration type,
2931 and VQ is either volatile or empty, there exist candidate operator
2932 functions of the form
2933 VQ T& operator++(VQ T&); */
2934
2935 case POSTINCREMENT_EXPR:
2936 case PREINCREMENT_EXPR:
2937 case POSTDECREMENT_EXPR:
2938 case PREDECREMENT_EXPR:
2939 case MODIFY_EXPR:
2940 ref1 = 1;
2941 break;
2942
2943 /* 24There also exist candidate operator functions of the form
2944 bool operator!(bool);
2945 bool operator&&(bool, bool);
2946 bool operator||(bool, bool); */
2947
2948 case TRUTH_NOT_EXPR:
2949 build_builtin_candidate
2950 (candidates, fnname, boolean_type_node,
2951 NULL_TREE, args, argtypes, flags, complain);
2952 return;
2953
2954 case TRUTH_ORIF_EXPR:
2955 case TRUTH_ANDIF_EXPR:
2956 build_builtin_candidate
2957 (candidates, fnname, boolean_type_node,
2958 boolean_type_node, args, argtypes, flags, complain);
2959 return;
2960
2961 case ADDR_EXPR:
2962 case COMPOUND_EXPR:
2963 case COMPONENT_REF:
2964 return;
2965
2966 case COND_EXPR:
2967 case EQ_EXPR:
2968 case NE_EXPR:
2969 case LT_EXPR:
2970 case LE_EXPR:
2971 case GT_EXPR:
2972 case GE_EXPR:
2973 enum_p = 1;
2974 /* Fall through. */
2975
2976 default:
2977 ref1 = 0;
2978 }
2979
2980 types[0] = make_tree_vector ();
2981 types[1] = make_tree_vector ();
2982
2983 for (i = 0; i < 2; ++i)
2984 {
2985 if (! args[i])
2986 ;
2987 else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
2988 {
2989 tree convs;
2990
2991 if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
2992 return;
2993
2994 convs = lookup_conversions (argtypes[i]);
2995
2996 if (code == COND_EXPR)
2997 {
2998 if (lvalue_p (args[i]))
2999 vec_safe_push (types[i], build_reference_type (argtypes[i]));
3000
3001 vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
3002 }
3003
3004 else if (! convs)
3005 return;
3006
3007 for (; convs; convs = TREE_CHAIN (convs))
3008 {
3009 type = TREE_TYPE (convs);
3010
3011 if (i == 0 && ref1
3012 && (!TYPE_REF_P (type)
3013 || CP_TYPE_CONST_P (TREE_TYPE (type))))
3014 continue;
3015
3016 if (code == COND_EXPR && TYPE_REF_P (type))
3017 vec_safe_push (types[i], type);
3018
3019 type = non_reference (type);
3020 if (i != 0 || ! ref1)
3021 {
3022 type = cv_unqualified (type_decays_to (type));
3023 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
3024 vec_safe_push (types[i], type);
3025 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3026 type = type_promotes_to (type);
3027 }
3028
3029 if (! vec_member (type, types[i]))
3030 vec_safe_push (types[i], type);
3031 }
3032 }
3033 else
3034 {
3035 if (code == COND_EXPR && lvalue_p (args[i]))
3036 vec_safe_push (types[i], build_reference_type (argtypes[i]));
3037 type = non_reference (argtypes[i]);
3038 if (i != 0 || ! ref1)
3039 {
3040 type = cv_unqualified (type_decays_to (type));
3041 if (enum_p && UNSCOPED_ENUM_P (type))
3042 vec_safe_push (types[i], type);
3043 if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3044 type = type_promotes_to (type);
3045 }
3046 vec_safe_push (types[i], type);
3047 }
3048 }
3049
3050 /* Run through the possible parameter types of both arguments,
3051 creating candidates with those parameter types. */
3052 FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
3053 {
3054 unsigned jx;
3055 tree u;
3056
3057 if (!types[1]->is_empty ())
3058 FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
3059 add_builtin_candidate
3060 (candidates, code, code2, fnname, t,
3061 u, args, argtypes, flags, complain);
3062 else
3063 add_builtin_candidate
3064 (candidates, code, code2, fnname, t,
3065 NULL_TREE, args, argtypes, flags, complain);
3066 }
3067
3068 release_tree_vector (types[0]);
3069 release_tree_vector (types[1]);
3070 }
3071
3072
3073 /* If TMPL can be successfully instantiated as indicated by
3074 EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
3075
3076 TMPL is the template. EXPLICIT_TARGS are any explicit template
3077 arguments. ARGLIST is the arguments provided at the call-site.
3078 This does not change ARGLIST. The RETURN_TYPE is the desired type
3079 for conversion operators. If OBJ is NULL_TREE, FLAGS and CTYPE are
3080 as for add_function_candidate. If an OBJ is supplied, FLAGS and
3081 CTYPE are ignored, and OBJ is as for add_conv_candidate. */
3082
3083 static struct z_candidate*
3084 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
3085 tree ctype, tree explicit_targs, tree first_arg,
3086 const vec<tree, va_gc> *arglist, tree return_type,
3087 tree access_path, tree conversion_path,
3088 int flags, tree obj, unification_kind_t strict,
3089 tsubst_flags_t complain)
3090 {
3091 int ntparms = DECL_NTPARMS (tmpl);
3092 tree targs = make_tree_vec (ntparms);
3093 unsigned int len = vec_safe_length (arglist);
3094 unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
3095 unsigned int skip_without_in_chrg = 0;
3096 tree first_arg_without_in_chrg = first_arg;
3097 tree *args_without_in_chrg;
3098 unsigned int nargs_without_in_chrg;
3099 unsigned int ia, ix;
3100 tree arg;
3101 struct z_candidate *cand;
3102 tree fn;
3103 struct rejection_reason *reason = NULL;
3104 int errs;
3105
3106 /* We don't do deduction on the in-charge parameter, the VTT
3107 parameter or 'this'. */
3108 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
3109 {
3110 if (first_arg_without_in_chrg != NULL_TREE)
3111 first_arg_without_in_chrg = NULL_TREE;
3112 else if (return_type && strict == DEDUCE_CALL)
3113 /* We're deducing for a call to the result of a template conversion
3114 function, so the args don't contain 'this'; leave them alone. */;
3115 else
3116 ++skip_without_in_chrg;
3117 }
3118
3119 if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
3120 || DECL_BASE_CONSTRUCTOR_P (tmpl))
3121 && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
3122 {
3123 if (first_arg_without_in_chrg != NULL_TREE)
3124 first_arg_without_in_chrg = NULL_TREE;
3125 else
3126 ++skip_without_in_chrg;
3127 }
3128
3129 if (len < skip_without_in_chrg)
3130 return NULL;
3131
3132 if (DECL_CONSTRUCTOR_P (tmpl) && nargs == 2
3133 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (first_arg),
3134 TREE_TYPE ((*arglist)[0])))
3135 {
3136 /* 12.8/6 says, "A declaration of a constructor for a class X is
3137 ill-formed if its first parameter is of type (optionally cv-qualified)
3138 X and either there are no other parameters or else all other
3139 parameters have default arguments. A member function template is never
3140 instantiated to produce such a constructor signature."
3141
3142 So if we're trying to copy an object of the containing class, don't
3143 consider a template constructor that has a first parameter type that
3144 is just a template parameter, as we would deduce a signature that we
3145 would then reject in the code below. */
3146 if (tree firstparm = FUNCTION_FIRST_USER_PARMTYPE (tmpl))
3147 {
3148 firstparm = TREE_VALUE (firstparm);
3149 if (PACK_EXPANSION_P (firstparm))
3150 firstparm = PACK_EXPANSION_PATTERN (firstparm);
3151 if (TREE_CODE (firstparm) == TEMPLATE_TYPE_PARM)
3152 {
3153 gcc_assert (!explicit_targs);
3154 reason = invalid_copy_with_fn_template_rejection ();
3155 goto fail;
3156 }
3157 }
3158 }
3159
3160 nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
3161 + (len - skip_without_in_chrg));
3162 args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
3163 ia = 0;
3164 if (first_arg_without_in_chrg != NULL_TREE)
3165 {
3166 args_without_in_chrg[ia] = first_arg_without_in_chrg;
3167 ++ia;
3168 }
3169 for (ix = skip_without_in_chrg;
3170 vec_safe_iterate (arglist, ix, &arg);
3171 ++ix)
3172 {
3173 args_without_in_chrg[ia] = arg;
3174 ++ia;
3175 }
3176 gcc_assert (ia == nargs_without_in_chrg);
3177
3178 errs = errorcount+sorrycount;
3179 fn = fn_type_unification (tmpl, explicit_targs, targs,
3180 args_without_in_chrg,
3181 nargs_without_in_chrg,
3182 return_type, strict, flags, false,
3183 complain & tf_decltype);
3184
3185 if (fn == error_mark_node)
3186 {
3187 /* Don't repeat unification later if it already resulted in errors. */
3188 if (errorcount+sorrycount == errs)
3189 reason = template_unification_rejection (tmpl, explicit_targs,
3190 targs, args_without_in_chrg,
3191 nargs_without_in_chrg,
3192 return_type, strict, flags);
3193 else
3194 reason = template_unification_error_rejection ();
3195 goto fail;
3196 }
3197
3198 if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3199 {
3200 tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3201 if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3202 ctype))
3203 {
3204 /* We're trying to produce a constructor with a prohibited signature,
3205 as discussed above; handle here any cases we didn't catch then,
3206 such as X(X<T>). */
3207 reason = invalid_copy_with_fn_template_rejection ();
3208 goto fail;
3209 }
3210 }
3211
3212 if (obj != NULL_TREE)
3213 /* Aha, this is a conversion function. */
3214 cand = add_conv_candidate (candidates, fn, obj, arglist,
3215 access_path, conversion_path, complain);
3216 else
3217 cand = add_function_candidate (candidates, fn, ctype,
3218 first_arg, arglist, access_path,
3219 conversion_path, flags, complain);
3220 if (DECL_TI_TEMPLATE (fn) != tmpl)
3221 /* This situation can occur if a member template of a template
3222 class is specialized. Then, instantiate_template might return
3223 an instantiation of the specialization, in which case the
3224 DECL_TI_TEMPLATE field will point at the original
3225 specialization. For example:
3226
3227 template <class T> struct S { template <class U> void f(U);
3228 template <> void f(int) {}; };
3229 S<double> sd;
3230 sd.f(3);
3231
3232 Here, TMPL will be template <class U> S<double>::f(U).
3233 And, instantiate template will give us the specialization
3234 template <> S<double>::f(int). But, the DECL_TI_TEMPLATE field
3235 for this will point at template <class T> template <> S<T>::f(int),
3236 so that we can find the definition. For the purposes of
3237 overload resolution, however, we want the original TMPL. */
3238 cand->template_decl = build_template_info (tmpl, targs);
3239 else
3240 cand->template_decl = DECL_TEMPLATE_INFO (fn);
3241 cand->explicit_targs = explicit_targs;
3242
3243 return cand;
3244 fail:
3245 return add_candidate (candidates, tmpl, first_arg, arglist, nargs, NULL,
3246 access_path, conversion_path, 0, reason, flags);
3247 }
3248
3249
3250 static struct z_candidate *
3251 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3252 tree explicit_targs, tree first_arg,
3253 const vec<tree, va_gc> *arglist, tree return_type,
3254 tree access_path, tree conversion_path, int flags,
3255 unification_kind_t strict, tsubst_flags_t complain)
3256 {
3257 return
3258 add_template_candidate_real (candidates, tmpl, ctype,
3259 explicit_targs, first_arg, arglist,
3260 return_type, access_path, conversion_path,
3261 flags, NULL_TREE, strict, complain);
3262 }
3263
3264 /* Create an overload candidate for the conversion function template TMPL,
3265 returning RETURN_TYPE, which will be invoked for expression OBJ to produce a
3266 pointer-to-function which will in turn be called with the argument list
3267 ARGLIST, and add it to CANDIDATES. This does not change ARGLIST. FLAGS is
3268 passed on to implicit_conversion. */
3269
3270 static struct z_candidate *
3271 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3272 tree obj,
3273 const vec<tree, va_gc> *arglist,
3274 tree return_type, tree access_path,
3275 tree conversion_path, tsubst_flags_t complain)
3276 {
3277 /* Making this work broke PR 71117 and 85118, so until the committee resolves
3278 core issue 2189, let's disable this candidate if there are any call
3279 operators. */
3280 if (*candidates)
3281 return NULL;
3282
3283 return
3284 add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3285 NULL_TREE, arglist, return_type, access_path,
3286 conversion_path, 0, obj, DEDUCE_CALL,
3287 complain);
3288 }
3289
3290 /* The CANDS are the set of candidates that were considered for
3291 overload resolution. Return the set of viable candidates, or CANDS
3292 if none are viable. If any of the candidates were viable, set
3293 *ANY_VIABLE_P to true. STRICT_P is true if a candidate should be
3294 considered viable only if it is strictly viable. */
3295
3296 static struct z_candidate*
3297 splice_viable (struct z_candidate *cands,
3298 bool strict_p,
3299 bool *any_viable_p)
3300 {
3301 struct z_candidate *viable;
3302 struct z_candidate **last_viable;
3303 struct z_candidate **cand;
3304 bool found_strictly_viable = false;
3305
3306 /* Be strict inside templates, since build_over_call won't actually
3307 do the conversions to get pedwarns. */
3308 if (processing_template_decl)
3309 strict_p = true;
3310
3311 viable = NULL;
3312 last_viable = &viable;
3313 *any_viable_p = false;
3314
3315 cand = &cands;
3316 while (*cand)
3317 {
3318 struct z_candidate *c = *cand;
3319 if (!strict_p
3320 && (c->viable == 1 || TREE_CODE (c->fn) == TEMPLATE_DECL))
3321 {
3322 /* Be strict in the presence of a viable candidate. Also if
3323 there are template candidates, so that we get deduction errors
3324 for them instead of silently preferring a bad conversion. */
3325 strict_p = true;
3326 if (viable && !found_strictly_viable)
3327 {
3328 /* Put any spliced near matches back onto the main list so
3329 that we see them if there is no strict match. */
3330 *any_viable_p = false;
3331 *last_viable = cands;
3332 cands = viable;
3333 viable = NULL;
3334 last_viable = &viable;
3335 }
3336 }
3337
3338 if (strict_p ? c->viable == 1 : c->viable)
3339 {
3340 *last_viable = c;
3341 *cand = c->next;
3342 c->next = NULL;
3343 last_viable = &c->next;
3344 *any_viable_p = true;
3345 if (c->viable == 1)
3346 found_strictly_viable = true;
3347 }
3348 else
3349 cand = &c->next;
3350 }
3351
3352 return viable ? viable : cands;
3353 }
3354
3355 static bool
3356 any_strictly_viable (struct z_candidate *cands)
3357 {
3358 for (; cands; cands = cands->next)
3359 if (cands->viable == 1)
3360 return true;
3361 return false;
3362 }
3363
3364 /* OBJ is being used in an expression like "OBJ.f (...)". In other
3365 words, it is about to become the "this" pointer for a member
3366 function call. Take the address of the object. */
3367
3368 static tree
3369 build_this (tree obj)
3370 {
3371 /* In a template, we are only concerned about the type of the
3372 expression, so we can take a shortcut. */
3373 if (processing_template_decl)
3374 return build_address (obj);
3375
3376 return cp_build_addr_expr (obj, tf_warning_or_error);
3377 }
3378
3379 /* Returns true iff functions are equivalent. Equivalent functions are
3380 not '==' only if one is a function-local extern function or if
3381 both are extern "C". */
3382
3383 static inline int
3384 equal_functions (tree fn1, tree fn2)
3385 {
3386 if (TREE_CODE (fn1) != TREE_CODE (fn2))
3387 return 0;
3388 if (TREE_CODE (fn1) == TEMPLATE_DECL)
3389 return fn1 == fn2;
3390 if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
3391 || DECL_EXTERN_C_FUNCTION_P (fn1))
3392 return decls_match (fn1, fn2);
3393 return fn1 == fn2;
3394 }
3395
3396 /* Print information about a candidate being rejected due to INFO. */
3397
3398 static void
3399 print_conversion_rejection (location_t loc, struct conversion_info *info)
3400 {
3401 tree from = info->from;
3402 if (!TYPE_P (from))
3403 from = lvalue_type (from);
3404 if (info->n_arg == -1)
3405 {
3406 /* Conversion of implicit `this' argument failed. */
3407 if (!TYPE_P (info->from))
3408 /* A bad conversion for 'this' must be discarding cv-quals. */
3409 inform (loc, " passing %qT as %<this%> "
3410 "argument discards qualifiers",
3411 from);
3412 else
3413 inform (loc, " no known conversion for implicit "
3414 "%<this%> parameter from %qH to %qI",
3415 from, info->to_type);
3416 }
3417 else if (!TYPE_P (info->from))
3418 {
3419 if (info->n_arg >= 0)
3420 inform (loc, " conversion of argument %d would be ill-formed:",
3421 info->n_arg + 1);
3422 perform_implicit_conversion (info->to_type, info->from,
3423 tf_warning_or_error);
3424 }
3425 else if (info->n_arg == -2)
3426 /* Conversion of conversion function return value failed. */
3427 inform (loc, " no known conversion from %qH to %qI",
3428 from, info->to_type);
3429 else
3430 inform (loc, " no known conversion for argument %d from %qH to %qI",
3431 info->n_arg + 1, from, info->to_type);
3432 }
3433
3434 /* Print information about a candidate with WANT parameters and we found
3435 HAVE. */
3436
3437 static void
3438 print_arity_information (location_t loc, unsigned int have, unsigned int want)
3439 {
3440 inform_n (loc, want,
3441 " candidate expects %d argument, %d provided",
3442 " candidate expects %d arguments, %d provided",
3443 want, have);
3444 }
3445
3446 /* Print information about one overload candidate CANDIDATE. MSGSTR
3447 is the text to print before the candidate itself.
3448
3449 NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3450 to have been run through gettext by the caller. This wart makes
3451 life simpler in print_z_candidates and for the translators. */
3452
3453 static void
3454 print_z_candidate (location_t loc, const char *msgstr,
3455 struct z_candidate *candidate)
3456 {
3457 const char *msg = (msgstr == NULL
3458 ? ""
3459 : ACONCAT ((msgstr, " ", NULL)));
3460 tree fn = candidate->fn;
3461 if (flag_new_inheriting_ctors)
3462 fn = strip_inheriting_ctors (fn);
3463 location_t cloc = location_of (fn);
3464
3465 if (identifier_p (fn))
3466 {
3467 cloc = loc;
3468 if (candidate->num_convs == 3)
3469 inform (cloc, "%s%<%D(%T, %T, %T)%> <built-in>", msg, fn,
3470 candidate->convs[0]->type,
3471 candidate->convs[1]->type,
3472 candidate->convs[2]->type);
3473 else if (candidate->num_convs == 2)
3474 inform (cloc, "%s%<%D(%T, %T)%> <built-in>", msg, fn,
3475 candidate->convs[0]->type,
3476 candidate->convs[1]->type);
3477 else
3478 inform (cloc, "%s%<%D(%T)%> <built-in>", msg, fn,
3479 candidate->convs[0]->type);
3480 }
3481 else if (TYPE_P (fn))
3482 inform (cloc, "%s%qT <conversion>", msg, fn);
3483 else if (candidate->viable == -1)
3484 inform (cloc, "%s%#qD <near match>", msg, fn);
3485 else if (DECL_DELETED_FN (fn))
3486 inform (cloc, "%s%#qD <deleted>", msg, fn);
3487 else
3488 inform (cloc, "%s%#qD", msg, fn);
3489 if (fn != candidate->fn)
3490 {
3491 cloc = location_of (candidate->fn);
3492 inform (cloc, " inherited here");
3493 }
3494 /* Give the user some information about why this candidate failed. */
3495 if (candidate->reason != NULL)
3496 {
3497 struct rejection_reason *r = candidate->reason;
3498
3499 switch (r->code)
3500 {
3501 case rr_arity:
3502 print_arity_information (cloc, r->u.arity.actual,
3503 r->u.arity.expected);
3504 break;
3505 case rr_arg_conversion:
3506 print_conversion_rejection (cloc, &r->u.conversion);
3507 break;
3508 case rr_bad_arg_conversion:
3509 print_conversion_rejection (cloc, &r->u.bad_conversion);
3510 break;
3511 case rr_explicit_conversion:
3512 inform (cloc, " return type %qT of explicit conversion function "
3513 "cannot be converted to %qT with a qualification "
3514 "conversion", r->u.conversion.from,
3515 r->u.conversion.to_type);
3516 break;
3517 case rr_template_conversion:
3518 inform (cloc, " conversion from return type %qT of template "
3519 "conversion function specialization to %qT is not an "
3520 "exact match", r->u.conversion.from,
3521 r->u.conversion.to_type);
3522 break;
3523 case rr_template_unification:
3524 /* We use template_unification_error_rejection if unification caused
3525 actual non-SFINAE errors, in which case we don't need to repeat
3526 them here. */
3527 if (r->u.template_unification.tmpl == NULL_TREE)
3528 {
3529 inform (cloc, " substitution of deduced template arguments "
3530 "resulted in errors seen above");
3531 break;
3532 }
3533 /* Re-run template unification with diagnostics. */
3534 inform (cloc, " template argument deduction/substitution failed:");
3535 fn_type_unification (r->u.template_unification.tmpl,
3536 r->u.template_unification.explicit_targs,
3537 (make_tree_vec
3538 (r->u.template_unification.num_targs)),
3539 r->u.template_unification.args,
3540 r->u.template_unification.nargs,
3541 r->u.template_unification.return_type,
3542 r->u.template_unification.strict,
3543 r->u.template_unification.flags,
3544 true, false);
3545 break;
3546 case rr_invalid_copy:
3547 inform (cloc,
3548 " a constructor taking a single argument of its own "
3549 "class type is invalid");
3550 break;
3551 case rr_constraint_failure:
3552 {
3553 tree tmpl = r->u.template_instantiation.tmpl;
3554 tree args = r->u.template_instantiation.targs;
3555 diagnose_constraints (cloc, tmpl, args);
3556 }
3557 break;
3558 case rr_inherited_ctor:
3559 inform (cloc, " an inherited constructor is not a candidate for "
3560 "initialization from an expression of the same or derived "
3561 "type");
3562 break;
3563 case rr_none:
3564 default:
3565 /* This candidate didn't have any issues or we failed to
3566 handle a particular code. Either way... */
3567 gcc_unreachable ();
3568 }
3569 }
3570 }
3571
3572 static void
3573 print_z_candidates (location_t loc, struct z_candidate *candidates)
3574 {
3575 struct z_candidate *cand1;
3576 struct z_candidate **cand2;
3577
3578 if (!candidates)
3579 return;
3580
3581 /* Remove non-viable deleted candidates. */
3582 cand1 = candidates;
3583 for (cand2 = &cand1; *cand2; )
3584 {
3585 if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3586 && !(*cand2)->viable
3587 && DECL_DELETED_FN ((*cand2)->fn))
3588 *cand2 = (*cand2)->next;
3589 else
3590 cand2 = &(*cand2)->next;
3591 }
3592 /* ...if there are any non-deleted ones. */
3593 if (cand1)
3594 candidates = cand1;
3595
3596 /* There may be duplicates in the set of candidates. We put off
3597 checking this condition as long as possible, since we have no way
3598 to eliminate duplicates from a set of functions in less than n^2
3599 time. Now we are about to emit an error message, so it is more
3600 permissible to go slowly. */
3601 for (cand1 = candidates; cand1; cand1 = cand1->next)
3602 {
3603 tree fn = cand1->fn;
3604 /* Skip builtin candidates and conversion functions. */
3605 if (!DECL_P (fn))
3606 continue;
3607 cand2 = &cand1->next;
3608 while (*cand2)
3609 {
3610 if (DECL_P ((*cand2)->fn)
3611 && equal_functions (fn, (*cand2)->fn))
3612 *cand2 = (*cand2)->next;
3613 else
3614 cand2 = &(*cand2)->next;
3615 }
3616 }
3617
3618 for (; candidates; candidates = candidates->next)
3619 print_z_candidate (loc, "candidate:", candidates);
3620 }
3621
3622 /* USER_SEQ is a user-defined conversion sequence, beginning with a
3623 USER_CONV. STD_SEQ is the standard conversion sequence applied to
3624 the result of the conversion function to convert it to the final
3625 desired type. Merge the two sequences into a single sequence,
3626 and return the merged sequence. */
3627
3628 static conversion *
3629 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
3630 {
3631 conversion **t;
3632 bool bad = user_seq->bad_p;
3633
3634 gcc_assert (user_seq->kind == ck_user);
3635
3636 /* Find the end of the second conversion sequence. */
3637 for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
3638 {
3639 /* The entire sequence is a user-conversion sequence. */
3640 (*t)->user_conv_p = true;
3641 if (bad)
3642 (*t)->bad_p = true;
3643 }
3644
3645 if ((*t)->rvaluedness_matches_p)
3646 /* We're binding a reference directly to the result of the conversion.
3647 build_user_type_conversion_1 stripped the REFERENCE_TYPE from the return
3648 type, but we want it back. */
3649 user_seq->type = TREE_TYPE (TREE_TYPE (user_seq->cand->fn));
3650
3651 /* Replace the identity conversion with the user conversion
3652 sequence. */
3653 *t = user_seq;
3654
3655 return std_seq;
3656 }
3657
3658 /* Handle overload resolution for initializing an object of class type from
3659 an initializer list. First we look for a suitable constructor that
3660 takes a std::initializer_list; if we don't find one, we then look for a
3661 non-list constructor.
3662
3663 Parameters are as for add_candidates, except that the arguments are in
3664 the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
3665 the RETURN_TYPE parameter is replaced by TOTYPE, the desired type. */
3666
3667 static void
3668 add_list_candidates (tree fns, tree first_arg,
3669 const vec<tree, va_gc> *args, tree totype,
3670 tree explicit_targs, bool template_only,
3671 tree conversion_path, tree access_path,
3672 int flags,
3673 struct z_candidate **candidates,
3674 tsubst_flags_t complain)
3675 {
3676 gcc_assert (*candidates == NULL);
3677
3678 /* We're looking for a ctor for list-initialization. */
3679 flags |= LOOKUP_LIST_INIT_CTOR;
3680 /* And we don't allow narrowing conversions. We also use this flag to
3681 avoid the copy constructor call for copy-list-initialization. */
3682 flags |= LOOKUP_NO_NARROWING;
3683
3684 unsigned nart = num_artificial_parms_for (OVL_FIRST (fns)) - 1;
3685 tree init_list = (*args)[nart];
3686
3687 /* Always use the default constructor if the list is empty (DR 990). */
3688 if (CONSTRUCTOR_NELTS (init_list) == 0
3689 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
3690 ;
3691 /* If the class has a list ctor, try passing the list as a single
3692 argument first, but only consider list ctors. */
3693 else if (TYPE_HAS_LIST_CTOR (totype))
3694 {
3695 flags |= LOOKUP_LIST_ONLY;
3696 add_candidates (fns, first_arg, args, NULL_TREE,
3697 explicit_targs, template_only, conversion_path,
3698 access_path, flags, candidates, complain);
3699 if (any_strictly_viable (*candidates))
3700 return;
3701 }
3702
3703 /* Expand the CONSTRUCTOR into a new argument vec. */
3704 vec<tree, va_gc> *new_args;
3705 vec_alloc (new_args, nart + CONSTRUCTOR_NELTS (init_list));
3706 for (unsigned i = 0; i < nart; ++i)
3707 new_args->quick_push ((*args)[i]);
3708 for (unsigned i = 0; i < CONSTRUCTOR_NELTS (init_list); ++i)
3709 new_args->quick_push (CONSTRUCTOR_ELT (init_list, i)->value);
3710
3711 /* We aren't looking for list-ctors anymore. */
3712 flags &= ~LOOKUP_LIST_ONLY;
3713 /* We allow more user-defined conversions within an init-list. */
3714 flags &= ~LOOKUP_NO_CONVERSION;
3715
3716 add_candidates (fns, first_arg, new_args, NULL_TREE,
3717 explicit_targs, template_only, conversion_path,
3718 access_path, flags, candidates, complain);
3719 }
3720
3721 /* Returns the best overload candidate to perform the requested
3722 conversion. This function is used for three the overloading situations
3723 described in [over.match.copy], [over.match.conv], and [over.match.ref].
3724 If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
3725 per [dcl.init.ref], so we ignore temporary bindings. */
3726
3727 static struct z_candidate *
3728 build_user_type_conversion_1 (tree totype, tree expr, int flags,
3729 tsubst_flags_t complain)
3730 {
3731 struct z_candidate *candidates, *cand;
3732 tree fromtype;
3733 tree ctors = NULL_TREE;
3734 tree conv_fns = NULL_TREE;
3735 conversion *conv = NULL;
3736 tree first_arg = NULL_TREE;
3737 vec<tree, va_gc> *args = NULL;
3738 bool any_viable_p;
3739 int convflags;
3740
3741 if (!expr)
3742 return NULL;
3743
3744 fromtype = TREE_TYPE (expr);
3745
3746 /* We represent conversion within a hierarchy using RVALUE_CONV and
3747 BASE_CONV, as specified by [over.best.ics]; these become plain
3748 constructor calls, as specified in [dcl.init]. */
3749 gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
3750 || !DERIVED_FROM_P (totype, fromtype));
3751
3752 if (CLASS_TYPE_P (totype))
3753 /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
3754 creating a garbage BASELINK; constructors can't be inherited. */
3755 ctors = get_class_binding (totype, complete_ctor_identifier);
3756
3757 if (MAYBE_CLASS_TYPE_P (fromtype))
3758 {
3759 tree to_nonref = non_reference (totype);
3760 if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
3761 (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
3762 && DERIVED_FROM_P (to_nonref, fromtype)))
3763 {
3764 /* [class.conv.fct] A conversion function is never used to
3765 convert a (possibly cv-qualified) object to the (possibly
3766 cv-qualified) same object type (or a reference to it), to a
3767 (possibly cv-qualified) base class of that type (or a
3768 reference to it)... */
3769 }
3770 else
3771 conv_fns = lookup_conversions (fromtype);
3772 }
3773
3774 candidates = 0;
3775 flags |= LOOKUP_NO_CONVERSION;
3776 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3777 flags |= LOOKUP_NO_NARROWING;
3778
3779 /* It's OK to bind a temporary for converting constructor arguments, but
3780 not in converting the return value of a conversion operator. */
3781 convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION
3782 | (flags & LOOKUP_NO_NARROWING));
3783 flags &= ~LOOKUP_NO_TEMP_BIND;
3784
3785 if (ctors)
3786 {
3787 int ctorflags = flags;
3788
3789 first_arg = build_dummy_object (totype);
3790
3791 /* We should never try to call the abstract or base constructor
3792 from here. */
3793 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_FIRST (ctors))
3794 && !DECL_HAS_VTT_PARM_P (OVL_FIRST (ctors)));
3795
3796 args = make_tree_vector_single (expr);
3797 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3798 {
3799 /* List-initialization. */
3800 add_list_candidates (ctors, first_arg, args, totype, NULL_TREE,
3801 false, TYPE_BINFO (totype), TYPE_BINFO (totype),
3802 ctorflags, &candidates, complain);
3803 }
3804 else
3805 {
3806 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
3807 TYPE_BINFO (totype), TYPE_BINFO (totype),
3808 ctorflags, &candidates, complain);
3809 }
3810
3811 for (cand = candidates; cand; cand = cand->next)
3812 {
3813 cand->second_conv = build_identity_conv (totype, NULL_TREE);
3814
3815 /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
3816 set, then this is copy-initialization. In that case, "The
3817 result of the call is then used to direct-initialize the
3818 object that is the destination of the copy-initialization."
3819 [dcl.init]
3820
3821 We represent this in the conversion sequence with an
3822 rvalue conversion, which means a constructor call. */
3823 if (!TYPE_REF_P (totype)
3824 && !(convflags & LOOKUP_NO_TEMP_BIND))
3825 cand->second_conv
3826 = build_conv (ck_rvalue, totype, cand->second_conv);
3827 }
3828 }
3829
3830 if (conv_fns)
3831 {
3832 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3833 first_arg = CONSTRUCTOR_ELT (expr, 0)->value;
3834 else
3835 first_arg = expr;
3836 }
3837
3838 for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
3839 {
3840 tree conversion_path = TREE_PURPOSE (conv_fns);
3841 struct z_candidate *old_candidates;
3842
3843 /* If we are called to convert to a reference type, we are trying to
3844 find a direct binding, so don't even consider temporaries. If
3845 we don't find a direct binding, the caller will try again to
3846 look for a temporary binding. */
3847 if (TYPE_REF_P (totype))
3848 convflags |= LOOKUP_NO_TEMP_BIND;
3849
3850 old_candidates = candidates;
3851 add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
3852 NULL_TREE, false,
3853 conversion_path, TYPE_BINFO (fromtype),
3854 flags, &candidates, complain);
3855
3856 for (cand = candidates; cand != old_candidates; cand = cand->next)
3857 {
3858 tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
3859 conversion *ics
3860 = implicit_conversion (totype,
3861 rettype,
3862 0,
3863 /*c_cast_p=*/false, convflags,
3864 complain);
3865
3866 /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
3867 copy-initialization. In that case, "The result of the
3868 call is then used to direct-initialize the object that is
3869 the destination of the copy-initialization." [dcl.init]
3870
3871 We represent this in the conversion sequence with an
3872 rvalue conversion, which means a constructor call. But
3873 don't add a second rvalue conversion if there's already
3874 one there. Which there really shouldn't be, but it's
3875 harmless since we'd add it here anyway. */
3876 if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
3877 && !(convflags & LOOKUP_NO_TEMP_BIND))
3878 ics = build_conv (ck_rvalue, totype, ics);
3879
3880 cand->second_conv = ics;
3881
3882 if (!ics)
3883 {
3884 cand->viable = 0;
3885 cand->reason = arg_conversion_rejection (NULL_TREE, -2,
3886 rettype, totype);
3887 }
3888 else if (DECL_NONCONVERTING_P (cand->fn)
3889 && ics->rank > cr_exact)
3890 {
3891 /* 13.3.1.5: For direct-initialization, those explicit
3892 conversion functions that are not hidden within S and
3893 yield type T or a type that can be converted to type T
3894 with a qualification conversion (4.4) are also candidate
3895 functions. */
3896 /* 13.3.1.6 doesn't have a parallel restriction, but it should;
3897 I've raised this issue with the committee. --jason 9/2011 */
3898 cand->viable = -1;
3899 cand->reason = explicit_conversion_rejection (rettype, totype);
3900 }
3901 else if (cand->viable == 1 && ics->bad_p)
3902 {
3903 cand->viable = -1;
3904 cand->reason
3905 = bad_arg_conversion_rejection (NULL_TREE, -2,
3906 rettype, totype);
3907 }
3908 else if (primary_template_specialization_p (cand->fn)
3909 && ics->rank > cr_exact)
3910 {
3911 /* 13.3.3.1.2: If the user-defined conversion is specified by
3912 a specialization of a conversion function template, the
3913 second standard conversion sequence shall have exact match
3914 rank. */
3915 cand->viable = -1;
3916 cand->reason = template_conversion_rejection (rettype, totype);
3917 }
3918 }
3919 }
3920
3921 candidates = splice_viable (candidates, false, &any_viable_p);
3922 if (!any_viable_p)
3923 {
3924 if (args)
3925 release_tree_vector (args);
3926 return NULL;
3927 }
3928
3929 cand = tourney (candidates, complain);
3930 if (cand == 0)
3931 {
3932 if (complain & tf_error)
3933 {
3934 error ("conversion from %qH to %qI is ambiguous",
3935 fromtype, totype);
3936 print_z_candidates (location_of (expr), candidates);
3937 }
3938
3939 cand = candidates; /* any one will do */
3940 cand->second_conv = build_ambiguous_conv (totype, expr);
3941 cand->second_conv->user_conv_p = true;
3942 if (!any_strictly_viable (candidates))
3943 cand->second_conv->bad_p = true;
3944 if (flags & LOOKUP_ONLYCONVERTING)
3945 cand->second_conv->need_temporary_p = true;
3946 /* If there are viable candidates, don't set ICS_BAD_FLAG; an
3947 ambiguous conversion is no worse than another user-defined
3948 conversion. */
3949
3950 return cand;
3951 }
3952
3953 tree convtype;
3954 if (!DECL_CONSTRUCTOR_P (cand->fn))
3955 convtype = non_reference (TREE_TYPE (TREE_TYPE (cand->fn)));
3956 else if (cand->second_conv->kind == ck_rvalue)
3957 /* DR 5: [in the first step of copy-initialization]...if the function
3958 is a constructor, the call initializes a temporary of the
3959 cv-unqualified version of the destination type. */
3960 convtype = cv_unqualified (totype);
3961 else
3962 convtype = totype;
3963 /* Build the user conversion sequence. */
3964 conv = build_conv
3965 (ck_user,
3966 convtype,
3967 build_identity_conv (TREE_TYPE (expr), expr));
3968 conv->cand = cand;
3969 if (cand->viable == -1)
3970 conv->bad_p = true;
3971
3972 /* Remember that this was a list-initialization. */
3973 if (flags & LOOKUP_NO_NARROWING)
3974 conv->check_narrowing = true;
3975
3976 /* Combine it with the second conversion sequence. */
3977 cand->second_conv = merge_conversion_sequences (conv,
3978 cand->second_conv);
3979
3980 return cand;
3981 }
3982
3983 /* Wrapper for above. */
3984
3985 tree
3986 build_user_type_conversion (tree totype, tree expr, int flags,
3987 tsubst_flags_t complain)
3988 {
3989 struct z_candidate *cand;
3990 tree ret;
3991
3992 bool subtime = timevar_cond_start (TV_OVERLOAD);
3993 cand = build_user_type_conversion_1 (totype, expr, flags, complain);
3994
3995 if (cand)
3996 {
3997 if (cand->second_conv->kind == ck_ambig)
3998 ret = error_mark_node;
3999 else
4000 {
4001 expr = convert_like (cand->second_conv, expr, complain);
4002 ret = convert_from_reference (expr);
4003 }
4004 }
4005 else
4006 ret = NULL_TREE;
4007
4008 timevar_cond_stop (TV_OVERLOAD, subtime);
4009 return ret;
4010 }
4011
4012 /* Subroutine of convert_nontype_argument.
4013
4014 EXPR is an expression used in a context that requires a converted
4015 constant-expression, such as a template non-type parameter. Do any
4016 necessary conversions (that are permitted for converted
4017 constant-expressions) to convert it to the desired type.
4018
4019 If conversion is successful, returns the converted expression;
4020 otherwise, returns error_mark_node. */
4021
4022 tree
4023 build_converted_constant_expr (tree type, tree expr, tsubst_flags_t complain)
4024 {
4025 conversion *conv;
4026 void *p;
4027 tree t;
4028 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
4029
4030 if (error_operand_p (expr))
4031 return error_mark_node;
4032
4033 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4034 p = conversion_obstack_alloc (0);
4035
4036 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
4037 /*c_cast_p=*/false,
4038 LOOKUP_IMPLICIT, complain);
4039
4040 /* A converted constant expression of type T is an expression, implicitly
4041 converted to type T, where the converted expression is a constant
4042 expression and the implicit conversion sequence contains only
4043
4044 * user-defined conversions,
4045 * lvalue-to-rvalue conversions (7.1),
4046 * array-to-pointer conversions (7.2),
4047 * function-to-pointer conversions (7.3),
4048 * qualification conversions (7.5),
4049 * integral promotions (7.6),
4050 * integral conversions (7.8) other than narrowing conversions (11.6.4),
4051 * null pointer conversions (7.11) from std::nullptr_t,
4052 * null member pointer conversions (7.12) from std::nullptr_t, and
4053 * function pointer conversions (7.13),
4054
4055 and where the reference binding (if any) binds directly. */
4056
4057 for (conversion *c = conv;
4058 conv && c->kind != ck_identity;
4059 c = next_conversion (c))
4060 {
4061 switch (c->kind)
4062 {
4063 /* A conversion function is OK. If it isn't constexpr, we'll
4064 complain later that the argument isn't constant. */
4065 case ck_user:
4066 /* The lvalue-to-rvalue conversion is OK. */
4067 case ck_rvalue:
4068 /* Array-to-pointer and function-to-pointer. */
4069 case ck_lvalue:
4070 /* Function pointer conversions. */
4071 case ck_fnptr:
4072 /* Qualification conversions. */
4073 case ck_qual:
4074 break;
4075
4076 case ck_ref_bind:
4077 if (c->need_temporary_p)
4078 {
4079 if (complain & tf_error)
4080 error_at (loc, "initializing %qH with %qI in converted "
4081 "constant expression does not bind directly",
4082 type, next_conversion (c)->type);
4083 conv = NULL;
4084 }
4085 break;
4086
4087 case ck_base:
4088 case ck_pmem:
4089 case ck_ptr:
4090 case ck_std:
4091 t = next_conversion (c)->type;
4092 if (INTEGRAL_OR_ENUMERATION_TYPE_P (t)
4093 && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
4094 /* Integral promotion or conversion. */
4095 break;
4096 if (NULLPTR_TYPE_P (t))
4097 /* Conversion from nullptr to pointer or pointer-to-member. */
4098 break;
4099
4100 if (complain & tf_error)
4101 error_at (loc, "conversion from %qH to %qI in a "
4102 "converted constant expression", t, type);
4103 /* fall through. */
4104
4105 default:
4106 conv = NULL;
4107 break;
4108 }
4109 }
4110
4111 /* Avoid confusing convert_nontype_argument by introducing
4112 a redundant conversion to the same reference type. */
4113 if (conv && conv->kind == ck_ref_bind
4114 && REFERENCE_REF_P (expr))
4115 {
4116 tree ref = TREE_OPERAND (expr, 0);
4117 if (same_type_p (type, TREE_TYPE (ref)))
4118 return ref;
4119 }
4120
4121 if (conv)
4122 expr = convert_like (conv, expr, complain);
4123 else
4124 expr = error_mark_node;
4125
4126 /* Free all the conversions we allocated. */
4127 obstack_free (&conversion_obstack, p);
4128
4129 return expr;
4130 }
4131
4132 /* Do any initial processing on the arguments to a function call. */
4133
4134 static vec<tree, va_gc> *
4135 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
4136 {
4137 unsigned int ix;
4138 tree arg;
4139
4140 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
4141 {
4142 if (error_operand_p (arg))
4143 return NULL;
4144 else if (VOID_TYPE_P (TREE_TYPE (arg)))
4145 {
4146 if (complain & tf_error)
4147 error ("invalid use of void expression");
4148 return NULL;
4149 }
4150 else if (invalid_nonstatic_memfn_p (input_location, arg, complain))
4151 return NULL;
4152 }
4153 return args;
4154 }
4155
4156 /* Perform overload resolution on FN, which is called with the ARGS.
4157
4158 Return the candidate function selected by overload resolution, or
4159 NULL if the event that overload resolution failed. In the case
4160 that overload resolution fails, *CANDIDATES will be the set of
4161 candidates considered, and ANY_VIABLE_P will be set to true or
4162 false to indicate whether or not any of the candidates were
4163 viable.
4164
4165 The ARGS should already have gone through RESOLVE_ARGS before this
4166 function is called. */
4167
4168 static struct z_candidate *
4169 perform_overload_resolution (tree fn,
4170 const vec<tree, va_gc> *args,
4171 struct z_candidate **candidates,
4172 bool *any_viable_p, tsubst_flags_t complain)
4173 {
4174 struct z_candidate *cand;
4175 tree explicit_targs;
4176 int template_only;
4177
4178 bool subtime = timevar_cond_start (TV_OVERLOAD);
4179
4180 explicit_targs = NULL_TREE;
4181 template_only = 0;
4182
4183 *candidates = NULL;
4184 *any_viable_p = true;
4185
4186 /* Check FN. */
4187 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
4188 || TREE_CODE (fn) == TEMPLATE_DECL
4189 || TREE_CODE (fn) == OVERLOAD
4190 || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
4191
4192 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4193 {
4194 explicit_targs = TREE_OPERAND (fn, 1);
4195 fn = TREE_OPERAND (fn, 0);
4196 template_only = 1;
4197 }
4198
4199 /* Add the various candidate functions. */
4200 add_candidates (fn, NULL_TREE, args, NULL_TREE,
4201 explicit_targs, template_only,
4202 /*conversion_path=*/NULL_TREE,
4203 /*access_path=*/NULL_TREE,
4204 LOOKUP_NORMAL,
4205 candidates, complain);
4206
4207 *candidates = splice_viable (*candidates, false, any_viable_p);
4208 if (*any_viable_p)
4209 cand = tourney (*candidates, complain);
4210 else
4211 cand = NULL;
4212
4213 timevar_cond_stop (TV_OVERLOAD, subtime);
4214 return cand;
4215 }
4216
4217 /* Print an error message about being unable to build a call to FN with
4218 ARGS. ANY_VIABLE_P indicates whether any candidate functions could
4219 be located; CANDIDATES is a possibly empty list of such
4220 functions. */
4221
4222 static void
4223 print_error_for_call_failure (tree fn, vec<tree, va_gc> *args,
4224 struct z_candidate *candidates)
4225 {
4226 tree targs = NULL_TREE;
4227 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4228 {
4229 targs = TREE_OPERAND (fn, 1);
4230 fn = TREE_OPERAND (fn, 0);
4231 }
4232 tree name = OVL_NAME (fn);
4233 location_t loc = location_of (name);
4234 if (targs)
4235 name = lookup_template_function (name, targs);
4236
4237 if (!any_strictly_viable (candidates))
4238 error_at (loc, "no matching function for call to %<%D(%A)%>",
4239 name, build_tree_list_vec (args));
4240 else
4241 error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
4242 name, build_tree_list_vec (args));
4243 if (candidates)
4244 print_z_candidates (loc, candidates);
4245 }
4246
4247 /* Return an expression for a call to FN (a namespace-scope function,
4248 or a static member function) with the ARGS. This may change
4249 ARGS. */
4250
4251 tree
4252 build_new_function_call (tree fn, vec<tree, va_gc> **args,
4253 tsubst_flags_t complain)
4254 {
4255 struct z_candidate *candidates, *cand;
4256 bool any_viable_p;
4257 void *p;
4258 tree result;
4259
4260 if (args != NULL && *args != NULL)
4261 {
4262 *args = resolve_args (*args, complain);
4263 if (*args == NULL)
4264 return error_mark_node;
4265 }
4266
4267 if (flag_tm)
4268 tm_malloc_replacement (fn);
4269
4270 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4271 p = conversion_obstack_alloc (0);
4272
4273 cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
4274 complain);
4275
4276 if (!cand)
4277 {
4278 if (complain & tf_error)
4279 {
4280 // If there is a single (non-viable) function candidate,
4281 // let the error be diagnosed by cp_build_function_call_vec.
4282 if (!any_viable_p && candidates && ! candidates->next
4283 && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
4284 return cp_build_function_call_vec (candidates->fn, args, complain);
4285
4286 // Otherwise, emit notes for non-viable candidates.
4287 print_error_for_call_failure (fn, *args, candidates);
4288 }
4289 result = error_mark_node;
4290 }
4291 else
4292 {
4293 int flags = LOOKUP_NORMAL;
4294 /* If fn is template_id_expr, the call has explicit template arguments
4295 (e.g. func<int>(5)), communicate this info to build_over_call
4296 through flags so that later we can use it to decide whether to warn
4297 about peculiar null pointer conversion. */
4298 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4299 {
4300 /* If overload resolution selects a specialization of a
4301 function concept for non-dependent template arguments,
4302 the expression is true if the constraints are satisfied
4303 and false otherwise.
4304
4305 NOTE: This is an extension of Concepts Lite TS that
4306 allows constraints to be used in expressions. */
4307 if (flag_concepts && !processing_template_decl)
4308 {
4309 tree tmpl = DECL_TI_TEMPLATE (cand->fn);
4310 tree targs = DECL_TI_ARGS (cand->fn);
4311 tree decl = DECL_TEMPLATE_RESULT (tmpl);
4312 if (DECL_DECLARED_CONCEPT_P (decl))
4313 return evaluate_function_concept (decl, targs);
4314 }
4315
4316 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
4317 }
4318
4319 result = build_over_call (cand, flags, complain);
4320 }
4321
4322 /* Free all the conversions we allocated. */
4323 obstack_free (&conversion_obstack, p);
4324
4325 return result;
4326 }
4327
4328 /* Build a call to a global operator new. FNNAME is the name of the
4329 operator (either "operator new" or "operator new[]") and ARGS are
4330 the arguments provided. This may change ARGS. *SIZE points to the
4331 total number of bytes required by the allocation, and is updated if
4332 that is changed here. *COOKIE_SIZE is non-NULL if a cookie should
4333 be used. If this function determines that no cookie should be
4334 used, after all, *COOKIE_SIZE is set to NULL_TREE. If SIZE_CHECK
4335 is not NULL_TREE, it is evaluated before calculating the final
4336 array size, and if it fails, the array size is replaced with
4337 (size_t)-1 (usually triggering a std::bad_alloc exception). If FN
4338 is non-NULL, it will be set, upon return, to the allocation
4339 function called. */
4340
4341 tree
4342 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
4343 tree *size, tree *cookie_size,
4344 tree align_arg, tree size_check,
4345 tree *fn, tsubst_flags_t complain)
4346 {
4347 tree original_size = *size;
4348 tree fns;
4349 struct z_candidate *candidates;
4350 struct z_candidate *cand = NULL;
4351 bool any_viable_p;
4352
4353 if (fn)
4354 *fn = NULL_TREE;
4355 /* Set to (size_t)-1 if the size check fails. */
4356 if (size_check != NULL_TREE)
4357 {
4358 tree errval = TYPE_MAX_VALUE (sizetype);
4359 if (cxx_dialect >= cxx11 && flag_exceptions)
4360 errval = throw_bad_array_new_length ();
4361 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4362 original_size, errval);
4363 }
4364 vec_safe_insert (*args, 0, *size);
4365 *args = resolve_args (*args, complain);
4366 if (*args == NULL)
4367 return error_mark_node;
4368
4369 /* Based on:
4370
4371 [expr.new]
4372
4373 If this lookup fails to find the name, or if the allocated type
4374 is not a class type, the allocation function's name is looked
4375 up in the global scope.
4376
4377 we disregard block-scope declarations of "operator new". */
4378 fns = lookup_name_real (fnname, 0, 1, /*block_p=*/false, 0, 0);
4379 fns = lookup_arg_dependent (fnname, fns, *args);
4380
4381 if (align_arg)
4382 {
4383 vec<tree, va_gc>* align_args
4384 = vec_copy_and_insert (*args, align_arg, 1);
4385 cand = perform_overload_resolution (fns, align_args, &candidates,
4386 &any_viable_p, tf_none);
4387 if (cand)
4388 *args = align_args;
4389 /* If no aligned allocation function matches, try again without the
4390 alignment. */
4391 }
4392
4393 /* Figure out what function is being called. */
4394 if (!cand)
4395 cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4396 complain);
4397
4398 /* If no suitable function could be found, issue an error message
4399 and give up. */
4400 if (!cand)
4401 {
4402 if (complain & tf_error)
4403 print_error_for_call_failure (fns, *args, candidates);
4404 return error_mark_node;
4405 }
4406
4407 /* If a cookie is required, add some extra space. Whether
4408 or not a cookie is required cannot be determined until
4409 after we know which function was called. */
4410 if (*cookie_size)
4411 {
4412 bool use_cookie = true;
4413 tree arg_types;
4414
4415 arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4416 /* Skip the size_t parameter. */
4417 arg_types = TREE_CHAIN (arg_types);
4418 /* Check the remaining parameters (if any). */
4419 if (arg_types
4420 && TREE_CHAIN (arg_types) == void_list_node
4421 && same_type_p (TREE_VALUE (arg_types),
4422 ptr_type_node))
4423 use_cookie = false;
4424 /* If we need a cookie, adjust the number of bytes allocated. */
4425 if (use_cookie)
4426 {
4427 /* Update the total size. */
4428 *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4429 if (size_check)
4430 {
4431 /* Set to (size_t)-1 if the size check fails. */
4432 gcc_assert (size_check != NULL_TREE);
4433 *size = fold_build3 (COND_EXPR, sizetype, size_check,
4434 *size, TYPE_MAX_VALUE (sizetype));
4435 }
4436 /* Update the argument list to reflect the adjusted size. */
4437 (**args)[0] = *size;
4438 }
4439 else
4440 *cookie_size = NULL_TREE;
4441 }
4442
4443 /* Tell our caller which function we decided to call. */
4444 if (fn)
4445 *fn = cand->fn;
4446
4447 /* Build the CALL_EXPR. */
4448 return build_over_call (cand, LOOKUP_NORMAL, complain);
4449 }
4450
4451 /* Build a new call to operator(). This may change ARGS. */
4452
4453 static tree
4454 build_op_call_1 (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4455 {
4456 struct z_candidate *candidates = 0, *cand;
4457 tree fns, convs, first_mem_arg = NULL_TREE;
4458 bool any_viable_p;
4459 tree result = NULL_TREE;
4460 void *p;
4461
4462 obj = mark_lvalue_use (obj);
4463
4464 if (error_operand_p (obj))
4465 return error_mark_node;
4466
4467 tree type = TREE_TYPE (obj);
4468
4469 obj = prep_operand (obj);
4470
4471 if (TYPE_PTRMEMFUNC_P (type))
4472 {
4473 if (complain & tf_error)
4474 /* It's no good looking for an overloaded operator() on a
4475 pointer-to-member-function. */
4476 error ("pointer-to-member function %qE cannot be called without "
4477 "an object; consider using %<.*%> or %<->*%>", obj);
4478 return error_mark_node;
4479 }
4480
4481 if (TYPE_BINFO (type))
4482 {
4483 fns = lookup_fnfields (TYPE_BINFO (type), call_op_identifier, 1);
4484 if (fns == error_mark_node)
4485 return error_mark_node;
4486 }
4487 else
4488 fns = NULL_TREE;
4489
4490 if (args != NULL && *args != NULL)
4491 {
4492 *args = resolve_args (*args, complain);
4493 if (*args == NULL)
4494 return error_mark_node;
4495 }
4496
4497 /* Get the high-water mark for the CONVERSION_OBSTACK. */
4498 p = conversion_obstack_alloc (0);
4499
4500 if (fns)
4501 {
4502 first_mem_arg = obj;
4503
4504 add_candidates (BASELINK_FUNCTIONS (fns),
4505 first_mem_arg, *args, NULL_TREE,
4506 NULL_TREE, false,
4507 BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
4508 LOOKUP_NORMAL, &candidates, complain);
4509 }
4510
4511 convs = lookup_conversions (type);
4512
4513 for (; convs; convs = TREE_CHAIN (convs))
4514 {
4515 tree totype = TREE_TYPE (convs);
4516
4517 if (TYPE_PTRFN_P (totype)
4518 || TYPE_REFFN_P (totype)
4519 || (TYPE_REF_P (totype)
4520 && TYPE_PTRFN_P (TREE_TYPE (totype))))
4521 for (ovl_iterator iter (TREE_VALUE (convs)); iter; ++iter)
4522 {
4523 tree fn = *iter;
4524
4525 if (DECL_NONCONVERTING_P (fn))
4526 continue;
4527
4528 if (TREE_CODE (fn) == TEMPLATE_DECL)
4529 add_template_conv_candidate
4530 (&candidates, fn, obj, *args, totype,
4531 /*access_path=*/NULL_TREE,
4532 /*conversion_path=*/NULL_TREE, complain);
4533 else
4534 add_conv_candidate (&candidates, fn, obj,
4535 *args, /*conversion_path=*/NULL_TREE,
4536 /*access_path=*/NULL_TREE, complain);
4537 }
4538 }
4539
4540 /* Be strict here because if we choose a bad conversion candidate, the
4541 errors we get won't mention the call context. */
4542 candidates = splice_viable (candidates, true, &any_viable_p);
4543 if (!any_viable_p)
4544 {
4545 if (complain & tf_error)
4546 {
4547 error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
4548 build_tree_list_vec (*args));
4549 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4550 }
4551 result = error_mark_node;
4552 }
4553 else
4554 {
4555 cand = tourney (candidates, complain);
4556 if (cand == 0)
4557 {
4558 if (complain & tf_error)
4559 {
4560 error ("call of %<(%T) (%A)%> is ambiguous",
4561 TREE_TYPE (obj), build_tree_list_vec (*args));
4562 print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
4563 }
4564 result = error_mark_node;
4565 }
4566 else if (TREE_CODE (cand->fn) == FUNCTION_DECL
4567 && DECL_OVERLOADED_OPERATOR_P (cand->fn)
4568 && DECL_OVERLOADED_OPERATOR_IS (cand->fn, CALL_EXPR))
4569 result = build_over_call (cand, LOOKUP_NORMAL, complain);
4570 else
4571 {
4572 if (TREE_CODE (cand->fn) == FUNCTION_DECL)
4573 obj = convert_like_with_context (cand->convs[0], obj, cand->fn,
4574 -1, complain);
4575 else
4576 {
4577 gcc_checking_assert (TYPE_P (cand->fn));
4578 obj = convert_like (cand->convs[0], obj, complain);
4579 }
4580 obj = convert_from_reference (obj);
4581 result = cp_build_function_call_vec (obj, args, complain);
4582 }
4583 }
4584
4585 /* Free all the conversions we allocated. */
4586 obstack_free (&conversion_obstack, p);
4587
4588 return result;
4589 }
4590
4591 /* Wrapper for above. */
4592
4593 tree
4594 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
4595 {
4596 tree ret;
4597 bool subtime = timevar_cond_start (TV_OVERLOAD);
4598 ret = build_op_call_1 (obj, args, complain);
4599 timevar_cond_stop (TV_OVERLOAD, subtime);
4600 return ret;
4601 }
4602
4603 /* Called by op_error to prepare format strings suitable for the error
4604 function. It concatenates a prefix (controlled by MATCH), ERRMSG,
4605 and a suffix (controlled by NTYPES). */
4606
4607 static const char *
4608 op_error_string (const char *errmsg, int ntypes, bool match)
4609 {
4610 const char *msg;
4611
4612 const char *msgp = concat (match ? G_("ambiguous overload for ")
4613 : G_("no match for "), errmsg, NULL);
4614
4615 if (ntypes == 3)
4616 msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
4617 else if (ntypes == 2)
4618 msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
4619 else
4620 msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
4621
4622 return msg;
4623 }
4624
4625 static void
4626 op_error (location_t loc, enum tree_code code, enum tree_code code2,
4627 tree arg1, tree arg2, tree arg3, bool match)
4628 {
4629 bool assop = code == MODIFY_EXPR;
4630 const char *opname = OVL_OP_INFO (assop, assop ? code2 : code)->name;
4631
4632 switch (code)
4633 {
4634 case COND_EXPR:
4635 if (flag_diagnostics_show_caret)
4636 error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
4637 3, match),
4638 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4639 else
4640 error_at (loc, op_error_string (G_("ternary %<operator?:%> "
4641 "in %<%E ? %E : %E%>"), 3, match),
4642 arg1, arg2, arg3,
4643 TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
4644 break;
4645
4646 case POSTINCREMENT_EXPR:
4647 case POSTDECREMENT_EXPR:
4648 if (flag_diagnostics_show_caret)
4649 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4650 opname, TREE_TYPE (arg1));
4651 else
4652 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
4653 1, match),
4654 opname, arg1, opname, TREE_TYPE (arg1));
4655 break;
4656
4657 case ARRAY_REF:
4658 if (flag_diagnostics_show_caret)
4659 error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
4660 TREE_TYPE (arg1), TREE_TYPE (arg2));
4661 else
4662 error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
4663 2, match),
4664 arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
4665 break;
4666
4667 case REALPART_EXPR:
4668 case IMAGPART_EXPR:
4669 if (flag_diagnostics_show_caret)
4670 error_at (loc, op_error_string (G_("%qs"), 1, match),
4671 opname, TREE_TYPE (arg1));
4672 else
4673 error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
4674 opname, opname, arg1, TREE_TYPE (arg1));
4675 break;
4676
4677 default:
4678 if (arg2)
4679 if (flag_diagnostics_show_caret)
4680 error_at (loc, op_error_string (G_("%<operator%s%>"), 2, match),
4681 opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
4682 else
4683 error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
4684 2, match),
4685 opname, arg1, opname, arg2,
4686 TREE_TYPE (arg1), TREE_TYPE (arg2));
4687 else
4688 if (flag_diagnostics_show_caret)
4689 error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
4690 opname, TREE_TYPE (arg1));
4691 else
4692 error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
4693 1, match),
4694 opname, opname, arg1, TREE_TYPE (arg1));
4695 break;
4696 }
4697 }
4698
4699 /* Return the implicit conversion sequence that could be used to
4700 convert E1 to E2 in [expr.cond]. */
4701
4702 static conversion *
4703 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
4704 {
4705 tree t1 = non_reference (TREE_TYPE (e1));
4706 tree t2 = non_reference (TREE_TYPE (e2));
4707 conversion *conv;
4708 bool good_base;
4709
4710 /* [expr.cond]
4711
4712 If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
4713 implicitly converted (clause _conv_) to the type "lvalue reference to
4714 T2", subject to the constraint that in the conversion the
4715 reference must bind directly (_dcl.init.ref_) to an lvalue.
4716
4717 If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
4718 implicitly converted to the type "rvalue reference to T2", subject to
4719 the constraint that the reference must bind directly. */
4720 if (glvalue_p (e2))
4721 {
4722 tree rtype = cp_build_reference_type (t2, !lvalue_p (e2));
4723 conv = implicit_conversion (rtype,
4724 t1,
4725 e1,
4726 /*c_cast_p=*/false,
4727 LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
4728 |LOOKUP_ONLYCONVERTING,
4729 complain);
4730 if (conv && !conv->bad_p)
4731 return conv;
4732 }
4733
4734 /* If E2 is a prvalue or if neither of the conversions above can be done
4735 and at least one of the operands has (possibly cv-qualified) class
4736 type: */
4737 if (!CLASS_TYPE_P (t1) && !CLASS_TYPE_P (t2))
4738 return NULL;
4739
4740 /* [expr.cond]
4741
4742 If E1 and E2 have class type, and the underlying class types are
4743 the same or one is a base class of the other: E1 can be converted
4744 to match E2 if the class of T2 is the same type as, or a base
4745 class of, the class of T1, and the cv-qualification of T2 is the
4746 same cv-qualification as, or a greater cv-qualification than, the
4747 cv-qualification of T1. If the conversion is applied, E1 is
4748 changed to an rvalue of type T2 that still refers to the original
4749 source class object (or the appropriate subobject thereof). */
4750 if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
4751 && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
4752 {
4753 if (good_base && at_least_as_qualified_p (t2, t1))
4754 {
4755 conv = build_identity_conv (t1, e1);
4756 if (!same_type_p (TYPE_MAIN_VARIANT (t1),
4757 TYPE_MAIN_VARIANT (t2)))
4758 conv = build_conv (ck_base, t2, conv);
4759 else
4760 conv = build_conv (ck_rvalue, t2, conv);
4761 return conv;
4762 }
4763 else
4764 return NULL;
4765 }
4766 else
4767 /* [expr.cond]
4768
4769 Otherwise: E1 can be converted to match E2 if E1 can be implicitly
4770 converted to the type that expression E2 would have if E2 were
4771 converted to an rvalue (or the type it has, if E2 is an rvalue). */
4772 return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
4773 LOOKUP_IMPLICIT, complain);
4774 }
4775
4776 /* Implement [expr.cond]. ARG1, ARG2, and ARG3 are the three
4777 arguments to the conditional expression. */
4778
4779 static tree
4780 build_conditional_expr_1 (location_t loc, tree arg1, tree arg2, tree arg3,
4781 tsubst_flags_t complain)
4782 {
4783 tree arg2_type;
4784 tree arg3_type;
4785 tree result = NULL_TREE;
4786 tree result_type = NULL_TREE;
4787 bool is_glvalue = true;
4788 struct z_candidate *candidates = 0;
4789 struct z_candidate *cand;
4790 void *p;
4791 tree orig_arg2, orig_arg3;
4792
4793 /* As a G++ extension, the second argument to the conditional can be
4794 omitted. (So that `a ? : c' is roughly equivalent to `a ? a :
4795 c'.) If the second operand is omitted, make sure it is
4796 calculated only once. */
4797 if (!arg2)
4798 {
4799 if (complain & tf_error)
4800 pedwarn (loc, OPT_Wpedantic,
4801 "ISO C++ forbids omitting the middle term of a ?: expression");
4802
4803 if ((complain & tf_warning) && !truth_value_p (TREE_CODE (arg1)))
4804 warn_for_omitted_condop (loc, arg1);
4805
4806 /* Make sure that lvalues remain lvalues. See g++.oliva/ext1.C. */
4807 if (lvalue_p (arg1))
4808 arg2 = arg1 = cp_stabilize_reference (arg1);
4809 else
4810 arg2 = arg1 = cp_save_expr (arg1);
4811 }
4812
4813 /* If something has already gone wrong, just pass that fact up the
4814 tree. */
4815 if (error_operand_p (arg1)
4816 || error_operand_p (arg2)
4817 || error_operand_p (arg3))
4818 return error_mark_node;
4819
4820 orig_arg2 = arg2;
4821 orig_arg3 = arg3;
4822
4823 if (VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
4824 {
4825 tree arg1_type = TREE_TYPE (arg1);
4826
4827 /* If arg1 is another cond_expr choosing between -1 and 0,
4828 then we can use its comparison. It may help to avoid
4829 additional comparison, produce more accurate diagnostics
4830 and enables folding. */
4831 if (TREE_CODE (arg1) == VEC_COND_EXPR
4832 && integer_minus_onep (TREE_OPERAND (arg1, 1))
4833 && integer_zerop (TREE_OPERAND (arg1, 2)))
4834 arg1 = TREE_OPERAND (arg1, 0);
4835
4836 arg1 = force_rvalue (arg1, complain);
4837 arg2 = force_rvalue (arg2, complain);
4838 arg3 = force_rvalue (arg3, complain);
4839
4840 /* force_rvalue can return error_mark on valid arguments. */
4841 if (error_operand_p (arg1)
4842 || error_operand_p (arg2)
4843 || error_operand_p (arg3))
4844 return error_mark_node;
4845
4846 arg2_type = TREE_TYPE (arg2);
4847 arg3_type = TREE_TYPE (arg3);
4848
4849 if (!VECTOR_TYPE_P (arg2_type)
4850 && !VECTOR_TYPE_P (arg3_type))
4851 {
4852 /* Rely on the error messages of the scalar version. */
4853 tree scal = build_conditional_expr_1 (loc, integer_one_node,
4854 orig_arg2, orig_arg3, complain);
4855 if (scal == error_mark_node)
4856 return error_mark_node;
4857 tree stype = TREE_TYPE (scal);
4858 tree ctype = TREE_TYPE (arg1_type);
4859 if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
4860 || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
4861 {
4862 if (complain & tf_error)
4863 error_at (loc, "inferred scalar type %qT is not an integer or "
4864 "floating point type of the same size as %qT", stype,
4865 COMPARISON_CLASS_P (arg1)
4866 ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
4867 : ctype);
4868 return error_mark_node;
4869 }
4870
4871 tree vtype = build_opaque_vector_type (stype,
4872 TYPE_VECTOR_SUBPARTS (arg1_type));
4873 /* We could pass complain & tf_warning to unsafe_conversion_p,
4874 but the warnings (like Wsign-conversion) have already been
4875 given by the scalar build_conditional_expr_1. We still check
4876 unsafe_conversion_p to forbid truncating long long -> float. */
4877 if (unsafe_conversion_p (loc, stype, arg2, NULL_TREE, false))
4878 {
4879 if (complain & tf_error)
4880 error_at (loc, "conversion of scalar %qH to vector %qI "
4881 "involves truncation", arg2_type, vtype);
4882 return error_mark_node;
4883 }
4884 if (unsafe_conversion_p (loc, stype, arg3, NULL_TREE, false))
4885 {
4886 if (complain & tf_error)
4887 error_at (loc, "conversion of scalar %qH to vector %qI "
4888 "involves truncation", arg3_type, vtype);
4889 return error_mark_node;
4890 }
4891
4892 arg2 = cp_convert (stype, arg2, complain);
4893 arg2 = save_expr (arg2);
4894 arg2 = build_vector_from_val (vtype, arg2);
4895 arg2_type = vtype;
4896 arg3 = cp_convert (stype, arg3, complain);
4897 arg3 = save_expr (arg3);
4898 arg3 = build_vector_from_val (vtype, arg3);
4899 arg3_type = vtype;
4900 }
4901
4902 if (VECTOR_TYPE_P (arg2_type) != VECTOR_TYPE_P (arg3_type))
4903 {
4904 enum stv_conv convert_flag =
4905 scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
4906 complain & tf_error);
4907
4908 switch (convert_flag)
4909 {
4910 case stv_error:
4911 return error_mark_node;
4912 case stv_firstarg:
4913 {
4914 arg2 = save_expr (arg2);
4915 arg2 = convert (TREE_TYPE (arg3_type), arg2);
4916 arg2 = build_vector_from_val (arg3_type, arg2);
4917 arg2_type = TREE_TYPE (arg2);
4918 break;
4919 }
4920 case stv_secondarg:
4921 {
4922 arg3 = save_expr (arg3);
4923 arg3 = convert (TREE_TYPE (arg2_type), arg3);
4924 arg3 = build_vector_from_val (arg2_type, arg3);
4925 arg3_type = TREE_TYPE (arg3);
4926 break;
4927 }
4928 default:
4929 break;
4930 }
4931 }
4932
4933 if (!same_type_p (arg2_type, arg3_type)
4934 || maybe_ne (TYPE_VECTOR_SUBPARTS (arg1_type),
4935 TYPE_VECTOR_SUBPARTS (arg2_type))
4936 || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
4937 {
4938 if (complain & tf_error)
4939 error_at (loc,
4940 "incompatible vector types in conditional expression: "
4941 "%qT, %qT and %qT", TREE_TYPE (arg1),
4942 TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
4943 return error_mark_node;
4944 }
4945
4946 if (!COMPARISON_CLASS_P (arg1))
4947 {
4948 tree cmp_type = build_same_sized_truth_vector_type (arg1_type);
4949 arg1 = build2 (NE_EXPR, cmp_type, arg1, build_zero_cst (arg1_type));
4950 }
4951 return build3_loc (loc, VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
4952 }
4953
4954 /* [expr.cond]
4955
4956 The first expression is implicitly converted to bool (clause
4957 _conv_). */
4958 arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
4959 LOOKUP_NORMAL);
4960 if (error_operand_p (arg1))
4961 return error_mark_node;
4962
4963 /* [expr.cond]
4964
4965 If either the second or the third operand has type (possibly
4966 cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
4967 array-to-pointer (_conv.array_), and function-to-pointer
4968 (_conv.func_) standard conversions are performed on the second
4969 and third operands. */
4970 arg2_type = unlowered_expr_type (arg2);
4971 arg3_type = unlowered_expr_type (arg3);
4972 if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
4973 {
4974 /* [expr.cond]
4975
4976 One of the following shall hold:
4977
4978 --The second or the third operand (but not both) is a
4979 throw-expression (_except.throw_); the result is of the type
4980 and value category of the other.
4981
4982 --Both the second and the third operands have type void; the
4983 result is of type void and is a prvalue. */
4984 if (TREE_CODE (arg2) == THROW_EXPR
4985 && TREE_CODE (arg3) != THROW_EXPR)
4986 {
4987 result_type = arg3_type;
4988 is_glvalue = glvalue_p (arg3);
4989 }
4990 else if (TREE_CODE (arg2) != THROW_EXPR
4991 && TREE_CODE (arg3) == THROW_EXPR)
4992 {
4993 result_type = arg2_type;
4994 is_glvalue = glvalue_p (arg2);
4995 }
4996 else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
4997 {
4998 result_type = void_type_node;
4999 is_glvalue = false;
5000 }
5001 else
5002 {
5003 if (complain & tf_error)
5004 {
5005 if (VOID_TYPE_P (arg2_type))
5006 error_at (EXPR_LOC_OR_LOC (arg3, loc),
5007 "second operand to the conditional operator "
5008 "is of type %<void%>, but the third operand is "
5009 "neither a throw-expression nor of type %<void%>");
5010 else
5011 error_at (EXPR_LOC_OR_LOC (arg2, loc),
5012 "third operand to the conditional operator "
5013 "is of type %<void%>, but the second operand is "
5014 "neither a throw-expression nor of type %<void%>");
5015 }
5016 return error_mark_node;
5017 }
5018
5019 goto valid_operands;
5020 }
5021 /* [expr.cond]
5022
5023 Otherwise, if the second and third operand have different types,
5024 and either has (possibly cv-qualified) class type, or if both are
5025 glvalues of the same value category and the same type except for
5026 cv-qualification, an attempt is made to convert each of those operands
5027 to the type of the other. */
5028 else if (!same_type_p (arg2_type, arg3_type)
5029 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)
5030 || (same_type_ignoring_top_level_qualifiers_p (arg2_type,
5031 arg3_type)
5032 && glvalue_p (arg2) && glvalue_p (arg3)
5033 && lvalue_p (arg2) == lvalue_p (arg3))))
5034 {
5035 conversion *conv2;
5036 conversion *conv3;
5037 bool converted = false;
5038
5039 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5040 p = conversion_obstack_alloc (0);
5041
5042 conv2 = conditional_conversion (arg2, arg3, complain);
5043 conv3 = conditional_conversion (arg3, arg2, complain);
5044
5045 /* [expr.cond]
5046
5047 If both can be converted, or one can be converted but the
5048 conversion is ambiguous, the program is ill-formed. If
5049 neither can be converted, the operands are left unchanged and
5050 further checking is performed as described below. If exactly
5051 one conversion is possible, that conversion is applied to the
5052 chosen operand and the converted operand is used in place of
5053 the original operand for the remainder of this section. */
5054 if ((conv2 && !conv2->bad_p
5055 && conv3 && !conv3->bad_p)
5056 || (conv2 && conv2->kind == ck_ambig)
5057 || (conv3 && conv3->kind == ck_ambig))
5058 {
5059 if (complain & tf_error)
5060 {
5061 error_at (loc, "operands to ?: have different types %qT and %qT",
5062 arg2_type, arg3_type);
5063 if (conv2 && !conv2->bad_p && conv3 && !conv3->bad_p)
5064 inform (loc, " and each type can be converted to the other");
5065 else if (conv2 && conv2->kind == ck_ambig)
5066 convert_like (conv2, arg2, complain);
5067 else
5068 convert_like (conv3, arg3, complain);
5069 }
5070 result = error_mark_node;
5071 }
5072 else if (conv2 && !conv2->bad_p)
5073 {
5074 arg2 = convert_like (conv2, arg2, complain);
5075 arg2 = convert_from_reference (arg2);
5076 arg2_type = TREE_TYPE (arg2);
5077 /* Even if CONV2 is a valid conversion, the result of the
5078 conversion may be invalid. For example, if ARG3 has type
5079 "volatile X", and X does not have a copy constructor
5080 accepting a "volatile X&", then even if ARG2 can be
5081 converted to X, the conversion will fail. */
5082 if (error_operand_p (arg2))
5083 result = error_mark_node;
5084 converted = true;
5085 }
5086 else if (conv3 && !conv3->bad_p)
5087 {
5088 arg3 = convert_like (conv3, arg3, complain);
5089 arg3 = convert_from_reference (arg3);
5090 arg3_type = TREE_TYPE (arg3);
5091 if (error_operand_p (arg3))
5092 result = error_mark_node;
5093 converted = true;
5094 }
5095
5096 /* Free all the conversions we allocated. */
5097 obstack_free (&conversion_obstack, p);
5098
5099 if (result)
5100 return result;
5101
5102 /* If, after the conversion, both operands have class type,
5103 treat the cv-qualification of both operands as if it were the
5104 union of the cv-qualification of the operands.
5105
5106 The standard is not clear about what to do in this
5107 circumstance. For example, if the first operand has type
5108 "const X" and the second operand has a user-defined
5109 conversion to "volatile X", what is the type of the second
5110 operand after this step? Making it be "const X" (matching
5111 the first operand) seems wrong, as that discards the
5112 qualification without actually performing a copy. Leaving it
5113 as "volatile X" seems wrong as that will result in the
5114 conditional expression failing altogether, even though,
5115 according to this step, the one operand could be converted to
5116 the type of the other. */
5117 if (converted
5118 && CLASS_TYPE_P (arg2_type)
5119 && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
5120 arg2_type = arg3_type =
5121 cp_build_qualified_type (arg2_type,
5122 cp_type_quals (arg2_type)
5123 | cp_type_quals (arg3_type));
5124 }
5125
5126 /* [expr.cond]
5127
5128 If the second and third operands are glvalues of the same value
5129 category and have the same type, the result is of that type and
5130 value category. */
5131 if (((lvalue_p (arg2) && lvalue_p (arg3))
5132 || (xvalue_p (arg2) && xvalue_p (arg3)))
5133 && same_type_p (arg2_type, arg3_type))
5134 {
5135 result_type = arg2_type;
5136 arg2 = mark_lvalue_use (arg2);
5137 arg3 = mark_lvalue_use (arg3);
5138 goto valid_operands;
5139 }
5140
5141 /* [expr.cond]
5142
5143 Otherwise, the result is an rvalue. If the second and third
5144 operand do not have the same type, and either has (possibly
5145 cv-qualified) class type, overload resolution is used to
5146 determine the conversions (if any) to be applied to the operands
5147 (_over.match.oper_, _over.built_). */
5148 is_glvalue = false;
5149 if (!same_type_p (arg2_type, arg3_type)
5150 && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
5151 {
5152 tree args[3];
5153 conversion *conv;
5154 bool any_viable_p;
5155
5156 /* Rearrange the arguments so that add_builtin_candidate only has
5157 to know about two args. In build_builtin_candidate, the
5158 arguments are unscrambled. */
5159 args[0] = arg2;
5160 args[1] = arg3;
5161 args[2] = arg1;
5162 add_builtin_candidates (&candidates,
5163 COND_EXPR,
5164 NOP_EXPR,
5165 ovl_op_identifier (false, COND_EXPR),
5166 args,
5167 LOOKUP_NORMAL, complain);
5168
5169 /* [expr.cond]
5170
5171 If the overload resolution fails, the program is
5172 ill-formed. */
5173 candidates = splice_viable (candidates, false, &any_viable_p);
5174 if (!any_viable_p)
5175 {
5176 if (complain & tf_error)
5177 error_at (loc, "operands to ?: have different types %qT and %qT",
5178 arg2_type, arg3_type);
5179 return error_mark_node;
5180 }
5181 cand = tourney (candidates, complain);
5182 if (!cand)
5183 {
5184 if (complain & tf_error)
5185 {
5186 op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
5187 print_z_candidates (loc, candidates);
5188 }
5189 return error_mark_node;
5190 }
5191
5192 /* [expr.cond]
5193
5194 Otherwise, the conversions thus determined are applied, and
5195 the converted operands are used in place of the original
5196 operands for the remainder of this section. */
5197 conv = cand->convs[0];
5198 arg1 = convert_like (conv, arg1, complain);
5199 conv = cand->convs[1];
5200 arg2 = convert_like (conv, arg2, complain);
5201 arg2_type = TREE_TYPE (arg2);
5202 conv = cand->convs[2];
5203 arg3 = convert_like (conv, arg3, complain);
5204 arg3_type = TREE_TYPE (arg3);
5205 }
5206
5207 /* [expr.cond]
5208
5209 Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
5210 and function-to-pointer (_conv.func_) standard conversions are
5211 performed on the second and third operands.
5212
5213 We need to force the lvalue-to-rvalue conversion here for class types,
5214 so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
5215 that isn't wrapped with a TARGET_EXPR plays havoc with exception
5216 regions. */
5217
5218 arg2 = force_rvalue (arg2, complain);
5219 if (!CLASS_TYPE_P (arg2_type))
5220 arg2_type = TREE_TYPE (arg2);
5221
5222 arg3 = force_rvalue (arg3, complain);
5223 if (!CLASS_TYPE_P (arg3_type))
5224 arg3_type = TREE_TYPE (arg3);
5225
5226 if (arg2 == error_mark_node || arg3 == error_mark_node)
5227 return error_mark_node;
5228
5229 /* [expr.cond]
5230
5231 After those conversions, one of the following shall hold:
5232
5233 --The second and third operands have the same type; the result is of
5234 that type. */
5235 if (same_type_p (arg2_type, arg3_type))
5236 result_type = arg2_type;
5237 /* [expr.cond]
5238
5239 --The second and third operands have arithmetic or enumeration
5240 type; the usual arithmetic conversions are performed to bring
5241 them to a common type, and the result is of that type. */
5242 else if ((ARITHMETIC_TYPE_P (arg2_type)
5243 || UNSCOPED_ENUM_P (arg2_type))
5244 && (ARITHMETIC_TYPE_P (arg3_type)
5245 || UNSCOPED_ENUM_P (arg3_type)))
5246 {
5247 /* In this case, there is always a common type. */
5248 result_type = type_after_usual_arithmetic_conversions (arg2_type,
5249 arg3_type);
5250 if (complain & tf_warning)
5251 do_warn_double_promotion (result_type, arg2_type, arg3_type,
5252 "implicit conversion from %qH to %qI to "
5253 "match other result of conditional",
5254 loc);
5255
5256 if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
5257 && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
5258 {
5259 if (TREE_CODE (orig_arg2) == CONST_DECL
5260 && TREE_CODE (orig_arg3) == CONST_DECL
5261 && DECL_CONTEXT (orig_arg2) == DECL_CONTEXT (orig_arg3))
5262 /* Two enumerators from the same enumeration can have different
5263 types when the enumeration is still being defined. */;
5264 else if (complain & tf_warning)
5265 warning_at (loc, OPT_Wenum_compare, "enumeral mismatch in "
5266 "conditional expression: %qT vs %qT",
5267 arg2_type, arg3_type);
5268 }
5269 else if (extra_warnings
5270 && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5271 && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
5272 || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
5273 && !same_type_p (arg2_type,
5274 type_promotes_to (arg3_type)))))
5275 {
5276 if (complain & tf_warning)
5277 warning_at (loc, OPT_Wextra, "enumeral and non-enumeral type in "
5278 "conditional expression");
5279 }
5280
5281 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5282 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5283 }
5284 /* [expr.cond]
5285
5286 --The second and third operands have pointer type, or one has
5287 pointer type and the other is a null pointer constant; pointer
5288 conversions (_conv.ptr_) and qualification conversions
5289 (_conv.qual_) are performed to bring them to their composite
5290 pointer type (_expr.rel_). The result is of the composite
5291 pointer type.
5292
5293 --The second and third operands have pointer to member type, or
5294 one has pointer to member type and the other is a null pointer
5295 constant; pointer to member conversions (_conv.mem_) and
5296 qualification conversions (_conv.qual_) are performed to bring
5297 them to a common type, whose cv-qualification shall match the
5298 cv-qualification of either the second or the third operand.
5299 The result is of the common type. */
5300 else if ((null_ptr_cst_p (arg2)
5301 && TYPE_PTR_OR_PTRMEM_P (arg3_type))
5302 || (null_ptr_cst_p (arg3)
5303 && TYPE_PTR_OR_PTRMEM_P (arg2_type))
5304 || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
5305 || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
5306 || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
5307 {
5308 result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
5309 arg3, CPO_CONDITIONAL_EXPR,
5310 complain);
5311 if (result_type == error_mark_node)
5312 return error_mark_node;
5313 arg2 = perform_implicit_conversion (result_type, arg2, complain);
5314 arg3 = perform_implicit_conversion (result_type, arg3, complain);
5315 }
5316
5317 if (!result_type)
5318 {
5319 if (complain & tf_error)
5320 error_at (loc, "operands to ?: have different types %qT and %qT",
5321 arg2_type, arg3_type);
5322 return error_mark_node;
5323 }
5324
5325 if (arg2 == error_mark_node || arg3 == error_mark_node)
5326 return error_mark_node;
5327
5328 valid_operands:
5329 if (processing_template_decl && is_glvalue)
5330 {
5331 /* Let lvalue_kind know this was a glvalue. */
5332 tree arg = (result_type == arg2_type ? arg2 : arg3);
5333 result_type = cp_build_reference_type (result_type, xvalue_p (arg));
5334 }
5335
5336 result = build3_loc (loc, COND_EXPR, result_type, arg1, arg2, arg3);
5337
5338 /* If the ARG2 and ARG3 are the same and don't have side-effects,
5339 warn here, because the COND_EXPR will be turned into ARG2. */
5340 if (warn_duplicated_branches
5341 && (complain & tf_warning)
5342 && (arg2 == arg3 || operand_equal_p (arg2, arg3, 0)))
5343 warning_at (EXPR_LOCATION (result), OPT_Wduplicated_branches,
5344 "this condition has identical branches");
5345
5346 /* We can't use result_type below, as fold might have returned a
5347 throw_expr. */
5348
5349 if (!is_glvalue)
5350 {
5351 /* Expand both sides into the same slot, hopefully the target of
5352 the ?: expression. We used to check for TARGET_EXPRs here,
5353 but now we sometimes wrap them in NOP_EXPRs so the test would
5354 fail. */
5355 if (CLASS_TYPE_P (TREE_TYPE (result)))
5356 result = get_target_expr_sfinae (result, complain);
5357 /* If this expression is an rvalue, but might be mistaken for an
5358 lvalue, we must add a NON_LVALUE_EXPR. */
5359 result = rvalue (result);
5360 }
5361 else
5362 result = force_paren_expr (result);
5363
5364 return result;
5365 }
5366
5367 /* Wrapper for above. */
5368
5369 tree
5370 build_conditional_expr (location_t loc, tree arg1, tree arg2, tree arg3,
5371 tsubst_flags_t complain)
5372 {
5373 tree ret;
5374 bool subtime = timevar_cond_start (TV_OVERLOAD);
5375 ret = build_conditional_expr_1 (loc, arg1, arg2, arg3, complain);
5376 timevar_cond_stop (TV_OVERLOAD, subtime);
5377 return ret;
5378 }
5379
5380 /* OPERAND is an operand to an expression. Perform necessary steps
5381 required before using it. If OPERAND is NULL_TREE, NULL_TREE is
5382 returned. */
5383
5384 static tree
5385 prep_operand (tree operand)
5386 {
5387 if (operand)
5388 {
5389 if (CLASS_TYPE_P (TREE_TYPE (operand))
5390 && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5391 /* Make sure the template type is instantiated now. */
5392 instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5393 }
5394
5395 return operand;
5396 }
5397
5398 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
5399 OVERLOAD) to the CANDIDATES, returning an updated list of
5400 CANDIDATES. The ARGS are the arguments provided to the call;
5401 if FIRST_ARG is non-null it is the implicit object argument,
5402 otherwise the first element of ARGS is used if needed. The
5403 EXPLICIT_TARGS are explicit template arguments provided.
5404 TEMPLATE_ONLY is true if only template functions should be
5405 considered. CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
5406 add_function_candidate. */
5407
5408 static void
5409 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
5410 tree return_type,
5411 tree explicit_targs, bool template_only,
5412 tree conversion_path, tree access_path,
5413 int flags,
5414 struct z_candidate **candidates,
5415 tsubst_flags_t complain)
5416 {
5417 tree ctype;
5418 const vec<tree, va_gc> *non_static_args;
5419 bool check_list_ctor = false;
5420 bool check_converting = false;
5421 unification_kind_t strict;
5422
5423 if (!fns)
5424 return;
5425
5426 /* Precalculate special handling of constructors and conversion ops. */
5427 tree fn = OVL_FIRST (fns);
5428 if (DECL_CONV_FN_P (fn))
5429 {
5430 check_list_ctor = false;
5431 check_converting = (flags & LOOKUP_ONLYCONVERTING) != 0;
5432 if (flags & LOOKUP_NO_CONVERSION)
5433 /* We're doing return_type(x). */
5434 strict = DEDUCE_CONV;
5435 else
5436 /* We're doing x.operator return_type(). */
5437 strict = DEDUCE_EXACT;
5438 /* [over.match.funcs] For conversion functions, the function
5439 is considered to be a member of the class of the implicit
5440 object argument for the purpose of defining the type of
5441 the implicit object parameter. */
5442 ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
5443 }
5444 else
5445 {
5446 if (DECL_CONSTRUCTOR_P (fn))
5447 {
5448 check_list_ctor = (flags & LOOKUP_LIST_ONLY) != 0;
5449 /* For list-initialization we consider explicit constructors
5450 and complain if one is chosen. */
5451 check_converting
5452 = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
5453 == LOOKUP_ONLYCONVERTING);
5454 }
5455 strict = DEDUCE_CALL;
5456 ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
5457 }
5458
5459 if (first_arg)
5460 non_static_args = args;
5461 else
5462 /* Delay creating the implicit this parameter until it is needed. */
5463 non_static_args = NULL;
5464
5465 for (lkp_iterator iter (fns); iter; ++iter)
5466 {
5467 fn = *iter;
5468
5469 if (check_converting && DECL_NONCONVERTING_P (fn))
5470 continue;
5471 if (check_list_ctor && !is_list_ctor (fn))
5472 continue;
5473
5474 tree fn_first_arg = NULL_TREE;
5475 const vec<tree, va_gc> *fn_args = args;
5476
5477 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
5478 {
5479 /* Figure out where the object arg comes from. If this
5480 function is a non-static member and we didn't get an
5481 implicit object argument, move it out of args. */
5482 if (first_arg == NULL_TREE)
5483 {
5484 unsigned int ix;
5485 tree arg;
5486 vec<tree, va_gc> *tempvec;
5487 vec_alloc (tempvec, args->length () - 1);
5488 for (ix = 1; args->iterate (ix, &arg); ++ix)
5489 tempvec->quick_push (arg);
5490 non_static_args = tempvec;
5491 first_arg = (*args)[0];
5492 }
5493
5494 fn_first_arg = first_arg;
5495 fn_args = non_static_args;
5496 }
5497
5498 if (TREE_CODE (fn) == TEMPLATE_DECL)
5499 add_template_candidate (candidates,
5500 fn,
5501 ctype,
5502 explicit_targs,
5503 fn_first_arg,
5504 fn_args,
5505 return_type,
5506 access_path,
5507 conversion_path,
5508 flags,
5509 strict,
5510 complain);
5511 else if (!template_only)
5512 add_function_candidate (candidates,
5513 fn,
5514 ctype,
5515 fn_first_arg,
5516 fn_args,
5517 access_path,
5518 conversion_path,
5519 flags,
5520 complain);
5521 }
5522 }
5523
5524 /* Returns 1 if P0145R2 says that the LHS of operator CODE is evaluated first,
5525 -1 if the RHS is evaluated first, or 0 if the order is unspecified. */
5526
5527 static int
5528 op_is_ordered (tree_code code)
5529 {
5530 switch (code)
5531 {
5532 // 5. b @= a
5533 case MODIFY_EXPR:
5534 return (flag_strong_eval_order > 1 ? -1 : 0);
5535
5536 // 6. a[b]
5537 case ARRAY_REF:
5538 return (flag_strong_eval_order > 1 ? 1 : 0);
5539
5540 // 1. a.b
5541 // Not overloadable (yet).
5542 // 2. a->b
5543 // Only one argument.
5544 // 3. a->*b
5545 case MEMBER_REF:
5546 // 7. a << b
5547 case LSHIFT_EXPR:
5548 // 8. a >> b
5549 case RSHIFT_EXPR:
5550 return (flag_strong_eval_order ? 1 : 0);
5551
5552 default:
5553 return 0;
5554 }
5555 }
5556
5557 static tree
5558 build_new_op_1 (location_t loc, enum tree_code code, int flags, tree arg1,
5559 tree arg2, tree arg3, tree *overload, tsubst_flags_t complain)
5560 {
5561 struct z_candidate *candidates = 0, *cand;
5562 vec<tree, va_gc> *arglist;
5563 tree args[3];
5564 tree result = NULL_TREE;
5565 bool result_valid_p = false;
5566 enum tree_code code2 = NOP_EXPR;
5567 enum tree_code code_orig_arg1 = ERROR_MARK;
5568 enum tree_code code_orig_arg2 = ERROR_MARK;
5569 conversion *conv;
5570 void *p;
5571 bool strict_p;
5572 bool any_viable_p;
5573
5574 if (error_operand_p (arg1)
5575 || error_operand_p (arg2)
5576 || error_operand_p (arg3))
5577 return error_mark_node;
5578
5579 bool ismodop = code == MODIFY_EXPR;
5580 if (ismodop)
5581 {
5582 code2 = TREE_CODE (arg3);
5583 arg3 = NULL_TREE;
5584 }
5585 tree fnname = ovl_op_identifier (ismodop, ismodop ? code2 : code);
5586
5587 arg1 = prep_operand (arg1);
5588
5589 bool memonly = false;
5590 switch (code)
5591 {
5592 case NEW_EXPR:
5593 case VEC_NEW_EXPR:
5594 case VEC_DELETE_EXPR:
5595 case DELETE_EXPR:
5596 /* Use build_op_new_call and build_op_delete_call instead. */
5597 gcc_unreachable ();
5598
5599 case CALL_EXPR:
5600 /* Use build_op_call instead. */
5601 gcc_unreachable ();
5602
5603 case TRUTH_ORIF_EXPR:
5604 case TRUTH_ANDIF_EXPR:
5605 case TRUTH_AND_EXPR:
5606 case TRUTH_OR_EXPR:
5607 /* These are saved for the sake of warn_logical_operator. */
5608 code_orig_arg1 = TREE_CODE (arg1);
5609 code_orig_arg2 = TREE_CODE (arg2);
5610 break;
5611 case GT_EXPR:
5612 case LT_EXPR:
5613 case GE_EXPR:
5614 case LE_EXPR:
5615 case EQ_EXPR:
5616 case NE_EXPR:
5617 /* These are saved for the sake of maybe_warn_bool_compare. */
5618 code_orig_arg1 = TREE_CODE (TREE_TYPE (arg1));
5619 code_orig_arg2 = TREE_CODE (TREE_TYPE (arg2));
5620 break;
5621
5622 /* =, ->, [], () must be non-static member functions. */
5623 case MODIFY_EXPR:
5624 if (code2 != NOP_EXPR)
5625 break;
5626 /* FALLTHRU */
5627 case COMPONENT_REF:
5628 case ARRAY_REF:
5629 memonly = true;
5630 break;
5631
5632 default:
5633 break;
5634 }
5635
5636 arg2 = prep_operand (arg2);
5637 arg3 = prep_operand (arg3);
5638
5639 if (code == COND_EXPR)
5640 /* Use build_conditional_expr instead. */
5641 gcc_unreachable ();
5642 else if (! OVERLOAD_TYPE_P (TREE_TYPE (arg1))
5643 && (! arg2 || ! OVERLOAD_TYPE_P (TREE_TYPE (arg2))))
5644 goto builtin;
5645
5646 if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
5647 arg2 = integer_zero_node;
5648
5649 vec_alloc (arglist, 3);
5650 arglist->quick_push (arg1);
5651 if (arg2 != NULL_TREE)
5652 arglist->quick_push (arg2);
5653 if (arg3 != NULL_TREE)
5654 arglist->quick_push (arg3);
5655
5656 /* Get the high-water mark for the CONVERSION_OBSTACK. */
5657 p = conversion_obstack_alloc (0);
5658
5659 /* Add namespace-scope operators to the list of functions to
5660 consider. */
5661 if (!memonly)
5662 {
5663 tree fns = lookup_name_real (fnname, 0, 1, /*block_p=*/true, 0, 0);
5664 fns = lookup_arg_dependent (fnname, fns, arglist);
5665 add_candidates (fns, NULL_TREE, arglist, NULL_TREE,
5666 NULL_TREE, false, NULL_TREE, NULL_TREE,
5667 flags, &candidates, complain);
5668 }
5669
5670 args[0] = arg1;
5671 args[1] = arg2;
5672 args[2] = NULL_TREE;
5673
5674 /* Add class-member operators to the candidate set. */
5675 if (CLASS_TYPE_P (TREE_TYPE (arg1)))
5676 {
5677 tree fns;
5678
5679 fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
5680 if (fns == error_mark_node)
5681 {
5682 result = error_mark_node;
5683 goto user_defined_result_ready;
5684 }
5685 if (fns)
5686 add_candidates (BASELINK_FUNCTIONS (fns),
5687 NULL_TREE, arglist, NULL_TREE,
5688 NULL_TREE, false,
5689 BASELINK_BINFO (fns),
5690 BASELINK_ACCESS_BINFO (fns),
5691 flags, &candidates, complain);
5692 }
5693 /* Per 13.3.1.2/3, 2nd bullet, if no operand has a class type, then
5694 only non-member functions that have type T1 or reference to
5695 cv-qualified-opt T1 for the first argument, if the first argument
5696 has an enumeration type, or T2 or reference to cv-qualified-opt
5697 T2 for the second argument, if the second argument has an
5698 enumeration type. Filter out those that don't match. */
5699 else if (! arg2 || ! CLASS_TYPE_P (TREE_TYPE (arg2)))
5700 {
5701 struct z_candidate **candp, **next;
5702
5703 for (candp = &candidates; *candp; candp = next)
5704 {
5705 tree parmlist, parmtype;
5706 int i, nargs = (arg2 ? 2 : 1);
5707
5708 cand = *candp;
5709 next = &cand->next;
5710
5711 parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
5712
5713 for (i = 0; i < nargs; ++i)
5714 {
5715 parmtype = TREE_VALUE (parmlist);
5716
5717 if (TYPE_REF_P (parmtype))
5718 parmtype = TREE_TYPE (parmtype);
5719 if (TREE_CODE (TREE_TYPE (args[i])) == ENUMERAL_TYPE
5720 && (same_type_ignoring_top_level_qualifiers_p
5721 (TREE_TYPE (args[i]), parmtype)))
5722 break;
5723
5724 parmlist = TREE_CHAIN (parmlist);
5725 }
5726
5727 /* No argument has an appropriate type, so remove this
5728 candidate function from the list. */
5729 if (i == nargs)
5730 {
5731 *candp = cand->next;
5732 next = candp;
5733 }
5734 }
5735 }
5736
5737 add_builtin_candidates (&candidates, code, code2, fnname, args,
5738 flags, complain);
5739
5740 switch (code)
5741 {
5742 case COMPOUND_EXPR:
5743 case ADDR_EXPR:
5744 /* For these, the built-in candidates set is empty
5745 [over.match.oper]/3. We don't want non-strict matches
5746 because exact matches are always possible with built-in
5747 operators. The built-in candidate set for COMPONENT_REF
5748 would be empty too, but since there are no such built-in
5749 operators, we accept non-strict matches for them. */
5750 strict_p = true;
5751 break;
5752
5753 default:
5754 strict_p = false;
5755 break;
5756 }
5757
5758 candidates = splice_viable (candidates, strict_p, &any_viable_p);
5759 if (!any_viable_p)
5760 {
5761 switch (code)
5762 {
5763 case POSTINCREMENT_EXPR:
5764 case POSTDECREMENT_EXPR:
5765 /* Don't try anything fancy if we're not allowed to produce
5766 errors. */
5767 if (!(complain & tf_error))
5768 return error_mark_node;
5769
5770 /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
5771 distinguish between prefix and postfix ++ and
5772 operator++() was used for both, so we allow this with
5773 -fpermissive. */
5774 else
5775 {
5776 const char *msg = (flag_permissive)
5777 ? G_("no %<%D(int)%> declared for postfix %qs,"
5778 " trying prefix operator instead")
5779 : G_("no %<%D(int)%> declared for postfix %qs");
5780 permerror (loc, msg, fnname, OVL_OP_INFO (false, code)->name);
5781 }
5782
5783 if (!flag_permissive)
5784 return error_mark_node;
5785
5786 if (code == POSTINCREMENT_EXPR)
5787 code = PREINCREMENT_EXPR;
5788 else
5789 code = PREDECREMENT_EXPR;
5790 result = build_new_op_1 (loc, code, flags, arg1, NULL_TREE,
5791 NULL_TREE, overload, complain);
5792 break;
5793
5794 /* The caller will deal with these. */
5795 case ADDR_EXPR:
5796 case COMPOUND_EXPR:
5797 case COMPONENT_REF:
5798 result = NULL_TREE;
5799 result_valid_p = true;
5800 break;
5801
5802 default:
5803 if (complain & tf_error)
5804 {
5805 /* If one of the arguments of the operator represents
5806 an invalid use of member function pointer, try to report
5807 a meaningful error ... */
5808 if (invalid_nonstatic_memfn_p (loc, arg1, tf_error)
5809 || invalid_nonstatic_memfn_p (loc, arg2, tf_error)
5810 || invalid_nonstatic_memfn_p (loc, arg3, tf_error))
5811 /* We displayed the error message. */;
5812 else
5813 {
5814 /* ... Otherwise, report the more generic
5815 "no matching operator found" error */
5816 op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
5817 print_z_candidates (loc, candidates);
5818 }
5819 }
5820 result = error_mark_node;
5821 break;
5822 }
5823 }
5824 else
5825 {
5826 cand = tourney (candidates, complain);
5827 if (cand == 0)
5828 {
5829 if (complain & tf_error)
5830 {
5831 op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
5832 print_z_candidates (loc, candidates);
5833 }
5834 result = error_mark_node;
5835 }
5836 else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5837 {
5838 if (overload)
5839 *overload = cand->fn;
5840
5841 if (resolve_args (arglist, complain) == NULL)
5842 result = error_mark_node;
5843 else
5844 result = build_over_call (cand, LOOKUP_NORMAL, complain);
5845
5846 if (trivial_fn_p (cand->fn))
5847 /* There won't be a CALL_EXPR. */;
5848 else if (result && result != error_mark_node)
5849 {
5850 tree call = extract_call_expr (result);
5851 CALL_EXPR_OPERATOR_SYNTAX (call) = true;
5852
5853 if (processing_template_decl && DECL_HIDDEN_FRIEND_P (cand->fn))
5854 /* This prevents build_new_function_call from discarding this
5855 function during instantiation of the enclosing template. */
5856 KOENIG_LOOKUP_P (call) = 1;
5857
5858 /* Specify evaluation order as per P0145R2. */
5859 CALL_EXPR_ORDERED_ARGS (call) = false;
5860 switch (op_is_ordered (code))
5861 {
5862 case -1:
5863 CALL_EXPR_REVERSE_ARGS (call) = true;
5864 break;
5865
5866 case 1:
5867 CALL_EXPR_ORDERED_ARGS (call) = true;
5868 break;
5869
5870 default:
5871 break;
5872 }
5873 }
5874 }
5875 else
5876 {
5877 /* Give any warnings we noticed during overload resolution. */
5878 if (cand->warnings && (complain & tf_warning))
5879 {
5880 struct candidate_warning *w;
5881 for (w = cand->warnings; w; w = w->next)
5882 joust (cand, w->loser, 1, complain);
5883 }
5884
5885 /* Check for comparison of different enum types. */
5886 switch (code)
5887 {
5888 case GT_EXPR:
5889 case LT_EXPR:
5890 case GE_EXPR:
5891 case LE_EXPR:
5892 case EQ_EXPR:
5893 case NE_EXPR:
5894 if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
5895 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
5896 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
5897 != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
5898 && (complain & tf_warning))
5899 {
5900 warning (OPT_Wenum_compare,
5901 "comparison between %q#T and %q#T",
5902 TREE_TYPE (arg1), TREE_TYPE (arg2));
5903 }
5904 break;
5905 default:
5906 break;
5907 }
5908
5909 /* We need to strip any leading REF_BIND so that bitfields
5910 don't cause errors. This should not remove any important
5911 conversions, because builtins don't apply to class
5912 objects directly. */
5913 conv = cand->convs[0];
5914 if (conv->kind == ck_ref_bind)
5915 conv = next_conversion (conv);
5916 arg1 = convert_like (conv, arg1, complain);
5917
5918 if (arg2)
5919 {
5920 conv = cand->convs[1];
5921 if (conv->kind == ck_ref_bind)
5922 conv = next_conversion (conv);
5923 else
5924 arg2 = decay_conversion (arg2, complain);
5925
5926 /* We need to call warn_logical_operator before
5927 converting arg2 to a boolean_type, but after
5928 decaying an enumerator to its value. */
5929 if (complain & tf_warning)
5930 warn_logical_operator (loc, code, boolean_type_node,
5931 code_orig_arg1, arg1,
5932 code_orig_arg2, arg2);
5933
5934 arg2 = convert_like (conv, arg2, complain);
5935 }
5936 if (arg3)
5937 {
5938 conv = cand->convs[2];
5939 if (conv->kind == ck_ref_bind)
5940 conv = next_conversion (conv);
5941 arg3 = convert_like (conv, arg3, complain);
5942 }
5943
5944 }
5945 }
5946
5947 user_defined_result_ready:
5948
5949 /* Free all the conversions we allocated. */
5950 obstack_free (&conversion_obstack, p);
5951
5952 if (result || result_valid_p)
5953 return result;
5954
5955 builtin:
5956 switch (code)
5957 {
5958 case MODIFY_EXPR:
5959 return cp_build_modify_expr (loc, arg1, code2, arg2, complain);
5960
5961 case INDIRECT_REF:
5962 return cp_build_indirect_ref (arg1, RO_UNARY_STAR, complain);
5963
5964 case TRUTH_ANDIF_EXPR:
5965 case TRUTH_ORIF_EXPR:
5966 case TRUTH_AND_EXPR:
5967 case TRUTH_OR_EXPR:
5968 if (complain & tf_warning)
5969 warn_logical_operator (loc, code, boolean_type_node,
5970 code_orig_arg1, arg1,
5971 code_orig_arg2, arg2);
5972 /* Fall through. */
5973 case GT_EXPR:
5974 case LT_EXPR:
5975 case GE_EXPR:
5976 case LE_EXPR:
5977 case EQ_EXPR:
5978 case NE_EXPR:
5979 if ((complain & tf_warning)
5980 && ((code_orig_arg1 == BOOLEAN_TYPE)
5981 ^ (code_orig_arg2 == BOOLEAN_TYPE)))
5982 maybe_warn_bool_compare (loc, code, arg1, arg2);
5983 if (complain & tf_warning && warn_tautological_compare)
5984 warn_tautological_cmp (loc, code, arg1, arg2);
5985 /* Fall through. */
5986 case PLUS_EXPR:
5987 case MINUS_EXPR:
5988 case MULT_EXPR:
5989 case TRUNC_DIV_EXPR:
5990 case MAX_EXPR:
5991 case MIN_EXPR:
5992 case LSHIFT_EXPR:
5993 case RSHIFT_EXPR:
5994 case TRUNC_MOD_EXPR:
5995 case BIT_AND_EXPR:
5996 case BIT_IOR_EXPR:
5997 case BIT_XOR_EXPR:
5998 return cp_build_binary_op (loc, code, arg1, arg2, complain);
5999
6000 case UNARY_PLUS_EXPR:
6001 case NEGATE_EXPR:
6002 case BIT_NOT_EXPR:
6003 case TRUTH_NOT_EXPR:
6004 case PREINCREMENT_EXPR:
6005 case POSTINCREMENT_EXPR:
6006 case PREDECREMENT_EXPR:
6007 case POSTDECREMENT_EXPR:
6008 case REALPART_EXPR:
6009 case IMAGPART_EXPR:
6010 case ABS_EXPR:
6011 return cp_build_unary_op (code, arg1, candidates != 0, complain);
6012
6013 case ARRAY_REF:
6014 return cp_build_array_ref (input_location, arg1, arg2, complain);
6015
6016 case MEMBER_REF:
6017 return build_m_component_ref (cp_build_indirect_ref (arg1, RO_ARROW_STAR,
6018 complain),
6019 arg2, complain);
6020
6021 /* The caller will deal with these. */
6022 case ADDR_EXPR:
6023 case COMPONENT_REF:
6024 case COMPOUND_EXPR:
6025 return NULL_TREE;
6026
6027 default:
6028 gcc_unreachable ();
6029 }
6030 return NULL_TREE;
6031 }
6032
6033 /* Wrapper for above. */
6034
6035 tree
6036 build_new_op (location_t loc, enum tree_code code, int flags,
6037 tree arg1, tree arg2, tree arg3,
6038 tree *overload, tsubst_flags_t complain)
6039 {
6040 tree ret;
6041 bool subtime = timevar_cond_start (TV_OVERLOAD);
6042 ret = build_new_op_1 (loc, code, flags, arg1, arg2, arg3,
6043 overload, complain);
6044 timevar_cond_stop (TV_OVERLOAD, subtime);
6045 return ret;
6046 }
6047
6048 /* CALL was returned by some call-building function; extract the actual
6049 CALL_EXPR from any bits that have been tacked on, e.g. by
6050 convert_from_reference. */
6051
6052 tree
6053 extract_call_expr (tree call)
6054 {
6055 while (TREE_CODE (call) == COMPOUND_EXPR)
6056 call = TREE_OPERAND (call, 1);
6057 if (REFERENCE_REF_P (call))
6058 call = TREE_OPERAND (call, 0);
6059 if (TREE_CODE (call) == TARGET_EXPR)
6060 call = TARGET_EXPR_INITIAL (call);
6061 gcc_assert (TREE_CODE (call) == CALL_EXPR
6062 || TREE_CODE (call) == AGGR_INIT_EXPR
6063 || call == error_mark_node);
6064 return call;
6065 }
6066
6067 /* Returns true if FN has two parameters, of which the second has type
6068 size_t. */
6069
6070 static bool
6071 second_parm_is_size_t (tree fn)
6072 {
6073 tree t = FUNCTION_ARG_CHAIN (fn);
6074 if (!t || !same_type_p (TREE_VALUE (t), size_type_node))
6075 return false;
6076 t = TREE_CHAIN (t);
6077 if (t == void_list_node)
6078 return true;
6079 if (aligned_new_threshold && t
6080 && same_type_p (TREE_VALUE (t), align_type_node)
6081 && TREE_CHAIN (t) == void_list_node)
6082 return true;
6083 return false;
6084 }
6085
6086 /* True if T, an allocation function, has std::align_val_t as its second
6087 argument. */
6088
6089 bool
6090 aligned_allocation_fn_p (tree t)
6091 {
6092 if (!aligned_new_threshold)
6093 return false;
6094
6095 tree a = FUNCTION_ARG_CHAIN (t);
6096 return (a && same_type_p (TREE_VALUE (a), align_type_node));
6097 }
6098
6099 /* Returns true iff T, an element of an OVERLOAD chain, is a usual deallocation
6100 function (3.7.4.2 [basic.stc.dynamic.deallocation]) with a parameter of
6101 std::align_val_t. */
6102
6103 static bool
6104 aligned_deallocation_fn_p (tree t)
6105 {
6106 if (!aligned_new_threshold)
6107 return false;
6108
6109 /* A template instance is never a usual deallocation function,
6110 regardless of its signature. */
6111 if (TREE_CODE (t) == TEMPLATE_DECL
6112 || primary_template_specialization_p (t))
6113 return false;
6114
6115 tree a = FUNCTION_ARG_CHAIN (t);
6116 if (same_type_p (TREE_VALUE (a), align_type_node)
6117 && TREE_CHAIN (a) == void_list_node)
6118 return true;
6119 if (!same_type_p (TREE_VALUE (a), size_type_node))
6120 return false;
6121 a = TREE_CHAIN (a);
6122 if (a && same_type_p (TREE_VALUE (a), align_type_node)
6123 && TREE_CHAIN (a) == void_list_node)
6124 return true;
6125 return false;
6126 }
6127
6128 /* Returns true iff T, an element of an OVERLOAD chain, is a usual
6129 deallocation function (3.7.4.2 [basic.stc.dynamic.deallocation]). */
6130
6131 bool
6132 usual_deallocation_fn_p (tree t)
6133 {
6134 /* A template instance is never a usual deallocation function,
6135 regardless of its signature. */
6136 if (TREE_CODE (t) == TEMPLATE_DECL
6137 || primary_template_specialization_p (t))
6138 return false;
6139
6140 /* If a class T has a member deallocation function named operator delete
6141 with exactly one parameter, then that function is a usual
6142 (non-placement) deallocation function. If class T does not declare
6143 such an operator delete but does declare a member deallocation
6144 function named operator delete with exactly two parameters, the second
6145 of which has type std::size_t (18.2), then this function is a usual
6146 deallocation function. */
6147 bool global = DECL_NAMESPACE_SCOPE_P (t);
6148 tree chain = FUNCTION_ARG_CHAIN (t);
6149 if (!chain)
6150 return false;
6151 if (chain == void_list_node
6152 || ((!global || flag_sized_deallocation)
6153 && second_parm_is_size_t (t)))
6154 return true;
6155 if (aligned_deallocation_fn_p (t))
6156 return true;
6157 return false;
6158 }
6159
6160 /* Build a call to operator delete. This has to be handled very specially,
6161 because the restrictions on what signatures match are different from all
6162 other call instances. For a normal delete, only a delete taking (void *)
6163 or (void *, size_t) is accepted. For a placement delete, only an exact
6164 match with the placement new is accepted.
6165
6166 CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
6167 ADDR is the pointer to be deleted.
6168 SIZE is the size of the memory block to be deleted.
6169 GLOBAL_P is true if the delete-expression should not consider
6170 class-specific delete operators.
6171 PLACEMENT is the corresponding placement new call, or NULL_TREE.
6172
6173 If this call to "operator delete" is being generated as part to
6174 deallocate memory allocated via a new-expression (as per [expr.new]
6175 which requires that if the initialization throws an exception then
6176 we call a deallocation function), then ALLOC_FN is the allocation
6177 function. */
6178
6179 tree
6180 build_op_delete_call (enum tree_code code, tree addr, tree size,
6181 bool global_p, tree placement,
6182 tree alloc_fn, tsubst_flags_t complain)
6183 {
6184 tree fn = NULL_TREE;
6185 tree fns, fnname, type, t;
6186
6187 if (addr == error_mark_node)
6188 return error_mark_node;
6189
6190 type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
6191
6192 fnname = ovl_op_identifier (false, code);
6193
6194 if (CLASS_TYPE_P (type)
6195 && COMPLETE_TYPE_P (complete_type (type))
6196 && !global_p)
6197 /* In [class.free]
6198
6199 If the result of the lookup is ambiguous or inaccessible, or if
6200 the lookup selects a placement deallocation function, the
6201 program is ill-formed.
6202
6203 Therefore, we ask lookup_fnfields to complain about ambiguity. */
6204 {
6205 fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
6206 if (fns == error_mark_node)
6207 return error_mark_node;
6208 }
6209 else
6210 fns = NULL_TREE;
6211
6212 if (fns == NULL_TREE)
6213 fns = lookup_name_nonclass (fnname);
6214
6215 /* Strip const and volatile from addr. */
6216 addr = cp_convert (ptr_type_node, addr, complain);
6217
6218 if (placement)
6219 {
6220 /* "A declaration of a placement deallocation function matches the
6221 declaration of a placement allocation function if it has the same
6222 number of parameters and, after parameter transformations (8.3.5),
6223 all parameter types except the first are identical."
6224
6225 So we build up the function type we want and ask instantiate_type
6226 to get it for us. */
6227 t = FUNCTION_ARG_CHAIN (alloc_fn);
6228 t = tree_cons (NULL_TREE, ptr_type_node, t);
6229 t = build_function_type (void_type_node, t);
6230
6231 fn = instantiate_type (t, fns, tf_none);
6232 if (fn == error_mark_node)
6233 return NULL_TREE;
6234
6235 fn = MAYBE_BASELINK_FUNCTIONS (fn);
6236
6237 /* "If the lookup finds the two-parameter form of a usual deallocation
6238 function (3.7.4.2) and that function, considered as a placement
6239 deallocation function, would have been selected as a match for the
6240 allocation function, the program is ill-formed." */
6241 if (second_parm_is_size_t (fn))
6242 {
6243 const char *const msg1
6244 = G_("exception cleanup for this placement new selects "
6245 "non-placement operator delete");
6246 const char *const msg2
6247 = G_("%qD is a usual (non-placement) deallocation "
6248 "function in C++14 (or with -fsized-deallocation)");
6249
6250 /* But if the class has an operator delete (void *), then that is
6251 the usual deallocation function, so we shouldn't complain
6252 about using the operator delete (void *, size_t). */
6253 if (DECL_CLASS_SCOPE_P (fn))
6254 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns));
6255 iter; ++iter)
6256 {
6257 tree elt = *iter;
6258 if (usual_deallocation_fn_p (elt)
6259 && FUNCTION_ARG_CHAIN (elt) == void_list_node)
6260 goto ok;
6261 }
6262 /* Before C++14 a two-parameter global deallocation function is
6263 always a placement deallocation function, but warn if
6264 -Wc++14-compat. */
6265 else if (!flag_sized_deallocation)
6266 {
6267 if ((complain & tf_warning)
6268 && warning (OPT_Wc__14_compat, msg1))
6269 inform (DECL_SOURCE_LOCATION (fn), msg2, fn);
6270 goto ok;
6271 }
6272
6273 if (complain & tf_warning_or_error)
6274 {
6275 if (permerror (input_location, msg1))
6276 {
6277 /* Only mention C++14 for namespace-scope delete. */
6278 if (DECL_NAMESPACE_SCOPE_P (fn))
6279 inform (DECL_SOURCE_LOCATION (fn), msg2, fn);
6280 else
6281 inform (DECL_SOURCE_LOCATION (fn),
6282 "%qD is a usual (non-placement) deallocation "
6283 "function", fn);
6284 }
6285 }
6286 else
6287 return error_mark_node;
6288 ok:;
6289 }
6290 }
6291 else
6292 /* "Any non-placement deallocation function matches a non-placement
6293 allocation function. If the lookup finds a single matching
6294 deallocation function, that function will be called; otherwise, no
6295 deallocation function will be called." */
6296 for (lkp_iterator iter (MAYBE_BASELINK_FUNCTIONS (fns)); iter; ++iter)
6297 {
6298 tree elt = *iter;
6299 if (usual_deallocation_fn_p (elt))
6300 {
6301 if (!fn)
6302 {
6303 fn = elt;
6304 continue;
6305 }
6306
6307 /* -- If the type has new-extended alignment, a function with a
6308 parameter of type std::align_val_t is preferred; otherwise a
6309 function without such a parameter is preferred. If exactly one
6310 preferred function is found, that function is selected and the
6311 selection process terminates. If more than one preferred
6312 function is found, all non-preferred functions are eliminated
6313 from further consideration. */
6314 if (aligned_new_threshold)
6315 {
6316 bool want_align = type_has_new_extended_alignment (type);
6317 bool fn_align = aligned_deallocation_fn_p (fn);
6318 bool elt_align = aligned_deallocation_fn_p (elt);
6319
6320 if (elt_align != fn_align)
6321 {
6322 if (want_align == elt_align)
6323 fn = elt;
6324 continue;
6325 }
6326 }
6327
6328 /* -- If the deallocation functions have class scope, the one
6329 without a parameter of type std::size_t is selected. */
6330 bool want_size;
6331 if (DECL_CLASS_SCOPE_P (fn))
6332 want_size = false;
6333
6334 /* -- If the type is complete and if, for the second alternative
6335 (delete array) only, the operand is a pointer to a class type
6336 with a non-trivial destructor or a (possibly multi-dimensional)
6337 array thereof, the function with a parameter of type std::size_t
6338 is selected.
6339
6340 -- Otherwise, it is unspecified whether a deallocation function
6341 with a parameter of type std::size_t is selected. */
6342 else
6343 {
6344 want_size = COMPLETE_TYPE_P (type);
6345 if (code == VEC_DELETE_EXPR
6346 && !TYPE_VEC_NEW_USES_COOKIE (type))
6347 /* We need a cookie to determine the array size. */
6348 want_size = false;
6349 }
6350 bool fn_size = second_parm_is_size_t (fn);
6351 bool elt_size = second_parm_is_size_t (elt);
6352 gcc_assert (fn_size != elt_size);
6353 if (want_size == elt_size)
6354 fn = elt;
6355 }
6356 }
6357
6358 /* If we have a matching function, call it. */
6359 if (fn)
6360 {
6361 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
6362
6363 /* If the FN is a member function, make sure that it is
6364 accessible. */
6365 if (BASELINK_P (fns))
6366 perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
6367 complain);
6368
6369 /* Core issue 901: It's ok to new a type with deleted delete. */
6370 if (DECL_DELETED_FN (fn) && alloc_fn)
6371 return NULL_TREE;
6372
6373 if (placement)
6374 {
6375 /* The placement args might not be suitable for overload
6376 resolution at this point, so build the call directly. */
6377 int nargs = call_expr_nargs (placement);
6378 tree *argarray = XALLOCAVEC (tree, nargs);
6379 int i;
6380 argarray[0] = addr;
6381 for (i = 1; i < nargs; i++)
6382 argarray[i] = CALL_EXPR_ARG (placement, i);
6383 if (!mark_used (fn, complain) && !(complain & tf_error))
6384 return error_mark_node;
6385 return build_cxx_call (fn, nargs, argarray, complain);
6386 }
6387 else
6388 {
6389 tree ret;
6390 vec<tree, va_gc> *args = make_tree_vector ();
6391 args->quick_push (addr);
6392 if (second_parm_is_size_t (fn))
6393 args->quick_push (size);
6394 if (aligned_deallocation_fn_p (fn))
6395 {
6396 tree al = build_int_cst (align_type_node, TYPE_ALIGN_UNIT (type));
6397 args->quick_push (al);
6398 }
6399 ret = cp_build_function_call_vec (fn, &args, complain);
6400 release_tree_vector (args);
6401 return ret;
6402 }
6403 }
6404
6405 /* [expr.new]
6406
6407 If no unambiguous matching deallocation function can be found,
6408 propagating the exception does not cause the object's memory to
6409 be freed. */
6410 if (alloc_fn)
6411 {
6412 if ((complain & tf_warning)
6413 && !placement)
6414 warning (0, "no corresponding deallocation function for %qD",
6415 alloc_fn);
6416 return NULL_TREE;
6417 }
6418
6419 if (complain & tf_error)
6420 error ("no suitable %<operator %s%> for %qT",
6421 OVL_OP_INFO (false, code)->name, type);
6422 return error_mark_node;
6423 }
6424
6425 /* If the current scope isn't allowed to access DECL along
6426 BASETYPE_PATH, give an error. The most derived class in
6427 BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
6428 the declaration to use in the error diagnostic. */
6429
6430 bool
6431 enforce_access (tree basetype_path, tree decl, tree diag_decl,
6432 tsubst_flags_t complain, access_failure_info *afi)
6433 {
6434 gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
6435
6436 if (flag_new_inheriting_ctors
6437 && DECL_INHERITED_CTOR (decl))
6438 {
6439 /* 7.3.3/18: The additional constructors are accessible if they would be
6440 accessible when used to construct an object of the corresponding base
6441 class. */
6442 decl = strip_inheriting_ctors (decl);
6443 basetype_path = lookup_base (basetype_path, DECL_CONTEXT (decl),
6444 ba_any, NULL, complain);
6445 }
6446
6447 if (!accessible_p (basetype_path, decl, true))
6448 {
6449 if (complain & tf_error)
6450 {
6451 if (flag_new_inheriting_ctors)
6452 diag_decl = strip_inheriting_ctors (diag_decl);
6453 if (TREE_PRIVATE (decl))
6454 {
6455 error ("%q#D is private within this context", diag_decl);
6456 inform (DECL_SOURCE_LOCATION (diag_decl),
6457 "declared private here");
6458 if (afi)
6459 afi->record_access_failure (basetype_path, diag_decl);
6460 }
6461 else if (TREE_PROTECTED (decl))
6462 {
6463 error ("%q#D is protected within this context", diag_decl);
6464 inform (DECL_SOURCE_LOCATION (diag_decl),
6465 "declared protected here");
6466 if (afi)
6467 afi->record_access_failure (basetype_path, diag_decl);
6468 }
6469 else
6470 {
6471 error ("%q#D is inaccessible within this context", diag_decl);
6472 inform (DECL_SOURCE_LOCATION (diag_decl), "declared here");
6473 if (afi)
6474 afi->record_access_failure (basetype_path, diag_decl);
6475 }
6476 }
6477 return false;
6478 }
6479
6480 return true;
6481 }
6482
6483 /* Initialize a temporary of type TYPE with EXPR. The FLAGS are a
6484 bitwise or of LOOKUP_* values. If any errors are warnings are
6485 generated, set *DIAGNOSTIC_FN to "error" or "warning",
6486 respectively. If no diagnostics are generated, set *DIAGNOSTIC_FN
6487 to NULL. */
6488
6489 static tree
6490 build_temp (tree expr, tree type, int flags,
6491 diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
6492 {
6493 int savew, savee;
6494 vec<tree, va_gc> *args;
6495
6496 *diagnostic_kind = DK_UNSPECIFIED;
6497
6498 /* If the source is a packed field, calling the copy constructor will require
6499 binding the field to the reference parameter to the copy constructor, and
6500 we'll end up with an infinite loop. If we can use a bitwise copy, then
6501 do that now. */
6502 if ((lvalue_kind (expr) & clk_packed)
6503 && CLASS_TYPE_P (TREE_TYPE (expr))
6504 && !type_has_nontrivial_copy_init (TREE_TYPE (expr)))
6505 return get_target_expr_sfinae (expr, complain);
6506
6507 savew = warningcount + werrorcount, savee = errorcount;
6508 args = make_tree_vector_single (expr);
6509 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6510 &args, type, flags, complain);
6511 release_tree_vector (args);
6512 if (warningcount + werrorcount > savew)
6513 *diagnostic_kind = DK_WARNING;
6514 else if (errorcount > savee)
6515 *diagnostic_kind = DK_ERROR;
6516 return expr;
6517 }
6518
6519 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
6520 EXPR is implicitly converted to type TOTYPE.
6521 FN and ARGNUM are used for diagnostics. */
6522
6523 static void
6524 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
6525 {
6526 /* Issue warnings about peculiar, but valid, uses of NULL. */
6527 if (null_node_p (expr) && TREE_CODE (totype) != BOOLEAN_TYPE
6528 && ARITHMETIC_TYPE_P (totype))
6529 {
6530 source_location loc =
6531 expansion_point_location_if_in_system_header (input_location);
6532
6533 if (fn)
6534 warning_at (loc, OPT_Wconversion_null,
6535 "passing NULL to non-pointer argument %P of %qD",
6536 argnum, fn);
6537 else
6538 warning_at (loc, OPT_Wconversion_null,
6539 "converting to non-pointer type %qT from NULL", totype);
6540 }
6541
6542 /* Issue warnings if "false" is converted to a NULL pointer */
6543 else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
6544 && TYPE_PTR_P (totype))
6545 {
6546 if (fn)
6547 warning_at (input_location, OPT_Wconversion_null,
6548 "converting %<false%> to pointer type for argument %P "
6549 "of %qD", argnum, fn);
6550 else
6551 warning_at (input_location, OPT_Wconversion_null,
6552 "converting %<false%> to pointer type %qT", totype);
6553 }
6554 }
6555
6556 /* We gave a diagnostic during a conversion. If this was in the second
6557 standard conversion sequence of a user-defined conversion sequence, say
6558 which user-defined conversion. */
6559
6560 static void
6561 maybe_print_user_conv_context (conversion *convs)
6562 {
6563 if (convs->user_conv_p)
6564 for (conversion *t = convs; t; t = next_conversion (t))
6565 if (t->kind == ck_user)
6566 {
6567 print_z_candidate (0, " after user-defined conversion:",
6568 t->cand);
6569 break;
6570 }
6571 }
6572
6573 /* Locate the parameter with the given index within FNDECL.
6574 ARGNUM is zero based, -1 indicates the `this' argument of a method.
6575 Return the location of the FNDECL itself if there are problems. */
6576
6577 location_t
6578 get_fndecl_argument_location (tree fndecl, int argnum)
6579 {
6580 int i;
6581 tree param;
6582
6583 /* Locate param by index within DECL_ARGUMENTS (fndecl). */
6584 for (i = 0, param = FUNCTION_FIRST_USER_PARM (fndecl);
6585 i < argnum && param;
6586 i++, param = TREE_CHAIN (param))
6587 ;
6588
6589 /* If something went wrong (e.g. if we have a builtin and thus no arguments),
6590 return the location of FNDECL. */
6591 if (param == NULL)
6592 return DECL_SOURCE_LOCATION (fndecl);
6593
6594 return DECL_SOURCE_LOCATION (param);
6595 }
6596
6597 /* Perform the conversions in CONVS on the expression EXPR. FN and
6598 ARGNUM are used for diagnostics. ARGNUM is zero based, -1
6599 indicates the `this' argument of a method. INNER is nonzero when
6600 being called to continue a conversion chain. It is negative when a
6601 reference binding will be applied, positive otherwise. If
6602 ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
6603 conversions will be emitted if appropriate. If C_CAST_P is true,
6604 this conversion is coming from a C-style cast; in that case,
6605 conversions to inaccessible bases are permitted. */
6606
6607 static tree
6608 convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
6609 bool issue_conversion_warnings,
6610 bool c_cast_p, tsubst_flags_t complain)
6611 {
6612 tree totype = convs->type;
6613 diagnostic_t diag_kind;
6614 int flags;
6615 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
6616
6617 if (convs->bad_p && !(complain & tf_error))
6618 return error_mark_node;
6619
6620 if (convs->bad_p
6621 && convs->kind != ck_user
6622 && convs->kind != ck_list
6623 && convs->kind != ck_ambig
6624 && (convs->kind != ck_ref_bind
6625 || (convs->user_conv_p && next_conversion (convs)->bad_p))
6626 && (convs->kind != ck_rvalue
6627 || SCALAR_TYPE_P (totype))
6628 && convs->kind != ck_base)
6629 {
6630 bool complained = false;
6631 conversion *t = convs;
6632
6633 /* Give a helpful error if this is bad because of excess braces. */
6634 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6635 && SCALAR_TYPE_P (totype)
6636 && CONSTRUCTOR_NELTS (expr) > 0
6637 && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
6638 {
6639 complained = permerror (loc, "too many braces around initializer "
6640 "for %qT", totype);
6641 while (BRACE_ENCLOSED_INITIALIZER_P (expr)
6642 && CONSTRUCTOR_NELTS (expr) == 1)
6643 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6644 }
6645
6646 /* Give a helpful error if this is bad because a conversion to bool
6647 from std::nullptr_t requires direct-initialization. */
6648 if (NULLPTR_TYPE_P (TREE_TYPE (expr))
6649 && TREE_CODE (totype) == BOOLEAN_TYPE)
6650 complained = permerror (loc, "converting to %qH from %qI requires "
6651 "direct-initialization",
6652 totype, TREE_TYPE (expr));
6653
6654 for (; t ; t = next_conversion (t))
6655 {
6656 if (t->kind == ck_user && t->cand->reason)
6657 {
6658 complained = permerror (loc, "invalid user-defined conversion "
6659 "from %qH to %qI", TREE_TYPE (expr),
6660 totype);
6661 if (complained)
6662 print_z_candidate (loc, "candidate is:", t->cand);
6663 expr = convert_like_real (t, expr, fn, argnum,
6664 /*issue_conversion_warnings=*/false,
6665 /*c_cast_p=*/false,
6666 complain);
6667 if (convs->kind == ck_ref_bind)
6668 expr = convert_to_reference (totype, expr, CONV_IMPLICIT,
6669 LOOKUP_NORMAL, NULL_TREE,
6670 complain);
6671 else
6672 expr = cp_convert (totype, expr, complain);
6673 if (complained && fn)
6674 inform (DECL_SOURCE_LOCATION (fn),
6675 " initializing argument %P of %qD", argnum, fn);
6676 return expr;
6677 }
6678 else if (t->kind == ck_user || !t->bad_p)
6679 {
6680 expr = convert_like_real (t, expr, fn, argnum,
6681 /*issue_conversion_warnings=*/false,
6682 /*c_cast_p=*/false,
6683 complain);
6684 break;
6685 }
6686 else if (t->kind == ck_ambig)
6687 return convert_like_real (t, expr, fn, argnum,
6688 /*issue_conversion_warnings=*/false,
6689 /*c_cast_p=*/false,
6690 complain);
6691 else if (t->kind == ck_identity)
6692 break;
6693 }
6694 if (!complained)
6695 complained = permerror (loc, "invalid conversion from %qH to %qI",
6696 TREE_TYPE (expr), totype);
6697 if (complained && fn)
6698 inform (get_fndecl_argument_location (fn, argnum),
6699 " initializing argument %P of %qD", argnum, fn);
6700
6701 return cp_convert (totype, expr, complain);
6702 }
6703
6704 if (issue_conversion_warnings && (complain & tf_warning))
6705 conversion_null_warnings (totype, expr, fn, argnum);
6706
6707 switch (convs->kind)
6708 {
6709 case ck_user:
6710 {
6711 struct z_candidate *cand = convs->cand;
6712
6713 if (cand == NULL)
6714 /* We chose the surrogate function from add_conv_candidate, now we
6715 actually need to build the conversion. */
6716 cand = build_user_type_conversion_1 (totype, expr,
6717 LOOKUP_NO_CONVERSION, complain);
6718
6719 tree convfn = cand->fn;
6720
6721 /* When converting from an init list we consider explicit
6722 constructors, but actually trying to call one is an error. */
6723 if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
6724 && BRACE_ENCLOSED_INITIALIZER_P (expr)
6725 /* Unless this is for direct-list-initialization. */
6726 && !CONSTRUCTOR_IS_DIRECT_INIT (expr)
6727 /* And in C++98 a default constructor can't be explicit. */
6728 && cxx_dialect >= cxx11)
6729 {
6730 if (!(complain & tf_error))
6731 return error_mark_node;
6732 location_t loc = location_of (expr);
6733 if (CONSTRUCTOR_NELTS (expr) == 0
6734 && FUNCTION_FIRST_USER_PARMTYPE (convfn) != void_list_node)
6735 {
6736 if (pedwarn (loc, 0, "converting to %qT from initializer list "
6737 "would use explicit constructor %qD",
6738 totype, convfn))
6739 inform (loc, "in C++11 and above a default constructor "
6740 "can be explicit");
6741 }
6742 else
6743 error ("converting to %qT from initializer list would use "
6744 "explicit constructor %qD", totype, convfn);
6745 }
6746
6747 /* If we're initializing from {}, it's value-initialization. */
6748 if (BRACE_ENCLOSED_INITIALIZER_P (expr)
6749 && CONSTRUCTOR_NELTS (expr) == 0
6750 && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
6751 {
6752 bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
6753 if (abstract_virtuals_error_sfinae (NULL_TREE, totype, complain))
6754 return error_mark_node;
6755 expr = build_value_init (totype, complain);
6756 expr = get_target_expr_sfinae (expr, complain);
6757 if (expr != error_mark_node)
6758 {
6759 TARGET_EXPR_LIST_INIT_P (expr) = true;
6760 TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
6761 }
6762 return expr;
6763 }
6764
6765 expr = mark_rvalue_use (expr);
6766
6767 /* Pass LOOKUP_NO_CONVERSION so rvalue/base handling knows not to allow
6768 any more UDCs. */
6769 expr = build_over_call (cand, LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
6770 complain);
6771
6772 /* If this is a constructor or a function returning an aggr type,
6773 we need to build up a TARGET_EXPR. */
6774 if (DECL_CONSTRUCTOR_P (convfn))
6775 {
6776 expr = build_cplus_new (totype, expr, complain);
6777
6778 /* Remember that this was list-initialization. */
6779 if (convs->check_narrowing && expr != error_mark_node)
6780 TARGET_EXPR_LIST_INIT_P (expr) = true;
6781 }
6782
6783 return expr;
6784 }
6785 case ck_identity:
6786 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
6787 {
6788 int nelts = CONSTRUCTOR_NELTS (expr);
6789 if (nelts == 0)
6790 expr = build_value_init (totype, complain);
6791 else if (nelts == 1)
6792 expr = CONSTRUCTOR_ELT (expr, 0)->value;
6793 else
6794 gcc_unreachable ();
6795 }
6796 expr = mark_use (expr, /*rvalue_p=*/!convs->rvaluedness_matches_p,
6797 /*read_p=*/true, UNKNOWN_LOCATION,
6798 /*reject_builtin=*/true);
6799
6800 if (type_unknown_p (expr))
6801 expr = instantiate_type (totype, expr, complain);
6802 if (expr == null_node
6803 && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
6804 /* If __null has been converted to an integer type, we do not want to
6805 continue to warn about uses of EXPR as an integer, rather than as a
6806 pointer. */
6807 expr = build_int_cst (totype, 0);
6808 return expr;
6809 case ck_ambig:
6810 /* We leave bad_p off ck_ambig because overload resolution considers
6811 it valid, it just fails when we try to perform it. So we need to
6812 check complain here, too. */
6813 if (complain & tf_error)
6814 {
6815 /* Call build_user_type_conversion again for the error. */
6816 int flags = (convs->need_temporary_p
6817 ? LOOKUP_IMPLICIT : LOOKUP_NORMAL);
6818 build_user_type_conversion (totype, convs->u.expr, flags, complain);
6819 gcc_assert (seen_error ());
6820 if (fn)
6821 inform (DECL_SOURCE_LOCATION (fn),
6822 " initializing argument %P of %qD", argnum, fn);
6823 }
6824 return error_mark_node;
6825
6826 case ck_list:
6827 {
6828 /* Conversion to std::initializer_list<T>. */
6829 tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
6830 tree new_ctor = build_constructor (init_list_type_node, NULL);
6831 unsigned len = CONSTRUCTOR_NELTS (expr);
6832 tree array, val, field;
6833 vec<constructor_elt, va_gc> *vec = NULL;
6834 unsigned ix;
6835
6836 /* Convert all the elements. */
6837 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
6838 {
6839 tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
6840 false, false, complain);
6841 if (sub == error_mark_node)
6842 return sub;
6843 if (!BRACE_ENCLOSED_INITIALIZER_P (val)
6844 && !check_narrowing (TREE_TYPE (sub), val, complain))
6845 return error_mark_node;
6846 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
6847 if (!TREE_CONSTANT (sub))
6848 TREE_CONSTANT (new_ctor) = false;
6849 }
6850 /* Build up the array. */
6851 elttype = cp_build_qualified_type
6852 (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
6853 array = build_array_of_n_type (elttype, len);
6854 array = finish_compound_literal (array, new_ctor, complain);
6855 /* Take the address explicitly rather than via decay_conversion
6856 to avoid the error about taking the address of a temporary. */
6857 array = cp_build_addr_expr (array, complain);
6858 array = cp_convert (build_pointer_type (elttype), array, complain);
6859 if (array == error_mark_node)
6860 return error_mark_node;
6861
6862 /* Build up the initializer_list object. Note: fail gracefully
6863 if the object cannot be completed because, for example, no
6864 definition is provided (c++/80956). */
6865 totype = complete_type_or_maybe_complain (totype, NULL_TREE, complain);
6866 if (!totype)
6867 return error_mark_node;
6868 field = next_initializable_field (TYPE_FIELDS (totype));
6869 CONSTRUCTOR_APPEND_ELT (vec, field, array);
6870 field = next_initializable_field (DECL_CHAIN (field));
6871 CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
6872 new_ctor = build_constructor (totype, vec);
6873 return get_target_expr_sfinae (new_ctor, complain);
6874 }
6875
6876 case ck_aggr:
6877 if (TREE_CODE (totype) == COMPLEX_TYPE)
6878 {
6879 tree real = CONSTRUCTOR_ELT (expr, 0)->value;
6880 tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
6881 real = perform_implicit_conversion (TREE_TYPE (totype),
6882 real, complain);
6883 imag = perform_implicit_conversion (TREE_TYPE (totype),
6884 imag, complain);
6885 expr = build2 (COMPLEX_EXPR, totype, real, imag);
6886 return expr;
6887 }
6888 expr = reshape_init (totype, expr, complain);
6889 expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
6890 complain);
6891 if (expr != error_mark_node)
6892 TARGET_EXPR_LIST_INIT_P (expr) = true;
6893 return expr;
6894
6895 default:
6896 break;
6897 };
6898
6899 expr = convert_like_real (next_conversion (convs), expr, fn, argnum,
6900 convs->kind == ck_ref_bind
6901 ? issue_conversion_warnings : false,
6902 c_cast_p, complain);
6903 if (expr == error_mark_node)
6904 return error_mark_node;
6905
6906 switch (convs->kind)
6907 {
6908 case ck_rvalue:
6909 expr = decay_conversion (expr, complain);
6910 if (expr == error_mark_node)
6911 {
6912 if (complain & tf_error)
6913 {
6914 maybe_print_user_conv_context (convs);
6915 if (fn)
6916 inform (DECL_SOURCE_LOCATION (fn),
6917 " initializing argument %P of %qD", argnum, fn);
6918 }
6919 return error_mark_node;
6920 }
6921
6922 if (! MAYBE_CLASS_TYPE_P (totype))
6923 return expr;
6924
6925 /* Don't introduce copies when passing arguments along to the inherited
6926 constructor. */
6927 if (current_function_decl
6928 && flag_new_inheriting_ctors
6929 && DECL_INHERITED_CTOR (current_function_decl))
6930 return expr;
6931
6932 if (TREE_CODE (expr) == TARGET_EXPR
6933 && TARGET_EXPR_LIST_INIT_P (expr))
6934 /* Copy-list-initialization doesn't actually involve a copy. */
6935 return expr;
6936
6937 /* Fall through. */
6938 case ck_base:
6939 if (convs->kind == ck_base && !convs->need_temporary_p)
6940 {
6941 /* We are going to bind a reference directly to a base-class
6942 subobject of EXPR. */
6943 /* Build an expression for `*((base*) &expr)'. */
6944 expr = convert_to_base (expr, totype,
6945 !c_cast_p, /*nonnull=*/true, complain);
6946 return expr;
6947 }
6948
6949 /* Copy-initialization where the cv-unqualified version of the source
6950 type is the same class as, or a derived class of, the class of the
6951 destination [is treated as direct-initialization]. [dcl.init] */
6952 flags = LOOKUP_NORMAL;
6953 if (convs->user_conv_p)
6954 /* This conversion is being done in the context of a user-defined
6955 conversion (i.e. the second step of copy-initialization), so
6956 don't allow any more. */
6957 flags |= LOOKUP_NO_CONVERSION;
6958 else
6959 flags |= LOOKUP_ONLYCONVERTING;
6960 if (convs->rvaluedness_matches_p)
6961 /* standard_conversion got LOOKUP_PREFER_RVALUE. */
6962 flags |= LOOKUP_PREFER_RVALUE;
6963 expr = build_temp (expr, totype, flags, &diag_kind, complain);
6964 if (diag_kind && complain)
6965 {
6966 maybe_print_user_conv_context (convs);
6967 if (fn)
6968 inform (DECL_SOURCE_LOCATION (fn),
6969 " initializing argument %P of %qD", argnum, fn);
6970 }
6971
6972 return build_cplus_new (totype, expr, complain);
6973
6974 case ck_ref_bind:
6975 {
6976 tree ref_type = totype;
6977
6978 if (convs->bad_p && !next_conversion (convs)->bad_p)
6979 {
6980 tree extype = TREE_TYPE (expr);
6981 if (TYPE_REF_IS_RVALUE (ref_type)
6982 && lvalue_p (expr))
6983 error_at (loc, "cannot bind rvalue reference of type %qH to "
6984 "lvalue of type %qI", totype, extype);
6985 else if (!TYPE_REF_IS_RVALUE (ref_type) && !lvalue_p (expr)
6986 && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
6987 error_at (loc, "cannot bind non-const lvalue reference of "
6988 "type %qH to an rvalue of type %qI", totype, extype);
6989 else if (!reference_compatible_p (TREE_TYPE (totype), extype))
6990 error_at (loc, "binding reference of type %qH to %qI "
6991 "discards qualifiers", totype, extype);
6992 else
6993 gcc_unreachable ();
6994 maybe_print_user_conv_context (convs);
6995 if (fn)
6996 inform (DECL_SOURCE_LOCATION (fn),
6997 " initializing argument %P of %qD", argnum, fn);
6998 return error_mark_node;
6999 }
7000
7001 /* If necessary, create a temporary.
7002
7003 VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
7004 that need temporaries, even when their types are reference
7005 compatible with the type of reference being bound, so the
7006 upcoming call to cp_build_addr_expr doesn't fail. */
7007 if (convs->need_temporary_p
7008 || TREE_CODE (expr) == CONSTRUCTOR
7009 || TREE_CODE (expr) == VA_ARG_EXPR)
7010 {
7011 /* Otherwise, a temporary of type "cv1 T1" is created and
7012 initialized from the initializer expression using the rules
7013 for a non-reference copy-initialization (8.5). */
7014
7015 tree type = TREE_TYPE (ref_type);
7016 cp_lvalue_kind lvalue = lvalue_kind (expr);
7017
7018 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7019 (type, next_conversion (convs)->type));
7020 if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
7021 && !TYPE_REF_IS_RVALUE (ref_type))
7022 {
7023 /* If the reference is volatile or non-const, we
7024 cannot create a temporary. */
7025 if (lvalue & clk_bitfield)
7026 error_at (loc, "cannot bind bitfield %qE to %qT",
7027 expr, ref_type);
7028 else if (lvalue & clk_packed)
7029 error_at (loc, "cannot bind packed field %qE to %qT",
7030 expr, ref_type);
7031 else
7032 error_at (loc, "cannot bind rvalue %qE to %qT",
7033 expr, ref_type);
7034 return error_mark_node;
7035 }
7036 /* If the source is a packed field, and we must use a copy
7037 constructor, then building the target expr will require
7038 binding the field to the reference parameter to the
7039 copy constructor, and we'll end up with an infinite
7040 loop. If we can use a bitwise copy, then we'll be
7041 OK. */
7042 if ((lvalue & clk_packed)
7043 && CLASS_TYPE_P (type)
7044 && type_has_nontrivial_copy_init (type))
7045 {
7046 error_at (loc, "cannot bind packed field %qE to %qT",
7047 expr, ref_type);
7048 return error_mark_node;
7049 }
7050 if (lvalue & clk_bitfield)
7051 {
7052 expr = convert_bitfield_to_declared_type (expr);
7053 expr = fold_convert (type, expr);
7054 }
7055 expr = build_target_expr_with_type (expr, type, complain);
7056 }
7057
7058 /* Take the address of the thing to which we will bind the
7059 reference. */
7060 expr = cp_build_addr_expr (expr, complain);
7061 if (expr == error_mark_node)
7062 return error_mark_node;
7063
7064 /* Convert it to a pointer to the type referred to by the
7065 reference. This will adjust the pointer if a derived to
7066 base conversion is being performed. */
7067 expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
7068 expr, complain);
7069 /* Convert the pointer to the desired reference type. */
7070 return build_nop (ref_type, expr);
7071 }
7072
7073 case ck_lvalue:
7074 return decay_conversion (expr, complain);
7075
7076 case ck_fnptr:
7077 /* ??? Should the address of a transaction-safe pointer point to the TM
7078 clone, and this conversion look up the primary function? */
7079 return build_nop (totype, expr);
7080
7081 case ck_qual:
7082 /* Warn about deprecated conversion if appropriate. */
7083 string_conv_p (totype, expr, 1);
7084 break;
7085
7086 case ck_ptr:
7087 if (convs->base_p)
7088 expr = convert_to_base (expr, totype, !c_cast_p,
7089 /*nonnull=*/false, complain);
7090 return build_nop (totype, expr);
7091
7092 case ck_pmem:
7093 return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
7094 c_cast_p, complain);
7095
7096 default:
7097 break;
7098 }
7099
7100 if (convs->check_narrowing
7101 && !check_narrowing (totype, expr, complain))
7102 return error_mark_node;
7103
7104 if (issue_conversion_warnings)
7105 expr = cp_convert_and_check (totype, expr, complain);
7106 else
7107 expr = cp_convert (totype, expr, complain);
7108
7109 return expr;
7110 }
7111
7112 /* ARG is being passed to a varargs function. Perform any conversions
7113 required. Return the converted value. */
7114
7115 tree
7116 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
7117 {
7118 tree arg_type;
7119 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
7120
7121 /* [expr.call]
7122
7123 The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
7124 standard conversions are performed. */
7125 arg = decay_conversion (arg, complain);
7126 arg_type = TREE_TYPE (arg);
7127 /* [expr.call]
7128
7129 If the argument has integral or enumeration type that is subject
7130 to the integral promotions (_conv.prom_), or a floating point
7131 type that is subject to the floating point promotion
7132 (_conv.fpprom_), the value of the argument is converted to the
7133 promoted type before the call. */
7134 if (TREE_CODE (arg_type) == REAL_TYPE
7135 && (TYPE_PRECISION (arg_type)
7136 < TYPE_PRECISION (double_type_node))
7137 && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
7138 {
7139 if ((complain & tf_warning)
7140 && warn_double_promotion && !c_inhibit_evaluation_warnings)
7141 warning_at (loc, OPT_Wdouble_promotion,
7142 "implicit conversion from %qH to %qI when passing "
7143 "argument to function",
7144 arg_type, double_type_node);
7145 arg = convert_to_real_nofold (double_type_node, arg);
7146 }
7147 else if (NULLPTR_TYPE_P (arg_type))
7148 arg = null_pointer_node;
7149 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
7150 {
7151 if (SCOPED_ENUM_P (arg_type))
7152 {
7153 tree prom = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg,
7154 complain);
7155 prom = cp_perform_integral_promotions (prom, complain);
7156 if (abi_version_crosses (6)
7157 && TYPE_MODE (TREE_TYPE (prom)) != TYPE_MODE (arg_type)
7158 && (complain & tf_warning))
7159 warning_at (loc, OPT_Wabi, "scoped enum %qT passed through ... as "
7160 "%qT before -fabi-version=6, %qT after", arg_type,
7161 TREE_TYPE (prom), ENUM_UNDERLYING_TYPE (arg_type));
7162 if (!abi_version_at_least (6))
7163 arg = prom;
7164 }
7165 else
7166 arg = cp_perform_integral_promotions (arg, complain);
7167 }
7168
7169 arg = require_complete_type_sfinae (arg, complain);
7170 arg_type = TREE_TYPE (arg);
7171
7172 if (arg != error_mark_node
7173 /* In a template (or ill-formed code), we can have an incomplete type
7174 even after require_complete_type_sfinae, in which case we don't know
7175 whether it has trivial copy or not. */
7176 && COMPLETE_TYPE_P (arg_type)
7177 && !cp_unevaluated_operand)
7178 {
7179 /* [expr.call] 5.2.2/7:
7180 Passing a potentially-evaluated argument of class type (Clause 9)
7181 with a non-trivial copy constructor or a non-trivial destructor
7182 with no corresponding parameter is conditionally-supported, with
7183 implementation-defined semantics.
7184
7185 We support it as pass-by-invisible-reference, just like a normal
7186 value parameter.
7187
7188 If the call appears in the context of a sizeof expression,
7189 it is not potentially-evaluated. */
7190 if (type_has_nontrivial_copy_init (arg_type)
7191 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type))
7192 {
7193 arg = force_rvalue (arg, complain);
7194 if (complain & tf_warning)
7195 warning (OPT_Wconditionally_supported,
7196 "passing objects of non-trivially-copyable "
7197 "type %q#T through %<...%> is conditionally supported",
7198 arg_type);
7199 return build1 (ADDR_EXPR, build_reference_type (arg_type), arg);
7200 }
7201 /* Build up a real lvalue-to-rvalue conversion in case the
7202 copy constructor is trivial but not callable. */
7203 else if (CLASS_TYPE_P (arg_type))
7204 force_rvalue (arg, complain);
7205
7206 }
7207
7208 return arg;
7209 }
7210
7211 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused. */
7212
7213 tree
7214 build_x_va_arg (source_location loc, tree expr, tree type)
7215 {
7216 if (processing_template_decl)
7217 {
7218 tree r = build_min (VA_ARG_EXPR, type, expr);
7219 SET_EXPR_LOCATION (r, loc);
7220 return r;
7221 }
7222
7223 type = complete_type_or_else (type, NULL_TREE);
7224
7225 if (expr == error_mark_node || !type)
7226 return error_mark_node;
7227
7228 expr = mark_lvalue_use (expr);
7229
7230 if (TYPE_REF_P (type))
7231 {
7232 error ("cannot receive reference type %qT through %<...%>", type);
7233 return error_mark_node;
7234 }
7235
7236 if (type_has_nontrivial_copy_init (type)
7237 || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
7238 {
7239 /* conditionally-supported behavior [expr.call] 5.2.2/7. Let's treat
7240 it as pass by invisible reference. */
7241 warning_at (loc, OPT_Wconditionally_supported,
7242 "receiving objects of non-trivially-copyable type %q#T "
7243 "through %<...%> is conditionally-supported", type);
7244
7245 tree ref = cp_build_reference_type (type, false);
7246 expr = build_va_arg (loc, expr, ref);
7247 return convert_from_reference (expr);
7248 }
7249
7250 tree ret = build_va_arg (loc, expr, type);
7251 if (CLASS_TYPE_P (type))
7252 /* Wrap the VA_ARG_EXPR in a TARGET_EXPR now so other code doesn't need to
7253 know how to handle it. */
7254 ret = get_target_expr (ret);
7255 return ret;
7256 }
7257
7258 /* TYPE has been given to va_arg. Apply the default conversions which
7259 would have happened when passed via ellipsis. Return the promoted
7260 type, or the passed type if there is no change. */
7261
7262 tree
7263 cxx_type_promotes_to (tree type)
7264 {
7265 tree promote;
7266
7267 /* Perform the array-to-pointer and function-to-pointer
7268 conversions. */
7269 type = type_decays_to (type);
7270
7271 promote = type_promotes_to (type);
7272 if (same_type_p (type, promote))
7273 promote = type;
7274
7275 return promote;
7276 }
7277
7278 /* ARG is a default argument expression being passed to a parameter of
7279 the indicated TYPE, which is a parameter to FN. PARMNUM is the
7280 zero-based argument number. Do any required conversions. Return
7281 the converted value. */
7282
7283 static GTY(()) vec<tree, va_gc> *default_arg_context;
7284 void
7285 push_defarg_context (tree fn)
7286 { vec_safe_push (default_arg_context, fn); }
7287
7288 void
7289 pop_defarg_context (void)
7290 { default_arg_context->pop (); }
7291
7292 tree
7293 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
7294 tsubst_flags_t complain)
7295 {
7296 int i;
7297 tree t;
7298
7299 /* See through clones. */
7300 fn = DECL_ORIGIN (fn);
7301 /* And inheriting ctors. */
7302 if (flag_new_inheriting_ctors)
7303 fn = strip_inheriting_ctors (fn);
7304
7305 /* Detect recursion. */
7306 FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
7307 if (t == fn)
7308 {
7309 if (complain & tf_error)
7310 error ("recursive evaluation of default argument for %q#D", fn);
7311 return error_mark_node;
7312 }
7313
7314 /* If the ARG is an unparsed default argument expression, the
7315 conversion cannot be performed. */
7316 if (TREE_CODE (arg) == DEFAULT_ARG)
7317 {
7318 if (complain & tf_error)
7319 error ("call to %qD uses the default argument for parameter %P, which "
7320 "is not yet defined", fn, parmnum);
7321 return error_mark_node;
7322 }
7323
7324 push_defarg_context (fn);
7325
7326 if (fn && DECL_TEMPLATE_INFO (fn))
7327 arg = tsubst_default_argument (fn, parmnum, type, arg, complain);
7328
7329 /* Due to:
7330
7331 [dcl.fct.default]
7332
7333 The names in the expression are bound, and the semantic
7334 constraints are checked, at the point where the default
7335 expressions appears.
7336
7337 we must not perform access checks here. */
7338 push_deferring_access_checks (dk_no_check);
7339 /* We must make a copy of ARG, in case subsequent processing
7340 alters any part of it. */
7341 arg = break_out_target_exprs (arg, /*clear location*/true);
7342
7343 arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
7344 ICR_DEFAULT_ARGUMENT, fn, parmnum,
7345 complain);
7346 arg = convert_for_arg_passing (type, arg, complain);
7347 pop_deferring_access_checks();
7348
7349 pop_defarg_context ();
7350
7351 return arg;
7352 }
7353
7354 /* Returns the type which will really be used for passing an argument of
7355 type TYPE. */
7356
7357 tree
7358 type_passed_as (tree type)
7359 {
7360 /* Pass classes with copy ctors by invisible reference. */
7361 if (TREE_ADDRESSABLE (type))
7362 {
7363 type = build_reference_type (type);
7364 /* There are no other pointers to this temporary. */
7365 type = cp_build_qualified_type (type, TYPE_QUAL_RESTRICT);
7366 }
7367 else if (targetm.calls.promote_prototypes (NULL_TREE)
7368 && INTEGRAL_TYPE_P (type)
7369 && COMPLETE_TYPE_P (type)
7370 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
7371 type = integer_type_node;
7372
7373 return type;
7374 }
7375
7376 /* Actually perform the appropriate conversion. */
7377
7378 tree
7379 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
7380 {
7381 tree bitfield_type;
7382
7383 /* If VAL is a bitfield, then -- since it has already been converted
7384 to TYPE -- it cannot have a precision greater than TYPE.
7385
7386 If it has a smaller precision, we must widen it here. For
7387 example, passing "int f:3;" to a function expecting an "int" will
7388 not result in any conversion before this point.
7389
7390 If the precision is the same we must not risk widening. For
7391 example, the COMPONENT_REF for a 32-bit "long long" bitfield will
7392 often have type "int", even though the C++ type for the field is
7393 "long long". If the value is being passed to a function
7394 expecting an "int", then no conversions will be required. But,
7395 if we call convert_bitfield_to_declared_type, the bitfield will
7396 be converted to "long long". */
7397 bitfield_type = is_bitfield_expr_with_lowered_type (val);
7398 if (bitfield_type
7399 && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
7400 val = convert_to_integer_nofold (TYPE_MAIN_VARIANT (bitfield_type), val);
7401
7402 if (val == error_mark_node)
7403 ;
7404 /* Pass classes with copy ctors by invisible reference. */
7405 else if (TREE_ADDRESSABLE (type))
7406 val = build1 (ADDR_EXPR, build_reference_type (type), val);
7407 else if (targetm.calls.promote_prototypes (NULL_TREE)
7408 && INTEGRAL_TYPE_P (type)
7409 && COMPLETE_TYPE_P (type)
7410 && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
7411 val = cp_perform_integral_promotions (val, complain);
7412 if (complain & tf_warning)
7413 {
7414 if (warn_suggest_attribute_format)
7415 {
7416 tree rhstype = TREE_TYPE (val);
7417 const enum tree_code coder = TREE_CODE (rhstype);
7418 const enum tree_code codel = TREE_CODE (type);
7419 if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
7420 && coder == codel
7421 && check_missing_format_attribute (type, rhstype))
7422 warning (OPT_Wsuggest_attribute_format,
7423 "argument of function call might be a candidate "
7424 "for a format attribute");
7425 }
7426 maybe_warn_parm_abi (type, EXPR_LOC_OR_LOC (val, input_location));
7427 }
7428 return val;
7429 }
7430
7431 /* Returns non-zero iff FN is a function with magic varargs, i.e. ones for
7432 which just decay_conversion or no conversions at all should be done.
7433 This is true for some builtins which don't act like normal functions.
7434 Return 2 if no conversions at all should be done, 1 if just
7435 decay_conversion. Return 3 for special treatment of the 3rd argument
7436 for __builtin_*_overflow_p. */
7437
7438 int
7439 magic_varargs_p (tree fn)
7440 {
7441 if (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
7442 switch (DECL_FUNCTION_CODE (fn))
7443 {
7444 case BUILT_IN_CLASSIFY_TYPE:
7445 case BUILT_IN_CONSTANT_P:
7446 case BUILT_IN_NEXT_ARG:
7447 case BUILT_IN_VA_START:
7448 return 1;
7449
7450 case BUILT_IN_ADD_OVERFLOW_P:
7451 case BUILT_IN_SUB_OVERFLOW_P:
7452 case BUILT_IN_MUL_OVERFLOW_P:
7453 return 3;
7454
7455 default:;
7456 return lookup_attribute ("type generic",
7457 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
7458 }
7459
7460 return 0;
7461 }
7462
7463 /* Returns the decl of the dispatcher function if FN is a function version. */
7464
7465 tree
7466 get_function_version_dispatcher (tree fn)
7467 {
7468 tree dispatcher_decl = NULL;
7469
7470 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
7471 && DECL_FUNCTION_VERSIONED (fn));
7472
7473 gcc_assert (targetm.get_function_versions_dispatcher);
7474 dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
7475
7476 if (dispatcher_decl == NULL)
7477 {
7478 error_at (input_location, "use of multiversioned function "
7479 "without a default");
7480 return NULL;
7481 }
7482
7483 retrofit_lang_decl (dispatcher_decl);
7484 gcc_assert (dispatcher_decl != NULL);
7485 return dispatcher_decl;
7486 }
7487
7488 /* fn is a function version dispatcher that is marked used. Mark all the
7489 semantically identical function versions it will dispatch as used. */
7490
7491 void
7492 mark_versions_used (tree fn)
7493 {
7494 struct cgraph_node *node;
7495 struct cgraph_function_version_info *node_v;
7496 struct cgraph_function_version_info *it_v;
7497
7498 gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7499
7500 node = cgraph_node::get (fn);
7501 if (node == NULL)
7502 return;
7503
7504 gcc_assert (node->dispatcher_function);
7505
7506 node_v = node->function_version ();
7507 if (node_v == NULL)
7508 return;
7509
7510 /* All semantically identical versions are chained. Traverse and mark each
7511 one of them as used. */
7512 it_v = node_v->next;
7513 while (it_v != NULL)
7514 {
7515 mark_used (it_v->this_node->decl);
7516 it_v = it_v->next;
7517 }
7518 }
7519
7520 /* Build a call to "the copy constructor" for the type of A, even if it
7521 wouldn't be selected by normal overload resolution. Used for
7522 diagnostics. */
7523
7524 static tree
7525 call_copy_ctor (tree a, tsubst_flags_t complain)
7526 {
7527 tree ctype = TYPE_MAIN_VARIANT (TREE_TYPE (a));
7528 tree binfo = TYPE_BINFO (ctype);
7529 tree copy = get_copy_ctor (ctype, complain);
7530 copy = build_baselink (binfo, binfo, copy, NULL_TREE);
7531 tree ob = build_dummy_object (ctype);
7532 vec<tree, va_gc>* args = make_tree_vector_single (a);
7533 tree r = build_new_method_call (ob, copy, &args, NULL_TREE,
7534 LOOKUP_NORMAL, NULL, complain);
7535 release_tree_vector (args);
7536 return r;
7537 }
7538
7539 /* Return true iff T refers to a base field. */
7540
7541 static bool
7542 is_base_field_ref (tree t)
7543 {
7544 STRIP_NOPS (t);
7545 if (TREE_CODE (t) == ADDR_EXPR)
7546 t = TREE_OPERAND (t, 0);
7547 if (TREE_CODE (t) == COMPONENT_REF)
7548 t = TREE_OPERAND (t, 1);
7549 if (TREE_CODE (t) == FIELD_DECL)
7550 return DECL_FIELD_IS_BASE (t);
7551 return false;
7552 }
7553
7554 /* We can't elide a copy from a function returning by value to a base
7555 subobject, as the callee might clobber tail padding. Return true iff this
7556 could be that case. */
7557
7558 static bool
7559 unsafe_copy_elision_p (tree target, tree exp)
7560 {
7561 /* Copy elision only happens with a TARGET_EXPR. */
7562 if (TREE_CODE (exp) != TARGET_EXPR)
7563 return false;
7564 tree type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
7565 /* It's safe to elide the copy for a class with no tail padding. */
7566 if (tree_int_cst_equal (TYPE_SIZE (type), CLASSTYPE_SIZE (type)))
7567 return false;
7568 /* It's safe to elide the copy if we aren't initializing a base object. */
7569 if (!is_base_field_ref (target))
7570 return false;
7571 tree init = TARGET_EXPR_INITIAL (exp);
7572 /* build_compound_expr pushes COMPOUND_EXPR inside TARGET_EXPR. */
7573 while (TREE_CODE (init) == COMPOUND_EXPR)
7574 init = TREE_OPERAND (init, 1);
7575 if (TREE_CODE (init) == COND_EXPR)
7576 {
7577 /* We'll end up copying from each of the arms of the COND_EXPR directly
7578 into the target, so look at them. */
7579 if (tree op = TREE_OPERAND (init, 1))
7580 if (unsafe_copy_elision_p (target, op))
7581 return true;
7582 return unsafe_copy_elision_p (target, TREE_OPERAND (init, 2));
7583 }
7584 return (TREE_CODE (init) == AGGR_INIT_EXPR
7585 && !AGGR_INIT_VIA_CTOR_P (init));
7586 }
7587
7588 /* True iff C is a conversion that binds a reference to a prvalue. */
7589
7590 static bool
7591 conv_binds_ref_to_prvalue (conversion *c)
7592 {
7593 if (c->kind != ck_ref_bind)
7594 return false;
7595 if (c->need_temporary_p)
7596 return true;
7597
7598 c = next_conversion (c);
7599
7600 if (c->kind == ck_rvalue)
7601 return true;
7602 if (c->kind == ck_user && !TYPE_REF_P (c->type))
7603 return true;
7604 if (c->kind == ck_identity && c->u.expr
7605 && TREE_CODE (c->u.expr) == TARGET_EXPR)
7606 return true;
7607
7608 return false;
7609 }
7610
7611 /* Call the trivial destructor for INSTANCE, which can be either an lvalue of
7612 class type or a pointer to class type. */
7613
7614 tree
7615 build_trivial_dtor_call (tree instance)
7616 {
7617 gcc_assert (!is_dummy_object (instance));
7618
7619 if (!flag_lifetime_dse)
7620 {
7621 no_clobber:
7622 return fold_convert (void_type_node, instance);
7623 }
7624
7625 if (INDIRECT_TYPE_P (TREE_TYPE (instance)))
7626 {
7627 if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
7628 goto no_clobber;
7629 instance = cp_build_fold_indirect_ref (instance);
7630 }
7631
7632 /* A trivial destructor should still clobber the object. */
7633 tree clobber = build_clobber (TREE_TYPE (instance));
7634 return build2 (MODIFY_EXPR, void_type_node,
7635 instance, clobber);
7636 }
7637
7638 /* Subroutine of the various build_*_call functions. Overload resolution
7639 has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
7640 ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
7641 bitmask of various LOOKUP_* flags which apply to the call itself. */
7642
7643 static tree
7644 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
7645 {
7646 tree fn = cand->fn;
7647 const vec<tree, va_gc> *args = cand->args;
7648 tree first_arg = cand->first_arg;
7649 conversion **convs = cand->convs;
7650 conversion *conv;
7651 tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
7652 int parmlen;
7653 tree val;
7654 int i = 0;
7655 int j = 0;
7656 unsigned int arg_index = 0;
7657 int is_method = 0;
7658 int nargs;
7659 tree *argarray;
7660 bool already_used = false;
7661
7662 /* In a template, there is no need to perform all of the work that
7663 is normally done. We are only interested in the type of the call
7664 expression, i.e., the return type of the function. Any semantic
7665 errors will be deferred until the template is instantiated. */
7666 if (processing_template_decl)
7667 {
7668 tree expr, addr;
7669 tree return_type;
7670 const tree *argarray;
7671 unsigned int nargs;
7672
7673 if (undeduced_auto_decl (fn))
7674 mark_used (fn, complain);
7675 else
7676 /* Otherwise set TREE_USED for the benefit of -Wunused-function.
7677 See PR80598. */
7678 TREE_USED (fn) = 1;
7679
7680 return_type = TREE_TYPE (TREE_TYPE (fn));
7681 nargs = vec_safe_length (args);
7682 if (first_arg == NULL_TREE)
7683 argarray = args->address ();
7684 else
7685 {
7686 tree *alcarray;
7687 unsigned int ix;
7688 tree arg;
7689
7690 ++nargs;
7691 alcarray = XALLOCAVEC (tree, nargs);
7692 alcarray[0] = build_this (first_arg);
7693 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
7694 alcarray[ix + 1] = arg;
7695 argarray = alcarray;
7696 }
7697
7698 addr = build_addr_func (fn, complain);
7699 if (addr == error_mark_node)
7700 return error_mark_node;
7701 expr = build_call_array_loc (input_location, return_type,
7702 addr, nargs, argarray);
7703 if (TREE_THIS_VOLATILE (fn) && cfun)
7704 current_function_returns_abnormally = 1;
7705 return convert_from_reference (expr);
7706 }
7707
7708 /* Give any warnings we noticed during overload resolution. */
7709 if (cand->warnings && (complain & tf_warning))
7710 {
7711 struct candidate_warning *w;
7712 for (w = cand->warnings; w; w = w->next)
7713 joust (cand, w->loser, 1, complain);
7714 }
7715
7716 /* Core issue 2327: P0135 doesn't say how to handle the case where the
7717 argument to the copy constructor ends up being a prvalue after
7718 conversion. Let's do the normal processing, but pretend we aren't
7719 actually using the copy constructor. */
7720 bool force_elide = false;
7721 if (cxx_dialect >= cxx17
7722 && cand->num_convs == 1
7723 && DECL_COMPLETE_CONSTRUCTOR_P (fn)
7724 && (DECL_COPY_CONSTRUCTOR_P (fn)
7725 || DECL_MOVE_CONSTRUCTOR_P (fn))
7726 && conv_binds_ref_to_prvalue (convs[0]))
7727 {
7728 force_elide = true;
7729 goto not_really_used;
7730 }
7731
7732 /* OK, we're actually calling this inherited constructor; set its deletedness
7733 appropriately. We can get away with doing this here because calling is
7734 the only way to refer to a constructor. */
7735 if (DECL_INHERITED_CTOR (fn))
7736 deduce_inheriting_ctor (fn);
7737
7738 /* Make =delete work with SFINAE. */
7739 if (DECL_DELETED_FN (fn))
7740 {
7741 if (complain & tf_error)
7742 mark_used (fn);
7743 return error_mark_node;
7744 }
7745
7746 if (DECL_FUNCTION_MEMBER_P (fn))
7747 {
7748 tree access_fn;
7749 /* If FN is a template function, two cases must be considered.
7750 For example:
7751
7752 struct A {
7753 protected:
7754 template <class T> void f();
7755 };
7756 template <class T> struct B {
7757 protected:
7758 void g();
7759 };
7760 struct C : A, B<int> {
7761 using A::f; // #1
7762 using B<int>::g; // #2
7763 };
7764
7765 In case #1 where `A::f' is a member template, DECL_ACCESS is
7766 recorded in the primary template but not in its specialization.
7767 We check access of FN using its primary template.
7768
7769 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
7770 because it is a member of class template B, DECL_ACCESS is
7771 recorded in the specialization `B<int>::g'. We cannot use its
7772 primary template because `B<T>::g' and `B<int>::g' may have
7773 different access. */
7774 if (DECL_TEMPLATE_INFO (fn)
7775 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
7776 access_fn = DECL_TI_TEMPLATE (fn);
7777 else
7778 access_fn = fn;
7779 if (!perform_or_defer_access_check (cand->access_path, access_fn,
7780 fn, complain))
7781 return error_mark_node;
7782 }
7783
7784 /* If we're checking for implicit delete, don't bother with argument
7785 conversions. */
7786 if (flags & LOOKUP_SPECULATIVE)
7787 {
7788 if (cand->viable == 1)
7789 return fn;
7790 else if (!(complain & tf_error))
7791 /* Reject bad conversions now. */
7792 return error_mark_node;
7793 /* else continue to get conversion error. */
7794 }
7795
7796 not_really_used:
7797
7798 /* N3276 magic doesn't apply to nested calls. */
7799 tsubst_flags_t decltype_flag = (complain & tf_decltype);
7800 complain &= ~tf_decltype;
7801 /* No-Cleanup doesn't apply to nested calls either. */
7802 tsubst_flags_t no_cleanup_complain = complain;
7803 complain &= ~tf_no_cleanup;
7804
7805 /* Find maximum size of vector to hold converted arguments. */
7806 parmlen = list_length (parm);
7807 nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
7808 if (parmlen > nargs)
7809 nargs = parmlen;
7810 argarray = XALLOCAVEC (tree, nargs);
7811
7812 /* The implicit parameters to a constructor are not considered by overload
7813 resolution, and must be of the proper type. */
7814 if (DECL_CONSTRUCTOR_P (fn))
7815 {
7816 tree object_arg;
7817 if (first_arg != NULL_TREE)
7818 {
7819 object_arg = first_arg;
7820 first_arg = NULL_TREE;
7821 }
7822 else
7823 {
7824 object_arg = (*args)[arg_index];
7825 ++arg_index;
7826 }
7827 argarray[j++] = build_this (object_arg);
7828 parm = TREE_CHAIN (parm);
7829 /* We should never try to call the abstract constructor. */
7830 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
7831
7832 if (DECL_HAS_VTT_PARM_P (fn))
7833 {
7834 argarray[j++] = (*args)[arg_index];
7835 ++arg_index;
7836 parm = TREE_CHAIN (parm);
7837 }
7838
7839 if (flags & LOOKUP_PREFER_RVALUE)
7840 {
7841 /* The implicit move specified in 15.8.3/3 fails "...if the type of
7842 the first parameter of the selected constructor is not an rvalue
7843 reference to the object’s type (possibly cv-qualified)...." */
7844 gcc_assert (!(complain & tf_error));
7845 tree ptype = convs[0]->type;
7846 if (!TYPE_REF_P (ptype)
7847 || !TYPE_REF_IS_RVALUE (ptype)
7848 || CONVERSION_RANK (convs[0]) > cr_exact)
7849 return error_mark_node;
7850 }
7851 }
7852 /* Bypass access control for 'this' parameter. */
7853 else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
7854 {
7855 tree parmtype = TREE_VALUE (parm);
7856 tree arg = build_this (first_arg != NULL_TREE
7857 ? first_arg
7858 : (*args)[arg_index]);
7859 tree argtype = TREE_TYPE (arg);
7860 tree converted_arg;
7861 tree base_binfo;
7862
7863 if (arg == error_mark_node)
7864 return error_mark_node;
7865
7866 if (convs[i]->bad_p)
7867 {
7868 if (complain & tf_error)
7869 {
7870 if (permerror (input_location, "passing %qT as %<this%> "
7871 "argument discards qualifiers",
7872 TREE_TYPE (argtype)))
7873 inform (DECL_SOURCE_LOCATION (fn), " in call to %qD", fn);
7874 }
7875 else
7876 return error_mark_node;
7877 }
7878
7879 /* See if the function member or the whole class type is declared
7880 final and the call can be devirtualized. */
7881 if (DECL_FINAL_P (fn)
7882 || CLASSTYPE_FINAL (TYPE_METHOD_BASETYPE (TREE_TYPE (fn))))
7883 flags |= LOOKUP_NONVIRTUAL;
7884
7885 /* [class.mfct.nonstatic]: If a nonstatic member function of a class
7886 X is called for an object that is not of type X, or of a type
7887 derived from X, the behavior is undefined.
7888
7889 So we can assume that anything passed as 'this' is non-null, and
7890 optimize accordingly. */
7891 gcc_assert (TYPE_PTR_P (parmtype));
7892 /* Convert to the base in which the function was declared. */
7893 gcc_assert (cand->conversion_path != NULL_TREE);
7894 converted_arg = build_base_path (PLUS_EXPR,
7895 arg,
7896 cand->conversion_path,
7897 1, complain);
7898 /* Check that the base class is accessible. */
7899 if (!accessible_base_p (TREE_TYPE (argtype),
7900 BINFO_TYPE (cand->conversion_path), true))
7901 {
7902 if (complain & tf_error)
7903 error ("%qT is not an accessible base of %qT",
7904 BINFO_TYPE (cand->conversion_path),
7905 TREE_TYPE (argtype));
7906 else
7907 return error_mark_node;
7908 }
7909 /* If fn was found by a using declaration, the conversion path
7910 will be to the derived class, not the base declaring fn. We
7911 must convert from derived to base. */
7912 base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
7913 TREE_TYPE (parmtype), ba_unique,
7914 NULL, complain);
7915 converted_arg = build_base_path (PLUS_EXPR, converted_arg,
7916 base_binfo, 1, complain);
7917
7918 argarray[j++] = converted_arg;
7919 parm = TREE_CHAIN (parm);
7920 if (first_arg != NULL_TREE)
7921 first_arg = NULL_TREE;
7922 else
7923 ++arg_index;
7924 ++i;
7925 is_method = 1;
7926 }
7927
7928 gcc_assert (first_arg == NULL_TREE);
7929 for (; arg_index < vec_safe_length (args) && parm;
7930 parm = TREE_CHAIN (parm), ++arg_index, ++i)
7931 {
7932 tree type = TREE_VALUE (parm);
7933 tree arg = (*args)[arg_index];
7934 bool conversion_warning = true;
7935
7936 conv = convs[i];
7937
7938 /* If the argument is NULL and used to (implicitly) instantiate a
7939 template function (and bind one of the template arguments to
7940 the type of 'long int'), we don't want to warn about passing NULL
7941 to non-pointer argument.
7942 For example, if we have this template function:
7943
7944 template<typename T> void func(T x) {}
7945
7946 we want to warn (when -Wconversion is enabled) in this case:
7947
7948 void foo() {
7949 func<int>(NULL);
7950 }
7951
7952 but not in this case:
7953
7954 void foo() {
7955 func(NULL);
7956 }
7957 */
7958 if (null_node_p (arg)
7959 && DECL_TEMPLATE_INFO (fn)
7960 && cand->template_decl
7961 && !(flags & LOOKUP_EXPLICIT_TMPL_ARGS))
7962 conversion_warning = false;
7963
7964 /* Warn about initializer_list deduction that isn't currently in the
7965 working draft. */
7966 if (cxx_dialect > cxx98
7967 && flag_deduce_init_list
7968 && cand->template_decl
7969 && is_std_init_list (non_reference (type))
7970 && BRACE_ENCLOSED_INITIALIZER_P (arg))
7971 {
7972 tree tmpl = TI_TEMPLATE (cand->template_decl);
7973 tree realparm = chain_index (j, DECL_ARGUMENTS (cand->fn));
7974 tree patparm = get_pattern_parm (realparm, tmpl);
7975 tree pattype = TREE_TYPE (patparm);
7976 if (PACK_EXPANSION_P (pattype))
7977 pattype = PACK_EXPANSION_PATTERN (pattype);
7978 pattype = non_reference (pattype);
7979
7980 if (TREE_CODE (pattype) == TEMPLATE_TYPE_PARM
7981 && (cand->explicit_targs == NULL_TREE
7982 || (TREE_VEC_LENGTH (cand->explicit_targs)
7983 <= TEMPLATE_TYPE_IDX (pattype))))
7984 {
7985 pedwarn (input_location, 0, "deducing %qT as %qT",
7986 non_reference (TREE_TYPE (patparm)),
7987 non_reference (type));
7988 pedwarn (DECL_SOURCE_LOCATION (cand->fn), 0,
7989 " in call to %qD", cand->fn);
7990 pedwarn (input_location, 0,
7991 " (you can disable this with -fno-deduce-init-list)");
7992 }
7993 }
7994
7995 /* Set user_conv_p on the argument conversions, so rvalue/base handling
7996 knows not to allow any more UDCs. This needs to happen after we
7997 process cand->warnings. */
7998 if (flags & LOOKUP_NO_CONVERSION)
7999 conv->user_conv_p = true;
8000
8001 tsubst_flags_t arg_complain = complain;
8002 if (!conversion_warning)
8003 arg_complain &= ~tf_warning;
8004
8005 val = convert_like_with_context (conv, arg, fn, i - is_method,
8006 arg_complain);
8007 val = convert_for_arg_passing (type, val, arg_complain);
8008
8009 if (val == error_mark_node)
8010 return error_mark_node;
8011 else
8012 argarray[j++] = val;
8013 }
8014
8015 /* Default arguments */
8016 for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
8017 {
8018 if (TREE_VALUE (parm) == error_mark_node)
8019 return error_mark_node;
8020 val = convert_default_arg (TREE_VALUE (parm),
8021 TREE_PURPOSE (parm),
8022 fn, i - is_method,
8023 complain);
8024 if (val == error_mark_node)
8025 return error_mark_node;
8026 argarray[j++] = val;
8027 }
8028
8029 /* Ellipsis */
8030 int magic = magic_varargs_p (fn);
8031 for (; arg_index < vec_safe_length (args); ++arg_index)
8032 {
8033 tree a = (*args)[arg_index];
8034 if ((magic == 3 && arg_index == 2) || magic == 2)
8035 {
8036 /* Do no conversions for certain magic varargs. */
8037 a = mark_type_use (a);
8038 if (TREE_CODE (a) == FUNCTION_DECL && reject_gcc_builtin (a))
8039 return error_mark_node;
8040 }
8041 else if (magic != 0)
8042 /* For other magic varargs only do decay_conversion. */
8043 a = decay_conversion (a, complain);
8044 else if (DECL_CONSTRUCTOR_P (fn)
8045 && same_type_ignoring_top_level_qualifiers_p (DECL_CONTEXT (fn),
8046 TREE_TYPE (a)))
8047 {
8048 /* Avoid infinite recursion trying to call A(...). */
8049 if (complain & tf_error)
8050 /* Try to call the actual copy constructor for a good error. */
8051 call_copy_ctor (a, complain);
8052 return error_mark_node;
8053 }
8054 else
8055 a = convert_arg_to_ellipsis (a, complain);
8056 if (a == error_mark_node)
8057 return error_mark_node;
8058 argarray[j++] = a;
8059 }
8060
8061 gcc_assert (j <= nargs);
8062 nargs = j;
8063
8064 /* Avoid to do argument-transformation, if warnings for format, and for
8065 nonnull are disabled. Just in case that at least one of them is active
8066 the check_function_arguments function might warn about something. */
8067
8068 bool warned_p = false;
8069 if (warn_nonnull
8070 || warn_format
8071 || warn_suggest_attribute_format
8072 || warn_restrict)
8073 {
8074 tree *fargs = (!nargs ? argarray
8075 : (tree *) alloca (nargs * sizeof (tree)));
8076 for (j = 0; j < nargs; j++)
8077 {
8078 /* For -Wformat undo the implicit passing by hidden reference
8079 done by convert_arg_to_ellipsis. */
8080 if (TREE_CODE (argarray[j]) == ADDR_EXPR
8081 && TYPE_REF_P (TREE_TYPE (argarray[j])))
8082 fargs[j] = TREE_OPERAND (argarray[j], 0);
8083 else
8084 fargs[j] = maybe_constant_value (argarray[j]);
8085 }
8086
8087 warned_p = check_function_arguments (input_location, fn, TREE_TYPE (fn),
8088 nargs, fargs, NULL);
8089 }
8090
8091 if (DECL_INHERITED_CTOR (fn))
8092 {
8093 /* Check for passing ellipsis arguments to an inherited constructor. We
8094 could handle this by open-coding the inherited constructor rather than
8095 defining it, but let's not bother now. */
8096 if (!cp_unevaluated_operand
8097 && cand->num_convs
8098 && cand->convs[cand->num_convs-1]->ellipsis_p)
8099 {
8100 if (complain & tf_error)
8101 {
8102 sorry ("passing arguments to ellipsis of inherited constructor "
8103 "%qD", cand->fn);
8104 inform (DECL_SOURCE_LOCATION (cand->fn), "declared here");
8105 }
8106 return error_mark_node;
8107 }
8108
8109 /* A base constructor inheriting from a virtual base doesn't get the
8110 inherited arguments, just this and __vtt. */
8111 if (ctor_omit_inherited_parms (fn))
8112 nargs = 2;
8113 }
8114
8115 /* Avoid actually calling copy constructors and copy assignment operators,
8116 if possible. */
8117
8118 if (! flag_elide_constructors && !force_elide)
8119 /* Do things the hard way. */;
8120 else if (cand->num_convs == 1
8121 && (DECL_COPY_CONSTRUCTOR_P (fn)
8122 || DECL_MOVE_CONSTRUCTOR_P (fn))
8123 /* It's unsafe to elide the constructor when handling
8124 a noexcept-expression, it may evaluate to the wrong
8125 value (c++/53025). */
8126 && (force_elide || cp_noexcept_operand == 0))
8127 {
8128 tree targ;
8129 tree arg = argarray[num_artificial_parms_for (fn)];
8130 tree fa;
8131 bool trivial = trivial_fn_p (fn);
8132
8133 /* Pull out the real argument, disregarding const-correctness. */
8134 targ = arg;
8135 /* Strip the reference binding for the constructor parameter. */
8136 if (CONVERT_EXPR_P (targ)
8137 && TYPE_REF_P (TREE_TYPE (targ)))
8138 targ = TREE_OPERAND (targ, 0);
8139 /* But don't strip any other reference bindings; binding a temporary to a
8140 reference prevents copy elision. */
8141 while ((CONVERT_EXPR_P (targ)
8142 && !TYPE_REF_P (TREE_TYPE (targ)))
8143 || TREE_CODE (targ) == NON_LVALUE_EXPR)
8144 targ = TREE_OPERAND (targ, 0);
8145 if (TREE_CODE (targ) == ADDR_EXPR)
8146 {
8147 targ = TREE_OPERAND (targ, 0);
8148 if (!same_type_ignoring_top_level_qualifiers_p
8149 (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
8150 targ = NULL_TREE;
8151 }
8152 else
8153 targ = NULL_TREE;
8154
8155 if (targ)
8156 arg = targ;
8157 else
8158 arg = cp_build_fold_indirect_ref (arg);
8159
8160 /* In C++17 we shouldn't be copying a TARGET_EXPR except into a base
8161 subobject. */
8162 if (CHECKING_P && cxx_dialect >= cxx17)
8163 gcc_assert (TREE_CODE (arg) != TARGET_EXPR
8164 || force_elide
8165 /* It's from binding the ref parm to a packed field. */
8166 || convs[0]->need_temporary_p
8167 || seen_error ()
8168 /* See unsafe_copy_elision_p. */
8169 || DECL_BASE_CONSTRUCTOR_P (fn));
8170
8171 fa = argarray[0];
8172 bool unsafe = unsafe_copy_elision_p (fa, arg);
8173 bool eliding_temp = (TREE_CODE (arg) == TARGET_EXPR && !unsafe);
8174
8175 /* [class.copy]: the copy constructor is implicitly defined even if the
8176 implementation elided its use. But don't warn about deprecation when
8177 eliding a temporary, as then no copy is actually performed. */
8178 warning_sentinel s (warn_deprecated_copy, eliding_temp);
8179 if (force_elide)
8180 /* The language says this isn't called. */;
8181 else if (!trivial)
8182 {
8183 if (!mark_used (fn, complain) && !(complain & tf_error))
8184 return error_mark_node;
8185 already_used = true;
8186 }
8187 else
8188 cp_warn_deprecated_use (fn, complain);
8189
8190 /* If we're creating a temp and we already have one, don't create a
8191 new one. If we're not creating a temp but we get one, use
8192 INIT_EXPR to collapse the temp into our target. Otherwise, if the
8193 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
8194 temp or an INIT_EXPR otherwise. */
8195 if (is_dummy_object (fa))
8196 {
8197 if (TREE_CODE (arg) == TARGET_EXPR)
8198 return arg;
8199 else if (trivial)
8200 return force_target_expr (DECL_CONTEXT (fn), arg, complain);
8201 }
8202 else if ((trivial || TREE_CODE (arg) == TARGET_EXPR)
8203 && !unsafe)
8204 {
8205 tree to = cp_stabilize_reference (cp_build_fold_indirect_ref (fa));
8206
8207 val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
8208 return val;
8209 }
8210 }
8211 else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
8212 && DECL_OVERLOADED_OPERATOR_IS (fn, NOP_EXPR)
8213 && trivial_fn_p (fn))
8214 {
8215 tree to = cp_stabilize_reference
8216 (cp_build_fold_indirect_ref (argarray[0]));
8217 tree type = TREE_TYPE (to);
8218 tree as_base = CLASSTYPE_AS_BASE (type);
8219 tree arg = argarray[1];
8220 location_t loc = EXPR_LOC_OR_LOC (arg, input_location);
8221
8222 if (is_really_empty_class (type))
8223 {
8224 /* Avoid copying empty classes. */
8225 val = build2 (COMPOUND_EXPR, type, arg, to);
8226 TREE_NO_WARNING (val) = 1;
8227 }
8228 else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
8229 {
8230 if (is_std_init_list (type)
8231 && conv_binds_ref_to_prvalue (convs[1]))
8232 warning_at (loc, OPT_Winit_list_lifetime,
8233 "assignment from temporary initializer_list does not "
8234 "extend the lifetime of the underlying array");
8235 arg = cp_build_fold_indirect_ref (arg);
8236 val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
8237 }
8238 else
8239 {
8240 /* We must only copy the non-tail padding parts. */
8241 tree arg0, arg2, t;
8242 tree array_type, alias_set;
8243
8244 arg2 = TYPE_SIZE_UNIT (as_base);
8245 arg0 = cp_build_addr_expr (to, complain);
8246
8247 array_type = build_array_type (unsigned_char_type_node,
8248 build_index_type
8249 (size_binop (MINUS_EXPR,
8250 arg2, size_int (1))));
8251 alias_set = build_int_cst (build_pointer_type (type), 0);
8252 t = build2 (MODIFY_EXPR, void_type_node,
8253 build2 (MEM_REF, array_type, arg0, alias_set),
8254 build2 (MEM_REF, array_type, arg, alias_set));
8255 val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
8256 TREE_NO_WARNING (val) = 1;
8257 }
8258
8259 cp_warn_deprecated_use (fn, complain);
8260
8261 return val;
8262 }
8263 else if (trivial_fn_p (fn))
8264 {
8265 if (DECL_DESTRUCTOR_P (fn))
8266 return build_trivial_dtor_call (argarray[0]);
8267 else if (default_ctor_p (fn))
8268 {
8269 if (is_dummy_object (argarray[0]))
8270 return force_target_expr (DECL_CONTEXT (fn), void_node,
8271 no_cleanup_complain);
8272 else
8273 return cp_build_fold_indirect_ref (argarray[0]);
8274 }
8275 }
8276
8277 gcc_assert (!force_elide);
8278
8279 if (!already_used
8280 && !mark_used (fn, complain))
8281 return error_mark_node;
8282
8283 /* Warn if the built-in writes to an object of a non-trivial type. */
8284 if (warn_class_memaccess
8285 && vec_safe_length (args) >= 2
8286 && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8287 maybe_warn_class_memaccess (input_location, fn, args);
8288
8289 if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
8290 /* Don't mess with virtual lookup in instantiate_non_dependent_expr;
8291 virtual functions can't be constexpr. */
8292 && !in_template_function ())
8293 {
8294 tree t;
8295 tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
8296 DECL_CONTEXT (fn),
8297 ba_any, NULL, complain);
8298 gcc_assert (binfo && binfo != error_mark_node);
8299
8300 argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
8301 complain);
8302 if (TREE_SIDE_EFFECTS (argarray[0]))
8303 argarray[0] = save_expr (argarray[0]);
8304 t = build_pointer_type (TREE_TYPE (fn));
8305 fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
8306 TREE_TYPE (fn) = t;
8307 }
8308 else
8309 {
8310 fn = build_addr_func (fn, complain);
8311 if (fn == error_mark_node)
8312 return error_mark_node;
8313 }
8314
8315 tree call = build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
8316 if (call == error_mark_node)
8317 return call;
8318 if (cand->flags & LOOKUP_LIST_INIT_CTOR)
8319 {
8320 tree c = extract_call_expr (call);
8321 /* build_new_op_1 will clear this when appropriate. */
8322 CALL_EXPR_ORDERED_ARGS (c) = true;
8323 }
8324 if (warned_p)
8325 {
8326 tree c = extract_call_expr (call);
8327 if (TREE_CODE (c) == CALL_EXPR)
8328 TREE_NO_WARNING (c) = 1;
8329 }
8330 return call;
8331 }
8332
8333 namespace
8334 {
8335
8336 /* Return the DECL of the first non-static subobject of class TYPE
8337 that satisfies the predicate PRED or null if none can be found. */
8338
8339 template <class Predicate>
8340 tree
8341 first_non_static_field (tree type, Predicate pred)
8342 {
8343 if (!type || !CLASS_TYPE_P (type))
8344 return NULL_TREE;
8345
8346 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
8347 {
8348 if (TREE_CODE (field) != FIELD_DECL)
8349 continue;
8350 if (TREE_STATIC (field))
8351 continue;
8352 if (pred (field))
8353 return field;
8354 }
8355
8356 int i = 0;
8357
8358 for (tree base_binfo, binfo = TYPE_BINFO (type);
8359 BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
8360 {
8361 tree base = TREE_TYPE (base_binfo);
8362 if (pred (base))
8363 return base;
8364 if (tree field = first_non_static_field (base, pred))
8365 return field;
8366 }
8367
8368 return NULL_TREE;
8369 }
8370
8371 struct NonPublicField
8372 {
8373 bool operator() (const_tree t)
8374 {
8375 return DECL_P (t) && (TREE_PRIVATE (t) || TREE_PROTECTED (t));
8376 }
8377 };
8378
8379 /* Return the DECL of the first non-public subobject of class TYPE
8380 or null if none can be found. */
8381
8382 static inline tree
8383 first_non_public_field (tree type)
8384 {
8385 return first_non_static_field (type, NonPublicField ());
8386 }
8387
8388 struct NonTrivialField
8389 {
8390 bool operator() (const_tree t)
8391 {
8392 return !trivial_type_p (DECL_P (t) ? TREE_TYPE (t) : t);
8393 }
8394 };
8395
8396 /* Return the DECL of the first non-trivial subobject of class TYPE
8397 or null if none can be found. */
8398
8399 static inline tree
8400 first_non_trivial_field (tree type)
8401 {
8402 return first_non_static_field (type, NonTrivialField ());
8403 }
8404
8405 } /* unnamed namespace */
8406
8407 /* Return true if all copy and move assignment operator overloads for
8408 class TYPE are trivial and at least one of them is not deleted and,
8409 when ACCESS is set, accessible. Return false otherwise. Set
8410 HASASSIGN to true when the TYPE has a (not necessarily trivial)
8411 copy or move assignment. */
8412
8413 static bool
8414 has_trivial_copy_assign_p (tree type, bool access, bool *hasassign)
8415 {
8416 tree fns = get_class_binding (type, assign_op_identifier);
8417 bool all_trivial = true;
8418
8419 /* Iterate over overloads of the assignment operator, checking
8420 accessible copy assignments for triviality. */
8421
8422 for (ovl_iterator oi (fns); oi; ++oi)
8423 {
8424 tree f = *oi;
8425
8426 /* Skip operators that aren't copy assignments. */
8427 if (!copy_fn_p (f))
8428 continue;
8429
8430 bool accessible = (!access || !(TREE_PRIVATE (f) || TREE_PROTECTED (f))
8431 || accessible_p (TYPE_BINFO (type), f, true));
8432
8433 /* Skip template assignment operators and deleted functions. */
8434 if (TREE_CODE (f) != FUNCTION_DECL || DECL_DELETED_FN (f))
8435 continue;
8436
8437 if (accessible)
8438 *hasassign = true;
8439
8440 if (!accessible || !trivial_fn_p (f))
8441 all_trivial = false;
8442
8443 /* Break early when both properties have been determined. */
8444 if (*hasassign && !all_trivial)
8445 break;
8446 }
8447
8448 /* Return true if they're all trivial and one of the expressions
8449 TYPE() = TYPE() or TYPE() = (TYPE&)() is valid. */
8450 tree ref = cp_build_reference_type (type, false);
8451 return (all_trivial
8452 && (is_trivially_xible (MODIFY_EXPR, type, type)
8453 || is_trivially_xible (MODIFY_EXPR, type, ref)));
8454 }
8455
8456 /* Return true if all copy and move ctor overloads for class TYPE are
8457 trivial and at least one of them is not deleted and, when ACCESS is
8458 set, accessible. Return false otherwise. Set each element of HASCTOR[]
8459 to true when the TYPE has a (not necessarily trivial) default and copy
8460 (or move) ctor, respectively. */
8461
8462 static bool
8463 has_trivial_copy_p (tree type, bool access, bool hasctor[2])
8464 {
8465 tree fns = get_class_binding (type, complete_ctor_identifier);
8466 bool all_trivial = true;
8467
8468 for (ovl_iterator oi (fns); oi; ++oi)
8469 {
8470 tree f = *oi;
8471
8472 /* Skip template constructors. */
8473 if (TREE_CODE (f) != FUNCTION_DECL)
8474 continue;
8475
8476 bool cpy_or_move_ctor_p = copy_fn_p (f);
8477
8478 /* Skip ctors other than default, copy, and move. */
8479 if (!cpy_or_move_ctor_p && !default_ctor_p (f))
8480 continue;
8481
8482 if (DECL_DELETED_FN (f))
8483 continue;
8484
8485 bool accessible = (!access || !(TREE_PRIVATE (f) || TREE_PROTECTED (f))
8486 || accessible_p (TYPE_BINFO (type), f, true));
8487
8488 if (accessible)
8489 hasctor[cpy_or_move_ctor_p] = true;
8490
8491 if (cpy_or_move_ctor_p && (!accessible || !trivial_fn_p (f)))
8492 all_trivial = false;
8493
8494 /* Break early when both properties have been determined. */
8495 if (hasctor[0] && hasctor[1] && !all_trivial)
8496 break;
8497 }
8498
8499 return all_trivial;
8500 }
8501
8502 /* Issue a warning on a call to the built-in function FNDECL if it is
8503 a raw memory write whose destination is not an object of (something
8504 like) trivial or standard layout type with a non-deleted assignment
8505 and copy ctor. Detects const correctness violations, corrupting
8506 references, virtual table pointers, and bypassing non-trivial
8507 assignments. */
8508
8509 static void
8510 maybe_warn_class_memaccess (location_t loc, tree fndecl,
8511 const vec<tree, va_gc> *args)
8512 {
8513 /* Except for bcopy where it's second, the destination pointer is
8514 the first argument for all functions handled here. Compute
8515 the index of the destination and source arguments. */
8516 unsigned dstidx = DECL_FUNCTION_CODE (fndecl) == BUILT_IN_BCOPY;
8517 unsigned srcidx = !dstidx;
8518
8519 tree dest = (*args)[dstidx];
8520 if (!TREE_TYPE (dest) || !INDIRECT_TYPE_P (TREE_TYPE (dest)))
8521 return;
8522
8523 tree srctype = NULL_TREE;
8524
8525 /* Determine the type of the pointed-to object and whether it's
8526 a complete class type. */
8527 tree desttype = TREE_TYPE (TREE_TYPE (dest));
8528
8529 if (!desttype || !COMPLETE_TYPE_P (desttype) || !CLASS_TYPE_P (desttype))
8530 return;
8531
8532 /* Check to see if the raw memory call is made by a non-static member
8533 function with THIS as the destination argument for the destination
8534 type. If so, and if the class has no non-trivial bases or members,
8535 be more permissive. */
8536 if (current_function_decl
8537 && DECL_NONSTATIC_MEMBER_FUNCTION_P (current_function_decl)
8538 && is_this_parameter (tree_strip_nop_conversions (dest)))
8539 {
8540 tree ctx = DECL_CONTEXT (current_function_decl);
8541 bool special = same_type_ignoring_top_level_qualifiers_p (ctx, desttype);
8542 tree binfo = TYPE_BINFO (ctx);
8543
8544 /* FIXME: The following if statement is overly permissive (see
8545 bug 84851). Remove it in GCC 9. */
8546 if (special
8547 && !BINFO_VTABLE (binfo)
8548 && !BINFO_N_BASE_BINFOS (binfo)
8549 && (DECL_CONSTRUCTOR_P (current_function_decl)
8550 || DECL_DESTRUCTOR_P (current_function_decl)))
8551 return;
8552
8553 if (special
8554 && !BINFO_VTABLE (binfo)
8555 && !first_non_trivial_field (desttype))
8556 return;
8557 }
8558
8559 /* True if the class is trivial. */
8560 bool trivial = trivial_type_p (desttype);
8561
8562 /* Set to true if DESTYPE has an accessible copy assignment. */
8563 bool hasassign = false;
8564 /* True if all of the class' overloaded copy assignment operators
8565 are all trivial (and not deleted) and at least one of them is
8566 accessible. */
8567 bool trivassign = has_trivial_copy_assign_p (desttype, true, &hasassign);
8568
8569 /* Set to true if DESTTYPE has an accessible default and copy ctor,
8570 respectively. */
8571 bool hasctors[2] = { false, false };
8572
8573 /* True if all of the class' overloaded copy constructors are all
8574 trivial (and not deleted) and at least one of them is accessible. */
8575 bool trivcopy = has_trivial_copy_p (desttype, true, hasctors);
8576
8577 /* Set FLD to the first private/protected member of the class. */
8578 tree fld = trivial ? first_non_public_field (desttype) : NULL_TREE;
8579
8580 /* The warning format string. */
8581 const char *warnfmt = NULL;
8582 /* A suggested alternative to offer instead of the raw memory call.
8583 Empty string when none can be come up with. */
8584 const char *suggest = "";
8585 bool warned = false;
8586
8587 switch (DECL_FUNCTION_CODE (fndecl))
8588 {
8589 case BUILT_IN_MEMSET:
8590 if (!integer_zerop (maybe_constant_value ((*args)[1])))
8591 {
8592 /* Diagnose setting non-copy-assignable or non-trivial types,
8593 or types with a private member, to (potentially) non-zero
8594 bytes. Since the value of the bytes being written is unknown,
8595 suggest using assignment instead (if one exists). Also warn
8596 for writes into objects for which zero-initialization doesn't
8597 mean all bits clear (pointer-to-member data, where null is all
8598 bits set). Since the value being written is (most likely)
8599 non-zero, simply suggest assignment (but not copy assignment). */
8600 suggest = "; use assignment instead";
8601 if (!trivassign)
8602 warnfmt = G_("%qD writing to an object of type %#qT with "
8603 "no trivial copy-assignment");
8604 else if (!trivial)
8605 warnfmt = G_("%qD writing to an object of non-trivial type %#qT%s");
8606 else if (fld)
8607 {
8608 const char *access = TREE_PRIVATE (fld) ? "private" : "protected";
8609 warned = warning_at (loc, OPT_Wclass_memaccess,
8610 "%qD writing to an object of type %#qT with "
8611 "%qs member %qD",
8612 fndecl, desttype, access, fld);
8613 }
8614 else if (!zero_init_p (desttype))
8615 warnfmt = G_("%qD writing to an object of type %#qT containing "
8616 "a pointer to data member%s");
8617
8618 break;
8619 }
8620 /* Fall through. */
8621
8622 case BUILT_IN_BZERO:
8623 /* Similarly to the above, diagnose clearing non-trivial or non-
8624 standard layout objects, or objects of types with no assignmenmt.
8625 Since the value being written is known to be zero, suggest either
8626 copy assignment, copy ctor, or default ctor as an alternative,
8627 depending on what's available. */
8628
8629 if (hasassign && hasctors[0])
8630 suggest = G_("; use assignment or value-initialization instead");
8631 else if (hasassign)
8632 suggest = G_("; use assignment instead");
8633 else if (hasctors[0])
8634 suggest = G_("; use value-initialization instead");
8635
8636 if (!trivassign)
8637 warnfmt = G_("%qD clearing an object of type %#qT with "
8638 "no trivial copy-assignment%s");
8639 else if (!trivial)
8640 warnfmt = G_("%qD clearing an object of non-trivial type %#qT%s");
8641 else if (!zero_init_p (desttype))
8642 warnfmt = G_("%qD clearing an object of type %#qT containing "
8643 "a pointer-to-member%s");
8644 break;
8645
8646 case BUILT_IN_BCOPY:
8647 case BUILT_IN_MEMCPY:
8648 case BUILT_IN_MEMMOVE:
8649 case BUILT_IN_MEMPCPY:
8650 /* Determine the type of the source object. */
8651 srctype = TREE_TYPE ((*args)[srcidx]);
8652 if (!srctype || !INDIRECT_TYPE_P (srctype))
8653 srctype = void_type_node;
8654 else
8655 srctype = TREE_TYPE (srctype);
8656
8657 /* Since it's impossible to determine wheter the byte copy is
8658 being used in place of assignment to an existing object or
8659 as a substitute for initialization, assume it's the former.
8660 Determine the best alternative to use instead depending on
8661 what's not deleted. */
8662 if (hasassign && hasctors[1])
8663 suggest = G_("; use copy-assignment or copy-initialization instead");
8664 else if (hasassign)
8665 suggest = G_("; use copy-assignment instead");
8666 else if (hasctors[1])
8667 suggest = G_("; use copy-initialization instead");
8668
8669 if (!trivassign)
8670 warnfmt = G_("%qD writing to an object of type %#qT with no trivial "
8671 "copy-assignment%s");
8672 else if (!trivially_copyable_p (desttype))
8673 warnfmt = G_("%qD writing to an object of non-trivially copyable "
8674 "type %#qT%s");
8675 else if (!trivcopy)
8676 warnfmt = G_("%qD writing to an object with a deleted copy constructor");
8677
8678 else if (!trivial
8679 && !VOID_TYPE_P (srctype)
8680 && !char_type_p (TYPE_MAIN_VARIANT (srctype))
8681 && !same_type_ignoring_top_level_qualifiers_p (desttype,
8682 srctype))
8683 {
8684 /* Warn when copying into a non-trivial object from an object
8685 of a different type other than void or char. */
8686 warned = warning_at (loc, OPT_Wclass_memaccess,
8687 "%qD copying an object of non-trivial type "
8688 "%#qT from an array of %#qT",
8689 fndecl, desttype, srctype);
8690 }
8691 else if (fld
8692 && !VOID_TYPE_P (srctype)
8693 && !char_type_p (TYPE_MAIN_VARIANT (srctype))
8694 && !same_type_ignoring_top_level_qualifiers_p (desttype,
8695 srctype))
8696 {
8697 const char *access = TREE_PRIVATE (fld) ? "private" : "protected";
8698 warned = warning_at (loc, OPT_Wclass_memaccess,
8699 "%qD copying an object of type %#qT with "
8700 "%qs member %qD from an array of %#qT; use "
8701 "assignment or copy-initialization instead",
8702 fndecl, desttype, access, fld, srctype);
8703 }
8704 else if (!trivial && vec_safe_length (args) > 2)
8705 {
8706 tree sz = maybe_constant_value ((*args)[2]);
8707 if (!tree_fits_uhwi_p (sz))
8708 break;
8709
8710 /* Finally, warn on partial copies. */
8711 unsigned HOST_WIDE_INT typesize
8712 = tree_to_uhwi (TYPE_SIZE_UNIT (desttype));
8713 if (unsigned HOST_WIDE_INT partial = tree_to_uhwi (sz) % typesize)
8714 warned = warning_at (loc, OPT_Wclass_memaccess,
8715 (typesize - partial > 1
8716 ? G_("%qD writing to an object of "
8717 "a non-trivial type %#qT leaves %wu "
8718 "bytes unchanged")
8719 : G_("%qD writing to an object of "
8720 "a non-trivial type %#qT leaves %wu "
8721 "byte unchanged")),
8722 fndecl, desttype, typesize - partial);
8723 }
8724 break;
8725
8726 case BUILT_IN_REALLOC:
8727
8728 if (!trivially_copyable_p (desttype))
8729 warnfmt = G_("%qD moving an object of non-trivially copyable type "
8730 "%#qT; use %<new%> and %<delete%> instead");
8731 else if (!trivcopy)
8732 warnfmt = G_("%qD moving an object of type %#qT with deleted copy "
8733 "constructor; use %<new%> and %<delete%> instead");
8734 else if (!get_dtor (desttype, tf_none))
8735 warnfmt = G_("%qD moving an object of type %#qT with deleted "
8736 "destructor");
8737 else if (!trivial)
8738 {
8739 tree sz = maybe_constant_value ((*args)[1]);
8740 if (TREE_CODE (sz) == INTEGER_CST
8741 && tree_int_cst_lt (sz, TYPE_SIZE_UNIT (desttype)))
8742 /* Finally, warn on reallocation into insufficient space. */
8743 warned = warning_at (loc, OPT_Wclass_memaccess,
8744 "%qD moving an object of non-trivial type "
8745 "%#qT and size %E into a region of size %E",
8746 fndecl, desttype, TYPE_SIZE_UNIT (desttype),
8747 sz);
8748 }
8749 break;
8750
8751 default:
8752 return;
8753 }
8754
8755 if (warnfmt)
8756 {
8757 if (suggest)
8758 warned = warning_at (loc, OPT_Wclass_memaccess,
8759 warnfmt, fndecl, desttype, suggest);
8760 else
8761 warned = warning_at (loc, OPT_Wclass_memaccess,
8762 warnfmt, fndecl, desttype);
8763 }
8764
8765 if (warned)
8766 inform (location_of (desttype), "%#qT declared here", desttype);
8767 }
8768
8769 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
8770 This function performs no overload resolution, conversion, or other
8771 high-level operations. */
8772
8773 tree
8774 build_cxx_call (tree fn, int nargs, tree *argarray,
8775 tsubst_flags_t complain)
8776 {
8777 tree fndecl;
8778
8779 /* Remember roughly where this call is. */
8780 location_t loc = EXPR_LOC_OR_LOC (fn, input_location);
8781 fn = build_call_a (fn, nargs, argarray);
8782 SET_EXPR_LOCATION (fn, loc);
8783
8784 fndecl = get_callee_fndecl (fn);
8785
8786 /* Check that arguments to builtin functions match the expectations. */
8787 if (fndecl
8788 && DECL_BUILT_IN (fndecl)
8789 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
8790 {
8791 int i;
8792
8793 /* We need to take care that values to BUILT_IN_NORMAL
8794 are reduced. */
8795 for (i = 0; i < nargs; i++)
8796 argarray[i] = fold_non_dependent_expr (argarray[i]);
8797
8798 if (!check_builtin_function_arguments (EXPR_LOCATION (fn), vNULL, fndecl,
8799 nargs, argarray))
8800 return error_mark_node;
8801 }
8802
8803 if (VOID_TYPE_P (TREE_TYPE (fn)))
8804 return fn;
8805
8806 /* 5.2.2/11: If a function call is a prvalue of object type: if the
8807 function call is either the operand of a decltype-specifier or the
8808 right operand of a comma operator that is the operand of a
8809 decltype-specifier, a temporary object is not introduced for the
8810 prvalue. The type of the prvalue may be incomplete. */
8811 if (!(complain & tf_decltype))
8812 {
8813 fn = require_complete_type_sfinae (fn, complain);
8814 if (fn == error_mark_node)
8815 return error_mark_node;
8816
8817 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
8818 {
8819 fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
8820 maybe_warn_parm_abi (TREE_TYPE (fn), loc);
8821 }
8822 }
8823 return convert_from_reference (fn);
8824 }
8825
8826 /* Returns the value to use for the in-charge parameter when making a
8827 call to a function with the indicated NAME.
8828
8829 FIXME:Can't we find a neater way to do this mapping? */
8830
8831 tree
8832 in_charge_arg_for_name (tree name)
8833 {
8834 if (IDENTIFIER_CTOR_P (name))
8835 {
8836 if (name == complete_ctor_identifier)
8837 return integer_one_node;
8838 gcc_checking_assert (name == base_ctor_identifier);
8839 }
8840 else
8841 {
8842 if (name == complete_dtor_identifier)
8843 return integer_two_node;
8844 else if (name == deleting_dtor_identifier)
8845 return integer_three_node;
8846 gcc_checking_assert (name == base_dtor_identifier);
8847 }
8848
8849 return integer_zero_node;
8850 }
8851
8852 /* We've built up a constructor call RET. Complain if it delegates to the
8853 constructor we're currently compiling. */
8854
8855 static void
8856 check_self_delegation (tree ret)
8857 {
8858 if (TREE_CODE (ret) == TARGET_EXPR)
8859 ret = TARGET_EXPR_INITIAL (ret);
8860 tree fn = cp_get_callee_fndecl_nofold (ret);
8861 if (fn && DECL_ABSTRACT_ORIGIN (fn) == current_function_decl)
8862 error ("constructor delegates to itself");
8863 }
8864
8865 /* Build a call to a constructor, destructor, or an assignment
8866 operator for INSTANCE, an expression with class type. NAME
8867 indicates the special member function to call; *ARGS are the
8868 arguments. ARGS may be NULL. This may change ARGS. BINFO
8869 indicates the base of INSTANCE that is to be passed as the `this'
8870 parameter to the member function called.
8871
8872 FLAGS are the LOOKUP_* flags to use when processing the call.
8873
8874 If NAME indicates a complete object constructor, INSTANCE may be
8875 NULL_TREE. In this case, the caller will call build_cplus_new to
8876 store the newly constructed object into a VAR_DECL. */
8877
8878 tree
8879 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
8880 tree binfo, int flags, tsubst_flags_t complain)
8881 {
8882 tree fns;
8883 /* The type of the subobject to be constructed or destroyed. */
8884 tree class_type;
8885 vec<tree, va_gc> *allocated = NULL;
8886 tree ret;
8887
8888 gcc_assert (IDENTIFIER_CDTOR_P (name) || name == assign_op_identifier);
8889
8890 if (error_operand_p (instance))
8891 return error_mark_node;
8892
8893 if (IDENTIFIER_DTOR_P (name))
8894 {
8895 gcc_assert (args == NULL || vec_safe_is_empty (*args));
8896 if (!type_build_dtor_call (TREE_TYPE (instance)))
8897 /* Shortcut to avoid lazy destructor declaration. */
8898 return build_trivial_dtor_call (instance);
8899 }
8900
8901 if (TYPE_P (binfo))
8902 {
8903 /* Resolve the name. */
8904 if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
8905 return error_mark_node;
8906
8907 binfo = TYPE_BINFO (binfo);
8908 }
8909
8910 gcc_assert (binfo != NULL_TREE);
8911
8912 class_type = BINFO_TYPE (binfo);
8913
8914 /* Handle the special case where INSTANCE is NULL_TREE. */
8915 if (name == complete_ctor_identifier && !instance)
8916 instance = build_dummy_object (class_type);
8917 else
8918 {
8919 /* Convert to the base class, if necessary. */
8920 if (!same_type_ignoring_top_level_qualifiers_p
8921 (TREE_TYPE (instance), BINFO_TYPE (binfo)))
8922 {
8923 if (IDENTIFIER_CDTOR_P (name))
8924 /* For constructors and destructors, either the base is
8925 non-virtual, or it is virtual but we are doing the
8926 conversion from a constructor or destructor for the
8927 complete object. In either case, we can convert
8928 statically. */
8929 instance = convert_to_base_statically (instance, binfo);
8930 else
8931 {
8932 /* However, for assignment operators, we must convert
8933 dynamically if the base is virtual. */
8934 gcc_checking_assert (name == assign_op_identifier);
8935 instance = build_base_path (PLUS_EXPR, instance,
8936 binfo, /*nonnull=*/1, complain);
8937 }
8938 }
8939 }
8940
8941 gcc_assert (instance != NULL_TREE);
8942
8943 /* In C++17, "If the initializer expression is a prvalue and the
8944 cv-unqualified version of the source type is the same class as the class
8945 of the destination, the initializer expression is used to initialize the
8946 destination object." Handle that here to avoid doing overload
8947 resolution. */
8948 if (cxx_dialect >= cxx17
8949 && args && vec_safe_length (*args) == 1
8950 && name == complete_ctor_identifier)
8951 {
8952 tree arg = (**args)[0];
8953
8954 if (BRACE_ENCLOSED_INITIALIZER_P (arg)
8955 && !TYPE_HAS_LIST_CTOR (class_type)
8956 && CONSTRUCTOR_NELTS (arg) == 1)
8957 arg = CONSTRUCTOR_ELT (arg, 0)->value;
8958
8959 if ((TREE_CODE (arg) == TARGET_EXPR
8960 || TREE_CODE (arg) == CONSTRUCTOR)
8961 && (same_type_ignoring_top_level_qualifiers_p
8962 (class_type, TREE_TYPE (arg))))
8963 {
8964 if (is_dummy_object (instance))
8965 return arg;
8966 else if (TREE_CODE (arg) == TARGET_EXPR)
8967 TARGET_EXPR_DIRECT_INIT_P (arg) = true;
8968
8969 if ((complain & tf_error)
8970 && (flags & LOOKUP_DELEGATING_CONS))
8971 check_self_delegation (arg);
8972 /* Avoid change of behavior on Wunused-var-2.C. */
8973 instance = mark_lvalue_use (instance);
8974 return build2 (INIT_EXPR, class_type, instance, arg);
8975 }
8976 }
8977
8978 fns = lookup_fnfields (binfo, name, 1);
8979
8980 /* When making a call to a constructor or destructor for a subobject
8981 that uses virtual base classes, pass down a pointer to a VTT for
8982 the subobject. */
8983 if ((name == base_ctor_identifier
8984 || name == base_dtor_identifier)
8985 && CLASSTYPE_VBASECLASSES (class_type))
8986 {
8987 tree vtt;
8988 tree sub_vtt;
8989
8990 /* If the current function is a complete object constructor
8991 or destructor, then we fetch the VTT directly.
8992 Otherwise, we look it up using the VTT we were given. */
8993 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
8994 vtt = decay_conversion (vtt, complain);
8995 if (vtt == error_mark_node)
8996 return error_mark_node;
8997 vtt = build_if_in_charge (vtt, current_vtt_parm);
8998 if (BINFO_SUBVTT_INDEX (binfo))
8999 sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
9000 else
9001 sub_vtt = vtt;
9002
9003 if (args == NULL)
9004 {
9005 allocated = make_tree_vector ();
9006 args = &allocated;
9007 }
9008
9009 vec_safe_insert (*args, 0, sub_vtt);
9010 }
9011
9012 ret = build_new_method_call (instance, fns, args,
9013 TYPE_BINFO (BINFO_TYPE (binfo)),
9014 flags, /*fn=*/NULL,
9015 complain);
9016
9017 if (allocated != NULL)
9018 release_tree_vector (allocated);
9019
9020 if ((complain & tf_error)
9021 && (flags & LOOKUP_DELEGATING_CONS)
9022 && name == complete_ctor_identifier)
9023 check_self_delegation (ret);
9024
9025 return ret;
9026 }
9027
9028 /* Return the NAME, as a C string. The NAME indicates a function that
9029 is a member of TYPE. *FREE_P is set to true if the caller must
9030 free the memory returned.
9031
9032 Rather than go through all of this, we should simply set the names
9033 of constructors and destructors appropriately, and dispense with
9034 ctor_identifier, dtor_identifier, etc. */
9035
9036 static char *
9037 name_as_c_string (tree name, tree type, bool *free_p)
9038 {
9039 const char *pretty_name;
9040
9041 /* Assume that we will not allocate memory. */
9042 *free_p = false;
9043 /* Constructors and destructors are special. */
9044 if (IDENTIFIER_CDTOR_P (name))
9045 {
9046 pretty_name
9047 = identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type)));
9048 /* For a destructor, add the '~'. */
9049 if (IDENTIFIER_DTOR_P (name))
9050 {
9051 pretty_name = concat ("~", pretty_name, NULL);
9052 /* Remember that we need to free the memory allocated. */
9053 *free_p = true;
9054 }
9055 }
9056 else if (IDENTIFIER_CONV_OP_P (name))
9057 {
9058 pretty_name = concat ("operator ",
9059 type_as_string_translate (TREE_TYPE (name),
9060 TFF_PLAIN_IDENTIFIER),
9061 NULL);
9062 /* Remember that we need to free the memory allocated. */
9063 *free_p = true;
9064 }
9065 else
9066 pretty_name = identifier_to_locale (IDENTIFIER_POINTER (name));
9067
9068 return CONST_CAST (char *, pretty_name);
9069 }
9070
9071 /* Build a call to "INSTANCE.FN (ARGS)". If FN_P is non-NULL, it will
9072 be set, upon return, to the function called. ARGS may be NULL.
9073 This may change ARGS. */
9074
9075 static tree
9076 build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
9077 tree conversion_path, int flags,
9078 tree *fn_p, tsubst_flags_t complain)
9079 {
9080 struct z_candidate *candidates = 0, *cand;
9081 tree explicit_targs = NULL_TREE;
9082 tree basetype = NULL_TREE;
9083 tree access_binfo, binfo;
9084 tree optype;
9085 tree first_mem_arg = NULL_TREE;
9086 tree name;
9087 bool skip_first_for_error;
9088 vec<tree, va_gc> *user_args;
9089 tree call;
9090 tree fn;
9091 int template_only = 0;
9092 bool any_viable_p;
9093 tree orig_instance;
9094 tree orig_fns;
9095 vec<tree, va_gc> *orig_args = NULL;
9096 void *p;
9097
9098 gcc_assert (instance != NULL_TREE);
9099
9100 /* We don't know what function we're going to call, yet. */
9101 if (fn_p)
9102 *fn_p = NULL_TREE;
9103
9104 if (error_operand_p (instance)
9105 || !fns || error_operand_p (fns))
9106 return error_mark_node;
9107
9108 if (!BASELINK_P (fns))
9109 {
9110 if (complain & tf_error)
9111 error ("call to non-function %qD", fns);
9112 return error_mark_node;
9113 }
9114
9115 orig_instance = instance;
9116 orig_fns = fns;
9117
9118 /* Dismantle the baselink to collect all the information we need. */
9119 if (!conversion_path)
9120 conversion_path = BASELINK_BINFO (fns);
9121 access_binfo = BASELINK_ACCESS_BINFO (fns);
9122 binfo = BASELINK_BINFO (fns);
9123 optype = BASELINK_OPTYPE (fns);
9124 fns = BASELINK_FUNCTIONS (fns);
9125 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
9126 {
9127 explicit_targs = TREE_OPERAND (fns, 1);
9128 fns = TREE_OPERAND (fns, 0);
9129 template_only = 1;
9130 }
9131 gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
9132 || TREE_CODE (fns) == TEMPLATE_DECL
9133 || TREE_CODE (fns) == OVERLOAD);
9134 fn = OVL_FIRST (fns);
9135 name = DECL_NAME (fn);
9136
9137 basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
9138 gcc_assert (CLASS_TYPE_P (basetype));
9139
9140 user_args = args == NULL ? NULL : *args;
9141 /* Under DR 147 A::A() is an invalid constructor call,
9142 not a functional cast. */
9143 if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
9144 {
9145 if (! (complain & tf_error))
9146 return error_mark_node;
9147
9148 basetype = DECL_CONTEXT (fn);
9149 name = constructor_name (basetype);
9150 if (permerror (input_location,
9151 "cannot call constructor %<%T::%D%> directly",
9152 basetype, name))
9153 inform (input_location, "for a function-style cast, remove the "
9154 "redundant %<::%D%>", name);
9155 call = build_functional_cast (basetype, build_tree_list_vec (user_args),
9156 complain);
9157 return call;
9158 }
9159
9160 if (processing_template_decl)
9161 {
9162 orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
9163 instance = build_non_dependent_expr (instance);
9164 if (args != NULL)
9165 make_args_non_dependent (*args);
9166 }
9167
9168 /* Process the argument list. */
9169 if (args != NULL && *args != NULL)
9170 {
9171 *args = resolve_args (*args, complain);
9172 if (*args == NULL)
9173 return error_mark_node;
9174 user_args = *args;
9175 }
9176
9177 /* Consider the object argument to be used even if we end up selecting a
9178 static member function. */
9179 instance = mark_type_use (instance);
9180
9181 /* Figure out whether to skip the first argument for the error
9182 message we will display to users if an error occurs. We don't
9183 want to display any compiler-generated arguments. The "this"
9184 pointer hasn't been added yet. However, we must remove the VTT
9185 pointer if this is a call to a base-class constructor or
9186 destructor. */
9187 skip_first_for_error = false;
9188 if (IDENTIFIER_CDTOR_P (name))
9189 {
9190 /* Callers should explicitly indicate whether they want to ctor
9191 the complete object or just the part without virtual bases. */
9192 gcc_assert (name != ctor_identifier);
9193
9194 /* Remove the VTT pointer, if present. */
9195 if ((name == base_ctor_identifier || name == base_dtor_identifier)
9196 && CLASSTYPE_VBASECLASSES (basetype))
9197 skip_first_for_error = true;
9198
9199 /* It's OK to call destructors and constructors on cv-qualified
9200 objects. Therefore, convert the INSTANCE to the unqualified
9201 type, if necessary. */
9202 if (!same_type_p (basetype, TREE_TYPE (instance)))
9203 {
9204 instance = build_this (instance);
9205 instance = build_nop (build_pointer_type (basetype), instance);
9206 instance = build_fold_indirect_ref (instance);
9207 }
9208 }
9209 else
9210 gcc_assert (!DECL_DESTRUCTOR_P (fn) && !DECL_CONSTRUCTOR_P (fn));
9211
9212 /* For the overload resolution we need to find the actual `this`
9213 that would be captured if the call turns out to be to a
9214 non-static member function. Do not actually capture it at this
9215 point. */
9216 if (DECL_CONSTRUCTOR_P (fn))
9217 /* Constructors don't use the enclosing 'this'. */
9218 first_mem_arg = instance;
9219 else
9220 first_mem_arg = maybe_resolve_dummy (instance, false);
9221
9222 /* Get the high-water mark for the CONVERSION_OBSTACK. */
9223 p = conversion_obstack_alloc (0);
9224
9225 /* The number of arguments artificial parms in ARGS; we subtract one because
9226 there's no 'this' in ARGS. */
9227 unsigned skip = num_artificial_parms_for (fn) - 1;
9228
9229 /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
9230 initializer, not T({ }). */
9231 if (DECL_CONSTRUCTOR_P (fn)
9232 && vec_safe_length (user_args) > skip
9233 && DIRECT_LIST_INIT_P ((*user_args)[skip]))
9234 {
9235 tree init_list = (*user_args)[skip];
9236 tree init = NULL_TREE;
9237
9238 gcc_assert (user_args->length () == skip + 1
9239 && !(flags & LOOKUP_ONLYCONVERTING));
9240
9241 /* If the initializer list has no elements and T is a class type with
9242 a default constructor, the object is value-initialized. Handle
9243 this here so we don't need to handle it wherever we use
9244 build_special_member_call. */
9245 if (CONSTRUCTOR_NELTS (init_list) == 0
9246 && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
9247 /* For a user-provided default constructor, use the normal
9248 mechanisms so that protected access works. */
9249 && type_has_non_user_provided_default_constructor (basetype)
9250 && !processing_template_decl)
9251 init = build_value_init (basetype, complain);
9252
9253 /* If BASETYPE is an aggregate, we need to do aggregate
9254 initialization. */
9255 else if (CP_AGGREGATE_TYPE_P (basetype))
9256 {
9257 init = reshape_init (basetype, init_list, complain);
9258 init = digest_init (basetype, init, complain);
9259 }
9260
9261 if (init)
9262 {
9263 if (is_dummy_object (instance))
9264 return get_target_expr_sfinae (init, complain);
9265 init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
9266 TREE_SIDE_EFFECTS (init) = true;
9267 return init;
9268 }
9269
9270 /* Otherwise go ahead with overload resolution. */
9271 add_list_candidates (fns, first_mem_arg, user_args,
9272 basetype, explicit_targs, template_only,
9273 conversion_path, access_binfo, flags,
9274 &candidates, complain);
9275 }
9276 else
9277 add_candidates (fns, first_mem_arg, user_args, optype,
9278 explicit_targs, template_only, conversion_path,
9279 access_binfo, flags, &candidates, complain);
9280
9281 any_viable_p = false;
9282 candidates = splice_viable (candidates, false, &any_viable_p);
9283
9284 if (!any_viable_p)
9285 {
9286 if (complain & tf_error)
9287 {
9288 if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
9289 cxx_incomplete_type_error (instance, basetype);
9290 else if (optype)
9291 error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
9292 basetype, optype, build_tree_list_vec (user_args),
9293 TREE_TYPE (instance));
9294 else
9295 {
9296 tree arglist = build_tree_list_vec (user_args);
9297 tree errname = name;
9298 bool twiddle = false;
9299 if (IDENTIFIER_CDTOR_P (errname))
9300 {
9301 twiddle = IDENTIFIER_DTOR_P (errname);
9302 errname = constructor_name (basetype);
9303 }
9304 if (explicit_targs)
9305 errname = lookup_template_function (errname, explicit_targs);
9306 if (skip_first_for_error)
9307 arglist = TREE_CHAIN (arglist);
9308 error ("no matching function for call to %<%T::%s%E(%A)%#V%>",
9309 basetype, &"~"[!twiddle], errname, arglist,
9310 TREE_TYPE (instance));
9311 }
9312 print_z_candidates (location_of (name), candidates);
9313 }
9314 call = error_mark_node;
9315 }
9316 else
9317 {
9318 cand = tourney (candidates, complain);
9319 if (cand == 0)
9320 {
9321 char *pretty_name;
9322 bool free_p;
9323 tree arglist;
9324
9325 if (complain & tf_error)
9326 {
9327 pretty_name = name_as_c_string (name, basetype, &free_p);
9328 arglist = build_tree_list_vec (user_args);
9329 if (skip_first_for_error)
9330 arglist = TREE_CHAIN (arglist);
9331 if (!any_strictly_viable (candidates))
9332 error ("no matching function for call to %<%s(%A)%>",
9333 pretty_name, arglist);
9334 else
9335 error ("call of overloaded %<%s(%A)%> is ambiguous",
9336 pretty_name, arglist);
9337 print_z_candidates (location_of (name), candidates);
9338 if (free_p)
9339 free (pretty_name);
9340 }
9341 call = error_mark_node;
9342 }
9343 else
9344 {
9345 fn = cand->fn;
9346 call = NULL_TREE;
9347
9348 if (!(flags & LOOKUP_NONVIRTUAL)
9349 && DECL_PURE_VIRTUAL_P (fn)
9350 && instance == current_class_ref
9351 && (complain & tf_warning))
9352 {
9353 /* This is not an error, it is runtime undefined
9354 behavior. */
9355 if (!current_function_decl)
9356 warning (0, "pure virtual %q#D called from "
9357 "non-static data member initializer", fn);
9358 else if (DECL_CONSTRUCTOR_P (current_function_decl)
9359 || DECL_DESTRUCTOR_P (current_function_decl))
9360 warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
9361 ? G_("pure virtual %q#D called from constructor")
9362 : G_("pure virtual %q#D called from destructor")),
9363 fn);
9364 }
9365
9366 if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
9367 && !DECL_CONSTRUCTOR_P (fn)
9368 && is_dummy_object (instance))
9369 {
9370 instance = maybe_resolve_dummy (instance, true);
9371 if (instance == error_mark_node)
9372 call = error_mark_node;
9373 else if (!is_dummy_object (instance))
9374 {
9375 /* We captured 'this' in the current lambda now that
9376 we know we really need it. */
9377 cand->first_arg = instance;
9378 }
9379 else if (any_dependent_bases_p ())
9380 /* We can't tell until instantiation time whether we can use
9381 *this as the implicit object argument. */;
9382 else
9383 {
9384 if (complain & tf_error)
9385 error ("cannot call member function %qD without object",
9386 fn);
9387 call = error_mark_node;
9388 }
9389 }
9390
9391 if (call != error_mark_node)
9392 {
9393 /* Optimize away vtable lookup if we know that this
9394 function can't be overridden. We need to check if
9395 the context and the type where we found fn are the same,
9396 actually FN might be defined in a different class
9397 type because of a using-declaration. In this case, we
9398 do not want to perform a non-virtual call. */
9399 if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
9400 && same_type_ignoring_top_level_qualifiers_p
9401 (DECL_CONTEXT (fn), BINFO_TYPE (binfo))
9402 && resolves_to_fixed_type_p (instance, 0))
9403 flags |= LOOKUP_NONVIRTUAL;
9404 if (explicit_targs)
9405 flags |= LOOKUP_EXPLICIT_TMPL_ARGS;
9406 /* Now we know what function is being called. */
9407 if (fn_p)
9408 *fn_p = fn;
9409 /* Build the actual CALL_EXPR. */
9410 call = build_over_call (cand, flags, complain);
9411 /* In an expression of the form `a->f()' where `f' turns
9412 out to be a static member function, `a' is
9413 none-the-less evaluated. */
9414 if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
9415 && !is_dummy_object (instance)
9416 && TREE_SIDE_EFFECTS (instance))
9417 {
9418 /* But avoid the implicit lvalue-rvalue conversion when 'a'
9419 is volatile. */
9420 tree a = instance;
9421 if (TREE_THIS_VOLATILE (a))
9422 a = build_this (a);
9423 call = build2 (COMPOUND_EXPR, TREE_TYPE (call), a, call);
9424 }
9425 else if (call != error_mark_node
9426 && DECL_DESTRUCTOR_P (cand->fn)
9427 && !VOID_TYPE_P (TREE_TYPE (call)))
9428 /* An explicit call of the form "x->~X()" has type
9429 "void". However, on platforms where destructors
9430 return "this" (i.e., those where
9431 targetm.cxx.cdtor_returns_this is true), such calls
9432 will appear to have a return value of pointer type
9433 to the low-level call machinery. We do not want to
9434 change the low-level machinery, since we want to be
9435 able to optimize "delete f()" on such platforms as
9436 "operator delete(~X(f()))" (rather than generating
9437 "t = f(), ~X(t), operator delete (t)"). */
9438 call = build_nop (void_type_node, call);
9439 }
9440 }
9441 }
9442
9443 if (processing_template_decl && call != error_mark_node)
9444 {
9445 bool cast_to_void = false;
9446
9447 if (TREE_CODE (call) == COMPOUND_EXPR)
9448 call = TREE_OPERAND (call, 1);
9449 else if (TREE_CODE (call) == NOP_EXPR)
9450 {
9451 cast_to_void = true;
9452 call = TREE_OPERAND (call, 0);
9453 }
9454 if (INDIRECT_REF_P (call))
9455 call = TREE_OPERAND (call, 0);
9456 call = (build_min_non_dep_call_vec
9457 (call,
9458 build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
9459 orig_instance, orig_fns, NULL_TREE),
9460 orig_args));
9461 SET_EXPR_LOCATION (call, input_location);
9462 call = convert_from_reference (call);
9463 if (cast_to_void)
9464 call = build_nop (void_type_node, call);
9465 }
9466
9467 /* Free all the conversions we allocated. */
9468 obstack_free (&conversion_obstack, p);
9469
9470 if (orig_args != NULL)
9471 release_tree_vector (orig_args);
9472
9473 return call;
9474 }
9475
9476 /* Wrapper for above. */
9477
9478 tree
9479 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
9480 tree conversion_path, int flags,
9481 tree *fn_p, tsubst_flags_t complain)
9482 {
9483 tree ret;
9484 bool subtime = timevar_cond_start (TV_OVERLOAD);
9485 ret = build_new_method_call_1 (instance, fns, args, conversion_path, flags,
9486 fn_p, complain);
9487 timevar_cond_stop (TV_OVERLOAD, subtime);
9488 return ret;
9489 }
9490
9491 /* Returns true iff standard conversion sequence ICS1 is a proper
9492 subsequence of ICS2. */
9493
9494 static bool
9495 is_subseq (conversion *ics1, conversion *ics2)
9496 {
9497 /* We can assume that a conversion of the same code
9498 between the same types indicates a subsequence since we only get
9499 here if the types we are converting from are the same. */
9500
9501 while (ics1->kind == ck_rvalue
9502 || ics1->kind == ck_lvalue)
9503 ics1 = next_conversion (ics1);
9504
9505 while (1)
9506 {
9507 while (ics2->kind == ck_rvalue
9508 || ics2->kind == ck_lvalue)
9509 ics2 = next_conversion (ics2);
9510
9511 if (ics2->kind == ck_user
9512 || ics2->kind == ck_ambig
9513 || ics2->kind == ck_aggr
9514 || ics2->kind == ck_list
9515 || ics2->kind == ck_identity)
9516 /* At this point, ICS1 cannot be a proper subsequence of
9517 ICS2. We can get a USER_CONV when we are comparing the
9518 second standard conversion sequence of two user conversion
9519 sequences. */
9520 return false;
9521
9522 ics2 = next_conversion (ics2);
9523
9524 while (ics2->kind == ck_rvalue
9525 || ics2->kind == ck_lvalue)
9526 ics2 = next_conversion (ics2);
9527
9528 if (ics2->kind == ics1->kind
9529 && same_type_p (ics2->type, ics1->type)
9530 && (ics1->kind == ck_identity
9531 || same_type_p (next_conversion (ics2)->type,
9532 next_conversion (ics1)->type)))
9533 return true;
9534 }
9535 }
9536
9537 /* Returns nonzero iff DERIVED is derived from BASE. The inputs may
9538 be any _TYPE nodes. */
9539
9540 bool
9541 is_properly_derived_from (tree derived, tree base)
9542 {
9543 if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
9544 return false;
9545
9546 /* We only allow proper derivation here. The DERIVED_FROM_P macro
9547 considers every class derived from itself. */
9548 return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
9549 && DERIVED_FROM_P (base, derived));
9550 }
9551
9552 /* We build the ICS for an implicit object parameter as a pointer
9553 conversion sequence. However, such a sequence should be compared
9554 as if it were a reference conversion sequence. If ICS is the
9555 implicit conversion sequence for an implicit object parameter,
9556 modify it accordingly. */
9557
9558 static void
9559 maybe_handle_implicit_object (conversion **ics)
9560 {
9561 if ((*ics)->this_p)
9562 {
9563 /* [over.match.funcs]
9564
9565 For non-static member functions, the type of the
9566 implicit object parameter is "reference to cv X"
9567 where X is the class of which the function is a
9568 member and cv is the cv-qualification on the member
9569 function declaration. */
9570 conversion *t = *ics;
9571 tree reference_type;
9572
9573 /* The `this' parameter is a pointer to a class type. Make the
9574 implicit conversion talk about a reference to that same class
9575 type. */
9576 reference_type = TREE_TYPE (t->type);
9577 reference_type = build_reference_type (reference_type);
9578
9579 if (t->kind == ck_qual)
9580 t = next_conversion (t);
9581 if (t->kind == ck_ptr)
9582 t = next_conversion (t);
9583 t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
9584 t = direct_reference_binding (reference_type, t);
9585 t->this_p = 1;
9586 t->rvaluedness_matches_p = 0;
9587 *ics = t;
9588 }
9589 }
9590
9591 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
9592 and return the initial reference binding conversion. Otherwise,
9593 leave *ICS unchanged and return NULL. */
9594
9595 static conversion *
9596 maybe_handle_ref_bind (conversion **ics)
9597 {
9598 if ((*ics)->kind == ck_ref_bind)
9599 {
9600 conversion *old_ics = *ics;
9601 *ics = next_conversion (old_ics);
9602 (*ics)->user_conv_p = old_ics->user_conv_p;
9603 return old_ics;
9604 }
9605
9606 return NULL;
9607 }
9608
9609 /* Compare two implicit conversion sequences according to the rules set out in
9610 [over.ics.rank]. Return values:
9611
9612 1: ics1 is better than ics2
9613 -1: ics2 is better than ics1
9614 0: ics1 and ics2 are indistinguishable */
9615
9616 static int
9617 compare_ics (conversion *ics1, conversion *ics2)
9618 {
9619 tree from_type1;
9620 tree from_type2;
9621 tree to_type1;
9622 tree to_type2;
9623 tree deref_from_type1 = NULL_TREE;
9624 tree deref_from_type2 = NULL_TREE;
9625 tree deref_to_type1 = NULL_TREE;
9626 tree deref_to_type2 = NULL_TREE;
9627 conversion_rank rank1, rank2;
9628
9629 /* REF_BINDING is nonzero if the result of the conversion sequence
9630 is a reference type. In that case REF_CONV is the reference
9631 binding conversion. */
9632 conversion *ref_conv1;
9633 conversion *ref_conv2;
9634
9635 /* Compare badness before stripping the reference conversion. */
9636 if (ics1->bad_p > ics2->bad_p)
9637 return -1;
9638 else if (ics1->bad_p < ics2->bad_p)
9639 return 1;
9640
9641 /* Handle implicit object parameters. */
9642 maybe_handle_implicit_object (&ics1);
9643 maybe_handle_implicit_object (&ics2);
9644
9645 /* Handle reference parameters. */
9646 ref_conv1 = maybe_handle_ref_bind (&ics1);
9647 ref_conv2 = maybe_handle_ref_bind (&ics2);
9648
9649 /* List-initialization sequence L1 is a better conversion sequence than
9650 list-initialization sequence L2 if L1 converts to
9651 std::initializer_list<X> for some X and L2 does not. */
9652 if (ics1->kind == ck_list && ics2->kind != ck_list)
9653 return 1;
9654 if (ics2->kind == ck_list && ics1->kind != ck_list)
9655 return -1;
9656
9657 /* [over.ics.rank]
9658
9659 When comparing the basic forms of implicit conversion sequences (as
9660 defined in _over.best.ics_)
9661
9662 --a standard conversion sequence (_over.ics.scs_) is a better
9663 conversion sequence than a user-defined conversion sequence
9664 or an ellipsis conversion sequence, and
9665
9666 --a user-defined conversion sequence (_over.ics.user_) is a
9667 better conversion sequence than an ellipsis conversion sequence
9668 (_over.ics.ellipsis_). */
9669 /* Use BAD_CONVERSION_RANK because we already checked for a badness
9670 mismatch. If both ICS are bad, we try to make a decision based on
9671 what would have happened if they'd been good. This is not an
9672 extension, we'll still give an error when we build up the call; this
9673 just helps us give a more helpful error message. */
9674 rank1 = BAD_CONVERSION_RANK (ics1);
9675 rank2 = BAD_CONVERSION_RANK (ics2);
9676
9677 if (rank1 > rank2)
9678 return -1;
9679 else if (rank1 < rank2)
9680 return 1;
9681
9682 if (ics1->ellipsis_p)
9683 /* Both conversions are ellipsis conversions. */
9684 return 0;
9685
9686 /* User-defined conversion sequence U1 is a better conversion sequence
9687 than another user-defined conversion sequence U2 if they contain the
9688 same user-defined conversion operator or constructor and if the sec-
9689 ond standard conversion sequence of U1 is better than the second
9690 standard conversion sequence of U2. */
9691
9692 /* Handle list-conversion with the same code even though it isn't always
9693 ranked as a user-defined conversion and it doesn't have a second
9694 standard conversion sequence; it will still have the desired effect.
9695 Specifically, we need to do the reference binding comparison at the
9696 end of this function. */
9697
9698 if (ics1->user_conv_p || ics1->kind == ck_list || ics1->kind == ck_aggr)
9699 {
9700 conversion *t1;
9701 conversion *t2;
9702
9703 for (t1 = ics1; t1->kind != ck_user; t1 = next_conversion (t1))
9704 if (t1->kind == ck_ambig || t1->kind == ck_aggr
9705 || t1->kind == ck_list)
9706 break;
9707 for (t2 = ics2; t2->kind != ck_user; t2 = next_conversion (t2))
9708 if (t2->kind == ck_ambig || t2->kind == ck_aggr
9709 || t2->kind == ck_list)
9710 break;
9711
9712 if (t1->kind != t2->kind)
9713 return 0;
9714 else if (t1->kind == ck_user)
9715 {
9716 tree f1 = t1->cand ? t1->cand->fn : t1->type;
9717 tree f2 = t2->cand ? t2->cand->fn : t2->type;
9718 if (f1 != f2)
9719 return 0;
9720 }
9721 else
9722 {
9723 /* For ambiguous or aggregate conversions, use the target type as
9724 a proxy for the conversion function. */
9725 if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
9726 return 0;
9727 }
9728
9729 /* We can just fall through here, after setting up
9730 FROM_TYPE1 and FROM_TYPE2. */
9731 from_type1 = t1->type;
9732 from_type2 = t2->type;
9733 }
9734 else
9735 {
9736 conversion *t1;
9737 conversion *t2;
9738
9739 /* We're dealing with two standard conversion sequences.
9740
9741 [over.ics.rank]
9742
9743 Standard conversion sequence S1 is a better conversion
9744 sequence than standard conversion sequence S2 if
9745
9746 --S1 is a proper subsequence of S2 (comparing the conversion
9747 sequences in the canonical form defined by _over.ics.scs_,
9748 excluding any Lvalue Transformation; the identity
9749 conversion sequence is considered to be a subsequence of
9750 any non-identity conversion sequence */
9751
9752 t1 = ics1;
9753 while (t1->kind != ck_identity)
9754 t1 = next_conversion (t1);
9755 from_type1 = t1->type;
9756
9757 t2 = ics2;
9758 while (t2->kind != ck_identity)
9759 t2 = next_conversion (t2);
9760 from_type2 = t2->type;
9761 }
9762
9763 /* One sequence can only be a subsequence of the other if they start with
9764 the same type. They can start with different types when comparing the
9765 second standard conversion sequence in two user-defined conversion
9766 sequences. */
9767 if (same_type_p (from_type1, from_type2))
9768 {
9769 if (is_subseq (ics1, ics2))
9770 return 1;
9771 if (is_subseq (ics2, ics1))
9772 return -1;
9773 }
9774
9775 /* [over.ics.rank]
9776
9777 Or, if not that,
9778
9779 --the rank of S1 is better than the rank of S2 (by the rules
9780 defined below):
9781
9782 Standard conversion sequences are ordered by their ranks: an Exact
9783 Match is a better conversion than a Promotion, which is a better
9784 conversion than a Conversion.
9785
9786 Two conversion sequences with the same rank are indistinguishable
9787 unless one of the following rules applies:
9788
9789 --A conversion that does not a convert a pointer, pointer to member,
9790 or std::nullptr_t to bool is better than one that does.
9791
9792 The ICS_STD_RANK automatically handles the pointer-to-bool rule,
9793 so that we do not have to check it explicitly. */
9794 if (ics1->rank < ics2->rank)
9795 return 1;
9796 else if (ics2->rank < ics1->rank)
9797 return -1;
9798
9799 to_type1 = ics1->type;
9800 to_type2 = ics2->type;
9801
9802 /* A conversion from scalar arithmetic type to complex is worse than a
9803 conversion between scalar arithmetic types. */
9804 if (same_type_p (from_type1, from_type2)
9805 && ARITHMETIC_TYPE_P (from_type1)
9806 && ARITHMETIC_TYPE_P (to_type1)
9807 && ARITHMETIC_TYPE_P (to_type2)
9808 && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
9809 != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
9810 {
9811 if (TREE_CODE (to_type1) == COMPLEX_TYPE)
9812 return -1;
9813 else
9814 return 1;
9815 }
9816
9817 if (TYPE_PTR_P (from_type1)
9818 && TYPE_PTR_P (from_type2)
9819 && TYPE_PTR_P (to_type1)
9820 && TYPE_PTR_P (to_type2))
9821 {
9822 deref_from_type1 = TREE_TYPE (from_type1);
9823 deref_from_type2 = TREE_TYPE (from_type2);
9824 deref_to_type1 = TREE_TYPE (to_type1);
9825 deref_to_type2 = TREE_TYPE (to_type2);
9826 }
9827 /* The rules for pointers to members A::* are just like the rules
9828 for pointers A*, except opposite: if B is derived from A then
9829 A::* converts to B::*, not vice versa. For that reason, we
9830 switch the from_ and to_ variables here. */
9831 else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
9832 && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
9833 || (TYPE_PTRMEMFUNC_P (from_type1)
9834 && TYPE_PTRMEMFUNC_P (from_type2)
9835 && TYPE_PTRMEMFUNC_P (to_type1)
9836 && TYPE_PTRMEMFUNC_P (to_type2)))
9837 {
9838 deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
9839 deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
9840 deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
9841 deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
9842 }
9843
9844 if (deref_from_type1 != NULL_TREE
9845 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
9846 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
9847 {
9848 /* This was one of the pointer or pointer-like conversions.
9849
9850 [over.ics.rank]
9851
9852 --If class B is derived directly or indirectly from class A,
9853 conversion of B* to A* is better than conversion of B* to
9854 void*, and conversion of A* to void* is better than
9855 conversion of B* to void*. */
9856 if (VOID_TYPE_P (deref_to_type1)
9857 && VOID_TYPE_P (deref_to_type2))
9858 {
9859 if (is_properly_derived_from (deref_from_type1,
9860 deref_from_type2))
9861 return -1;
9862 else if (is_properly_derived_from (deref_from_type2,
9863 deref_from_type1))
9864 return 1;
9865 }
9866 else if (VOID_TYPE_P (deref_to_type1)
9867 || VOID_TYPE_P (deref_to_type2))
9868 {
9869 if (same_type_p (deref_from_type1, deref_from_type2))
9870 {
9871 if (VOID_TYPE_P (deref_to_type2))
9872 {
9873 if (is_properly_derived_from (deref_from_type1,
9874 deref_to_type1))
9875 return 1;
9876 }
9877 /* We know that DEREF_TO_TYPE1 is `void' here. */
9878 else if (is_properly_derived_from (deref_from_type1,
9879 deref_to_type2))
9880 return -1;
9881 }
9882 }
9883 else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
9884 && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
9885 {
9886 /* [over.ics.rank]
9887
9888 --If class B is derived directly or indirectly from class A
9889 and class C is derived directly or indirectly from B,
9890
9891 --conversion of C* to B* is better than conversion of C* to
9892 A*,
9893
9894 --conversion of B* to A* is better than conversion of C* to
9895 A* */
9896 if (same_type_p (deref_from_type1, deref_from_type2))
9897 {
9898 if (is_properly_derived_from (deref_to_type1,
9899 deref_to_type2))
9900 return 1;
9901 else if (is_properly_derived_from (deref_to_type2,
9902 deref_to_type1))
9903 return -1;
9904 }
9905 else if (same_type_p (deref_to_type1, deref_to_type2))
9906 {
9907 if (is_properly_derived_from (deref_from_type2,
9908 deref_from_type1))
9909 return 1;
9910 else if (is_properly_derived_from (deref_from_type1,
9911 deref_from_type2))
9912 return -1;
9913 }
9914 }
9915 }
9916 else if (CLASS_TYPE_P (non_reference (from_type1))
9917 && same_type_p (from_type1, from_type2))
9918 {
9919 tree from = non_reference (from_type1);
9920
9921 /* [over.ics.rank]
9922
9923 --binding of an expression of type C to a reference of type
9924 B& is better than binding an expression of type C to a
9925 reference of type A&
9926
9927 --conversion of C to B is better than conversion of C to A, */
9928 if (is_properly_derived_from (from, to_type1)
9929 && is_properly_derived_from (from, to_type2))
9930 {
9931 if (is_properly_derived_from (to_type1, to_type2))
9932 return 1;
9933 else if (is_properly_derived_from (to_type2, to_type1))
9934 return -1;
9935 }
9936 }
9937 else if (CLASS_TYPE_P (non_reference (to_type1))
9938 && same_type_p (to_type1, to_type2))
9939 {
9940 tree to = non_reference (to_type1);
9941
9942 /* [over.ics.rank]
9943
9944 --binding of an expression of type B to a reference of type
9945 A& is better than binding an expression of type C to a
9946 reference of type A&,
9947
9948 --conversion of B to A is better than conversion of C to A */
9949 if (is_properly_derived_from (from_type1, to)
9950 && is_properly_derived_from (from_type2, to))
9951 {
9952 if (is_properly_derived_from (from_type2, from_type1))
9953 return 1;
9954 else if (is_properly_derived_from (from_type1, from_type2))
9955 return -1;
9956 }
9957 }
9958
9959 /* [over.ics.rank]
9960
9961 --S1 and S2 differ only in their qualification conversion and yield
9962 similar types T1 and T2 (_conv.qual_), respectively, and the cv-
9963 qualification signature of type T1 is a proper subset of the cv-
9964 qualification signature of type T2 */
9965 if (ics1->kind == ck_qual
9966 && ics2->kind == ck_qual
9967 && same_type_p (from_type1, from_type2))
9968 {
9969 int result = comp_cv_qual_signature (to_type1, to_type2);
9970 if (result != 0)
9971 return result;
9972 }
9973
9974 /* [over.ics.rank]
9975
9976 --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
9977 to an implicit object parameter of a non-static member function
9978 declared without a ref-qualifier, and either S1 binds an lvalue
9979 reference to an lvalue and S2 binds an rvalue reference or S1 binds an
9980 rvalue reference to an rvalue and S2 binds an lvalue reference (C++0x
9981 draft standard, 13.3.3.2)
9982
9983 --S1 and S2 are reference bindings (_dcl.init.ref_), and the
9984 types to which the references refer are the same type except for
9985 top-level cv-qualifiers, and the type to which the reference
9986 initialized by S2 refers is more cv-qualified than the type to
9987 which the reference initialized by S1 refers.
9988
9989 DR 1328 [over.match.best]: the context is an initialization by
9990 conversion function for direct reference binding (13.3.1.6) of a
9991 reference to function type, the return type of F1 is the same kind of
9992 reference (i.e. lvalue or rvalue) as the reference being initialized,
9993 and the return type of F2 is not. */
9994
9995 if (ref_conv1 && ref_conv2)
9996 {
9997 if (!ref_conv1->this_p && !ref_conv2->this_p
9998 && (ref_conv1->rvaluedness_matches_p
9999 != ref_conv2->rvaluedness_matches_p)
10000 && (same_type_p (ref_conv1->type, ref_conv2->type)
10001 || (TYPE_REF_IS_RVALUE (ref_conv1->type)
10002 != TYPE_REF_IS_RVALUE (ref_conv2->type))))
10003 {
10004 if (ref_conv1->bad_p
10005 && !same_type_p (TREE_TYPE (ref_conv1->type),
10006 TREE_TYPE (ref_conv2->type)))
10007 /* Don't prefer a bad conversion that drops cv-quals to a bad
10008 conversion with the wrong rvalueness. */
10009 return 0;
10010 return (ref_conv1->rvaluedness_matches_p
10011 - ref_conv2->rvaluedness_matches_p);
10012 }
10013
10014 if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
10015 {
10016 int q1 = cp_type_quals (TREE_TYPE (ref_conv1->type));
10017 int q2 = cp_type_quals (TREE_TYPE (ref_conv2->type));
10018 if (ref_conv1->bad_p)
10019 {
10020 /* Prefer the one that drops fewer cv-quals. */
10021 tree ftype = next_conversion (ref_conv1)->type;
10022 int fquals = cp_type_quals (ftype);
10023 q1 ^= fquals;
10024 q2 ^= fquals;
10025 }
10026 return comp_cv_qualification (q2, q1);
10027 }
10028 }
10029
10030 /* Neither conversion sequence is better than the other. */
10031 return 0;
10032 }
10033
10034 /* The source type for this standard conversion sequence. */
10035
10036 static tree
10037 source_type (conversion *t)
10038 {
10039 for (;; t = next_conversion (t))
10040 {
10041 if (t->kind == ck_user
10042 || t->kind == ck_ambig
10043 || t->kind == ck_identity)
10044 return t->type;
10045 }
10046 gcc_unreachable ();
10047 }
10048
10049 /* Note a warning about preferring WINNER to LOSER. We do this by storing
10050 a pointer to LOSER and re-running joust to produce the warning if WINNER
10051 is actually used. */
10052
10053 static void
10054 add_warning (struct z_candidate *winner, struct z_candidate *loser)
10055 {
10056 candidate_warning *cw = (candidate_warning *)
10057 conversion_obstack_alloc (sizeof (candidate_warning));
10058 cw->loser = loser;
10059 cw->next = winner->warnings;
10060 winner->warnings = cw;
10061 }
10062
10063 /* Compare two candidates for overloading as described in
10064 [over.match.best]. Return values:
10065
10066 1: cand1 is better than cand2
10067 -1: cand2 is better than cand1
10068 0: cand1 and cand2 are indistinguishable */
10069
10070 static int
10071 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
10072 tsubst_flags_t complain)
10073 {
10074 int winner = 0;
10075 int off1 = 0, off2 = 0;
10076 size_t i;
10077 size_t len;
10078
10079 /* Candidates that involve bad conversions are always worse than those
10080 that don't. */
10081 if (cand1->viable > cand2->viable)
10082 return 1;
10083 if (cand1->viable < cand2->viable)
10084 return -1;
10085
10086 /* If we have two pseudo-candidates for conversions to the same type,
10087 or two candidates for the same function, arbitrarily pick one. */
10088 if (cand1->fn == cand2->fn
10089 && (IS_TYPE_OR_DECL_P (cand1->fn)))
10090 return 1;
10091
10092 /* Prefer a non-deleted function over an implicitly deleted move
10093 constructor or assignment operator. This differs slightly from the
10094 wording for issue 1402 (which says the move op is ignored by overload
10095 resolution), but this way produces better error messages. */
10096 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
10097 && TREE_CODE (cand2->fn) == FUNCTION_DECL
10098 && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
10099 {
10100 if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
10101 && move_fn_p (cand1->fn))
10102 return -1;
10103 if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
10104 && move_fn_p (cand2->fn))
10105 return 1;
10106 }
10107
10108 /* a viable function F1
10109 is defined to be a better function than another viable function F2 if
10110 for all arguments i, ICSi(F1) is not a worse conversion sequence than
10111 ICSi(F2), and then */
10112
10113 /* for some argument j, ICSj(F1) is a better conversion sequence than
10114 ICSj(F2) */
10115
10116 /* For comparing static and non-static member functions, we ignore
10117 the implicit object parameter of the non-static function. The
10118 standard says to pretend that the static function has an object
10119 parm, but that won't work with operator overloading. */
10120 len = cand1->num_convs;
10121 if (len != cand2->num_convs)
10122 {
10123 int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
10124 int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
10125
10126 if (DECL_CONSTRUCTOR_P (cand1->fn)
10127 && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
10128 /* We're comparing a near-match list constructor and a near-match
10129 non-list constructor. Just treat them as unordered. */
10130 return 0;
10131
10132 gcc_assert (static_1 != static_2);
10133
10134 if (static_1)
10135 off2 = 1;
10136 else
10137 {
10138 off1 = 1;
10139 --len;
10140 }
10141 }
10142
10143 for (i = 0; i < len; ++i)
10144 {
10145 conversion *t1 = cand1->convs[i + off1];
10146 conversion *t2 = cand2->convs[i + off2];
10147 int comp = compare_ics (t1, t2);
10148
10149 if (comp != 0)
10150 {
10151 if ((complain & tf_warning)
10152 && warn_sign_promo
10153 && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
10154 == cr_std + cr_promotion)
10155 && t1->kind == ck_std
10156 && t2->kind == ck_std
10157 && TREE_CODE (t1->type) == INTEGER_TYPE
10158 && TREE_CODE (t2->type) == INTEGER_TYPE
10159 && (TYPE_PRECISION (t1->type)
10160 == TYPE_PRECISION (t2->type))
10161 && (TYPE_UNSIGNED (next_conversion (t1)->type)
10162 || (TREE_CODE (next_conversion (t1)->type)
10163 == ENUMERAL_TYPE)))
10164 {
10165 tree type = next_conversion (t1)->type;
10166 tree type1, type2;
10167 struct z_candidate *w, *l;
10168 if (comp > 0)
10169 type1 = t1->type, type2 = t2->type,
10170 w = cand1, l = cand2;
10171 else
10172 type1 = t2->type, type2 = t1->type,
10173 w = cand2, l = cand1;
10174
10175 if (warn)
10176 {
10177 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
10178 type, type1, type2);
10179 warning (OPT_Wsign_promo, " in call to %qD", w->fn);
10180 }
10181 else
10182 add_warning (w, l);
10183 }
10184
10185 if (winner && comp != winner)
10186 {
10187 winner = 0;
10188 goto tweak;
10189 }
10190 winner = comp;
10191 }
10192 }
10193
10194 /* warn about confusing overload resolution for user-defined conversions,
10195 either between a constructor and a conversion op, or between two
10196 conversion ops. */
10197 if ((complain & tf_warning)
10198 && winner && warn_conversion && cand1->second_conv
10199 && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
10200 && winner != compare_ics (cand1->second_conv, cand2->second_conv))
10201 {
10202 struct z_candidate *w, *l;
10203 bool give_warning = false;
10204
10205 if (winner == 1)
10206 w = cand1, l = cand2;
10207 else
10208 w = cand2, l = cand1;
10209
10210 /* We don't want to complain about `X::operator T1 ()'
10211 beating `X::operator T2 () const', when T2 is a no less
10212 cv-qualified version of T1. */
10213 if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
10214 && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
10215 {
10216 tree t = TREE_TYPE (TREE_TYPE (l->fn));
10217 tree f = TREE_TYPE (TREE_TYPE (w->fn));
10218
10219 if (TREE_CODE (t) == TREE_CODE (f) && INDIRECT_TYPE_P (t))
10220 {
10221 t = TREE_TYPE (t);
10222 f = TREE_TYPE (f);
10223 }
10224 if (!comp_ptr_ttypes (t, f))
10225 give_warning = true;
10226 }
10227 else
10228 give_warning = true;
10229
10230 if (!give_warning)
10231 /*NOP*/;
10232 else if (warn)
10233 {
10234 tree source = source_type (w->convs[0]);
10235 if (INDIRECT_TYPE_P (source))
10236 source = TREE_TYPE (source);
10237 if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
10238 && warning (OPT_Wconversion, " for conversion from %qH to %qI",
10239 source, w->second_conv->type))
10240 {
10241 inform (input_location, " because conversion sequence for the argument is better");
10242 }
10243 }
10244 else
10245 add_warning (w, l);
10246 }
10247
10248 if (winner)
10249 return winner;
10250
10251 /* DR 495 moved this tiebreaker above the template ones. */
10252 /* or, if not that,
10253 the context is an initialization by user-defined conversion (see
10254 _dcl.init_ and _over.match.user_) and the standard conversion
10255 sequence from the return type of F1 to the destination type (i.e.,
10256 the type of the entity being initialized) is a better conversion
10257 sequence than the standard conversion sequence from the return type
10258 of F2 to the destination type. */
10259
10260 if (cand1->second_conv)
10261 {
10262 winner = compare_ics (cand1->second_conv, cand2->second_conv);
10263 if (winner)
10264 return winner;
10265 }
10266
10267 /* or, if not that,
10268 F1 is a non-template function and F2 is a template function
10269 specialization. */
10270
10271 if (!cand1->template_decl && cand2->template_decl)
10272 return 1;
10273 else if (cand1->template_decl && !cand2->template_decl)
10274 return -1;
10275
10276 /* or, if not that,
10277 F1 and F2 are template functions and the function template for F1 is
10278 more specialized than the template for F2 according to the partial
10279 ordering rules. */
10280
10281 if (cand1->template_decl && cand2->template_decl)
10282 {
10283 winner = more_specialized_fn
10284 (TI_TEMPLATE (cand1->template_decl),
10285 TI_TEMPLATE (cand2->template_decl),
10286 /* [temp.func.order]: The presence of unused ellipsis and default
10287 arguments has no effect on the partial ordering of function
10288 templates. add_function_candidate() will not have
10289 counted the "this" argument for constructors. */
10290 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
10291 if (winner)
10292 return winner;
10293 }
10294
10295 // C++ Concepts
10296 // or, if not that, F1 is more constrained than F2.
10297 if (flag_concepts && DECL_P (cand1->fn) && DECL_P (cand2->fn))
10298 {
10299 winner = more_constrained (cand1->fn, cand2->fn);
10300 if (winner)
10301 return winner;
10302 }
10303
10304 /* F1 is generated from a deduction-guide (13.3.1.8) and F2 is not */
10305 if (deduction_guide_p (cand1->fn))
10306 {
10307 gcc_assert (deduction_guide_p (cand2->fn));
10308 /* We distinguish between candidates from an explicit deduction guide and
10309 candidates built from a constructor based on DECL_ARTIFICIAL. */
10310 int art1 = DECL_ARTIFICIAL (cand1->fn);
10311 int art2 = DECL_ARTIFICIAL (cand2->fn);
10312 if (art1 != art2)
10313 return art2 - art1;
10314
10315 if (art1)
10316 {
10317 /* Prefer the special copy guide over a declared copy/move
10318 constructor. */
10319 if (copy_guide_p (cand1->fn))
10320 return 1;
10321 if (copy_guide_p (cand2->fn))
10322 return -1;
10323
10324 /* Prefer a candidate generated from a non-template constructor. */
10325 int tg1 = template_guide_p (cand1->fn);
10326 int tg2 = template_guide_p (cand2->fn);
10327 if (tg1 != tg2)
10328 return tg2 - tg1;
10329 }
10330 }
10331
10332 /* F1 is a member of a class D, F2 is a member of a base class B of D, and
10333 for all arguments the corresponding parameters of F1 and F2 have the same
10334 type (CWG 2273/2277). */
10335 if (DECL_P (cand1->fn) && DECL_CLASS_SCOPE_P (cand1->fn)
10336 && !DECL_CONV_FN_P (cand1->fn)
10337 && DECL_P (cand2->fn) && DECL_CLASS_SCOPE_P (cand2->fn)
10338 && !DECL_CONV_FN_P (cand2->fn))
10339 {
10340 tree base1 = DECL_CONTEXT (strip_inheriting_ctors (cand1->fn));
10341 tree base2 = DECL_CONTEXT (strip_inheriting_ctors (cand2->fn));
10342
10343 bool used1 = false;
10344 bool used2 = false;
10345 if (base1 == base2)
10346 /* No difference. */;
10347 else if (DERIVED_FROM_P (base1, base2))
10348 used1 = true;
10349 else if (DERIVED_FROM_P (base2, base1))
10350 used2 = true;
10351
10352 if (int diff = used2 - used1)
10353 {
10354 for (i = 0; i < len; ++i)
10355 {
10356 conversion *t1 = cand1->convs[i + off1];
10357 conversion *t2 = cand2->convs[i + off2];
10358 if (!same_type_p (t1->type, t2->type))
10359 break;
10360 }
10361 if (i == len)
10362 return diff;
10363 }
10364 }
10365
10366 /* Check whether we can discard a builtin candidate, either because we
10367 have two identical ones or matching builtin and non-builtin candidates.
10368
10369 (Pedantically in the latter case the builtin which matched the user
10370 function should not be added to the overload set, but we spot it here.
10371
10372 [over.match.oper]
10373 ... the builtin candidates include ...
10374 - do not have the same parameter type list as any non-template
10375 non-member candidate. */
10376
10377 if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
10378 {
10379 for (i = 0; i < len; ++i)
10380 if (!same_type_p (cand1->convs[i]->type,
10381 cand2->convs[i]->type))
10382 break;
10383 if (i == cand1->num_convs)
10384 {
10385 if (cand1->fn == cand2->fn)
10386 /* Two built-in candidates; arbitrarily pick one. */
10387 return 1;
10388 else if (identifier_p (cand1->fn))
10389 /* cand1 is built-in; prefer cand2. */
10390 return -1;
10391 else
10392 /* cand2 is built-in; prefer cand1. */
10393 return 1;
10394 }
10395 }
10396
10397 /* For candidates of a multi-versioned function, make the version with
10398 the highest priority win. This version will be checked for dispatching
10399 first. If this version can be inlined into the caller, the front-end
10400 will simply make a direct call to this function. */
10401
10402 if (TREE_CODE (cand1->fn) == FUNCTION_DECL
10403 && DECL_FUNCTION_VERSIONED (cand1->fn)
10404 && TREE_CODE (cand2->fn) == FUNCTION_DECL
10405 && DECL_FUNCTION_VERSIONED (cand2->fn))
10406 {
10407 tree f1 = TREE_TYPE (cand1->fn);
10408 tree f2 = TREE_TYPE (cand2->fn);
10409 tree p1 = TYPE_ARG_TYPES (f1);
10410 tree p2 = TYPE_ARG_TYPES (f2);
10411
10412 /* Check if cand1->fn and cand2->fn are versions of the same function. It
10413 is possible that cand1->fn and cand2->fn are function versions but of
10414 different functions. Check types to see if they are versions of the same
10415 function. */
10416 if (compparms (p1, p2)
10417 && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
10418 {
10419 /* Always make the version with the higher priority, more
10420 specialized, win. */
10421 gcc_assert (targetm.compare_version_priority);
10422 if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
10423 return 1;
10424 else
10425 return -1;
10426 }
10427 }
10428
10429 /* If the two function declarations represent the same function (this can
10430 happen with declarations in multiple scopes and arg-dependent lookup),
10431 arbitrarily choose one. But first make sure the default args we're
10432 using match. */
10433 if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
10434 && equal_functions (cand1->fn, cand2->fn))
10435 {
10436 tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
10437 tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
10438
10439 gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
10440
10441 for (i = 0; i < len; ++i)
10442 {
10443 /* Don't crash if the fn is variadic. */
10444 if (!parms1)
10445 break;
10446 parms1 = TREE_CHAIN (parms1);
10447 parms2 = TREE_CHAIN (parms2);
10448 }
10449
10450 if (off1)
10451 parms1 = TREE_CHAIN (parms1);
10452 else if (off2)
10453 parms2 = TREE_CHAIN (parms2);
10454
10455 for (; parms1; ++i)
10456 {
10457 if (!cp_tree_equal (TREE_PURPOSE (parms1),
10458 TREE_PURPOSE (parms2)))
10459 {
10460 if (warn)
10461 {
10462 if (complain & tf_error)
10463 {
10464 if (permerror (input_location,
10465 "default argument mismatch in "
10466 "overload resolution"))
10467 {
10468 inform (DECL_SOURCE_LOCATION (cand1->fn),
10469 " candidate 1: %q#F", cand1->fn);
10470 inform (DECL_SOURCE_LOCATION (cand2->fn),
10471 " candidate 2: %q#F", cand2->fn);
10472 }
10473 }
10474 else
10475 return 0;
10476 }
10477 else
10478 add_warning (cand1, cand2);
10479 break;
10480 }
10481 parms1 = TREE_CHAIN (parms1);
10482 parms2 = TREE_CHAIN (parms2);
10483 }
10484
10485 return 1;
10486 }
10487
10488 tweak:
10489
10490 /* Extension: If the worst conversion for one candidate is worse than the
10491 worst conversion for the other, take the first. */
10492 if (!pedantic && (complain & tf_warning_or_error))
10493 {
10494 conversion_rank rank1 = cr_identity, rank2 = cr_identity;
10495 struct z_candidate *w = 0, *l = 0;
10496
10497 for (i = 0; i < len; ++i)
10498 {
10499 if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
10500 rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
10501 if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
10502 rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
10503 }
10504 if (rank1 < rank2)
10505 winner = 1, w = cand1, l = cand2;
10506 if (rank1 > rank2)
10507 winner = -1, w = cand2, l = cand1;
10508 if (winner)
10509 {
10510 /* Don't choose a deleted function over ambiguity. */
10511 if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
10512 return 0;
10513 if (warn)
10514 {
10515 pedwarn (input_location, 0,
10516 "ISO C++ says that these are ambiguous, even "
10517 "though the worst conversion for the first is better than "
10518 "the worst conversion for the second:");
10519 print_z_candidate (input_location, _("candidate 1:"), w);
10520 print_z_candidate (input_location, _("candidate 2:"), l);
10521 }
10522 else
10523 add_warning (w, l);
10524 return winner;
10525 }
10526 }
10527
10528 gcc_assert (!winner);
10529 return 0;
10530 }
10531
10532 /* Given a list of candidates for overloading, find the best one, if any.
10533 This algorithm has a worst case of O(2n) (winner is last), and a best
10534 case of O(n/2) (totally ambiguous); much better than a sorting
10535 algorithm. */
10536
10537 static struct z_candidate *
10538 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
10539 {
10540 struct z_candidate *champ = candidates, *challenger;
10541 int fate;
10542 int champ_compared_to_predecessor = 0;
10543
10544 /* Walk through the list once, comparing each current champ to the next
10545 candidate, knocking out a candidate or two with each comparison. */
10546
10547 for (challenger = champ->next; challenger; )
10548 {
10549 fate = joust (champ, challenger, 0, complain);
10550 if (fate == 1)
10551 challenger = challenger->next;
10552 else
10553 {
10554 if (fate == 0)
10555 {
10556 champ = challenger->next;
10557 if (champ == 0)
10558 return NULL;
10559 champ_compared_to_predecessor = 0;
10560 }
10561 else
10562 {
10563 champ = challenger;
10564 champ_compared_to_predecessor = 1;
10565 }
10566
10567 challenger = champ->next;
10568 }
10569 }
10570
10571 /* Make sure the champ is better than all the candidates it hasn't yet
10572 been compared to. */
10573
10574 for (challenger = candidates;
10575 challenger != champ
10576 && !(champ_compared_to_predecessor && challenger->next == champ);
10577 challenger = challenger->next)
10578 {
10579 fate = joust (champ, challenger, 0, complain);
10580 if (fate != 1)
10581 return NULL;
10582 }
10583
10584 return champ;
10585 }
10586
10587 /* Returns nonzero if things of type FROM can be converted to TO. */
10588
10589 bool
10590 can_convert (tree to, tree from, tsubst_flags_t complain)
10591 {
10592 tree arg = NULL_TREE;
10593 /* implicit_conversion only considers user-defined conversions
10594 if it has an expression for the call argument list. */
10595 if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
10596 arg = build1 (CAST_EXPR, from, NULL_TREE);
10597 return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
10598 }
10599
10600 /* Returns nonzero if things of type FROM can be converted to TO with a
10601 standard conversion. */
10602
10603 bool
10604 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
10605 {
10606 return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
10607 }
10608
10609 /* Returns nonzero if ARG (of type FROM) can be converted to TO. */
10610
10611 bool
10612 can_convert_arg (tree to, tree from, tree arg, int flags,
10613 tsubst_flags_t complain)
10614 {
10615 conversion *t;
10616 void *p;
10617 bool ok_p;
10618
10619 /* Get the high-water mark for the CONVERSION_OBSTACK. */
10620 p = conversion_obstack_alloc (0);
10621 /* We want to discard any access checks done for this test,
10622 as we might not be in the appropriate access context and
10623 we'll do the check again when we actually perform the
10624 conversion. */
10625 push_deferring_access_checks (dk_deferred);
10626
10627 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
10628 flags, complain);
10629 ok_p = (t && !t->bad_p);
10630
10631 /* Discard the access checks now. */
10632 pop_deferring_access_checks ();
10633 /* Free all the conversions we allocated. */
10634 obstack_free (&conversion_obstack, p);
10635
10636 return ok_p;
10637 }
10638
10639 /* Like can_convert_arg, but allows dubious conversions as well. */
10640
10641 bool
10642 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
10643 tsubst_flags_t complain)
10644 {
10645 conversion *t;
10646 void *p;
10647
10648 /* Get the high-water mark for the CONVERSION_OBSTACK. */
10649 p = conversion_obstack_alloc (0);
10650 /* Try to perform the conversion. */
10651 t = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
10652 flags, complain);
10653 /* Free all the conversions we allocated. */
10654 obstack_free (&conversion_obstack, p);
10655
10656 return t != NULL;
10657 }
10658
10659 /* Convert EXPR to TYPE. Return the converted expression.
10660
10661 Note that we allow bad conversions here because by the time we get to
10662 this point we are committed to doing the conversion. If we end up
10663 doing a bad conversion, convert_like will complain. */
10664
10665 tree
10666 perform_implicit_conversion_flags (tree type, tree expr,
10667 tsubst_flags_t complain, int flags)
10668 {
10669 conversion *conv;
10670 void *p;
10671 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
10672
10673 if (TYPE_REF_P (type))
10674 expr = mark_lvalue_use (expr);
10675 else
10676 expr = mark_rvalue_use (expr);
10677
10678 if (error_operand_p (expr))
10679 return error_mark_node;
10680
10681 /* Get the high-water mark for the CONVERSION_OBSTACK. */
10682 p = conversion_obstack_alloc (0);
10683
10684 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
10685 /*c_cast_p=*/false,
10686 flags, complain);
10687
10688 if (!conv)
10689 {
10690 if (complain & tf_error)
10691 {
10692 /* If expr has unknown type, then it is an overloaded function.
10693 Call instantiate_type to get good error messages. */
10694 if (TREE_TYPE (expr) == unknown_type_node)
10695 instantiate_type (type, expr, complain);
10696 else if (invalid_nonstatic_memfn_p (loc, expr, complain))
10697 /* We gave an error. */;
10698 else
10699 error_at (loc, "could not convert %qE from %qH to %qI", expr,
10700 TREE_TYPE (expr), type);
10701 }
10702 expr = error_mark_node;
10703 }
10704 else if (processing_template_decl && conv->kind != ck_identity)
10705 {
10706 /* In a template, we are only concerned about determining the
10707 type of non-dependent expressions, so we do not have to
10708 perform the actual conversion. But for initializers, we
10709 need to be able to perform it at instantiation
10710 (or instantiate_non_dependent_expr) time. */
10711 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
10712 if (!(flags & LOOKUP_ONLYCONVERTING))
10713 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
10714 }
10715 else
10716 expr = convert_like (conv, expr, complain);
10717
10718 /* Free all the conversions we allocated. */
10719 obstack_free (&conversion_obstack, p);
10720
10721 return expr;
10722 }
10723
10724 tree
10725 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
10726 {
10727 return perform_implicit_conversion_flags (type, expr, complain,
10728 LOOKUP_IMPLICIT);
10729 }
10730
10731 /* Convert EXPR to TYPE (as a direct-initialization) if that is
10732 permitted. If the conversion is valid, the converted expression is
10733 returned. Otherwise, NULL_TREE is returned, except in the case
10734 that TYPE is a class type; in that case, an error is issued. If
10735 C_CAST_P is true, then this direct-initialization is taking
10736 place as part of a static_cast being attempted as part of a C-style
10737 cast. */
10738
10739 tree
10740 perform_direct_initialization_if_possible (tree type,
10741 tree expr,
10742 bool c_cast_p,
10743 tsubst_flags_t complain)
10744 {
10745 conversion *conv;
10746 void *p;
10747
10748 if (type == error_mark_node || error_operand_p (expr))
10749 return error_mark_node;
10750 /* [dcl.init]
10751
10752 If the destination type is a (possibly cv-qualified) class type:
10753
10754 -- If the initialization is direct-initialization ...,
10755 constructors are considered. ... If no constructor applies, or
10756 the overload resolution is ambiguous, the initialization is
10757 ill-formed. */
10758 if (CLASS_TYPE_P (type))
10759 {
10760 vec<tree, va_gc> *args = make_tree_vector_single (expr);
10761 expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
10762 &args, type, LOOKUP_NORMAL, complain);
10763 release_tree_vector (args);
10764 return build_cplus_new (type, expr, complain);
10765 }
10766
10767 /* Get the high-water mark for the CONVERSION_OBSTACK. */
10768 p = conversion_obstack_alloc (0);
10769
10770 conv = implicit_conversion (type, TREE_TYPE (expr), expr,
10771 c_cast_p,
10772 LOOKUP_NORMAL, complain);
10773 if (!conv || conv->bad_p)
10774 expr = NULL_TREE;
10775 else if (processing_template_decl && conv->kind != ck_identity)
10776 {
10777 /* In a template, we are only concerned about determining the
10778 type of non-dependent expressions, so we do not have to
10779 perform the actual conversion. But for initializers, we
10780 need to be able to perform it at instantiation
10781 (or instantiate_non_dependent_expr) time. */
10782 expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
10783 IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
10784 }
10785 else
10786 expr = convert_like_real (conv, expr, NULL_TREE, 0,
10787 /*issue_conversion_warnings=*/false,
10788 c_cast_p,
10789 complain);
10790
10791 /* Free all the conversions we allocated. */
10792 obstack_free (&conversion_obstack, p);
10793
10794 return expr;
10795 }
10796
10797 /* When initializing a reference that lasts longer than a full-expression,
10798 this special rule applies:
10799
10800 [class.temporary]
10801
10802 The temporary to which the reference is bound or the temporary
10803 that is the complete object to which the reference is bound
10804 persists for the lifetime of the reference.
10805
10806 The temporaries created during the evaluation of the expression
10807 initializing the reference, except the temporary to which the
10808 reference is bound, are destroyed at the end of the
10809 full-expression in which they are created.
10810
10811 In that case, we store the converted expression into a new
10812 VAR_DECL in a new scope.
10813
10814 However, we want to be careful not to create temporaries when
10815 they are not required. For example, given:
10816
10817 struct B {};
10818 struct D : public B {};
10819 D f();
10820 const B& b = f();
10821
10822 there is no need to copy the return value from "f"; we can just
10823 extend its lifetime. Similarly, given:
10824
10825 struct S {};
10826 struct T { operator S(); };
10827 T t;
10828 const S& s = t;
10829
10830 we can extend the lifetime of the return value of the conversion
10831 operator.
10832
10833 The next several functions are involved in this lifetime extension. */
10834
10835 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE. The
10836 reference is being bound to a temporary. Create and return a new
10837 VAR_DECL with the indicated TYPE; this variable will store the value to
10838 which the reference is bound. */
10839
10840 tree
10841 make_temporary_var_for_ref_to_temp (tree decl, tree type)
10842 {
10843 tree var = create_temporary_var (type);
10844
10845 /* Register the variable. */
10846 if (VAR_P (decl)
10847 && (TREE_STATIC (decl) || CP_DECL_THREAD_LOCAL_P (decl)))
10848 {
10849 /* Namespace-scope or local static; give it a mangled name. */
10850 /* FIXME share comdat with decl? */
10851
10852 TREE_STATIC (var) = TREE_STATIC (decl);
10853 CP_DECL_THREAD_LOCAL_P (var) = CP_DECL_THREAD_LOCAL_P (decl);
10854 set_decl_tls_model (var, DECL_TLS_MODEL (decl));
10855
10856 tree name = mangle_ref_init_variable (decl);
10857 DECL_NAME (var) = name;
10858 SET_DECL_ASSEMBLER_NAME (var, name);
10859
10860 var = pushdecl (var);
10861 }
10862 else
10863 /* Create a new cleanup level if necessary. */
10864 maybe_push_cleanup_level (type);
10865
10866 return var;
10867 }
10868
10869 /* EXPR is the initializer for a variable DECL of reference or
10870 std::initializer_list type. Create, push and return a new VAR_DECL
10871 for the initializer so that it will live as long as DECL. Any
10872 cleanup for the new variable is returned through CLEANUP, and the
10873 code to initialize the new variable is returned through INITP. */
10874
10875 static tree
10876 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
10877 tree *initp)
10878 {
10879 tree init;
10880 tree type;
10881 tree var;
10882
10883 /* Create the temporary variable. */
10884 type = TREE_TYPE (expr);
10885 var = make_temporary_var_for_ref_to_temp (decl, type);
10886 layout_decl (var, 0);
10887 /* If the rvalue is the result of a function call it will be
10888 a TARGET_EXPR. If it is some other construct (such as a
10889 member access expression where the underlying object is
10890 itself the result of a function call), turn it into a
10891 TARGET_EXPR here. It is important that EXPR be a
10892 TARGET_EXPR below since otherwise the INIT_EXPR will
10893 attempt to make a bitwise copy of EXPR to initialize
10894 VAR. */
10895 if (TREE_CODE (expr) != TARGET_EXPR)
10896 expr = get_target_expr (expr);
10897
10898 if (TREE_CODE (decl) == FIELD_DECL
10899 && extra_warnings && !TREE_NO_WARNING (decl))
10900 {
10901 warning (OPT_Wextra, "a temporary bound to %qD only persists "
10902 "until the constructor exits", decl);
10903 TREE_NO_WARNING (decl) = true;
10904 }
10905
10906 /* Recursively extend temps in this initializer. */
10907 TARGET_EXPR_INITIAL (expr)
10908 = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups);
10909
10910 /* Any reference temp has a non-trivial initializer. */
10911 DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
10912
10913 /* If the initializer is constant, put it in DECL_INITIAL so we get
10914 static initialization and use in constant expressions. */
10915 init = maybe_constant_init (expr);
10916 /* As in store_init_value. */
10917 init = cp_fully_fold (init);
10918 if (TREE_CONSTANT (init))
10919 {
10920 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
10921 {
10922 /* 5.19 says that a constant expression can include an
10923 lvalue-rvalue conversion applied to "a glvalue of literal type
10924 that refers to a non-volatile temporary object initialized
10925 with a constant expression". Rather than try to communicate
10926 that this VAR_DECL is a temporary, just mark it constexpr.
10927
10928 Currently this is only useful for initializer_list temporaries,
10929 since reference vars can't appear in constant expressions. */
10930 DECL_DECLARED_CONSTEXPR_P (var) = true;
10931 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
10932 TREE_CONSTANT (var) = true;
10933 }
10934 DECL_INITIAL (var) = init;
10935 init = NULL_TREE;
10936 }
10937 else
10938 /* Create the INIT_EXPR that will initialize the temporary
10939 variable. */
10940 init = split_nonconstant_init (var, expr);
10941 if (at_function_scope_p ())
10942 {
10943 add_decl_expr (var);
10944
10945 if (TREE_STATIC (var))
10946 init = add_stmt_to_compound (init, register_dtor_fn (var));
10947 else
10948 {
10949 tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
10950 if (cleanup)
10951 vec_safe_push (*cleanups, cleanup);
10952 }
10953
10954 /* We must be careful to destroy the temporary only
10955 after its initialization has taken place. If the
10956 initialization throws an exception, then the
10957 destructor should not be run. We cannot simply
10958 transform INIT into something like:
10959
10960 (INIT, ({ CLEANUP_STMT; }))
10961
10962 because emit_local_var always treats the
10963 initializer as a full-expression. Thus, the
10964 destructor would run too early; it would run at the
10965 end of initializing the reference variable, rather
10966 than at the end of the block enclosing the
10967 reference variable.
10968
10969 The solution is to pass back a cleanup expression
10970 which the caller is responsible for attaching to
10971 the statement tree. */
10972 }
10973 else
10974 {
10975 rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
10976 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
10977 {
10978 if (CP_DECL_THREAD_LOCAL_P (var))
10979 tls_aggregates = tree_cons (NULL_TREE, var,
10980 tls_aggregates);
10981 else
10982 static_aggregates = tree_cons (NULL_TREE, var,
10983 static_aggregates);
10984 }
10985 else
10986 /* Check whether the dtor is callable. */
10987 cxx_maybe_build_cleanup (var, tf_warning_or_error);
10988 }
10989 /* Avoid -Wunused-variable warning (c++/38958). */
10990 if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
10991 && VAR_P (decl))
10992 TREE_USED (decl) = DECL_READ_P (decl) = true;
10993
10994 *initp = init;
10995 return var;
10996 }
10997
10998 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
10999 initializing a variable of that TYPE. */
11000
11001 tree
11002 initialize_reference (tree type, tree expr,
11003 int flags, tsubst_flags_t complain)
11004 {
11005 conversion *conv;
11006 void *p;
11007 location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
11008
11009 if (type == error_mark_node || error_operand_p (expr))
11010 return error_mark_node;
11011
11012 /* Get the high-water mark for the CONVERSION_OBSTACK. */
11013 p = conversion_obstack_alloc (0);
11014
11015 conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
11016 flags, complain);
11017 if (!conv || conv->bad_p)
11018 {
11019 if (complain & tf_error)
11020 {
11021 if (conv)
11022 convert_like (conv, expr, complain);
11023 else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
11024 && !TYPE_REF_IS_RVALUE (type)
11025 && !lvalue_p (expr))
11026 error_at (loc, "invalid initialization of non-const reference of "
11027 "type %qH from an rvalue of type %qI",
11028 type, TREE_TYPE (expr));
11029 else
11030 error_at (loc, "invalid initialization of reference of type "
11031 "%qH from expression of type %qI", type,
11032 TREE_TYPE (expr));
11033 }
11034 return error_mark_node;
11035 }
11036
11037 if (conv->kind == ck_ref_bind)
11038 /* Perform the conversion. */
11039 expr = convert_like (conv, expr, complain);
11040 else if (conv->kind == ck_ambig)
11041 /* We gave an error in build_user_type_conversion_1. */
11042 expr = error_mark_node;
11043 else
11044 gcc_unreachable ();
11045
11046 /* Free all the conversions we allocated. */
11047 obstack_free (&conversion_obstack, p);
11048
11049 return expr;
11050 }
11051
11052 /* Subroutine of extend_ref_init_temps. Possibly extend one initializer,
11053 which is bound either to a reference or a std::initializer_list. */
11054
11055 static tree
11056 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups)
11057 {
11058 tree sub = init;
11059 tree *p;
11060 STRIP_NOPS (sub);
11061 if (TREE_CODE (sub) == COMPOUND_EXPR)
11062 {
11063 TREE_OPERAND (sub, 1)
11064 = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups);
11065 return init;
11066 }
11067 if (TREE_CODE (sub) != ADDR_EXPR)
11068 return init;
11069 /* Deal with binding to a subobject. */
11070 for (p = &TREE_OPERAND (sub, 0);
11071 (TREE_CODE (*p) == COMPONENT_REF
11072 || TREE_CODE (*p) == ARRAY_REF); )
11073 p = &TREE_OPERAND (*p, 0);
11074 if (TREE_CODE (*p) == TARGET_EXPR)
11075 {
11076 tree subinit = NULL_TREE;
11077 *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit);
11078 recompute_tree_invariant_for_addr_expr (sub);
11079 if (init != sub)
11080 init = fold_convert (TREE_TYPE (init), sub);
11081 if (subinit)
11082 init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
11083 }
11084 return init;
11085 }
11086
11087 /* INIT is part of the initializer for DECL. If there are any
11088 reference or initializer lists being initialized, extend their
11089 lifetime to match that of DECL. */
11090
11091 tree
11092 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups)
11093 {
11094 tree type = TREE_TYPE (init);
11095 if (processing_template_decl)
11096 return init;
11097 if (TYPE_REF_P (type))
11098 init = extend_ref_init_temps_1 (decl, init, cleanups);
11099 else
11100 {
11101 tree ctor = init;
11102 if (TREE_CODE (ctor) == TARGET_EXPR)
11103 ctor = TARGET_EXPR_INITIAL (ctor);
11104 if (TREE_CODE (ctor) == CONSTRUCTOR)
11105 {
11106 if (is_std_init_list (type))
11107 {
11108 /* The temporary array underlying a std::initializer_list
11109 is handled like a reference temporary. */
11110 tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
11111 array = extend_ref_init_temps_1 (decl, array, cleanups);
11112 CONSTRUCTOR_ELT (ctor, 0)->value = array;
11113 }
11114 else
11115 {
11116 unsigned i;
11117 constructor_elt *p;
11118 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ctor);
11119 FOR_EACH_VEC_SAFE_ELT (elts, i, p)
11120 p->value = extend_ref_init_temps (decl, p->value, cleanups);
11121 }
11122 recompute_constructor_flags (ctor);
11123 if (decl_maybe_constant_var_p (decl) && TREE_CONSTANT (ctor))
11124 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
11125 }
11126 }
11127
11128 return init;
11129 }
11130
11131 /* Returns true iff an initializer for TYPE could contain temporaries that
11132 need to be extended because they are bound to references or
11133 std::initializer_list. */
11134
11135 bool
11136 type_has_extended_temps (tree type)
11137 {
11138 type = strip_array_types (type);
11139 if (TYPE_REF_P (type))
11140 return true;
11141 if (CLASS_TYPE_P (type))
11142 {
11143 if (is_std_init_list (type))
11144 return true;
11145 for (tree f = next_initializable_field (TYPE_FIELDS (type));
11146 f; f = next_initializable_field (DECL_CHAIN (f)))
11147 if (type_has_extended_temps (TREE_TYPE (f)))
11148 return true;
11149 }
11150 return false;
11151 }
11152
11153 /* Returns true iff TYPE is some variant of std::initializer_list. */
11154
11155 bool
11156 is_std_init_list (tree type)
11157 {
11158 if (!TYPE_P (type))
11159 return false;
11160 if (cxx_dialect == cxx98)
11161 return false;
11162 /* Look through typedefs. */
11163 type = TYPE_MAIN_VARIANT (type);
11164 return (CLASS_TYPE_P (type)
11165 && CP_TYPE_CONTEXT (type) == std_node
11166 && init_list_identifier == DECL_NAME (TYPE_NAME (type)));
11167 }
11168
11169 /* Returns true iff DECL is a list constructor: i.e. a constructor which
11170 will accept an argument list of a single std::initializer_list<T>. */
11171
11172 bool
11173 is_list_ctor (tree decl)
11174 {
11175 tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
11176 tree arg;
11177
11178 if (!args || args == void_list_node)
11179 return false;
11180
11181 arg = non_reference (TREE_VALUE (args));
11182 if (!is_std_init_list (arg))
11183 return false;
11184
11185 args = TREE_CHAIN (args);
11186
11187 if (args && args != void_list_node && !TREE_PURPOSE (args))
11188 /* There are more non-defaulted parms. */
11189 return false;
11190
11191 return true;
11192 }
11193
11194 #include "gt-cp-call.h"