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