xref: /netbsd/external/gpl3/gcc/dist/gcc/cp/call.cc (revision f0fbc68b)
1 /* Functions related to invoking -*- C++ -*- methods and overloaded functions.
2    Copyright (C) 1987-2022 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 or ck_base, 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   /* True if this conversion is taking place in a copy-initialization context
115      and we should only consider converting constructors.  Only set in
116      ck_base and ck_rvalue.  */
117   BOOL_BITFIELD copy_init_p : 1;
118   /* The type of the expression resulting from the conversion.  */
119   tree type;
120   union {
121     /* The next conversion in the chain.  Since the conversions are
122        arranged from outermost to innermost, the NEXT conversion will
123        actually be performed before this conversion.  This variant is
124        used only when KIND is neither ck_identity, ck_aggr, ck_ambig nor
125        ck_list.  Please use the next_conversion function instead
126        of using this field directly.  */
127     conversion *next;
128     /* The expression at the beginning of the conversion chain.  This
129        variant is used only if KIND is ck_identity, ck_aggr, or ck_ambig.
130        You can use conv_get_original_expr to get this expression.  */
131     tree expr;
132     /* The array of conversions for an initializer_list, so this
133        variant is used only when KIN D is ck_list.  */
134     conversion **list;
135   } u;
136   /* The function candidate corresponding to this conversion
137      sequence.  This field is only used if KIND is ck_user.  */
138   struct z_candidate *cand;
139 };
140 
141 #define CONVERSION_RANK(NODE)			\
142   ((NODE)->bad_p ? cr_bad			\
143    : (NODE)->ellipsis_p ? cr_ellipsis		\
144    : (NODE)->user_conv_p ? cr_user		\
145    : (NODE)->rank)
146 
147 #define BAD_CONVERSION_RANK(NODE)		\
148   ((NODE)->ellipsis_p ? cr_ellipsis		\
149    : (NODE)->user_conv_p ? cr_user		\
150    : (NODE)->rank)
151 
152 static struct obstack conversion_obstack;
153 static bool conversion_obstack_initialized;
154 struct rejection_reason;
155 
156 static struct z_candidate * tourney (struct z_candidate *, tsubst_flags_t);
157 static int equal_functions (tree, tree);
158 static int joust (struct z_candidate *, struct z_candidate *, bool,
159 		  tsubst_flags_t);
160 static int compare_ics (conversion *, conversion *);
161 static void maybe_warn_class_memaccess (location_t, tree,
162 					const vec<tree, va_gc> *);
163 static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
164 static tree convert_like (conversion *, tree, tsubst_flags_t);
165 static tree convert_like_with_context (conversion *, tree, tree, int,
166 				       tsubst_flags_t);
167 static void op_error (const op_location_t &, enum tree_code, enum tree_code,
168 		      tree, tree, tree, bool);
169 static struct z_candidate *build_user_type_conversion_1 (tree, tree, int,
170 							 tsubst_flags_t);
171 static void print_z_candidate (location_t, const char *, struct z_candidate *);
172 static void print_z_candidates (location_t, struct z_candidate *);
173 static tree build_this (tree);
174 static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
175 static bool any_strictly_viable (struct z_candidate *);
176 static struct z_candidate *add_template_candidate
177 	(struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
178 	 tree, tree, tree, int, unification_kind_t, bool, tsubst_flags_t);
179 static struct z_candidate *add_template_candidate_real
180 	(struct z_candidate **, tree, tree, tree, tree, const vec<tree, va_gc> *,
181 	 tree, tree, tree, int, tree, unification_kind_t, bool, tsubst_flags_t);
182 static bool is_complete (tree);
183 static struct z_candidate *add_conv_candidate
184 	(struct z_candidate **, tree, tree, const vec<tree, va_gc> *, tree,
185 	 tree, tsubst_flags_t);
186 static struct z_candidate *add_function_candidate
187 	(struct z_candidate **, tree, tree, tree, const vec<tree, va_gc> *, tree,
188 	 tree, int, conversion**, bool, tsubst_flags_t);
189 static conversion *implicit_conversion (tree, tree, tree, bool, int,
190 					tsubst_flags_t);
191 static conversion *reference_binding (tree, tree, tree, bool, int,
192 				      tsubst_flags_t);
193 static conversion *build_conv (conversion_kind, tree, conversion *);
194 static conversion *build_list_conv (tree, tree, int, tsubst_flags_t);
195 static conversion *next_conversion (conversion *);
196 static bool is_subseq (conversion *, conversion *);
197 static conversion *maybe_handle_ref_bind (conversion **);
198 static void maybe_handle_implicit_object (conversion **);
199 static struct z_candidate *add_candidate
200 	(struct z_candidate **, tree, tree, const vec<tree, va_gc> *, size_t,
201 	 conversion **, tree, tree, int, struct rejection_reason *, int);
202 static tree source_type (conversion *);
203 static void add_warning (struct z_candidate *, struct z_candidate *);
204 static conversion *direct_reference_binding (tree, conversion *);
205 static bool promoted_arithmetic_type_p (tree);
206 static conversion *conditional_conversion (tree, tree, tsubst_flags_t);
207 static char *name_as_c_string (tree, tree, bool *);
208 static tree prep_operand (tree);
209 static void add_candidates (tree, tree, const vec<tree, va_gc> *, tree, tree,
210 			    bool, tree, tree, int, struct z_candidate **,
211 			    tsubst_flags_t);
212 static conversion *merge_conversion_sequences (conversion *, conversion *);
213 static tree build_temp (tree, tree, int, diagnostic_t *, tsubst_flags_t);
214 static conversion *build_identity_conv (tree, tree);
215 static inline bool conv_binds_to_array_of_unknown_bound (conversion *);
216 static bool conv_is_prvalue (conversion *);
217 static tree prevent_lifetime_extension (tree);
218 
219 /* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
220    NAME can take many forms...  */
221 
222 bool
check_dtor_name(tree basetype,tree name)223 check_dtor_name (tree basetype, tree name)
224 {
225   /* Just accept something we've already complained about.  */
226   if (name == error_mark_node)
227     return true;
228 
229   if (TREE_CODE (name) == TYPE_DECL)
230     name = TREE_TYPE (name);
231   else if (TYPE_P (name))
232     /* OK */;
233   else if (identifier_p (name))
234     {
235       if ((MAYBE_CLASS_TYPE_P (basetype)
236 	   || TREE_CODE (basetype) == ENUMERAL_TYPE)
237 	  && name == constructor_name (basetype))
238 	return true;
239 
240       /* Otherwise lookup the name, it could be an unrelated typedef
241 	 of the correct type.  */
242       name = lookup_name (name, LOOK_want::TYPE);
243       if (!name)
244 	return false;
245       name = TREE_TYPE (name);
246       if (name == error_mark_node)
247 	return false;
248     }
249   else
250     {
251       /* In the case of:
252 
253 	 template <class T> struct S { ~S(); };
254 	 int i;
255 	 i.~S();
256 
257 	 NAME will be a class template.  */
258       gcc_assert (DECL_CLASS_TEMPLATE_P (name));
259       return false;
260     }
261 
262   return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
263 }
264 
265 /* We want the address of a function or method.  We avoid creating a
266    pointer-to-member function.  */
267 
268 tree
build_addr_func(tree function,tsubst_flags_t complain)269 build_addr_func (tree function, tsubst_flags_t complain)
270 {
271   tree type = TREE_TYPE (function);
272 
273   /* We have to do these by hand to avoid real pointer to member
274      functions.  */
275   if (TREE_CODE (type) == METHOD_TYPE)
276     {
277       if (TREE_CODE (function) == OFFSET_REF)
278 	{
279 	  tree object = build_address (TREE_OPERAND (function, 0));
280 	  return get_member_function_from_ptrfunc (&object,
281 						   TREE_OPERAND (function, 1),
282 						   complain);
283 	}
284       function = build_address (function);
285     }
286   else if (TREE_CODE (function) == FUNCTION_DECL
287 	   && DECL_IMMEDIATE_FUNCTION_P (function))
288     function = build_address (function);
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
build_call_n(tree function,int n,...)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
set_flags_from_callee(tree call)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 (cfun && cp_function_chain && !cp_unevaluated_operand)
340     {
341       if (!nothrow && at_function_scope_p ())
342 	cp_function_chain->can_throw = 1;
343 
344       if (decl && TREE_THIS_VOLATILE (decl))
345 	current_function_returns_abnormally = 1;
346     }
347 
348   TREE_NOTHROW (call) = nothrow;
349 }
350 
351 tree
build_call_a(tree function,int n,tree * argarray)352 build_call_a (tree function, int n, tree *argarray)
353 {
354   tree decl;
355   tree result_type;
356   tree fntype;
357   int i;
358 
359   function = build_addr_func (function, tf_warning_or_error);
360 
361   gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
362   fntype = TREE_TYPE (TREE_TYPE (function));
363   gcc_assert (FUNC_OR_METHOD_TYPE_P (fntype));
364   result_type = TREE_TYPE (fntype);
365   /* An rvalue has no cv-qualifiers.  */
366   if (SCALAR_TYPE_P (result_type) || VOID_TYPE_P (result_type))
367     result_type = cv_unqualified (result_type);
368 
369   function = build_call_array_loc (input_location,
370 				   result_type, function, n, argarray);
371   set_flags_from_callee (function);
372 
373   decl = get_callee_fndecl (function);
374 
375   if (decl && !TREE_USED (decl))
376     {
377       /* We invoke build_call directly for several library
378 	 functions.  These may have been declared normally if
379 	 we're building libgcc, so we can't just check
380 	 DECL_ARTIFICIAL.  */
381       gcc_assert (DECL_ARTIFICIAL (decl)
382 		  || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
383 			       "__", 2));
384       mark_used (decl);
385     }
386 
387   require_complete_eh_spec_types (fntype, decl);
388 
389   TREE_HAS_CONSTRUCTOR (function) = (decl && DECL_CONSTRUCTOR_P (decl));
390 
391   /* Don't pass empty class objects by value.  This is useful
392      for tags in STL, which are used to control overload resolution.
393      We don't need to handle other cases of copying empty classes.  */
394   if (!decl || !fndecl_built_in_p (decl))
395     for (i = 0; i < n; i++)
396       {
397 	tree arg = CALL_EXPR_ARG (function, i);
398 	if (is_empty_class (TREE_TYPE (arg))
399 	    && simple_empty_class_p (TREE_TYPE (arg), arg, INIT_EXPR))
400 	  {
401 	    while (TREE_CODE (arg) == TARGET_EXPR)
402 	      /* We're disconnecting the initializer from its target,
403 		 don't create a temporary.  */
404 	      arg = TARGET_EXPR_INITIAL (arg);
405 	    tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (arg));
406 	    arg = build2 (COMPOUND_EXPR, TREE_TYPE (t), arg, t);
407 	    CALL_EXPR_ARG (function, i) = arg;
408 	  }
409       }
410 
411   return function;
412 }
413 
414 /* New overloading code.  */
415 
416 struct z_candidate;
417 
418 struct candidate_warning {
419   z_candidate *loser;
420   candidate_warning *next;
421 };
422 
423 /* Information for providing diagnostics about why overloading failed.  */
424 
425 enum rejection_reason_code {
426   rr_none,
427   rr_arity,
428   rr_explicit_conversion,
429   rr_template_conversion,
430   rr_arg_conversion,
431   rr_bad_arg_conversion,
432   rr_template_unification,
433   rr_invalid_copy,
434   rr_inherited_ctor,
435   rr_constraint_failure
436 };
437 
438 struct conversion_info {
439   /* The index of the argument, 0-based.  */
440   int n_arg;
441   /* The actual argument or its type.  */
442   tree from;
443   /* The type of the parameter.  */
444   tree to_type;
445   /* The location of the argument.  */
446   location_t loc;
447 };
448 
449 struct rejection_reason {
450   enum rejection_reason_code code;
451   union {
452     /* Information about an arity mismatch.  */
453     struct {
454       /* The expected number of arguments.  */
455       int expected;
456       /* The actual number of arguments in the call.  */
457       int actual;
458       /* Whether EXPECTED should be treated as a lower bound.  */
459       bool least_p;
460     } arity;
461     /* Information about an argument conversion mismatch.  */
462     struct conversion_info conversion;
463     /* Same, but for bad argument conversions.  */
464     struct conversion_info bad_conversion;
465     /* Information about template unification failures.  These are the
466        parameters passed to fn_type_unification.  */
467     struct {
468       tree tmpl;
469       tree explicit_targs;
470       int num_targs;
471       const tree *args;
472       unsigned int nargs;
473       tree return_type;
474       unification_kind_t strict;
475       int flags;
476     } template_unification;
477     /* Information about template instantiation failures.  These are the
478        parameters passed to instantiate_template.  */
479     struct {
480       tree tmpl;
481       tree targs;
482     } template_instantiation;
483   } u;
484 };
485 
486 struct z_candidate {
487   /* The FUNCTION_DECL that will be called if this candidate is
488      selected by overload resolution.  */
489   tree fn;
490   /* If not NULL_TREE, the first argument to use when calling this
491      function.  */
492   tree first_arg;
493   /* The rest of the arguments to use when calling this function.  If
494      there are no further arguments this may be NULL or it may be an
495      empty vector.  */
496   const vec<tree, va_gc> *args;
497   /* The implicit conversion sequences for each of the arguments to
498      FN.  */
499   conversion **convs;
500   /* The number of implicit conversion sequences.  */
501   size_t num_convs;
502   /* If FN is a user-defined conversion, the standard conversion
503      sequence from the type returned by FN to the desired destination
504      type.  */
505   conversion *second_conv;
506   struct rejection_reason *reason;
507   /* If FN is a member function, the binfo indicating the path used to
508      qualify the name of FN at the call site.  This path is used to
509      determine whether or not FN is accessible if it is selected by
510      overload resolution.  The DECL_CONTEXT of FN will always be a
511      (possibly improper) base of this binfo.  */
512   tree access_path;
513   /* If FN is a non-static member function, the binfo indicating the
514      subobject to which the `this' pointer should be converted if FN
515      is selected by overload resolution.  The type pointed to by
516      the `this' pointer must correspond to the most derived class
517      indicated by the CONVERSION_PATH.  */
518   tree conversion_path;
519   tree template_decl;
520   tree explicit_targs;
521   candidate_warning *warnings;
522   z_candidate *next;
523   int viable;
524 
525   /* The flags active in add_candidate.  */
526   int flags;
527 
rewrittenz_candidate528   bool rewritten () const { return (flags & LOOKUP_REWRITTEN); }
reversedz_candidate529   bool reversed () const { return (flags & LOOKUP_REVERSED); }
530 };
531 
532 /* Returns true iff T is a null pointer constant in the sense of
533    [conv.ptr].  */
534 
535 bool
null_ptr_cst_p(tree t)536 null_ptr_cst_p (tree t)
537 {
538   tree type = TREE_TYPE (t);
539 
540   /* [conv.ptr]
541 
542      A null pointer constant is an integer literal ([lex.icon]) with value
543      zero or a prvalue of type std::nullptr_t.  */
544   if (NULLPTR_TYPE_P (type))
545     return true;
546 
547   if (cxx_dialect >= cxx11)
548     {
549       STRIP_ANY_LOCATION_WRAPPER (t);
550 
551       /* Core issue 903 says only literal 0 is a null pointer constant.  */
552       if (TREE_CODE (t) == INTEGER_CST
553 	  && !TREE_OVERFLOW (t)
554 	  && TREE_CODE (type) == INTEGER_TYPE
555 	  && integer_zerop (t)
556 	  && !char_type_p (type))
557 	return true;
558     }
559   else if (CP_INTEGRAL_TYPE_P (type))
560     {
561       t = fold_non_dependent_expr (t, tf_none);
562       STRIP_NOPS (t);
563       if (integer_zerop (t) && !TREE_OVERFLOW (t))
564 	return true;
565     }
566 
567   return false;
568 }
569 
570 /* Returns true iff T is a null member pointer value (4.11).  */
571 
572 bool
null_member_pointer_value_p(tree t)573 null_member_pointer_value_p (tree t)
574 {
575   tree type = TREE_TYPE (t);
576   if (!type)
577     return false;
578   else if (TYPE_PTRMEMFUNC_P (type))
579     return (TREE_CODE (t) == CONSTRUCTOR
580 	    && CONSTRUCTOR_NELTS (t)
581 	    && integer_zerop (CONSTRUCTOR_ELT (t, 0)->value));
582   else if (TYPE_PTRDATAMEM_P (type))
583     return integer_all_onesp (t);
584   else
585     return false;
586 }
587 
588 /* Returns nonzero if PARMLIST consists of only default parms,
589    ellipsis, and/or undeduced parameter packs.  */
590 
591 bool
sufficient_parms_p(const_tree parmlist)592 sufficient_parms_p (const_tree parmlist)
593 {
594   for (; parmlist && parmlist != void_list_node;
595        parmlist = TREE_CHAIN (parmlist))
596     if (!TREE_PURPOSE (parmlist)
597 	&& !PACK_EXPANSION_P (TREE_VALUE (parmlist)))
598       return false;
599   return true;
600 }
601 
602 /* Allocate N bytes of memory from the conversion obstack.  The memory
603    is zeroed before being returned.  */
604 
605 static void *
conversion_obstack_alloc(size_t n)606 conversion_obstack_alloc (size_t n)
607 {
608   void *p;
609   if (!conversion_obstack_initialized)
610     {
611       gcc_obstack_init (&conversion_obstack);
612       conversion_obstack_initialized = true;
613     }
614   p = obstack_alloc (&conversion_obstack, n);
615   memset (p, 0, n);
616   return p;
617 }
618 
619 /* Allocate rejection reasons.  */
620 
621 static struct rejection_reason *
alloc_rejection(enum rejection_reason_code code)622 alloc_rejection (enum rejection_reason_code code)
623 {
624   struct rejection_reason *p;
625   p = (struct rejection_reason *) conversion_obstack_alloc (sizeof *p);
626   p->code = code;
627   return p;
628 }
629 
630 static struct rejection_reason *
arity_rejection(tree first_arg,int expected,int actual,bool least_p=false)631 arity_rejection (tree first_arg, int expected, int actual, bool least_p = false)
632 {
633   struct rejection_reason *r = alloc_rejection (rr_arity);
634   int adjust = first_arg != NULL_TREE;
635   r->u.arity.expected = expected - adjust;
636   r->u.arity.actual = actual - adjust;
637   r->u.arity.least_p = least_p;
638   return r;
639 }
640 
641 static struct rejection_reason *
arg_conversion_rejection(tree first_arg,int n_arg,tree from,tree to,location_t loc)642 arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to,
643 			  location_t loc)
644 {
645   struct rejection_reason *r = alloc_rejection (rr_arg_conversion);
646   int adjust = first_arg != NULL_TREE;
647   r->u.conversion.n_arg = n_arg - adjust;
648   r->u.conversion.from = from;
649   r->u.conversion.to_type = to;
650   r->u.conversion.loc = loc;
651   return r;
652 }
653 
654 static struct rejection_reason *
bad_arg_conversion_rejection(tree first_arg,int n_arg,tree from,tree to,location_t loc)655 bad_arg_conversion_rejection (tree first_arg, int n_arg, tree from, tree to,
656 			      location_t loc)
657 {
658   struct rejection_reason *r = alloc_rejection (rr_bad_arg_conversion);
659   int adjust = first_arg != NULL_TREE;
660   r->u.bad_conversion.n_arg = n_arg - adjust;
661   r->u.bad_conversion.from = from;
662   r->u.bad_conversion.to_type = to;
663   r->u.bad_conversion.loc = loc;
664   return r;
665 }
666 
667 static struct rejection_reason *
explicit_conversion_rejection(tree from,tree to)668 explicit_conversion_rejection (tree from, tree to)
669 {
670   struct rejection_reason *r = alloc_rejection (rr_explicit_conversion);
671   r->u.conversion.n_arg = 0;
672   r->u.conversion.from = from;
673   r->u.conversion.to_type = to;
674   r->u.conversion.loc = UNKNOWN_LOCATION;
675   return r;
676 }
677 
678 static struct rejection_reason *
template_conversion_rejection(tree from,tree to)679 template_conversion_rejection (tree from, tree to)
680 {
681   struct rejection_reason *r = alloc_rejection (rr_template_conversion);
682   r->u.conversion.n_arg = 0;
683   r->u.conversion.from = from;
684   r->u.conversion.to_type = to;
685   r->u.conversion.loc = UNKNOWN_LOCATION;
686   return r;
687 }
688 
689 static struct rejection_reason *
template_unification_rejection(tree tmpl,tree explicit_targs,tree targs,const tree * args,unsigned int nargs,tree return_type,unification_kind_t strict,int flags)690 template_unification_rejection (tree tmpl, tree explicit_targs, tree targs,
691 				const tree *args, unsigned int nargs,
692 				tree return_type, unification_kind_t strict,
693 				int flags)
694 {
695   size_t args_n_bytes = sizeof (*args) * nargs;
696   tree *args1 = (tree *) conversion_obstack_alloc (args_n_bytes);
697   struct rejection_reason *r = alloc_rejection (rr_template_unification);
698   r->u.template_unification.tmpl = tmpl;
699   r->u.template_unification.explicit_targs = explicit_targs;
700   r->u.template_unification.num_targs = TREE_VEC_LENGTH (targs);
701   /* Copy args to our own storage.  */
702   memcpy (args1, args, args_n_bytes);
703   r->u.template_unification.args = args1;
704   r->u.template_unification.nargs = nargs;
705   r->u.template_unification.return_type = return_type;
706   r->u.template_unification.strict = strict;
707   r->u.template_unification.flags = flags;
708   return r;
709 }
710 
711 static struct rejection_reason *
template_unification_error_rejection(void)712 template_unification_error_rejection (void)
713 {
714   return alloc_rejection (rr_template_unification);
715 }
716 
717 static struct rejection_reason *
invalid_copy_with_fn_template_rejection(void)718 invalid_copy_with_fn_template_rejection (void)
719 {
720   struct rejection_reason *r = alloc_rejection (rr_invalid_copy);
721   return r;
722 }
723 
724 static struct rejection_reason *
inherited_ctor_rejection(void)725 inherited_ctor_rejection (void)
726 {
727   struct rejection_reason *r = alloc_rejection (rr_inherited_ctor);
728   return r;
729 }
730 
731 /* Build a constraint failure record.  */
732 
733 static struct rejection_reason *
constraint_failure(void)734 constraint_failure (void)
735 {
736   struct rejection_reason *r = alloc_rejection (rr_constraint_failure);
737   return r;
738 }
739 
740 /* Dynamically allocate a conversion.  */
741 
742 static conversion *
alloc_conversion(conversion_kind kind)743 alloc_conversion (conversion_kind kind)
744 {
745   conversion *c;
746   c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
747   c->kind = kind;
748   return c;
749 }
750 
751 /* Make sure that all memory on the conversion obstack has been
752    freed.  */
753 
754 void
validate_conversion_obstack(void)755 validate_conversion_obstack (void)
756 {
757   if (conversion_obstack_initialized)
758     gcc_assert ((obstack_next_free (&conversion_obstack)
759 		 == obstack_base (&conversion_obstack)));
760 }
761 
762 /* Dynamically allocate an array of N conversions.  */
763 
764 static conversion **
alloc_conversions(size_t n)765 alloc_conversions (size_t n)
766 {
767   return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
768 }
769 
770 /* True iff the active member of conversion::u for code CODE is NEXT.  */
771 
772 static inline bool
has_next(conversion_kind code)773 has_next (conversion_kind code)
774 {
775   return !(code == ck_identity
776 	   || code == ck_ambig
777 	   || code == ck_list
778 	   || code == ck_aggr);
779 }
780 
781 static conversion *
build_conv(conversion_kind code,tree type,conversion * from)782 build_conv (conversion_kind code, tree type, conversion *from)
783 {
784   conversion *t;
785   conversion_rank rank = CONVERSION_RANK (from);
786 
787   /* Only call this function for conversions that use u.next.  */
788   gcc_assert (from == NULL || has_next (code));
789 
790   /* Note that the caller is responsible for filling in t->cand for
791      user-defined conversions.  */
792   t = alloc_conversion (code);
793   t->type = type;
794   t->u.next = from;
795 
796   switch (code)
797     {
798     case ck_ptr:
799     case ck_pmem:
800     case ck_base:
801     case ck_std:
802       if (rank < cr_std)
803 	rank = cr_std;
804       break;
805 
806     case ck_qual:
807     case ck_fnptr:
808       if (rank < cr_exact)
809 	rank = cr_exact;
810       break;
811 
812     default:
813       break;
814     }
815   t->rank = rank;
816   t->user_conv_p = (code == ck_user || from->user_conv_p);
817   t->bad_p = from->bad_p;
818   t->base_p = false;
819   return t;
820 }
821 
822 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
823    specialization of std::initializer_list<T>, if such a conversion is
824    possible.  */
825 
826 static conversion *
build_list_conv(tree type,tree ctor,int flags,tsubst_flags_t complain)827 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
828 {
829   tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
830   unsigned len = CONSTRUCTOR_NELTS (ctor);
831   conversion **subconvs = alloc_conversions (len);
832   conversion *t;
833   unsigned i;
834   tree val;
835 
836   /* Within a list-initialization we can have more user-defined
837      conversions.  */
838   flags &= ~LOOKUP_NO_CONVERSION;
839   /* But no narrowing conversions.  */
840   flags |= LOOKUP_NO_NARROWING;
841 
842   /* Can't make an array of these types.  */
843   if (TYPE_REF_P (elttype)
844       || TREE_CODE (elttype) == FUNCTION_TYPE
845       || VOID_TYPE_P (elttype))
846     return NULL;
847 
848   FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
849     {
850       conversion *sub
851 	= implicit_conversion (elttype, TREE_TYPE (val), val,
852 			       false, flags, complain);
853       if (sub == NULL)
854 	return NULL;
855 
856       subconvs[i] = sub;
857     }
858 
859   t = alloc_conversion (ck_list);
860   t->type = type;
861   t->u.list = subconvs;
862   t->rank = cr_exact;
863 
864   for (i = 0; i < len; ++i)
865     {
866       conversion *sub = subconvs[i];
867       if (sub->rank > t->rank)
868 	t->rank = sub->rank;
869       if (sub->user_conv_p)
870 	t->user_conv_p = true;
871       if (sub->bad_p)
872 	t->bad_p = true;
873     }
874 
875   return t;
876 }
877 
878 /* Return the next conversion of the conversion chain (if applicable),
879    or NULL otherwise.  Please use this function instead of directly
880    accessing fields of struct conversion.  */
881 
882 static conversion *
next_conversion(conversion * conv)883 next_conversion (conversion *conv)
884 {
885   if (conv == NULL
886       || !has_next (conv->kind))
887     return NULL;
888   return conv->u.next;
889 }
890 
891 /* Strip to the first ck_user, ck_ambig, ck_list, ck_aggr or ck_identity
892    encountered.  */
893 
894 static conversion *
strip_standard_conversion(conversion * conv)895 strip_standard_conversion (conversion *conv)
896 {
897   while (conv
898 	 && conv->kind != ck_user
899 	 && has_next (conv->kind))
900     conv = next_conversion (conv);
901   return conv;
902 }
903 
904 /* Subroutine of build_aggr_conv: check whether FROM is a valid aggregate
905    initializer for array type ATYPE.  */
906 
907 static bool
can_convert_array(tree atype,tree from,int flags,tsubst_flags_t complain)908 can_convert_array (tree atype, tree from, int flags, tsubst_flags_t complain)
909 {
910   tree elttype = TREE_TYPE (atype);
911   unsigned i;
912 
913   if (TREE_CODE (from) == CONSTRUCTOR)
914     {
915       for (i = 0; i < CONSTRUCTOR_NELTS (from); ++i)
916 	{
917 	  tree val = CONSTRUCTOR_ELT (from, i)->value;
918 	  bool ok;
919 	  if (TREE_CODE (elttype) == ARRAY_TYPE)
920 	    ok = can_convert_array (elttype, val, flags, complain);
921 	  else
922 	    ok = can_convert_arg (elttype, TREE_TYPE (val), val, flags,
923 				  complain);
924 	  if (!ok)
925 	    return false;
926 	}
927       return true;
928     }
929 
930   if (char_type_p (TYPE_MAIN_VARIANT (elttype))
931       && TREE_CODE (tree_strip_any_location_wrapper (from)) == STRING_CST)
932     return array_string_literal_compatible_p (atype, from);
933 
934   /* No other valid way to aggregate initialize an array.  */
935   return false;
936 }
937 
938 /* Helper for build_aggr_conv.  Return true if FIELD is in PSET, or if
939    FIELD has ANON_AGGR_TYPE_P and any initializable field in there recursively
940    is in PSET.  */
941 
942 static bool
field_in_pset(hash_set<tree,true> & pset,tree field)943 field_in_pset (hash_set<tree, true> &pset, tree field)
944 {
945   if (pset.contains (field))
946     return true;
947   if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
948     for (field = TYPE_FIELDS (TREE_TYPE (field));
949 	 field; field = DECL_CHAIN (field))
950       {
951 	field = next_initializable_field (field);
952 	if (field == NULL_TREE)
953 	  break;
954 	if (field_in_pset (pset, field))
955 	  return true;
956       }
957   return false;
958 }
959 
960 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
961    aggregate class, if such a conversion is possible.  */
962 
963 static conversion *
build_aggr_conv(tree type,tree ctor,int flags,tsubst_flags_t complain)964 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
965 {
966   unsigned HOST_WIDE_INT i = 0;
967   conversion *c;
968   tree field = next_initializable_field (TYPE_FIELDS (type));
969   tree empty_ctor = NULL_TREE;
970   hash_set<tree, true> pset;
971 
972   /* We already called reshape_init in implicit_conversion.  */
973 
974   /* The conversions within the init-list aren't affected by the enclosing
975      context; they're always simple copy-initialization.  */
976   flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
977 
978   /* For designated initializers, verify that each initializer is convertible
979      to corresponding TREE_TYPE (ce->index) and mark those FIELD_DECLs as
980      visited.  In the following loop then ignore already visited
981      FIELD_DECLs.  */
982   if (CONSTRUCTOR_IS_DESIGNATED_INIT (ctor))
983     {
984       tree idx, val;
985       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), i, idx, val)
986 	{
987 	  if (idx && TREE_CODE (idx) == FIELD_DECL)
988 	    {
989 	      tree ftype = TREE_TYPE (idx);
990 	      bool ok;
991 
992 	      if (TREE_CODE (ftype) == ARRAY_TYPE)
993 		ok = can_convert_array (ftype, val, flags, complain);
994 	      else
995 		ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
996 				      complain);
997 
998 	      if (!ok)
999 		return NULL;
1000 	      /* For unions, there should be just one initializer.  */
1001 	      if (TREE_CODE (type) == UNION_TYPE)
1002 		{
1003 		  field = NULL_TREE;
1004 		  i = 1;
1005 		  break;
1006 		}
1007 	      pset.add (idx);
1008 	    }
1009 	  else
1010 	    return NULL;
1011 	}
1012     }
1013 
1014   for (; field; field = next_initializable_field (DECL_CHAIN (field)))
1015     {
1016       tree ftype = TREE_TYPE (field);
1017       tree val;
1018       bool ok;
1019 
1020       if (!pset.is_empty () && field_in_pset (pset, field))
1021 	continue;
1022       if (i < CONSTRUCTOR_NELTS (ctor))
1023 	{
1024 	  val = CONSTRUCTOR_ELT (ctor, i)->value;
1025 	  ++i;
1026 	}
1027       else if (DECL_INITIAL (field))
1028 	val = get_nsdmi (field, /*ctor*/false, complain);
1029       else if (TYPE_REF_P (ftype))
1030 	/* Value-initialization of reference is ill-formed.  */
1031 	return NULL;
1032       else
1033 	{
1034 	  if (empty_ctor == NULL_TREE)
1035 	    empty_ctor = build_constructor (init_list_type_node, NULL);
1036 	  val = empty_ctor;
1037 	}
1038 
1039       if (TREE_CODE (ftype) == ARRAY_TYPE)
1040 	ok = can_convert_array (ftype, val, flags, complain);
1041       else
1042 	ok = can_convert_arg (ftype, TREE_TYPE (val), val, flags,
1043 			      complain);
1044 
1045       if (!ok)
1046 	return NULL;
1047 
1048       if (TREE_CODE (type) == UNION_TYPE)
1049 	break;
1050     }
1051 
1052   if (i < CONSTRUCTOR_NELTS (ctor))
1053     return NULL;
1054 
1055   c = alloc_conversion (ck_aggr);
1056   c->type = type;
1057   c->rank = cr_exact;
1058   c->user_conv_p = true;
1059   c->check_narrowing = true;
1060   c->u.expr = ctor;
1061   return c;
1062 }
1063 
1064 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
1065    array type, if such a conversion is possible.  */
1066 
1067 static conversion *
build_array_conv(tree type,tree ctor,int flags,tsubst_flags_t complain)1068 build_array_conv (tree type, tree ctor, int flags, tsubst_flags_t complain)
1069 {
1070   conversion *c;
1071   unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
1072   tree elttype = TREE_TYPE (type);
1073   bool bad = false;
1074   bool user = false;
1075   enum conversion_rank rank = cr_exact;
1076 
1077   /* We might need to propagate the size from the element to the array.  */
1078   complete_type (type);
1079 
1080   if (TYPE_DOMAIN (type)
1081       && !variably_modified_type_p (TYPE_DOMAIN (type), NULL_TREE))
1082     {
1083       unsigned HOST_WIDE_INT alen = tree_to_uhwi (array_type_nelts_top (type));
1084       if (alen < len)
1085 	return NULL;
1086     }
1087 
1088   flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1089 
1090   for (auto &e: CONSTRUCTOR_ELTS (ctor))
1091     {
1092       conversion *sub
1093 	= implicit_conversion (elttype, TREE_TYPE (e.value), e.value,
1094 			       false, flags, complain);
1095       if (sub == NULL)
1096 	return NULL;
1097 
1098       if (sub->rank > rank)
1099 	rank = sub->rank;
1100       if (sub->user_conv_p)
1101 	user = true;
1102       if (sub->bad_p)
1103 	bad = true;
1104     }
1105 
1106   c = alloc_conversion (ck_aggr);
1107   c->type = type;
1108   c->rank = rank;
1109   c->user_conv_p = user;
1110   c->bad_p = bad;
1111   c->u.expr = ctor;
1112   return c;
1113 }
1114 
1115 /* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
1116    complex type, if such a conversion is possible.  */
1117 
1118 static conversion *
build_complex_conv(tree type,tree ctor,int flags,tsubst_flags_t complain)1119 build_complex_conv (tree type, tree ctor, int flags,
1120 		    tsubst_flags_t complain)
1121 {
1122   conversion *c;
1123   unsigned HOST_WIDE_INT len = CONSTRUCTOR_NELTS (ctor);
1124   tree elttype = TREE_TYPE (type);
1125   bool bad = false;
1126   bool user = false;
1127   enum conversion_rank rank = cr_exact;
1128 
1129   if (len != 2)
1130     return NULL;
1131 
1132   flags = LOOKUP_IMPLICIT|LOOKUP_NO_NARROWING;
1133 
1134   for (auto &e: CONSTRUCTOR_ELTS (ctor))
1135     {
1136       conversion *sub
1137 	= implicit_conversion (elttype, TREE_TYPE (e.value), e.value,
1138 			       false, flags, complain);
1139       if (sub == NULL)
1140 	return NULL;
1141 
1142       if (sub->rank > rank)
1143 	rank = sub->rank;
1144       if (sub->user_conv_p)
1145 	user = true;
1146       if (sub->bad_p)
1147 	bad = true;
1148     }
1149 
1150   c = alloc_conversion (ck_aggr);
1151   c->type = type;
1152   c->rank = rank;
1153   c->user_conv_p = user;
1154   c->bad_p = bad;
1155   c->u.expr = ctor;
1156   return c;
1157 }
1158 
1159 /* Build a representation of the identity conversion from EXPR to
1160    itself.  The TYPE should match the type of EXPR, if EXPR is non-NULL.  */
1161 
1162 static conversion *
build_identity_conv(tree type,tree expr)1163 build_identity_conv (tree type, tree expr)
1164 {
1165   conversion *c;
1166 
1167   c = alloc_conversion (ck_identity);
1168   c->type = type;
1169   c->u.expr = expr;
1170 
1171   return c;
1172 }
1173 
1174 /* Converting from EXPR to TYPE was ambiguous in the sense that there
1175    were multiple user-defined conversions to accomplish the job.
1176    Build a conversion that indicates that ambiguity.  */
1177 
1178 static conversion *
build_ambiguous_conv(tree type,tree expr)1179 build_ambiguous_conv (tree type, tree expr)
1180 {
1181   conversion *c;
1182 
1183   c = alloc_conversion (ck_ambig);
1184   c->type = type;
1185   c->u.expr = expr;
1186 
1187   return c;
1188 }
1189 
1190 tree
strip_top_quals(tree t)1191 strip_top_quals (tree t)
1192 {
1193   if (TREE_CODE (t) == ARRAY_TYPE)
1194     return t;
1195   return cp_build_qualified_type (t, 0);
1196 }
1197 
1198 /* Returns the standard conversion path (see [conv]) from type FROM to type
1199    TO, if any.  For proper handling of null pointer constants, you must
1200    also pass the expression EXPR to convert from.  If C_CAST_P is true,
1201    this conversion is coming from a C-style cast.  */
1202 
1203 static conversion *
standard_conversion(tree to,tree from,tree expr,bool c_cast_p,int flags,tsubst_flags_t complain)1204 standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
1205 		     int flags, tsubst_flags_t complain)
1206 {
1207   enum tree_code fcode, tcode;
1208   conversion *conv;
1209   bool fromref = false;
1210   tree qualified_to;
1211 
1212   to = non_reference (to);
1213   if (TYPE_REF_P (from))
1214     {
1215       fromref = true;
1216       from = TREE_TYPE (from);
1217     }
1218   qualified_to = to;
1219   to = strip_top_quals (to);
1220   from = strip_top_quals (from);
1221 
1222   if (expr && type_unknown_p (expr))
1223     {
1224       if (TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
1225 	{
1226 	  tsubst_flags_t tflags = tf_conv;
1227 	  expr = instantiate_type (to, expr, tflags);
1228 	  if (expr == error_mark_node)
1229 	    return NULL;
1230 	  from = TREE_TYPE (expr);
1231 	}
1232       else if (TREE_CODE (to) == BOOLEAN_TYPE)
1233 	{
1234 	  /* Necessary for eg, TEMPLATE_ID_EXPRs (c++/50961).  */
1235 	  expr = resolve_nondeduced_context (expr, complain);
1236 	  from = TREE_TYPE (expr);
1237 	}
1238     }
1239 
1240   fcode = TREE_CODE (from);
1241   tcode = TREE_CODE (to);
1242 
1243   conv = build_identity_conv (from, expr);
1244   if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
1245     {
1246       from = type_decays_to (from);
1247       fcode = TREE_CODE (from);
1248       /* Tell convert_like that we're using the address.  */
1249       conv->rvaluedness_matches_p = true;
1250       conv = build_conv (ck_lvalue, from, conv);
1251     }
1252   /* Wrapping a ck_rvalue around a class prvalue (as a result of using
1253      obvalue_p) seems odd, since it's already a prvalue, but that's how we
1254      express the copy constructor call required by copy-initialization.  */
1255   else if (fromref || (expr && obvalue_p (expr)))
1256     {
1257       if (expr)
1258 	{
1259 	  tree bitfield_type;
1260 	  bitfield_type = is_bitfield_expr_with_lowered_type (expr);
1261 	  if (bitfield_type)
1262 	    {
1263 	      from = strip_top_quals (bitfield_type);
1264 	      fcode = TREE_CODE (from);
1265 	    }
1266 	}
1267       conv = build_conv (ck_rvalue, from, conv);
1268       if (flags & LOOKUP_PREFER_RVALUE)
1269 	/* Tell convert_like to set LOOKUP_PREFER_RVALUE.  */
1270 	conv->rvaluedness_matches_p = true;
1271       /* If we're performing copy-initialization, remember to skip
1272 	 explicit constructors.  */
1273       if (flags & LOOKUP_ONLYCONVERTING)
1274 	conv->copy_init_p = true;
1275     }
1276 
1277    /* Allow conversion between `__complex__' data types.  */
1278   if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
1279     {
1280       /* The standard conversion sequence to convert FROM to TO is
1281 	 the standard conversion sequence to perform componentwise
1282 	 conversion.  */
1283       conversion *part_conv = standard_conversion
1284 	(TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags,
1285 	 complain);
1286 
1287       if (!part_conv)
1288 	conv = NULL;
1289       else if (part_conv->kind == ck_identity)
1290 	/* Leave conv alone.  */;
1291       else
1292 	{
1293 	  conv = build_conv (part_conv->kind, to, conv);
1294 	  conv->rank = part_conv->rank;
1295 	}
1296 
1297       return conv;
1298     }
1299 
1300   if (same_type_p (from, to))
1301     {
1302       if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue)
1303 	conv->type = qualified_to;
1304       return conv;
1305     }
1306 
1307   /* [conv.ptr]
1308      A null pointer constant can be converted to a pointer type; ... A
1309      null pointer constant of integral type can be converted to an
1310      rvalue of type std::nullptr_t. */
1311   if ((tcode == POINTER_TYPE || TYPE_PTRMEM_P (to)
1312        || NULLPTR_TYPE_P (to))
1313       && ((expr && null_ptr_cst_p (expr))
1314 	  || NULLPTR_TYPE_P (from)))
1315     conv = build_conv (ck_std, to, conv);
1316   else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
1317 	   || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
1318     {
1319       /* For backwards brain damage compatibility, allow interconversion of
1320 	 pointers and integers with a pedwarn.  */
1321       conv = build_conv (ck_std, to, conv);
1322       conv->bad_p = true;
1323     }
1324   else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
1325     {
1326       /* For backwards brain damage compatibility, allow interconversion of
1327 	 enums and integers with a pedwarn.  */
1328       conv = build_conv (ck_std, to, conv);
1329       conv->bad_p = true;
1330     }
1331   else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
1332 	   || (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from)))
1333     {
1334       tree to_pointee;
1335       tree from_pointee;
1336 
1337       if (tcode == POINTER_TYPE)
1338 	{
1339 	  to_pointee = TREE_TYPE (to);
1340 	  from_pointee = TREE_TYPE (from);
1341 
1342 	  /* Since this is the target of a pointer, it can't have function
1343 	     qualifiers, so any TYPE_QUALS must be for attributes const or
1344 	     noreturn.  Strip them.  */
1345 	  if (TREE_CODE (to_pointee) == FUNCTION_TYPE
1346 	      && TYPE_QUALS (to_pointee))
1347 	    to_pointee = build_qualified_type (to_pointee, TYPE_UNQUALIFIED);
1348 	  if (TREE_CODE (from_pointee) == FUNCTION_TYPE
1349 	      && TYPE_QUALS (from_pointee))
1350 	    from_pointee = build_qualified_type (from_pointee, TYPE_UNQUALIFIED);
1351 	}
1352       else
1353 	{
1354 	  to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
1355 	  from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
1356 	}
1357 
1358       if (tcode == POINTER_TYPE
1359 	  && same_type_ignoring_top_level_qualifiers_p (from_pointee,
1360 							to_pointee))
1361 	;
1362       else if (VOID_TYPE_P (to_pointee)
1363 	       && !TYPE_PTRDATAMEM_P (from)
1364 	       && TREE_CODE (from_pointee) != FUNCTION_TYPE)
1365 	{
1366 	  tree nfrom = TREE_TYPE (from);
1367 	  /* Don't try to apply restrict to void.  */
1368 	  int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
1369 	  from_pointee = cp_build_qualified_type (void_type_node, quals);
1370 	  from = build_pointer_type (from_pointee);
1371 	  conv = build_conv (ck_ptr, from, conv);
1372 	}
1373       else if (TYPE_PTRDATAMEM_P (from))
1374 	{
1375 	  tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
1376 	  tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
1377 
1378 	  if (same_type_p (fbase, tbase))
1379 	    /* No base conversion needed.  */;
1380 	  else if (DERIVED_FROM_P (fbase, tbase)
1381 		   && (same_type_ignoring_top_level_qualifiers_p
1382 		       (from_pointee, to_pointee)))
1383 	    {
1384 	      from = build_ptrmem_type (tbase, from_pointee);
1385 	      conv = build_conv (ck_pmem, from, conv);
1386 	    }
1387 	  else
1388 	    return NULL;
1389 	}
1390       else if (CLASS_TYPE_P (from_pointee)
1391 	       && CLASS_TYPE_P (to_pointee)
1392 	       /* [conv.ptr]
1393 
1394 		  An rvalue of type "pointer to cv D," where D is a
1395 		  class type, can be converted to an rvalue of type
1396 		  "pointer to cv B," where B is a base class (clause
1397 		  _class.derived_) of D.  If B is an inaccessible
1398 		  (clause _class.access_) or ambiguous
1399 		  (_class.member.lookup_) base class of D, a program
1400 		  that necessitates this conversion is ill-formed.
1401 		  Therefore, we use DERIVED_FROM_P, and do not check
1402 		  access or uniqueness.  */
1403 	       && DERIVED_FROM_P (to_pointee, from_pointee))
1404 	{
1405 	  from_pointee
1406 	    = cp_build_qualified_type (to_pointee,
1407 				       cp_type_quals (from_pointee));
1408 	  from = build_pointer_type (from_pointee);
1409 	  conv = build_conv (ck_ptr, from, conv);
1410 	  conv->base_p = true;
1411 	}
1412 
1413       if (same_type_p (from, to))
1414 	/* OK */;
1415       else if (c_cast_p && comp_ptr_ttypes_const (to, from, bounds_either))
1416 	/* In a C-style cast, we ignore CV-qualification because we
1417 	   are allowed to perform a static_cast followed by a
1418 	   const_cast.  */
1419 	conv = build_conv (ck_qual, to, conv);
1420       else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
1421 	conv = build_conv (ck_qual, to, conv);
1422       else if (expr && string_conv_p (to, expr, 0))
1423 	/* converting from string constant to char *.  */
1424 	conv = build_conv (ck_qual, to, conv);
1425       else if (fnptr_conv_p (to, from))
1426 	conv = build_conv (ck_fnptr, to, conv);
1427       /* Allow conversions among compatible ObjC pointer types (base
1428 	 conversions have been already handled above).  */
1429       else if (c_dialect_objc ()
1430 	       && objc_compare_types (to, from, -4, NULL_TREE))
1431 	conv = build_conv (ck_ptr, to, conv);
1432       else if (ptr_reasonably_similar (to_pointee, from_pointee))
1433 	{
1434 	  conv = build_conv (ck_ptr, to, conv);
1435 	  conv->bad_p = true;
1436 	}
1437       else
1438 	return NULL;
1439 
1440       from = to;
1441     }
1442   else if (TYPE_PTRMEMFUNC_P (to) && TYPE_PTRMEMFUNC_P (from))
1443     {
1444       tree fromfn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (from));
1445       tree tofn = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (to));
1446       tree fbase = class_of_this_parm (fromfn);
1447       tree tbase = class_of_this_parm (tofn);
1448 
1449       /* If FBASE and TBASE are equivalent but incomplete, DERIVED_FROM_P
1450 	 yields false.  But a pointer to member of incomplete class is OK.  */
1451       if (!same_type_p (fbase, tbase) && !DERIVED_FROM_P (fbase, tbase))
1452 	return NULL;
1453 
1454       tree fstat = static_fn_type (fromfn);
1455       tree tstat = static_fn_type (tofn);
1456       if (same_type_p (tstat, fstat)
1457 	  || fnptr_conv_p (tstat, fstat))
1458 	/* OK */;
1459       else
1460 	return NULL;
1461 
1462       if (!same_type_p (fbase, tbase))
1463 	{
1464 	  from = build_memfn_type (fstat,
1465 				   tbase,
1466 				   cp_type_quals (tbase),
1467 				   type_memfn_rqual (tofn));
1468 	  from = build_ptrmemfunc_type (build_pointer_type (from));
1469 	  conv = build_conv (ck_pmem, from, conv);
1470 	  conv->base_p = true;
1471 	}
1472       if (fnptr_conv_p (tstat, fstat))
1473 	conv = build_conv (ck_fnptr, to, conv);
1474     }
1475   else if (tcode == BOOLEAN_TYPE)
1476     {
1477       /* [conv.bool]
1478 
1479 	  A prvalue of arithmetic, unscoped enumeration, pointer, or pointer
1480 	  to member type can be converted to a prvalue of type bool. ...
1481 	  For direct-initialization (8.5 [dcl.init]), a prvalue of type
1482 	  std::nullptr_t can be converted to a prvalue of type bool;  */
1483       if (ARITHMETIC_TYPE_P (from)
1484 	  || UNSCOPED_ENUM_P (from)
1485 	  || fcode == POINTER_TYPE
1486 	  || TYPE_PTRMEM_P (from)
1487 	  || NULLPTR_TYPE_P (from))
1488 	{
1489 	  conv = build_conv (ck_std, to, conv);
1490 	  if (fcode == POINTER_TYPE
1491 	      || TYPE_PTRDATAMEM_P (from)
1492 	      || (TYPE_PTRMEMFUNC_P (from)
1493 		  && conv->rank < cr_pbool)
1494 	      || NULLPTR_TYPE_P (from))
1495 	    conv->rank = cr_pbool;
1496 	  if (NULLPTR_TYPE_P (from) && (flags & LOOKUP_ONLYCONVERTING))
1497 	    conv->bad_p = true;
1498 	  if (flags & LOOKUP_NO_NARROWING)
1499 	    conv->check_narrowing = true;
1500 	  return conv;
1501 	}
1502 
1503       return NULL;
1504     }
1505   /* We don't check for ENUMERAL_TYPE here because there are no standard
1506      conversions to enum type.  */
1507   /* As an extension, allow conversion to complex type.  */
1508   else if (ARITHMETIC_TYPE_P (to))
1509     {
1510       if (! (INTEGRAL_CODE_P (fcode)
1511 	     || (fcode == REAL_TYPE && !(flags & LOOKUP_NO_NON_INTEGRAL)))
1512           || SCOPED_ENUM_P (from))
1513 	return NULL;
1514 
1515       /* If we're parsing an enum with no fixed underlying type, we're
1516 	 dealing with an incomplete type, which renders the conversion
1517 	 ill-formed.  */
1518       if (!COMPLETE_TYPE_P (from))
1519 	return NULL;
1520 
1521       conv = build_conv (ck_std, to, conv);
1522 
1523       tree underlying_type = NULL_TREE;
1524       if (TREE_CODE (from) == ENUMERAL_TYPE
1525 	  && ENUM_FIXED_UNDERLYING_TYPE_P (from))
1526 	underlying_type = ENUM_UNDERLYING_TYPE (from);
1527 
1528       /* Give this a better rank if it's a promotion.
1529 
1530 	 To handle CWG 1601, also bump the rank if we are converting
1531 	 an enumeration with a fixed underlying type to the underlying
1532 	 type.  */
1533       if ((same_type_p (to, type_promotes_to (from))
1534 	   || (underlying_type && same_type_p (to, underlying_type)))
1535 	  && next_conversion (conv)->rank <= cr_promotion)
1536 	conv->rank = cr_promotion;
1537     }
1538   else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
1539 	   && vector_types_convertible_p (from, to, false))
1540     return build_conv (ck_std, to, conv);
1541   else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
1542 	   && is_properly_derived_from (from, to))
1543     {
1544       if (conv->kind == ck_rvalue)
1545 	conv = next_conversion (conv);
1546       conv = build_conv (ck_base, to, conv);
1547       /* The derived-to-base conversion indicates the initialization
1548 	 of a parameter with base type from an object of a derived
1549 	 type.  A temporary object is created to hold the result of
1550 	 the conversion unless we're binding directly to a reference.  */
1551       conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
1552       if (flags & LOOKUP_PREFER_RVALUE)
1553 	/* Tell convert_like to set LOOKUP_PREFER_RVALUE.  */
1554 	conv->rvaluedness_matches_p = true;
1555       /* If we're performing copy-initialization, remember to skip
1556 	 explicit constructors.  */
1557       if (flags & LOOKUP_ONLYCONVERTING)
1558 	conv->copy_init_p = true;
1559     }
1560   else
1561     return NULL;
1562 
1563   if (flags & LOOKUP_NO_NARROWING)
1564     conv->check_narrowing = true;
1565 
1566   return conv;
1567 }
1568 
1569 /* Returns nonzero if T1 is reference-related to T2.  */
1570 
1571 bool
reference_related_p(tree t1,tree t2)1572 reference_related_p (tree t1, tree t2)
1573 {
1574   if (t1 == error_mark_node || t2 == error_mark_node)
1575     return false;
1576 
1577   t1 = TYPE_MAIN_VARIANT (t1);
1578   t2 = TYPE_MAIN_VARIANT (t2);
1579 
1580   /* [dcl.init.ref]
1581 
1582      Given types "cv1 T1" and "cv2 T2," "cv1 T1" is reference-related
1583      to "cv2 T2" if T1 is similar to T2, or T1 is a base class of T2.  */
1584   return (similar_type_p (t1, t2)
1585 	  || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
1586 	      && DERIVED_FROM_P (t1, t2)));
1587 }
1588 
1589 /* Returns nonzero if T1 is reference-compatible with T2.  */
1590 
1591 bool
reference_compatible_p(tree t1,tree t2)1592 reference_compatible_p (tree t1, tree t2)
1593 {
1594   /* [dcl.init.ref]
1595 
1596      "cv1 T1" is reference compatible with "cv2 T2" if
1597      a prvalue of type "pointer to cv2 T2" can be converted to the type
1598      "pointer to cv1 T1" via a standard conversion sequence.  */
1599   tree ptype1 = build_pointer_type (t1);
1600   tree ptype2 = build_pointer_type (t2);
1601   conversion *conv = standard_conversion (ptype1, ptype2, NULL_TREE,
1602 					  /*c_cast_p=*/false, 0, tf_none);
1603   if (!conv || conv->bad_p)
1604     return false;
1605   return true;
1606 }
1607 
1608 /* Return true if converting FROM to TO would involve a qualification
1609    conversion.  */
1610 
1611 static bool
involves_qualification_conversion_p(tree to,tree from)1612 involves_qualification_conversion_p (tree to, tree from)
1613 {
1614   /* If we're not convering a pointer to another one, we won't get
1615      a qualification conversion.  */
1616   if (!((TYPE_PTR_P (to) && TYPE_PTR_P (from))
1617 	|| (TYPE_PTRDATAMEM_P (to) && TYPE_PTRDATAMEM_P (from))))
1618     return false;
1619 
1620   conversion *conv = standard_conversion (to, from, NULL_TREE,
1621 					  /*c_cast_p=*/false, 0, tf_none);
1622   for (conversion *t = conv; t; t = next_conversion (t))
1623     if (t->kind == ck_qual)
1624       return true;
1625 
1626   return false;
1627 }
1628 
1629 /* A reference of the indicated TYPE is being bound directly to the
1630    expression represented by the implicit conversion sequence CONV.
1631    Return a conversion sequence for this binding.  */
1632 
1633 static conversion *
direct_reference_binding(tree type,conversion * conv)1634 direct_reference_binding (tree type, conversion *conv)
1635 {
1636   tree t;
1637 
1638   gcc_assert (TYPE_REF_P (type));
1639   gcc_assert (!TYPE_REF_P (conv->type));
1640 
1641   t = TREE_TYPE (type);
1642 
1643   if (conv->kind == ck_identity)
1644     /* Mark the identity conv as to not decay to rvalue.  */
1645     conv->rvaluedness_matches_p = true;
1646 
1647   /* [over.ics.rank]
1648 
1649      When a parameter of reference type binds directly
1650      (_dcl.init.ref_) to an argument expression, the implicit
1651      conversion sequence is the identity conversion, unless the
1652      argument expression has a type that is a derived class of the
1653      parameter type, in which case the implicit conversion sequence is
1654      a derived-to-base Conversion.
1655 
1656      If the parameter binds directly to the result of applying a
1657      conversion function to the argument expression, the implicit
1658      conversion sequence is a user-defined conversion sequence
1659      (_over.ics.user_), with the second standard conversion sequence
1660      either an identity conversion or, if the conversion function
1661      returns an entity of a type that is a derived class of the
1662      parameter type, a derived-to-base conversion.  */
1663   if (is_properly_derived_from (conv->type, t))
1664     {
1665       /* Represent the derived-to-base conversion.  */
1666       conv = build_conv (ck_base, t, conv);
1667       /* We will actually be binding to the base-class subobject in
1668 	 the derived class, so we mark this conversion appropriately.
1669 	 That way, convert_like knows not to generate a temporary.  */
1670       conv->need_temporary_p = false;
1671     }
1672   else if (involves_qualification_conversion_p (t, conv->type))
1673     /* Represent the qualification conversion.  After DR 2352
1674        #1 and #2 were indistinguishable conversion sequences:
1675 
1676 	 void f(int*); // #1
1677 	 void f(const int* const &); // #2
1678 	 void g(int* p) { f(p); }
1679 
1680        because the types "int *" and "const int *const" are
1681        reference-related and we were binding both directly and they
1682        had the same rank.  To break it up, we add a ck_qual under the
1683        ck_ref_bind so that conversion sequence ranking chooses #1.
1684 
1685        We strip_top_quals here which is also what standard_conversion
1686        does.  Failure to do so would confuse comp_cv_qual_signature
1687        into thinking that in
1688 
1689 	 void f(const int * const &); // #1
1690 	 void f(const int *); // #2
1691 	 int *x;
1692 	 f(x);
1693 
1694        #2 is a better match than #1 even though they're ambiguous (97296).  */
1695     conv = build_conv (ck_qual, strip_top_quals (t), conv);
1696 
1697   return build_conv (ck_ref_bind, type, conv);
1698 }
1699 
1700 /* Returns the conversion path from type FROM to reference type TO for
1701    purposes of reference binding.  For lvalue binding, either pass a
1702    reference type to FROM or an lvalue expression to EXPR.  If the
1703    reference will be bound to a temporary, NEED_TEMPORARY_P is set for
1704    the conversion returned.  If C_CAST_P is true, this
1705    conversion is coming from a C-style cast.  */
1706 
1707 static conversion *
reference_binding(tree rto,tree rfrom,tree expr,bool c_cast_p,int flags,tsubst_flags_t complain)1708 reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags,
1709 		   tsubst_flags_t complain)
1710 {
1711   conversion *conv = NULL;
1712   tree to = TREE_TYPE (rto);
1713   tree from = rfrom;
1714   tree tfrom;
1715   bool related_p;
1716   bool compatible_p;
1717   cp_lvalue_kind gl_kind;
1718   bool is_lvalue;
1719 
1720   if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
1721     {
1722       expr = instantiate_type (to, expr, tf_none);
1723       if (expr == error_mark_node)
1724 	return NULL;
1725       from = TREE_TYPE (expr);
1726     }
1727 
1728   bool copy_list_init = false;
1729   if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
1730     {
1731       maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS);
1732       /* DR 1288: Otherwise, if the initializer list has a single element
1733 	 of type E and ... [T's] referenced type is reference-related to E,
1734 	 the object or reference is initialized from that element...
1735 
1736 	 ??? With P0388R4, we should bind 't' directly to U{}:
1737 	   using U = A[2];
1738 	   A (&&t)[] = {U{}};
1739 	 because A[] and A[2] are reference-related.  But we don't do it
1740 	 because grok_reference_init has deduced the array size (to 1), and
1741 	 A[1] and A[2] aren't reference-related.  */
1742       if (CONSTRUCTOR_NELTS (expr) == 1
1743 	  && !CONSTRUCTOR_IS_DESIGNATED_INIT (expr))
1744 	{
1745 	  tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
1746 	  if (error_operand_p (elt))
1747 	    return NULL;
1748 	  tree etype = TREE_TYPE (elt);
1749 	  if (reference_related_p (to, etype))
1750 	    {
1751 	      expr = elt;
1752 	      from = etype;
1753 	      goto skip;
1754 	    }
1755 	}
1756       /* Otherwise, if T is a reference type, a prvalue temporary of the type
1757 	 referenced by T is copy-list-initialized, and the reference is bound
1758 	 to that temporary. */
1759       copy_list_init = true;
1760     skip:;
1761     }
1762 
1763   if (TYPE_REF_P (from))
1764     {
1765       from = TREE_TYPE (from);
1766       if (!TYPE_REF_IS_RVALUE (rfrom)
1767 	  || TREE_CODE (from) == FUNCTION_TYPE)
1768 	gl_kind = clk_ordinary;
1769       else
1770 	gl_kind = clk_rvalueref;
1771     }
1772   else if (expr)
1773     gl_kind = lvalue_kind (expr);
1774   else if (CLASS_TYPE_P (from)
1775 	   || TREE_CODE (from) == ARRAY_TYPE)
1776     gl_kind = clk_class;
1777   else
1778     gl_kind = clk_none;
1779 
1780   /* Don't allow a class prvalue when LOOKUP_NO_TEMP_BIND.  */
1781   if ((flags & LOOKUP_NO_TEMP_BIND)
1782       && (gl_kind & clk_class))
1783     gl_kind = clk_none;
1784 
1785   /* Same mask as real_lvalue_p.  */
1786   is_lvalue = gl_kind && !(gl_kind & (clk_rvalueref|clk_class));
1787 
1788   tfrom = from;
1789   if ((gl_kind & clk_bitfield) != 0)
1790     tfrom = unlowered_expr_type (expr);
1791 
1792   /* Figure out whether or not the types are reference-related and
1793      reference compatible.  We have to do this after stripping
1794      references from FROM.  */
1795   related_p = reference_related_p (to, tfrom);
1796   /* If this is a C cast, first convert to an appropriately qualified
1797      type, so that we can later do a const_cast to the desired type.  */
1798   if (related_p && c_cast_p
1799       && !at_least_as_qualified_p (to, tfrom))
1800     to = cp_build_qualified_type (to, cp_type_quals (tfrom));
1801   compatible_p = reference_compatible_p (to, tfrom);
1802 
1803   /* Directly bind reference when target expression's type is compatible with
1804      the reference and expression is an lvalue. In DR391, the wording in
1805      [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
1806      const and rvalue references to rvalues of compatible class type.
1807      We should also do direct bindings for non-class xvalues.  */
1808   if ((related_p || compatible_p) && gl_kind)
1809     {
1810       /* [dcl.init.ref]
1811 
1812 	 If the initializer expression
1813 
1814 	 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1815 	    is reference-compatible with "cv2 T2,"
1816 
1817 	 the reference is bound directly to the initializer expression
1818 	 lvalue.
1819 
1820 	 [...]
1821 	 If the initializer expression is an rvalue, with T2 a class type,
1822 	 and "cv1 T1" is reference-compatible with "cv2 T2", the reference
1823 	 is bound to the object represented by the rvalue or to a sub-object
1824 	 within that object.  */
1825 
1826       conv = build_identity_conv (tfrom, expr);
1827       conv = direct_reference_binding (rto, conv);
1828 
1829       if (TYPE_REF_P (rfrom))
1830 	/* Handle rvalue reference to function properly.  */
1831 	conv->rvaluedness_matches_p
1832 	  = (TYPE_REF_IS_RVALUE (rto) == TYPE_REF_IS_RVALUE (rfrom));
1833       else
1834 	conv->rvaluedness_matches_p
1835           = (TYPE_REF_IS_RVALUE (rto) == !is_lvalue);
1836 
1837       if ((gl_kind & clk_bitfield) != 0
1838 	  || ((gl_kind & clk_packed) != 0 && !TYPE_PACKED (to)))
1839 	/* For the purposes of overload resolution, we ignore the fact
1840 	   this expression is a bitfield or packed field. (In particular,
1841 	   [over.ics.ref] says specifically that a function with a
1842 	   non-const reference parameter is viable even if the
1843 	   argument is a bitfield.)
1844 
1845 	   However, when we actually call the function we must create
1846 	   a temporary to which to bind the reference.  If the
1847 	   reference is volatile, or isn't const, then we cannot make
1848 	   a temporary, so we just issue an error when the conversion
1849 	   actually occurs.  */
1850 	conv->need_temporary_p = true;
1851 
1852       /* Don't allow binding of lvalues (other than function lvalues) to
1853 	 rvalue references.  */
1854       if (is_lvalue && TYPE_REF_IS_RVALUE (rto)
1855 	  && TREE_CODE (to) != FUNCTION_TYPE)
1856 	conv->bad_p = true;
1857 
1858       /* Nor the reverse.  */
1859       if (!is_lvalue && !TYPE_REF_IS_RVALUE (rto)
1860 	  /* Unless it's really an lvalue.  */
1861 	  && !(cxx_dialect >= cxx20
1862 	       && (gl_kind & clk_implicit_rval))
1863 	  && (!CP_TYPE_CONST_NON_VOLATILE_P (to)
1864 	      || (flags & LOOKUP_NO_RVAL_BIND))
1865 	  && TREE_CODE (to) != FUNCTION_TYPE)
1866 	conv->bad_p = true;
1867 
1868       if (!compatible_p)
1869 	conv->bad_p = true;
1870 
1871       return conv;
1872     }
1873   /* [class.conv.fct] A conversion function is never used to convert a
1874      (possibly cv-qualified) object to the (possibly cv-qualified) same
1875      object type (or a reference to it), to a (possibly cv-qualified) base
1876      class of that type (or a reference to it).... */
1877   else if (CLASS_TYPE_P (from) && !related_p
1878 	   && !(flags & LOOKUP_NO_CONVERSION))
1879     {
1880       /* [dcl.init.ref]
1881 
1882 	 If the initializer expression
1883 
1884 	 -- has a class type (i.e., T2 is a class type) can be
1885 	    implicitly converted to an lvalue of type "cv3 T3," where
1886 	    "cv1 T1" is reference-compatible with "cv3 T3".  (this
1887 	    conversion is selected by enumerating the applicable
1888 	    conversion functions (_over.match.ref_) and choosing the
1889 	    best one through overload resolution.  (_over.match_).
1890 
1891 	the reference is bound to the lvalue result of the conversion
1892 	in the second case.  */
1893       z_candidate *cand = build_user_type_conversion_1 (rto, expr, flags,
1894 							complain);
1895       if (cand)
1896 	return cand->second_conv;
1897     }
1898 
1899   /* From this point on, we conceptually need temporaries, even if we
1900      elide them.  Only the cases above are "direct bindings".  */
1901   if (flags & LOOKUP_NO_TEMP_BIND)
1902     return NULL;
1903 
1904   /* [over.ics.rank]
1905 
1906      When a parameter of reference type is not bound directly to an
1907      argument expression, the conversion sequence is the one required
1908      to convert the argument expression to the underlying type of the
1909      reference according to _over.best.ics_.  Conceptually, this
1910      conversion sequence corresponds to copy-initializing a temporary
1911      of the underlying type with the argument expression.  Any
1912      difference in top-level cv-qualification is subsumed by the
1913      initialization itself and does not constitute a conversion.  */
1914 
1915   /* [dcl.init.ref]
1916 
1917      Otherwise, the reference shall be an lvalue reference to a
1918      non-volatile const type, or the reference shall be an rvalue
1919      reference.
1920 
1921      We try below to treat this as a bad conversion to improve diagnostics,
1922      but if TO is an incomplete class, we need to reject this conversion
1923      now to avoid unnecessary instantiation.  */
1924   if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto)
1925       && !COMPLETE_TYPE_P (to))
1926     return NULL;
1927 
1928   /* We're generating a temporary now, but don't bind any more in the
1929      conversion (specifically, don't slice the temporary returned by a
1930      conversion operator).  */
1931   flags |= LOOKUP_NO_TEMP_BIND;
1932 
1933   /* Core issue 899: When [copy-]initializing a temporary to be bound
1934      to the first parameter of a copy constructor (12.8) called with
1935      a single argument in the context of direct-initialization,
1936      explicit conversion functions are also considered.
1937 
1938      So don't set LOOKUP_ONLYCONVERTING in that case.  */
1939   if (!(flags & LOOKUP_COPY_PARM))
1940     flags |= LOOKUP_ONLYCONVERTING;
1941 
1942   if (!conv)
1943     conv = implicit_conversion (to, from, expr, c_cast_p,
1944 				flags, complain);
1945   if (!conv)
1946     return NULL;
1947 
1948   if (conv->user_conv_p)
1949     {
1950       if (copy_list_init)
1951 	/* Remember this was copy-list-initialization.  */
1952 	conv->need_temporary_p = true;
1953 
1954       /* If initializing the temporary used a conversion function,
1955 	 recalculate the second conversion sequence.  */
1956       for (conversion *t = conv; t; t = next_conversion (t))
1957 	if (t->kind == ck_user
1958 	    && DECL_CONV_FN_P (t->cand->fn))
1959 	  {
1960 	    tree ftype = TREE_TYPE (TREE_TYPE (t->cand->fn));
1961 	    /* A prvalue of non-class type is cv-unqualified.  */
1962 	    if (!TYPE_REF_P (ftype) && !CLASS_TYPE_P (ftype))
1963 	      ftype = cv_unqualified (ftype);
1964 	    int sflags = (flags|LOOKUP_NO_CONVERSION)&~LOOKUP_NO_TEMP_BIND;
1965 	    conversion *new_second
1966 	      = reference_binding (rto, ftype, NULL_TREE, c_cast_p,
1967 				   sflags, complain);
1968 	    if (!new_second)
1969 	      return NULL;
1970 	    return merge_conversion_sequences (t, new_second);
1971 	  }
1972     }
1973 
1974   conv = build_conv (ck_ref_bind, rto, conv);
1975   /* This reference binding, unlike those above, requires the
1976      creation of a temporary.  */
1977   conv->need_temporary_p = true;
1978   conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
1979 
1980   /* [dcl.init.ref]
1981 
1982      Otherwise, the reference shall be an lvalue reference to a
1983      non-volatile const type, or the reference shall be an rvalue
1984      reference.  */
1985   if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
1986     conv->bad_p = true;
1987 
1988   /* [dcl.init.ref]
1989 
1990      Otherwise, a temporary of type "cv1 T1" is created and
1991      initialized from the initializer expression using the rules for a
1992      non-reference copy initialization.  If T1 is reference-related to
1993      T2, cv1 must be the same cv-qualification as, or greater
1994      cv-qualification than, cv2; otherwise, the program is ill-formed.  */
1995   if (related_p && !at_least_as_qualified_p (to, from))
1996     conv->bad_p = true;
1997 
1998   return conv;
1999 }
2000 
2001 /* Most of the implementation of implicit_conversion, with the same
2002    parameters.  */
2003 
2004 static conversion *
implicit_conversion_1(tree to,tree from,tree expr,bool c_cast_p,int flags,tsubst_flags_t complain)2005 implicit_conversion_1 (tree to, tree from, tree expr, bool c_cast_p,
2006 		       int flags, tsubst_flags_t complain)
2007 {
2008   conversion *conv;
2009 
2010   if (from == error_mark_node || to == error_mark_node
2011       || expr == error_mark_node)
2012     return NULL;
2013 
2014   /* Other flags only apply to the primary function in overload
2015      resolution, or after we've chosen one.  */
2016   flags &= (LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION|LOOKUP_COPY_PARM
2017 	    |LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND|LOOKUP_PREFER_RVALUE
2018 	    |LOOKUP_NO_NARROWING|LOOKUP_PROTECT|LOOKUP_NO_NON_INTEGRAL);
2019 
2020   /* FIXME: actually we don't want warnings either, but we can't just
2021      have 'complain &= ~(tf_warning|tf_error)' because it would cause
2022      the regression of, eg, g++.old-deja/g++.benjamin/16077.C.
2023      We really ought not to issue that warning until we've committed
2024      to that conversion.  */
2025   complain &= ~tf_error;
2026 
2027   /* Call reshape_init early to remove redundant braces.  */
2028   if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr)
2029       && CLASS_TYPE_P (to)
2030       && COMPLETE_TYPE_P (complete_type (to))
2031       && !CLASSTYPE_NON_AGGREGATE (to))
2032     {
2033       expr = reshape_init (to, expr, complain);
2034       if (expr == error_mark_node)
2035 	return NULL;
2036       from = TREE_TYPE (expr);
2037     }
2038 
2039   if (TYPE_REF_P (to))
2040     conv = reference_binding (to, from, expr, c_cast_p, flags, complain);
2041   else
2042     conv = standard_conversion (to, from, expr, c_cast_p, flags, complain);
2043 
2044   if (conv)
2045     return conv;
2046 
2047   if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
2048     {
2049       if (is_std_init_list (to) && !CONSTRUCTOR_IS_DESIGNATED_INIT (expr))
2050 	return build_list_conv (to, expr, flags, complain);
2051 
2052       /* As an extension, allow list-initialization of _Complex.  */
2053       if (TREE_CODE (to) == COMPLEX_TYPE
2054 	  && !CONSTRUCTOR_IS_DESIGNATED_INIT (expr))
2055 	{
2056 	  conv = build_complex_conv (to, expr, flags, complain);
2057 	  if (conv)
2058 	    return conv;
2059 	}
2060 
2061       /* Allow conversion from an initializer-list with one element to a
2062 	 scalar type.  */
2063       if (SCALAR_TYPE_P (to))
2064 	{
2065 	  int nelts = CONSTRUCTOR_NELTS (expr);
2066 	  tree elt;
2067 
2068 	  if (nelts == 0)
2069 	    elt = build_value_init (to, tf_none);
2070 	  else if (nelts == 1 && !CONSTRUCTOR_IS_DESIGNATED_INIT (expr))
2071 	    elt = CONSTRUCTOR_ELT (expr, 0)->value;
2072 	  else
2073 	    elt = error_mark_node;
2074 
2075 	  conv = implicit_conversion (to, TREE_TYPE (elt), elt,
2076 				      c_cast_p, flags, complain);
2077 	  if (conv)
2078 	    {
2079 	      conv->check_narrowing = true;
2080 	      if (BRACE_ENCLOSED_INITIALIZER_P (elt))
2081 		/* Too many levels of braces, i.e. '{{1}}'.  */
2082 		conv->bad_p = true;
2083 	      return conv;
2084 	    }
2085 	}
2086       else if (TREE_CODE (to) == ARRAY_TYPE)
2087 	return build_array_conv (to, expr, flags, complain);
2088     }
2089 
2090   if (expr != NULL_TREE
2091       && (MAYBE_CLASS_TYPE_P (from)
2092 	  || MAYBE_CLASS_TYPE_P (to))
2093       && (flags & LOOKUP_NO_CONVERSION) == 0)
2094     {
2095       struct z_candidate *cand;
2096 
2097       if (CLASS_TYPE_P (to)
2098 	  && BRACE_ENCLOSED_INITIALIZER_P (expr)
2099 	  && !CLASSTYPE_NON_AGGREGATE (complete_type (to)))
2100 	return build_aggr_conv (to, expr, flags, complain);
2101 
2102       cand = build_user_type_conversion_1 (to, expr, flags, complain);
2103       if (cand)
2104 	{
2105 	  if (BRACE_ENCLOSED_INITIALIZER_P (expr)
2106 	      && CONSTRUCTOR_NELTS (expr) == 1
2107 	      && !CONSTRUCTOR_IS_DESIGNATED_INIT (expr)
2108 	      && !is_list_ctor (cand->fn))
2109 	    {
2110 	      /* "If C is not an initializer-list constructor and the
2111 		 initializer list has a single element of type cv U, where U is
2112 		 X or a class derived from X, the implicit conversion sequence
2113 		 has Exact Match rank if U is X, or Conversion rank if U is
2114 		 derived from X."  */
2115 	      tree elt = CONSTRUCTOR_ELT (expr, 0)->value;
2116 	      tree elttype = TREE_TYPE (elt);
2117 	      if (reference_related_p (to, elttype))
2118 		return implicit_conversion (to, elttype, elt,
2119 					    c_cast_p, flags, complain);
2120 	    }
2121 	  conv = cand->second_conv;
2122 	}
2123 
2124       /* We used to try to bind a reference to a temporary here, but that
2125 	 is now handled after the recursive call to this function at the end
2126 	 of reference_binding.  */
2127       return conv;
2128     }
2129 
2130   return NULL;
2131 }
2132 
2133 /* Returns the implicit conversion sequence (see [over.ics]) from type
2134    FROM to type TO.  The optional expression EXPR may affect the
2135    conversion.  FLAGS are the usual overloading flags.  If C_CAST_P is
2136    true, this conversion is coming from a C-style cast.  */
2137 
2138 static conversion *
implicit_conversion(tree to,tree from,tree expr,bool c_cast_p,int flags,tsubst_flags_t complain)2139 implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
2140 		     int flags, tsubst_flags_t complain)
2141 {
2142   conversion *conv = implicit_conversion_1 (to, from, expr, c_cast_p,
2143 					    flags, complain);
2144   if (!conv || conv->bad_p)
2145     return conv;
2146   if (conv_is_prvalue (conv)
2147       && CLASS_TYPE_P (conv->type)
2148       && CLASSTYPE_PURE_VIRTUALS (conv->type))
2149     conv->bad_p = true;
2150   return conv;
2151 }
2152 
2153 /* Like implicit_conversion, but return NULL if the conversion is bad.
2154 
2155    This is not static so that check_non_deducible_conversion can call it within
2156    add_template_candidate_real as part of overload resolution; it should not be
2157    called outside of overload resolution.  */
2158 
2159 conversion *
good_conversion(tree to,tree from,tree expr,int flags,tsubst_flags_t complain)2160 good_conversion (tree to, tree from, tree expr,
2161 		 int flags, tsubst_flags_t complain)
2162 {
2163   conversion *c = implicit_conversion (to, from, expr, /*cast*/false,
2164 				       flags, complain);
2165   if (c && c->bad_p)
2166     c = NULL;
2167   return c;
2168 }
2169 
2170 /* Add a new entry to the list of candidates.  Used by the add_*_candidate
2171    functions.  ARGS will not be changed until a single candidate is
2172    selected.  */
2173 
2174 static struct z_candidate *
add_candidate(struct z_candidate ** candidates,tree fn,tree first_arg,const vec<tree,va_gc> * args,size_t num_convs,conversion ** convs,tree access_path,tree conversion_path,int viable,struct rejection_reason * reason,int flags)2175 add_candidate (struct z_candidate **candidates,
2176 	       tree fn, tree first_arg, const vec<tree, va_gc> *args,
2177 	       size_t num_convs, conversion **convs,
2178 	       tree access_path, tree conversion_path,
2179 	       int viable, struct rejection_reason *reason,
2180 	       int flags)
2181 {
2182   struct z_candidate *cand = (struct z_candidate *)
2183     conversion_obstack_alloc (sizeof (struct z_candidate));
2184 
2185   cand->fn = fn;
2186   cand->first_arg = first_arg;
2187   cand->args = args;
2188   cand->convs = convs;
2189   cand->num_convs = num_convs;
2190   cand->access_path = access_path;
2191   cand->conversion_path = conversion_path;
2192   cand->viable = viable;
2193   cand->reason = reason;
2194   cand->next = *candidates;
2195   cand->flags = flags;
2196   *candidates = cand;
2197 
2198   if (convs && cand->reversed ())
2199     /* Swap the conversions for comparison in joust; we'll swap them back
2200        before build_over_call.  */
2201     std::swap (convs[0], convs[1]);
2202 
2203   return cand;
2204 }
2205 
2206 /* Return the number of remaining arguments in the parameter list
2207    beginning with ARG.  */
2208 
2209 int
remaining_arguments(tree arg)2210 remaining_arguments (tree arg)
2211 {
2212   int n;
2213 
2214   for (n = 0; arg != NULL_TREE && arg != void_list_node;
2215        arg = TREE_CHAIN (arg))
2216     n++;
2217 
2218   return n;
2219 }
2220 
2221 /* [over.match.copy]: When initializing a temporary object (12.2) to be bound
2222    to the first parameter of a constructor where the parameter is of type
2223    "reference to possibly cv-qualified T" and the constructor is called with a
2224    single argument in the context of direct-initialization of an object of type
2225    "cv2 T", explicit conversion functions are also considered.
2226 
2227    So set LOOKUP_COPY_PARM to let reference_binding know that
2228    it's being called in that context.  */
2229 
2230 int
conv_flags(int i,int nargs,tree fn,tree arg,int flags)2231 conv_flags (int i, int nargs, tree fn, tree arg, int flags)
2232 {
2233   int lflags = flags;
2234   tree t;
2235   if (i == 0 && nargs == 1 && DECL_CONSTRUCTOR_P (fn)
2236       && (t = FUNCTION_FIRST_USER_PARMTYPE (fn))
2237       && (same_type_ignoring_top_level_qualifiers_p
2238 	  (non_reference (TREE_VALUE (t)), DECL_CONTEXT (fn))))
2239     {
2240       if (!(flags & LOOKUP_ONLYCONVERTING))
2241 	lflags |= LOOKUP_COPY_PARM;
2242       if ((flags & LOOKUP_LIST_INIT_CTOR)
2243 	  && BRACE_ENCLOSED_INITIALIZER_P (arg))
2244 	lflags |= LOOKUP_NO_CONVERSION;
2245     }
2246   else
2247     lflags |= LOOKUP_ONLYCONVERTING;
2248 
2249   return lflags;
2250 }
2251 
2252 /* Build an appropriate 'this' conversion for the method FN and class
2253    type CTYPE from the value ARG (having type ARGTYPE) to the type PARMTYPE.
2254    This function modifies PARMTYPE, ARGTYPE and ARG.  */
2255 
2256 static conversion *
build_this_conversion(tree fn,tree ctype,tree & parmtype,tree & argtype,tree & arg,int flags,tsubst_flags_t complain)2257 build_this_conversion (tree fn, tree ctype,
2258 		       tree& parmtype, tree& argtype, tree& arg,
2259 		       int flags, tsubst_flags_t complain)
2260 {
2261   gcc_assert (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2262 	      && !DECL_CONSTRUCTOR_P (fn));
2263 
2264   /* The type of the implicit object parameter ('this') for
2265      overload resolution is not always the same as for the
2266      function itself; conversion functions are considered to
2267      be members of the class being converted, and functions
2268      introduced by a using-declaration are considered to be
2269      members of the class that uses them.
2270 
2271      Since build_over_call ignores the ICS for the `this'
2272      parameter, we can just change the parm type.  */
2273   parmtype = cp_build_qualified_type (ctype,
2274 				      cp_type_quals (TREE_TYPE (parmtype)));
2275   bool this_p = true;
2276   if (FUNCTION_REF_QUALIFIED (TREE_TYPE (fn)))
2277     {
2278       /* If the function has a ref-qualifier, the implicit
2279 	 object parameter has reference type.  */
2280       bool rv = FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (fn));
2281       parmtype = cp_build_reference_type (parmtype, rv);
2282       /* The special handling of 'this' conversions in compare_ics
2283 	 does not apply if there is a ref-qualifier.  */
2284       this_p = false;
2285     }
2286   else
2287     {
2288       parmtype = build_pointer_type (parmtype);
2289       /* We don't use build_this here because we don't want to
2290 	 capture the object argument until we've chosen a
2291 	 non-static member function.  */
2292       arg = build_address (arg);
2293       argtype = lvalue_type (arg);
2294     }
2295   flags |= LOOKUP_ONLYCONVERTING;
2296   conversion *t = implicit_conversion (parmtype, argtype, arg,
2297 				       /*c_cast_p=*/false, flags, complain);
2298   t->this_p = this_p;
2299   return t;
2300 }
2301 
2302 /* Create an overload candidate for the function or method FN called
2303    with the argument list FIRST_ARG/ARGS and add it to CANDIDATES.
2304    FLAGS is passed on to implicit_conversion.
2305 
2306    This does not change ARGS.
2307 
2308    CTYPE, if non-NULL, is the type we want to pretend this function
2309    comes from for purposes of overload resolution.
2310 
2311    SHORTCUT_BAD_CONVS controls how we handle "bad" argument conversions.
2312    If true, we stop computing conversions upon seeing the first bad
2313    conversion.  This is used by add_candidates to avoid computing
2314    more conversions than necessary in the presence of a strictly viable
2315    candidate, while preserving the defacto behavior of overload resolution
2316    when it turns out there are only non-strictly viable candidates.  */
2317 
2318 static struct z_candidate *
add_function_candidate(struct z_candidate ** candidates,tree fn,tree ctype,tree first_arg,const vec<tree,va_gc> * args,tree access_path,tree conversion_path,int flags,conversion ** convs,bool shortcut_bad_convs,tsubst_flags_t complain)2319 add_function_candidate (struct z_candidate **candidates,
2320 			tree fn, tree ctype, tree first_arg,
2321 			const vec<tree, va_gc> *args, tree access_path,
2322 			tree conversion_path, int flags,
2323 			conversion **convs,
2324 			bool shortcut_bad_convs,
2325 			tsubst_flags_t complain)
2326 {
2327   tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
2328   int i, len;
2329   tree parmnode;
2330   tree orig_first_arg = first_arg;
2331   int skip;
2332   int viable = 1;
2333   struct rejection_reason *reason = NULL;
2334 
2335   /* The `this', `in_chrg' and VTT arguments to constructors are not
2336      considered in overload resolution.  */
2337   if (DECL_CONSTRUCTOR_P (fn))
2338     {
2339       if (ctor_omit_inherited_parms (fn))
2340 	/* Bring back parameters omitted from an inherited ctor.  */
2341 	parmlist = FUNCTION_FIRST_USER_PARMTYPE (DECL_ORIGIN (fn));
2342       else
2343 	parmlist = skip_artificial_parms_for (fn, parmlist);
2344       skip = num_artificial_parms_for (fn);
2345       if (skip > 0 && first_arg != NULL_TREE)
2346 	{
2347 	  --skip;
2348 	  first_arg = NULL_TREE;
2349 	}
2350     }
2351   else
2352     skip = 0;
2353 
2354   len = vec_safe_length (args) - skip + (first_arg != NULL_TREE ? 1 : 0);
2355   if (!convs)
2356     convs = alloc_conversions (len);
2357 
2358   /* 13.3.2 - Viable functions [over.match.viable]
2359      First, to be a viable function, a candidate function shall have enough
2360      parameters to agree in number with the arguments in the list.
2361 
2362      We need to check this first; otherwise, checking the ICSes might cause
2363      us to produce an ill-formed template instantiation.  */
2364 
2365   parmnode = parmlist;
2366   for (i = 0; i < len; ++i)
2367     {
2368       if (parmnode == NULL_TREE || parmnode == void_list_node)
2369 	break;
2370       parmnode = TREE_CHAIN (parmnode);
2371     }
2372 
2373   if ((i < len && parmnode)
2374       || !sufficient_parms_p (parmnode))
2375     {
2376       int remaining = remaining_arguments (parmnode);
2377       viable = 0;
2378       reason = arity_rejection (first_arg, i + remaining, len);
2379     }
2380 
2381   /* An inherited constructor (12.6.3 [class.inhctor.init]) that has a first
2382      parameter of type "reference to cv C" (including such a constructor
2383      instantiated from a template) is excluded from the set of candidate
2384      functions when used to construct an object of type D with an argument list
2385      containing a single argument if C is reference-related to D.  */
2386   if (viable && len == 1 && parmlist && DECL_CONSTRUCTOR_P (fn)
2387       && flag_new_inheriting_ctors
2388       && DECL_INHERITED_CTOR (fn))
2389     {
2390       tree ptype = non_reference (TREE_VALUE (parmlist));
2391       tree dtype = DECL_CONTEXT (fn);
2392       tree btype = DECL_INHERITED_CTOR_BASE (fn);
2393       if (reference_related_p (ptype, dtype)
2394 	  && reference_related_p (btype, ptype))
2395 	{
2396 	  viable = false;
2397 	  reason = inherited_ctor_rejection ();
2398 	}
2399     }
2400 
2401   /* Second, for a function to be viable, its constraints must be
2402      satisfied. */
2403   if (flag_concepts && viable && !constraints_satisfied_p (fn))
2404     {
2405       reason = constraint_failure ();
2406       viable = false;
2407     }
2408 
2409   /* When looking for a function from a subobject from an implicit
2410      copy/move constructor/operator=, don't consider anything that takes (a
2411      reference to) an unrelated type.  See c++/44909 and core 1092.  */
2412   if (viable && parmlist && (flags & LOOKUP_DEFAULTED))
2413     {
2414       if (DECL_CONSTRUCTOR_P (fn))
2415 	i = 1;
2416       else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
2417 	       && DECL_OVERLOADED_OPERATOR_IS (fn, NOP_EXPR))
2418 	i = 2;
2419       else
2420 	i = 0;
2421       if (i && len == i)
2422 	{
2423 	  parmnode = chain_index (i-1, parmlist);
2424 	  if (!reference_related_p (non_reference (TREE_VALUE (parmnode)),
2425 				    ctype))
2426 	    viable = 0;
2427 	}
2428 
2429       /* This only applies at the top level.  */
2430       flags &= ~LOOKUP_DEFAULTED;
2431     }
2432 
2433   if (! viable)
2434     goto out;
2435 
2436   /* Third, for F to be a viable function, there shall exist for each
2437      argument an implicit conversion sequence that converts that argument
2438      to the corresponding parameter of F.  */
2439 
2440   parmnode = parmlist;
2441 
2442   for (i = 0; i < len; ++i)
2443     {
2444       tree argtype, to_type;
2445       tree arg;
2446 
2447       if (parmnode == void_list_node)
2448 	break;
2449 
2450       if (convs[i])
2451 	{
2452 	  /* Already set during deduction.  */
2453 	  parmnode = TREE_CHAIN (parmnode);
2454 	  continue;
2455 	}
2456 
2457       if (i == 0 && first_arg != NULL_TREE)
2458 	arg = first_arg;
2459       else
2460 	arg = CONST_CAST_TREE (
2461 		(*args)[i + skip - (first_arg != NULL_TREE ? 1 : 0)]);
2462       argtype = lvalue_type (arg);
2463 
2464       conversion *t;
2465       if (parmnode)
2466 	{
2467 	  tree parmtype = TREE_VALUE (parmnode);
2468 	  if (i == 0
2469 	      && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2470 	      && !DECL_CONSTRUCTOR_P (fn))
2471 	    t = build_this_conversion (fn, ctype, parmtype, argtype, arg,
2472 				       flags, complain);
2473 	  else
2474 	    {
2475 	      int lflags = conv_flags (i, len-skip, fn, arg, flags);
2476 	      t = implicit_conversion (parmtype, argtype, arg,
2477 				       /*c_cast_p=*/false, lflags, complain);
2478 	    }
2479 	  to_type = parmtype;
2480 	  parmnode = TREE_CHAIN (parmnode);
2481 	}
2482       else
2483 	{
2484 	  t = build_identity_conv (argtype, arg);
2485 	  t->ellipsis_p = true;
2486 	  to_type = argtype;
2487 	}
2488 
2489       convs[i] = t;
2490       if (! t)
2491 	{
2492 	  viable = 0;
2493 	  reason = arg_conversion_rejection (first_arg, i, argtype, to_type,
2494 					     EXPR_LOCATION (arg));
2495 	  break;
2496 	}
2497 
2498       if (t->bad_p)
2499 	{
2500 	  viable = -1;
2501 	  reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type,
2502 						 EXPR_LOCATION (arg));
2503 	  if (shortcut_bad_convs)
2504 	    break;
2505 	}
2506     }
2507 
2508  out:
2509   return add_candidate (candidates, fn, orig_first_arg, args, len, convs,
2510 			access_path, conversion_path, viable, reason, flags);
2511 }
2512 
2513 /* Create an overload candidate for the conversion function FN which will
2514    be invoked for expression OBJ, producing a pointer-to-function which
2515    will in turn be called with the argument list FIRST_ARG/ARGLIST,
2516    and add it to CANDIDATES.  This does not change ARGLIST.  FLAGS is
2517    passed on to implicit_conversion.
2518 
2519    Actually, we don't really care about FN; we care about the type it
2520    converts to.  There may be multiple conversion functions that will
2521    convert to that type, and we rely on build_user_type_conversion_1 to
2522    choose the best one; so when we create our candidate, we record the type
2523    instead of the function.  */
2524 
2525 static struct z_candidate *
add_conv_candidate(struct z_candidate ** candidates,tree fn,tree obj,const vec<tree,va_gc> * arglist,tree access_path,tree conversion_path,tsubst_flags_t complain)2526 add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
2527 		    const vec<tree, va_gc> *arglist,
2528 		    tree access_path, tree conversion_path,
2529 		    tsubst_flags_t complain)
2530 {
2531   tree totype = TREE_TYPE (TREE_TYPE (fn));
2532   int i, len, viable, flags;
2533   tree parmlist, parmnode;
2534   conversion **convs;
2535   struct rejection_reason *reason;
2536 
2537   for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
2538     parmlist = TREE_TYPE (parmlist);
2539   parmlist = TYPE_ARG_TYPES (parmlist);
2540 
2541   len = vec_safe_length (arglist) + 1;
2542   convs = alloc_conversions (len);
2543   parmnode = parmlist;
2544   viable = 1;
2545   flags = LOOKUP_IMPLICIT;
2546   reason = NULL;
2547 
2548   /* Don't bother looking up the same type twice.  */
2549   if (*candidates && (*candidates)->fn == totype)
2550     return NULL;
2551 
2552   for (i = 0; i < len; ++i)
2553     {
2554       tree arg, argtype, convert_type = NULL_TREE;
2555       conversion *t;
2556 
2557       if (i == 0)
2558 	arg = obj;
2559       else
2560 	arg = (*arglist)[i - 1];
2561       argtype = lvalue_type (arg);
2562 
2563       if (i == 0)
2564 	{
2565 	  t = build_identity_conv (argtype, NULL_TREE);
2566 	  t = build_conv (ck_user, totype, t);
2567 	  /* Leave the 'cand' field null; we'll figure out the conversion in
2568 	     convert_like if this candidate is chosen.  */
2569 	  convert_type = totype;
2570 	}
2571       else if (parmnode == void_list_node)
2572 	break;
2573       else if (parmnode)
2574 	{
2575 	  t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
2576 				   /*c_cast_p=*/false, flags, complain);
2577 	  convert_type = TREE_VALUE (parmnode);
2578 	}
2579       else
2580 	{
2581 	  t = build_identity_conv (argtype, arg);
2582 	  t->ellipsis_p = true;
2583 	  convert_type = argtype;
2584 	}
2585 
2586       convs[i] = t;
2587       if (! t)
2588 	break;
2589 
2590       if (t->bad_p)
2591 	{
2592 	  viable = -1;
2593 	  reason = bad_arg_conversion_rejection (NULL_TREE, i, arg, convert_type,
2594 						 EXPR_LOCATION (arg));
2595 	}
2596 
2597       if (i == 0)
2598 	continue;
2599 
2600       if (parmnode)
2601 	parmnode = TREE_CHAIN (parmnode);
2602     }
2603 
2604   if (i < len
2605       || ! sufficient_parms_p (parmnode))
2606     {
2607       int remaining = remaining_arguments (parmnode);
2608       viable = 0;
2609       reason = arity_rejection (NULL_TREE, i + remaining, len);
2610     }
2611 
2612   return add_candidate (candidates, totype, obj, arglist, len, convs,
2613 			access_path, conversion_path, viable, reason, flags);
2614 }
2615 
2616 static void
build_builtin_candidate(struct z_candidate ** candidates,tree fnname,tree type1,tree type2,const vec<tree,va_gc> & args,tree * argtypes,int flags,tsubst_flags_t complain)2617 build_builtin_candidate (struct z_candidate **candidates, tree fnname,
2618 			 tree type1, tree type2, const vec<tree,va_gc> &args,
2619 			 tree *argtypes, int flags, tsubst_flags_t complain)
2620 {
2621   conversion *t;
2622   conversion **convs;
2623   size_t num_convs;
2624   int viable = 1;
2625   tree types[2];
2626   struct rejection_reason *reason = NULL;
2627 
2628   types[0] = type1;
2629   types[1] = type2;
2630 
2631   num_convs = args.length ();
2632   convs = alloc_conversions (num_convs);
2633 
2634   /* TRUTH_*_EXPR do "contextual conversion to bool", which means explicit
2635      conversion ops are allowed.  We handle that here by just checking for
2636      boolean_type_node because other operators don't ask for it.  COND_EXPR
2637      also does contextual conversion to bool for the first operand, but we
2638      handle that in build_conditional_expr, and type1 here is operand 2.  */
2639   if (type1 != boolean_type_node)
2640     flags |= LOOKUP_ONLYCONVERTING;
2641 
2642   for (unsigned i = 0; i < 2 && i < num_convs; ++i)
2643     {
2644       t = implicit_conversion (types[i], argtypes[i], args[i],
2645 			       /*c_cast_p=*/false, flags, complain);
2646       if (! t)
2647 	{
2648 	  viable = 0;
2649 	  /* We need something for printing the candidate.  */
2650 	  t = build_identity_conv (types[i], NULL_TREE);
2651 	  reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2652 					     types[i], EXPR_LOCATION (args[i]));
2653 	}
2654       else if (t->bad_p)
2655 	{
2656 	  viable = 0;
2657 	  reason = bad_arg_conversion_rejection (NULL_TREE, i, args[i],
2658 						 types[i],
2659 						 EXPR_LOCATION (args[i]));
2660 	}
2661       convs[i] = t;
2662     }
2663 
2664   /* For COND_EXPR we rearranged the arguments; undo that now.  */
2665   if (num_convs == 3)
2666     {
2667       convs[2] = convs[1];
2668       convs[1] = convs[0];
2669       t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2670 			       /*c_cast_p=*/false, flags,
2671 			       complain);
2672       if (t)
2673 	convs[0] = t;
2674       else
2675 	{
2676 	  viable = 0;
2677 	  reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2678 					     boolean_type_node,
2679 					     EXPR_LOCATION (args[2]));
2680 	}
2681     }
2682 
2683   add_candidate (candidates, fnname, /*first_arg=*/NULL_TREE, /*args=*/NULL,
2684 		 num_convs, convs,
2685 		 /*access_path=*/NULL_TREE,
2686 		 /*conversion_path=*/NULL_TREE,
2687 		 viable, reason, flags);
2688 }
2689 
2690 static bool
is_complete(tree t)2691 is_complete (tree t)
2692 {
2693   return COMPLETE_TYPE_P (complete_type (t));
2694 }
2695 
2696 /* Returns nonzero if TYPE is a promoted arithmetic type.  */
2697 
2698 static bool
promoted_arithmetic_type_p(tree type)2699 promoted_arithmetic_type_p (tree type)
2700 {
2701   /* [over.built]
2702 
2703      In this section, the term promoted integral type is used to refer
2704      to those integral types which are preserved by integral promotion
2705      (including e.g.  int and long but excluding e.g.  char).
2706      Similarly, the term promoted arithmetic type refers to promoted
2707      integral types plus floating types.  */
2708   return ((CP_INTEGRAL_TYPE_P (type)
2709 	   && same_type_p (type_promotes_to (type), type))
2710 	  || TREE_CODE (type) == REAL_TYPE);
2711 }
2712 
2713 /* Create any builtin operator overload candidates for the operator in
2714    question given the converted operand types TYPE1 and TYPE2.  The other
2715    args are passed through from add_builtin_candidates to
2716    build_builtin_candidate.
2717 
2718    TYPE1 and TYPE2 may not be permissible, and we must filter them.
2719    If CODE is requires candidates operands of the same type of the kind
2720    of which TYPE1 and TYPE2 are, we add both candidates
2721    CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2).  */
2722 
2723 static void
add_builtin_candidate(struct z_candidate ** candidates,enum tree_code code,enum tree_code code2,tree fnname,tree type1,tree type2,vec<tree,va_gc> & args,tree * argtypes,int flags,tsubst_flags_t complain)2724 add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
2725 		       enum tree_code code2, tree fnname, tree type1,
2726 		       tree type2, vec<tree,va_gc> &args, tree *argtypes,
2727 		       int flags, tsubst_flags_t complain)
2728 {
2729   switch (code)
2730     {
2731     case POSTINCREMENT_EXPR:
2732     case POSTDECREMENT_EXPR:
2733       args[1] = integer_zero_node;
2734       type2 = integer_type_node;
2735       break;
2736     default:
2737       break;
2738     }
2739 
2740   switch (code)
2741     {
2742 
2743 /* 4 For every pair (T, VQ), where T is an arithmetic type other than bool,
2744      and  VQ  is  either  volatile or empty, there exist candidate operator
2745      functions of the form
2746 	     VQ T&   operator++(VQ T&);
2747 	     T       operator++(VQ T&, int);
2748    5 For every pair (T, VQ), where T is an arithmetic type other than bool,
2749      and VQ is either volatile or empty, there exist candidate operator
2750      functions of the form
2751 	     VQ T&   operator--(VQ T&);
2752 	     T       operator--(VQ T&, int);
2753    6 For every pair (T, VQ), where T is a cv-qualified or cv-unqualified object
2754      type, and VQ is either volatile or empty, there exist candidate operator
2755      functions of the form
2756 	     T*VQ&   operator++(T*VQ&);
2757 	     T*VQ&   operator--(T*VQ&);
2758 	     T*      operator++(T*VQ&, int);
2759 	     T*      operator--(T*VQ&, int);  */
2760 
2761     case POSTDECREMENT_EXPR:
2762     case PREDECREMENT_EXPR:
2763       if (TREE_CODE (type1) == BOOLEAN_TYPE)
2764 	return;
2765       /* FALLTHRU */
2766     case POSTINCREMENT_EXPR:
2767     case PREINCREMENT_EXPR:
2768       /* P0002R1, Remove deprecated operator++(bool) added "other than bool"
2769 	 to p4.  */
2770       if (TREE_CODE (type1) == BOOLEAN_TYPE && cxx_dialect >= cxx17)
2771 	return;
2772       if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
2773 	{
2774 	  type1 = build_reference_type (type1);
2775 	  break;
2776 	}
2777       return;
2778 
2779 /* 7 For every cv-qualified or cv-unqualified object type T, there
2780      exist candidate operator functions of the form
2781 
2782 	     T&      operator*(T*);
2783 
2784 
2785    8 For every function type T that does not have cv-qualifiers or
2786      a ref-qualifier, there exist candidate operator functions of the form
2787 	     T&      operator*(T*);  */
2788 
2789     case INDIRECT_REF:
2790       if (TYPE_PTR_P (type1)
2791 	  && (TYPE_PTROB_P (type1)
2792 	      || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
2793 	break;
2794       return;
2795 
2796 /* 9 For every type T, there exist candidate operator functions of the form
2797 	     T*      operator+(T*);
2798 
2799    10 For every floating-point or promoted integral type T, there exist
2800       candidate operator functions of the form
2801 	     T       operator+(T);
2802 	     T       operator-(T);  */
2803 
2804     case UNARY_PLUS_EXPR: /* unary + */
2805       if (TYPE_PTR_P (type1))
2806 	break;
2807       /* FALLTHRU */
2808     case NEGATE_EXPR:
2809       if (ARITHMETIC_TYPE_P (type1))
2810 	break;
2811       return;
2812 
2813 /* 11 For every promoted integral type T,  there  exist  candidate  operator
2814       functions of the form
2815 	     T       operator~(T);  */
2816 
2817     case BIT_NOT_EXPR:
2818       if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1))
2819 	break;
2820       return;
2821 
2822 /* 12 For every quintuple (C1, C2, T, CV1, CV2), where C2 is a class type, C1
2823      is the same type as C2 or is a derived class of C2, and T is an object
2824      type or a function type there exist candidate operator functions of the
2825      form
2826 	     CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
2827      where CV12 is the union of CV1 and CV2.  */
2828 
2829     case MEMBER_REF:
2830       if (TYPE_PTR_P (type1) && TYPE_PTRMEM_P (type2))
2831 	{
2832 	  tree c1 = TREE_TYPE (type1);
2833 	  tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
2834 
2835 	  if (CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
2836 	      && (TYPE_PTRMEMFUNC_P (type2)
2837 		  || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
2838 	    break;
2839 	}
2840       return;
2841 
2842 /* 13 For every pair of types L and R, where each of L and R is a floating-point
2843       or promoted integral type, there exist candidate operator functions of the
2844       form
2845 	     LR      operator*(L, R);
2846 	     LR      operator/(L, R);
2847 	     LR      operator+(L, R);
2848 	     LR      operator-(L, R);
2849 	     bool    operator<(L, R);
2850 	     bool    operator>(L, R);
2851 	     bool    operator<=(L, R);
2852 	     bool    operator>=(L, R);
2853 	     bool    operator==(L, R);
2854 	     bool    operator!=(L, R);
2855       where  LR  is  the  result of the usual arithmetic conversions between
2856       types L and R.
2857 
2858    14 For every integral type T there exists a candidate operator function of
2859       the form
2860 
2861        std::strong_ordering operator<=>(T, T);
2862 
2863    15 For every pair of floating-point types L and R, there exists a candidate
2864       operator function of the form
2865 
2866        std::partial_ordering operator<=>(L, R);
2867 
2868    16 For every cv-qualified or cv-unqualified object type T there exist
2869       candidate operator functions of the form
2870 	     T*      operator+(T*, std::ptrdiff_t);
2871 	     T&      operator[](T*, std::ptrdiff_t);
2872 	     T*      operator-(T*, std::ptrdiff_t);
2873 	     T*      operator+(std::ptrdiff_t, T*);
2874 	     T&      operator[](std::ptrdiff_t, T*);
2875 
2876    17 For every T, where T is a pointer to object type, there exist candidate
2877       operator functions of the form
2878 	     std::ptrdiff_t operator-(T, T);
2879 
2880    18 For every T, where T is an enumeration type or a pointer type, there
2881       exist candidate operator functions of the form
2882 	     bool    operator<(T, T);
2883 	     bool    operator>(T, T);
2884 	     bool    operator<=(T, T);
2885 	     bool    operator>=(T, T);
2886 	     bool    operator==(T, T);
2887 	     bool    operator!=(T, T);
2888 	     R       operator<=>(T, T);
2889 
2890       where R is the result type specified in [expr.spaceship].
2891 
2892    19 For every T, where T is a pointer-to-member type or std::nullptr_t,
2893       there exist candidate operator functions of the form
2894 	     bool    operator==(T, T);
2895 	     bool    operator!=(T, T);  */
2896 
2897     case MINUS_EXPR:
2898       if (TYPE_PTROB_P (type1) && TYPE_PTROB_P (type2))
2899 	break;
2900       if (TYPE_PTROB_P (type1)
2901 	  && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2902 	{
2903 	  type2 = ptrdiff_type_node;
2904 	  break;
2905 	}
2906       /* FALLTHRU */
2907     case MULT_EXPR:
2908     case TRUNC_DIV_EXPR:
2909       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2910 	break;
2911       return;
2912 
2913       /* This isn't exactly what's specified above for operator<=>, but it's
2914 	 close enough.  In particular, we don't care about the return type
2915 	 specified above; it doesn't participate in overload resolution and it
2916 	 doesn't affect the semantics of the built-in operator.  */
2917     case SPACESHIP_EXPR:
2918     case EQ_EXPR:
2919     case NE_EXPR:
2920       if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
2921 	  || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2)))
2922 	break;
2923       if (NULLPTR_TYPE_P (type1) && NULLPTR_TYPE_P (type2))
2924 	break;
2925       if (TYPE_PTRMEM_P (type1) && null_ptr_cst_p (args[1]))
2926 	{
2927 	  type2 = type1;
2928 	  break;
2929 	}
2930       if (TYPE_PTRMEM_P (type2) && null_ptr_cst_p (args[0]))
2931 	{
2932 	  type1 = type2;
2933 	  break;
2934 	}
2935       /* Fall through.  */
2936     case LT_EXPR:
2937     case GT_EXPR:
2938     case LE_EXPR:
2939     case GE_EXPR:
2940     case MAX_EXPR:
2941     case MIN_EXPR:
2942       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2943 	break;
2944       if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
2945 	break;
2946       if (TREE_CODE (type1) == ENUMERAL_TYPE
2947 	  && TREE_CODE (type2) == ENUMERAL_TYPE)
2948 	break;
2949       if (TYPE_PTR_P (type1)
2950 	  && null_ptr_cst_p (args[1]))
2951 	{
2952 	  type2 = type1;
2953 	  break;
2954 	}
2955       if (null_ptr_cst_p (args[0])
2956 	  && TYPE_PTR_P (type2))
2957 	{
2958 	  type1 = type2;
2959 	  break;
2960 	}
2961       return;
2962 
2963     case PLUS_EXPR:
2964       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
2965 	break;
2966       /* FALLTHRU */
2967     case ARRAY_REF:
2968       if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && TYPE_PTROB_P (type2))
2969 	{
2970 	  type1 = ptrdiff_type_node;
2971 	  break;
2972 	}
2973       if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2974 	{
2975 	  type2 = ptrdiff_type_node;
2976 	  break;
2977 	}
2978       return;
2979 
2980 /* 18For  every pair of promoted integral types L and R, there exist candi-
2981      date operator functions of the form
2982 	     LR      operator%(L, R);
2983 	     LR      operator&(L, R);
2984 	     LR      operator^(L, R);
2985 	     LR      operator|(L, R);
2986 	     L       operator<<(L, R);
2987 	     L       operator>>(L, R);
2988      where LR is the result of the  usual  arithmetic  conversions  between
2989      types L and R.  */
2990 
2991     case TRUNC_MOD_EXPR:
2992     case BIT_AND_EXPR:
2993     case BIT_IOR_EXPR:
2994     case BIT_XOR_EXPR:
2995     case LSHIFT_EXPR:
2996     case RSHIFT_EXPR:
2997       if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
2998 	break;
2999       return;
3000 
3001 /* 19For  every  triple  L, VQ, R), where L is an arithmetic or enumeration
3002      type, VQ is either volatile or empty, and R is a  promoted  arithmetic
3003      type, there exist candidate operator functions of the form
3004 	     VQ L&   operator=(VQ L&, R);
3005 	     VQ L&   operator*=(VQ L&, R);
3006 	     VQ L&   operator/=(VQ L&, R);
3007 	     VQ L&   operator+=(VQ L&, R);
3008 	     VQ L&   operator-=(VQ L&, R);
3009 
3010    20For  every  pair T, VQ), where T is any type and VQ is either volatile
3011      or empty, there exist candidate operator functions of the form
3012 	     T*VQ&   operator=(T*VQ&, T*);
3013 
3014    21For every pair T, VQ), where T is a pointer to member type and  VQ  is
3015      either  volatile or empty, there exist candidate operator functions of
3016      the form
3017 	     VQ T&   operator=(VQ T&, T);
3018 
3019    22For every triple  T,  VQ,  I),  where  T  is  a  cv-qualified  or  cv-
3020      unqualified  complete object type, VQ is either volatile or empty, and
3021      I is a promoted integral type, there exist  candidate  operator  func-
3022      tions of the form
3023 	     T*VQ&   operator+=(T*VQ&, I);
3024 	     T*VQ&   operator-=(T*VQ&, I);
3025 
3026    23For  every  triple  L,  VQ,  R), where L is an integral or enumeration
3027      type, VQ is either volatile or empty, and R  is  a  promoted  integral
3028      type, there exist candidate operator functions of the form
3029 
3030 	     VQ L&   operator%=(VQ L&, R);
3031 	     VQ L&   operator<<=(VQ L&, R);
3032 	     VQ L&   operator>>=(VQ L&, R);
3033 	     VQ L&   operator&=(VQ L&, R);
3034 	     VQ L&   operator^=(VQ L&, R);
3035 	     VQ L&   operator|=(VQ L&, R);  */
3036 
3037     case MODIFY_EXPR:
3038       switch (code2)
3039 	{
3040 	case PLUS_EXPR:
3041 	case MINUS_EXPR:
3042 	  if (TYPE_PTROB_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
3043 	    {
3044 	      type2 = ptrdiff_type_node;
3045 	      break;
3046 	    }
3047 	  /* FALLTHRU */
3048 	case MULT_EXPR:
3049 	case TRUNC_DIV_EXPR:
3050 	  if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3051 	    break;
3052 	  return;
3053 
3054 	case TRUNC_MOD_EXPR:
3055 	case BIT_AND_EXPR:
3056 	case BIT_IOR_EXPR:
3057 	case BIT_XOR_EXPR:
3058 	case LSHIFT_EXPR:
3059 	case RSHIFT_EXPR:
3060 	  if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type1) && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type2))
3061 	    break;
3062 	  return;
3063 
3064 	case NOP_EXPR:
3065 	  if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
3066 	    break;
3067 	  if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
3068 	      || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
3069 	      || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
3070 	      || ((TYPE_PTRMEMFUNC_P (type1)
3071 		   || TYPE_PTR_P (type1))
3072 		  && null_ptr_cst_p (args[1])))
3073 	    {
3074 	      type2 = type1;
3075 	      break;
3076 	    }
3077 	  return;
3078 
3079 	default:
3080 	  gcc_unreachable ();
3081 	}
3082       type1 = build_reference_type (type1);
3083       break;
3084 
3085     case COND_EXPR:
3086       /* [over.built]
3087 
3088 	 For every pair of promoted arithmetic types L and R, there
3089 	 exist candidate operator functions of the form
3090 
3091 	 LR operator?(bool, L, R);
3092 
3093 	 where LR is the result of the usual arithmetic conversions
3094 	 between types L and R.
3095 
3096 	 For every type T, where T is a pointer or pointer-to-member
3097 	 type, there exist candidate operator functions of the form T
3098 	 operator?(bool, T, T);  */
3099 
3100       if (promoted_arithmetic_type_p (type1)
3101 	  && promoted_arithmetic_type_p (type2))
3102 	/* That's OK.  */
3103 	break;
3104 
3105       /* Otherwise, the types should be pointers.  */
3106       if (!TYPE_PTR_OR_PTRMEM_P (type1) || !TYPE_PTR_OR_PTRMEM_P (type2))
3107 	return;
3108 
3109       /* We don't check that the two types are the same; the logic
3110 	 below will actually create two candidates; one in which both
3111 	 parameter types are TYPE1, and one in which both parameter
3112 	 types are TYPE2.  */
3113       break;
3114 
3115     case REALPART_EXPR:
3116     case IMAGPART_EXPR:
3117       if (ARITHMETIC_TYPE_P (type1))
3118 	break;
3119       return;
3120 
3121     default:
3122       gcc_unreachable ();
3123     }
3124 
3125   /* Make sure we don't create builtin candidates with dependent types.  */
3126   bool u1 = uses_template_parms (type1);
3127   bool u2 = type2 ? uses_template_parms (type2) : false;
3128   if (u1 || u2)
3129     {
3130       /* Try to recover if one of the types is non-dependent.  But if
3131 	 there's only one type, there's nothing we can do.  */
3132       if (!type2)
3133 	return;
3134       /* And we lose if both are dependent.  */
3135       if (u1 && u2)
3136 	return;
3137       /* Or if they have different forms.  */
3138       if (TREE_CODE (type1) != TREE_CODE (type2))
3139 	return;
3140 
3141       if (u1 && !u2)
3142 	type1 = type2;
3143       else if (u2 && !u1)
3144 	type2 = type1;
3145     }
3146 
3147   /* If we're dealing with two pointer types or two enumeral types,
3148      we need candidates for both of them.  */
3149   if (type2 && !same_type_p (type1, type2)
3150       && TREE_CODE (type1) == TREE_CODE (type2)
3151       && (TYPE_REF_P (type1)
3152 	  || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
3153 	  || (TYPE_PTRDATAMEM_P (type1) && TYPE_PTRDATAMEM_P (type2))
3154 	  || TYPE_PTRMEMFUNC_P (type1)
3155 	  || MAYBE_CLASS_TYPE_P (type1)
3156 	  || TREE_CODE (type1) == ENUMERAL_TYPE))
3157     {
3158       if (TYPE_PTR_OR_PTRMEM_P (type1))
3159 	{
3160 	  tree cptype = composite_pointer_type (input_location,
3161 						type1, type2,
3162 						error_mark_node,
3163 						error_mark_node,
3164 						CPO_CONVERSION,
3165 						tf_none);
3166 	  if (cptype != error_mark_node)
3167 	    {
3168 	      build_builtin_candidate
3169 		(candidates, fnname, cptype, cptype, args, argtypes,
3170 		 flags, complain);
3171 	      return;
3172 	    }
3173 	}
3174 
3175       build_builtin_candidate
3176 	(candidates, fnname, type1, type1, args, argtypes, flags, complain);
3177       build_builtin_candidate
3178 	(candidates, fnname, type2, type2, args, argtypes, flags, complain);
3179       return;
3180     }
3181 
3182   build_builtin_candidate
3183     (candidates, fnname, type1, type2, args, argtypes, flags, complain);
3184 }
3185 
3186 tree
type_decays_to(tree type)3187 type_decays_to (tree type)
3188 {
3189   if (TREE_CODE (type) == ARRAY_TYPE)
3190     return build_pointer_type (TREE_TYPE (type));
3191   if (TREE_CODE (type) == FUNCTION_TYPE)
3192     return build_pointer_type (type);
3193   return type;
3194 }
3195 
3196 /* There are three conditions of builtin candidates:
3197 
3198    1) bool-taking candidates.  These are the same regardless of the input.
3199    2) pointer-pair taking candidates.  These are generated for each type
3200       one of the input types converts to.
3201    3) arithmetic candidates.  According to the standard, we should generate
3202       all of these, but I'm trying not to...
3203 
3204    Here we generate a superset of the possible candidates for this particular
3205    case.  That is a subset of the full set the standard defines, plus some
3206    other cases which the standard disallows. add_builtin_candidate will
3207    filter out the invalid set.  */
3208 
3209 static void
add_builtin_candidates(struct z_candidate ** candidates,enum tree_code code,enum tree_code code2,tree fnname,vec<tree,va_gc> * argv,int flags,tsubst_flags_t complain)3210 add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
3211 			enum tree_code code2, tree fnname,
3212 			vec<tree, va_gc> *argv,
3213 			int flags, tsubst_flags_t complain)
3214 {
3215   int ref1;
3216   int enum_p = 0;
3217   tree type, argtypes[3], t;
3218   /* TYPES[i] is the set of possible builtin-operator parameter types
3219      we will consider for the Ith argument.  */
3220   vec<tree, va_gc> *types[2];
3221   unsigned ix;
3222   vec<tree, va_gc> &args = *argv;
3223   unsigned len = args.length ();
3224 
3225   for (unsigned i = 0; i < len; ++i)
3226     {
3227       if (args[i])
3228 	argtypes[i] = unlowered_expr_type (args[i]);
3229       else
3230 	argtypes[i] = NULL_TREE;
3231     }
3232 
3233   switch (code)
3234     {
3235 /* 4 For every pair T, VQ), where T is an arithmetic or  enumeration  type,
3236      and  VQ  is  either  volatile or empty, there exist candidate operator
3237      functions of the form
3238 		 VQ T&   operator++(VQ T&);  */
3239 
3240     case POSTINCREMENT_EXPR:
3241     case PREINCREMENT_EXPR:
3242     case POSTDECREMENT_EXPR:
3243     case PREDECREMENT_EXPR:
3244     case MODIFY_EXPR:
3245       ref1 = 1;
3246       break;
3247 
3248 /* 24There also exist candidate operator functions of the form
3249 	     bool    operator!(bool);
3250 	     bool    operator&&(bool, bool);
3251 	     bool    operator||(bool, bool);  */
3252 
3253     case TRUTH_NOT_EXPR:
3254       build_builtin_candidate
3255 	(candidates, fnname, boolean_type_node,
3256 	 NULL_TREE, args, argtypes, flags, complain);
3257       return;
3258 
3259     case TRUTH_ORIF_EXPR:
3260     case TRUTH_ANDIF_EXPR:
3261       build_builtin_candidate
3262 	(candidates, fnname, boolean_type_node,
3263 	 boolean_type_node, args, argtypes, flags, complain);
3264       return;
3265 
3266     case ADDR_EXPR:
3267     case COMPOUND_EXPR:
3268     case COMPONENT_REF:
3269     case CO_AWAIT_EXPR:
3270       return;
3271 
3272     case COND_EXPR:
3273     case EQ_EXPR:
3274     case NE_EXPR:
3275     case LT_EXPR:
3276     case LE_EXPR:
3277     case GT_EXPR:
3278     case GE_EXPR:
3279     case SPACESHIP_EXPR:
3280       enum_p = 1;
3281       /* Fall through.  */
3282 
3283     default:
3284       ref1 = 0;
3285     }
3286 
3287   types[0] = make_tree_vector ();
3288   types[1] = make_tree_vector ();
3289 
3290   if (len == 3)
3291     len = 2;
3292   for (unsigned i = 0; i < len; ++i)
3293     {
3294       if (MAYBE_CLASS_TYPE_P (argtypes[i]))
3295 	{
3296 	  tree convs;
3297 
3298 	  if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
3299 	    return;
3300 
3301 	  convs = lookup_conversions (argtypes[i]);
3302 
3303 	  if (code == COND_EXPR)
3304 	    {
3305 	      if (lvalue_p (args[i]))
3306 		vec_safe_push (types[i], build_reference_type (argtypes[i]));
3307 
3308 	      vec_safe_push (types[i], TYPE_MAIN_VARIANT (argtypes[i]));
3309 	    }
3310 
3311 	  else if (! convs)
3312 	    return;
3313 
3314 	  for (; convs; convs = TREE_CHAIN (convs))
3315 	    {
3316 	      type = TREE_TYPE (convs);
3317 
3318 	      if (i == 0 && ref1
3319 		  && (!TYPE_REF_P (type)
3320 		      || CP_TYPE_CONST_P (TREE_TYPE (type))))
3321 		continue;
3322 
3323 	      if (code == COND_EXPR && TYPE_REF_P (type))
3324 		vec_safe_push (types[i], type);
3325 
3326 	      type = non_reference (type);
3327 	      if (i != 0 || ! ref1)
3328 		{
3329 		  type = cv_unqualified (type_decays_to (type));
3330 		  if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
3331 		    vec_safe_push (types[i], type);
3332 		  if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3333 		    type = type_promotes_to (type);
3334 		}
3335 
3336 	      if (! vec_member (type, types[i]))
3337 		vec_safe_push (types[i], type);
3338 	    }
3339 	}
3340       else
3341 	{
3342 	  if (code == COND_EXPR && lvalue_p (args[i]))
3343 	    vec_safe_push (types[i], build_reference_type (argtypes[i]));
3344 	  type = non_reference (argtypes[i]);
3345 	  if (i != 0 || ! ref1)
3346 	    {
3347 	      type = cv_unqualified (type_decays_to (type));
3348 	      if (enum_p && UNSCOPED_ENUM_P (type))
3349 		vec_safe_push (types[i], type);
3350 	      if (INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (type))
3351 		type = type_promotes_to (type);
3352 	    }
3353 	  vec_safe_push (types[i], type);
3354 	}
3355     }
3356 
3357   /* Run through the possible parameter types of both arguments,
3358      creating candidates with those parameter types.  */
3359   FOR_EACH_VEC_ELT_REVERSE (*(types[0]), ix, t)
3360     {
3361       unsigned jx;
3362       tree u;
3363 
3364       if (!types[1]->is_empty ())
3365 	FOR_EACH_VEC_ELT_REVERSE (*(types[1]), jx, u)
3366 	  add_builtin_candidate
3367 	    (candidates, code, code2, fnname, t,
3368 	     u, args, argtypes, flags, complain);
3369       else
3370 	add_builtin_candidate
3371 	  (candidates, code, code2, fnname, t,
3372 	   NULL_TREE, args, argtypes, flags, complain);
3373     }
3374 
3375   release_tree_vector (types[0]);
3376   release_tree_vector (types[1]);
3377 }
3378 
3379 
3380 /* If TMPL can be successfully instantiated as indicated by
3381    EXPLICIT_TARGS and ARGLIST, adds the instantiation to CANDIDATES.
3382 
3383    TMPL is the template.  EXPLICIT_TARGS are any explicit template
3384    arguments.  ARGLIST is the arguments provided at the call-site.
3385    This does not change ARGLIST.  The RETURN_TYPE is the desired type
3386    for conversion operators.  If OBJ is NULL_TREE, FLAGS and CTYPE are
3387    as for add_function_candidate.  If an OBJ is supplied, FLAGS and
3388    CTYPE are ignored, and OBJ is as for add_conv_candidate.
3389 
3390    SHORTCUT_BAD_CONVS is as in add_function_candidate.  */
3391 
3392 static struct z_candidate*
add_template_candidate_real(struct z_candidate ** candidates,tree tmpl,tree ctype,tree explicit_targs,tree first_arg,const vec<tree,va_gc> * arglist,tree return_type,tree access_path,tree conversion_path,int flags,tree obj,unification_kind_t strict,bool shortcut_bad_convs,tsubst_flags_t complain)3393 add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
3394 			     tree ctype, tree explicit_targs, tree first_arg,
3395 			     const vec<tree, va_gc> *arglist, tree return_type,
3396 			     tree access_path, tree conversion_path,
3397 			     int flags, tree obj, unification_kind_t strict,
3398 			     bool shortcut_bad_convs, tsubst_flags_t complain)
3399 {
3400   int ntparms = DECL_NTPARMS (tmpl);
3401   tree targs = make_tree_vec (ntparms);
3402   unsigned int len = vec_safe_length (arglist);
3403   unsigned int nargs = (first_arg == NULL_TREE ? 0 : 1) + len;
3404   unsigned int skip_without_in_chrg = 0;
3405   tree first_arg_without_in_chrg = first_arg;
3406   tree *args_without_in_chrg;
3407   unsigned int nargs_without_in_chrg;
3408   unsigned int ia, ix;
3409   tree arg;
3410   struct z_candidate *cand;
3411   tree fn;
3412   struct rejection_reason *reason = NULL;
3413   int errs;
3414   conversion **convs = NULL;
3415 
3416   /* We don't do deduction on the in-charge parameter, the VTT
3417      parameter or 'this'.  */
3418   if (DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl))
3419     {
3420       if (first_arg_without_in_chrg != NULL_TREE)
3421 	first_arg_without_in_chrg = NULL_TREE;
3422       else if (return_type && strict == DEDUCE_CALL)
3423 	/* We're deducing for a call to the result of a template conversion
3424 	   function, so the args don't contain 'this'; leave them alone.  */;
3425       else
3426 	++skip_without_in_chrg;
3427     }
3428 
3429   if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
3430        || DECL_BASE_CONSTRUCTOR_P (tmpl))
3431       && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
3432     {
3433       if (first_arg_without_in_chrg != NULL_TREE)
3434 	first_arg_without_in_chrg = NULL_TREE;
3435       else
3436 	++skip_without_in_chrg;
3437     }
3438 
3439   if (len < skip_without_in_chrg)
3440     return NULL;
3441 
3442   if (DECL_CONSTRUCTOR_P (tmpl) && nargs == 2
3443       && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (first_arg),
3444 						    TREE_TYPE ((*arglist)[0])))
3445     {
3446       /* 12.8/6 says, "A declaration of a constructor for a class X is
3447 	 ill-formed if its first parameter is of type (optionally cv-qualified)
3448 	 X and either there are no other parameters or else all other
3449 	 parameters have default arguments. A member function template is never
3450 	 instantiated to produce such a constructor signature."
3451 
3452 	 So if we're trying to copy an object of the containing class, don't
3453 	 consider a template constructor that has a first parameter type that
3454 	 is just a template parameter, as we would deduce a signature that we
3455 	 would then reject in the code below.  */
3456       if (tree firstparm = FUNCTION_FIRST_USER_PARMTYPE (tmpl))
3457 	{
3458 	  firstparm = TREE_VALUE (firstparm);
3459 	  if (PACK_EXPANSION_P (firstparm))
3460 	    firstparm = PACK_EXPANSION_PATTERN (firstparm);
3461 	  if (TREE_CODE (firstparm) == TEMPLATE_TYPE_PARM)
3462 	    {
3463 	      gcc_assert (!explicit_targs);
3464 	      reason = invalid_copy_with_fn_template_rejection ();
3465 	      goto fail;
3466 	    }
3467 	}
3468     }
3469 
3470   nargs_without_in_chrg = ((first_arg_without_in_chrg != NULL_TREE ? 1 : 0)
3471 			   + (len - skip_without_in_chrg));
3472   args_without_in_chrg = XALLOCAVEC (tree, nargs_without_in_chrg);
3473   ia = 0;
3474   if (first_arg_without_in_chrg != NULL_TREE)
3475     {
3476       args_without_in_chrg[ia] = first_arg_without_in_chrg;
3477       ++ia;
3478     }
3479   for (ix = skip_without_in_chrg;
3480        vec_safe_iterate (arglist, ix, &arg);
3481        ++ix)
3482     {
3483       args_without_in_chrg[ia] = arg;
3484       ++ia;
3485     }
3486   gcc_assert (ia == nargs_without_in_chrg);
3487 
3488   if (!obj && explicit_targs)
3489     {
3490       /* Check that there's no obvious arity mismatch before proceeding with
3491 	 deduction.  This avoids substituting explicit template arguments
3492 	 into the template (which could result in an error outside the
3493 	 immediate context) when the resulting candidate would be unviable
3494 	 anyway.  */
3495       int min_arity = 0, max_arity = 0;
3496       tree parms = TYPE_ARG_TYPES (TREE_TYPE (tmpl));
3497       parms = skip_artificial_parms_for (tmpl, parms);
3498       for (; parms != void_list_node; parms = TREE_CHAIN (parms))
3499 	{
3500 	  if (!parms || PACK_EXPANSION_P (TREE_VALUE (parms)))
3501 	    {
3502 	      max_arity = -1;
3503 	      break;
3504 	    }
3505 	  if (TREE_PURPOSE (parms))
3506 	    /* A parameter with a default argument.  */
3507 	    ++max_arity;
3508 	  else
3509 	    ++min_arity, ++max_arity;
3510 	}
3511       if (ia < (unsigned)min_arity)
3512 	{
3513 	  /* Too few arguments.  */
3514 	  reason = arity_rejection (NULL_TREE, min_arity, ia,
3515 				    /*least_p=*/(max_arity == -1));
3516 	  goto fail;
3517 	}
3518       else if (max_arity != -1 && ia > (unsigned)max_arity)
3519 	{
3520 	  /* Too many arguments.  */
3521 	  reason = arity_rejection (NULL_TREE, max_arity, ia);
3522 	  goto fail;
3523 	}
3524     }
3525 
3526   errs = errorcount+sorrycount;
3527   if (!obj)
3528     {
3529       convs = alloc_conversions (nargs);
3530 
3531       if (shortcut_bad_convs
3532 	  && DECL_NONSTATIC_MEMBER_FUNCTION_P (tmpl)
3533 	  && !DECL_CONSTRUCTOR_P (tmpl))
3534 	{
3535 	  /* Check the 'this' conversion before proceeding with deduction.
3536 	     This is effectively an extension of the DR 1391 resolution
3537 	     that we perform in check_non_deducible_conversions, though it's
3538 	     convenient to do this extra check here instead of there.  */
3539 	  tree parmtype = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (tmpl)));
3540 	  tree argtype = lvalue_type (first_arg);
3541 	  tree arg = first_arg;
3542 	  conversion *t = build_this_conversion (tmpl, ctype,
3543 						 parmtype, argtype, arg,
3544 						 flags, complain);
3545 	  convs[0] = t;
3546 	  if (t->bad_p)
3547 	    {
3548 	      reason = bad_arg_conversion_rejection (first_arg, 0,
3549 						     arg, parmtype,
3550 						     EXPR_LOCATION (arg));
3551 	      goto fail;
3552 	    }
3553 	}
3554     }
3555   fn = fn_type_unification (tmpl, explicit_targs, targs,
3556 			    args_without_in_chrg,
3557 			    nargs_without_in_chrg,
3558 			    return_type, strict, flags, convs,
3559 			    false, complain & tf_decltype);
3560 
3561   if (fn == error_mark_node)
3562     {
3563       /* Don't repeat unification later if it already resulted in errors.  */
3564       if (errorcount+sorrycount == errs)
3565 	reason = template_unification_rejection (tmpl, explicit_targs,
3566 						 targs, args_without_in_chrg,
3567 						 nargs_without_in_chrg,
3568 						 return_type, strict, flags);
3569       else
3570 	reason = template_unification_error_rejection ();
3571       goto fail;
3572     }
3573 
3574   /* Now the explicit specifier might have been deduced; check if this
3575      declaration is explicit.  If it is and we're ignoring non-converting
3576      constructors, don't add this function to the set of candidates.  */
3577   if ((flags & LOOKUP_ONLYCONVERTING) && DECL_NONCONVERTING_P (fn))
3578     return NULL;
3579 
3580   if (DECL_CONSTRUCTOR_P (fn) && nargs == 2)
3581     {
3582       tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
3583       if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
3584 				    ctype))
3585 	{
3586 	  /* We're trying to produce a constructor with a prohibited signature,
3587 	     as discussed above; handle here any cases we didn't catch then,
3588 	     such as X(X<T>).  */
3589 	  reason = invalid_copy_with_fn_template_rejection ();
3590 	  goto fail;
3591 	}
3592     }
3593 
3594   if (obj != NULL_TREE)
3595     /* Aha, this is a conversion function.  */
3596     cand = add_conv_candidate (candidates, fn, obj, arglist,
3597 			       access_path, conversion_path, complain);
3598   else
3599     cand = add_function_candidate (candidates, fn, ctype,
3600 				   first_arg, arglist, access_path,
3601 				   conversion_path, flags, convs,
3602 				   shortcut_bad_convs, complain);
3603   if (DECL_TI_TEMPLATE (fn) != tmpl)
3604     /* This situation can occur if a member template of a template
3605        class is specialized.  Then, instantiate_template might return
3606        an instantiation of the specialization, in which case the
3607        DECL_TI_TEMPLATE field will point at the original
3608        specialization.  For example:
3609 
3610 	 template <class T> struct S { template <class U> void f(U);
3611 				       template <> void f(int) {}; };
3612 	 S<double> sd;
3613 	 sd.f(3);
3614 
3615        Here, TMPL will be template <class U> S<double>::f(U).
3616        And, instantiate template will give us the specialization
3617        template <> S<double>::f(int).  But, the DECL_TI_TEMPLATE field
3618        for this will point at template <class T> template <> S<T>::f(int),
3619        so that we can find the definition.  For the purposes of
3620        overload resolution, however, we want the original TMPL.  */
3621     cand->template_decl = build_template_info (tmpl, targs);
3622   else
3623     cand->template_decl = DECL_TEMPLATE_INFO (fn);
3624   cand->explicit_targs = explicit_targs;
3625 
3626   return cand;
3627  fail:
3628   int viable = (reason->code == rr_bad_arg_conversion ? -1 : 0);
3629   return add_candidate (candidates, tmpl, first_arg, arglist, nargs, convs,
3630 			access_path, conversion_path, viable, reason, flags);
3631 }
3632 
3633 
3634 static struct z_candidate *
add_template_candidate(struct z_candidate ** candidates,tree tmpl,tree ctype,tree explicit_targs,tree first_arg,const vec<tree,va_gc> * arglist,tree return_type,tree access_path,tree conversion_path,int flags,unification_kind_t strict,bool shortcut_bad_convs,tsubst_flags_t complain)3635 add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
3636 			tree explicit_targs, tree first_arg,
3637 			const vec<tree, va_gc> *arglist, tree return_type,
3638 			tree access_path, tree conversion_path, int flags,
3639 			unification_kind_t strict, bool shortcut_bad_convs,
3640 			tsubst_flags_t complain)
3641 {
3642   return
3643     add_template_candidate_real (candidates, tmpl, ctype,
3644 				 explicit_targs, first_arg, arglist,
3645 				 return_type, access_path, conversion_path,
3646 				 flags, NULL_TREE, strict, shortcut_bad_convs,
3647 				 complain);
3648 }
3649 
3650 /* Create an overload candidate for the conversion function template TMPL,
3651    returning RETURN_TYPE, which will be invoked for expression OBJ to produce a
3652    pointer-to-function which will in turn be called with the argument list
3653    ARGLIST, and add it to CANDIDATES.  This does not change ARGLIST.  FLAGS is
3654    passed on to implicit_conversion.  */
3655 
3656 static struct z_candidate *
add_template_conv_candidate(struct z_candidate ** candidates,tree tmpl,tree obj,const vec<tree,va_gc> * arglist,tree return_type,tree access_path,tree conversion_path,tsubst_flags_t complain)3657 add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
3658 			     tree obj,
3659 			     const vec<tree, va_gc> *arglist,
3660 			     tree return_type, tree access_path,
3661 			     tree conversion_path, tsubst_flags_t complain)
3662 {
3663   /* Making this work broke PR 71117 and 85118, so until the committee resolves
3664      core issue 2189, let's disable this candidate if there are any call
3665      operators.  */
3666   if (*candidates)
3667     return NULL;
3668 
3669   return
3670     add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
3671 				 NULL_TREE, arglist, return_type, access_path,
3672 				 conversion_path, 0, obj, DEDUCE_CALL,
3673 				 /*shortcut_bad_convs=*/false, complain);
3674 }
3675 
3676 /* The CANDS are the set of candidates that were considered for
3677    overload resolution.  Return the set of viable candidates, or CANDS
3678    if none are viable.  If any of the candidates were viable, set
3679    *ANY_VIABLE_P to true.  STRICT_P is true if a candidate should be
3680    considered viable only if it is strictly viable.  */
3681 
3682 static struct z_candidate*
splice_viable(struct z_candidate * cands,bool strict_p,bool * any_viable_p)3683 splice_viable (struct z_candidate *cands,
3684 	       bool strict_p,
3685 	       bool *any_viable_p)
3686 {
3687   struct z_candidate *viable;
3688   struct z_candidate **last_viable;
3689   struct z_candidate **cand;
3690   bool found_strictly_viable = false;
3691 
3692   /* Be strict inside templates, since build_over_call won't actually
3693      do the conversions to get pedwarns.  */
3694   if (processing_template_decl)
3695     strict_p = true;
3696 
3697   viable = NULL;
3698   last_viable = &viable;
3699   *any_viable_p = false;
3700 
3701   cand = &cands;
3702   while (*cand)
3703     {
3704       struct z_candidate *c = *cand;
3705       if (!strict_p
3706 	  && (c->viable == 1 || TREE_CODE (c->fn) == TEMPLATE_DECL))
3707 	{
3708 	  /* Be strict in the presence of a viable candidate.  Also if
3709 	     there are template candidates, so that we get deduction errors
3710 	     for them instead of silently preferring a bad conversion.  */
3711 	  strict_p = true;
3712 	  if (viable && !found_strictly_viable)
3713 	    {
3714 	      /* Put any spliced near matches back onto the main list so
3715 		 that we see them if there is no strict match.  */
3716 	      *any_viable_p = false;
3717 	      *last_viable = cands;
3718 	      cands = viable;
3719 	      viable = NULL;
3720 	      last_viable = &viable;
3721 	    }
3722 	}
3723 
3724       if (strict_p ? c->viable == 1 : c->viable)
3725 	{
3726 	  *last_viable = c;
3727 	  *cand = c->next;
3728 	  c->next = NULL;
3729 	  last_viable = &c->next;
3730 	  *any_viable_p = true;
3731 	  if (c->viable == 1)
3732 	    found_strictly_viable = true;
3733 	}
3734       else
3735 	cand = &c->next;
3736     }
3737 
3738   return viable ? viable : cands;
3739 }
3740 
3741 static bool
any_strictly_viable(struct z_candidate * cands)3742 any_strictly_viable (struct z_candidate *cands)
3743 {
3744   for (; cands; cands = cands->next)
3745     if (cands->viable == 1)
3746       return true;
3747   return false;
3748 }
3749 
3750 /* OBJ is being used in an expression like "OBJ.f (...)".  In other
3751    words, it is about to become the "this" pointer for a member
3752    function call.  Take the address of the object.  */
3753 
3754 static tree
build_this(tree obj)3755 build_this (tree obj)
3756 {
3757   /* In a template, we are only concerned about the type of the
3758      expression, so we can take a shortcut.  */
3759   if (processing_template_decl)
3760     return build_address (obj);
3761 
3762   return cp_build_addr_expr (obj, tf_warning_or_error);
3763 }
3764 
3765 /* Returns true iff functions are equivalent. Equivalent functions are
3766    not '==' only if one is a function-local extern function or if
3767    both are extern "C".  */
3768 
3769 static inline int
equal_functions(tree fn1,tree fn2)3770 equal_functions (tree fn1, tree fn2)
3771 {
3772   if (TREE_CODE (fn1) != TREE_CODE (fn2))
3773     return 0;
3774   if (TREE_CODE (fn1) == TEMPLATE_DECL)
3775     return fn1 == fn2;
3776   if (DECL_LOCAL_DECL_P (fn1) || DECL_LOCAL_DECL_P (fn2)
3777       || DECL_EXTERN_C_FUNCTION_P (fn1))
3778     return decls_match (fn1, fn2);
3779   return fn1 == fn2;
3780 }
3781 
3782 /* Print information about a candidate FN being rejected due to INFO.  */
3783 
3784 static void
print_conversion_rejection(location_t loc,struct conversion_info * info,tree fn)3785 print_conversion_rejection (location_t loc, struct conversion_info *info,
3786 			    tree fn)
3787 {
3788   tree from = info->from;
3789   if (!TYPE_P (from))
3790     from = lvalue_type (from);
3791   if (info->n_arg == -1)
3792     {
3793       /* Conversion of implicit `this' argument failed.  */
3794       if (!TYPE_P (info->from))
3795 	/* A bad conversion for 'this' must be discarding cv-quals.  */
3796 	inform (loc, "  passing %qT as %<this%> "
3797 		"argument discards qualifiers",
3798 		from);
3799       else
3800 	inform (loc, "  no known conversion for implicit "
3801 		"%<this%> parameter from %qH to %qI",
3802 		from, info->to_type);
3803     }
3804   else if (!TYPE_P (info->from))
3805     {
3806       if (info->n_arg >= 0)
3807 	inform (loc, "  conversion of argument %d would be ill-formed:",
3808 		info->n_arg + 1);
3809       perform_implicit_conversion (info->to_type, info->from,
3810 				   tf_warning_or_error);
3811     }
3812   else if (info->n_arg == -2)
3813     /* Conversion of conversion function return value failed.  */
3814     inform (loc, "  no known conversion from %qH to %qI",
3815 	    from, info->to_type);
3816   else
3817     {
3818       if (TREE_CODE (fn) == FUNCTION_DECL)
3819 	loc = get_fndecl_argument_location (fn, info->n_arg);
3820       inform (loc, "  no known conversion for argument %d from %qH to %qI",
3821 	      info->n_arg + 1, from, info->to_type);
3822     }
3823 }
3824 
3825 /* Print information about a candidate with WANT parameters and we found
3826    HAVE.  */
3827 
3828 static void
print_arity_information(location_t loc,unsigned int have,unsigned int want,bool least_p)3829 print_arity_information (location_t loc, unsigned int have, unsigned int want,
3830 			 bool least_p)
3831 {
3832   if (least_p)
3833     inform_n (loc, want,
3834 	      "  candidate expects at least %d argument, %d provided",
3835 	      "  candidate expects at least %d arguments, %d provided",
3836 	      want, have);
3837   else
3838     inform_n (loc, want,
3839 	      "  candidate expects %d argument, %d provided",
3840 	      "  candidate expects %d arguments, %d provided",
3841 	      want, have);
3842 }
3843 
3844 /* Print information about one overload candidate CANDIDATE.  MSGSTR
3845    is the text to print before the candidate itself.
3846 
3847    NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
3848    to have been run through gettext by the caller.  This wart makes
3849    life simpler in print_z_candidates and for the translators.  */
3850 
3851 static void
print_z_candidate(location_t loc,const char * msgstr,struct z_candidate * candidate)3852 print_z_candidate (location_t loc, const char *msgstr,
3853 		   struct z_candidate *candidate)
3854 {
3855   const char *msg = (msgstr == NULL
3856 		     ? ""
3857 		     : ACONCAT ((_(msgstr), " ", NULL)));
3858   tree fn = candidate->fn;
3859   if (flag_new_inheriting_ctors)
3860     fn = strip_inheriting_ctors (fn);
3861   location_t cloc = location_of (fn);
3862 
3863   if (identifier_p (fn))
3864     {
3865       cloc = loc;
3866       if (candidate->num_convs == 3)
3867 	inform (cloc, "%s%<%D(%T, %T, %T)%> (built-in)", msg, fn,
3868 		candidate->convs[0]->type,
3869 		candidate->convs[1]->type,
3870 		candidate->convs[2]->type);
3871       else if (candidate->num_convs == 2)
3872 	inform (cloc, "%s%<%D(%T, %T)%> (built-in)", msg, fn,
3873 		candidate->convs[0]->type,
3874 		candidate->convs[1]->type);
3875       else
3876 	inform (cloc, "%s%<%D(%T)%> (built-in)", msg, fn,
3877 		candidate->convs[0]->type);
3878     }
3879   else if (TYPE_P (fn))
3880     inform (cloc, "%s%qT (conversion)", msg, fn);
3881   else if (candidate->viable == -1)
3882     inform (cloc, "%s%#qD (near match)", msg, fn);
3883   else if (DECL_DELETED_FN (fn))
3884     inform (cloc, "%s%#qD (deleted)", msg, fn);
3885   else if (candidate->reversed ())
3886     inform (cloc, "%s%#qD (reversed)", msg, fn);
3887   else if (candidate->rewritten ())
3888     inform (cloc, "%s%#qD (rewritten)", msg, fn);
3889   else
3890     inform (cloc, "%s%#qD", msg, fn);
3891   if (fn != candidate->fn)
3892     {
3893       cloc = location_of (candidate->fn);
3894       inform (cloc, "  inherited here");
3895     }
3896   /* Give the user some information about why this candidate failed.  */
3897   if (candidate->reason != NULL)
3898     {
3899       struct rejection_reason *r = candidate->reason;
3900 
3901       switch (r->code)
3902 	{
3903 	case rr_arity:
3904 	  print_arity_information (cloc, r->u.arity.actual,
3905 				   r->u.arity.expected,
3906 				   r->u.arity.least_p);
3907 	  break;
3908 	case rr_arg_conversion:
3909 	  print_conversion_rejection (cloc, &r->u.conversion, fn);
3910 	  break;
3911 	case rr_bad_arg_conversion:
3912 	  print_conversion_rejection (cloc, &r->u.bad_conversion, fn);
3913 	  break;
3914 	case rr_explicit_conversion:
3915 	  inform (cloc, "  return type %qT of explicit conversion function "
3916 		  "cannot be converted to %qT with a qualification "
3917 		  "conversion", r->u.conversion.from,
3918 		  r->u.conversion.to_type);
3919 	  break;
3920 	case rr_template_conversion:
3921 	  inform (cloc, "  conversion from return type %qT of template "
3922 		  "conversion function specialization to %qT is not an "
3923 		  "exact match", r->u.conversion.from,
3924 		  r->u.conversion.to_type);
3925 	  break;
3926 	case rr_template_unification:
3927 	  /* We use template_unification_error_rejection if unification caused
3928 	     actual non-SFINAE errors, in which case we don't need to repeat
3929 	     them here.  */
3930 	  if (r->u.template_unification.tmpl == NULL_TREE)
3931 	    {
3932 	      inform (cloc, "  substitution of deduced template arguments "
3933 		      "resulted in errors seen above");
3934 	      break;
3935 	    }
3936 	  /* Re-run template unification with diagnostics.  */
3937 	  inform (cloc, "  template argument deduction/substitution failed:");
3938 	  fn_type_unification (r->u.template_unification.tmpl,
3939 			       r->u.template_unification.explicit_targs,
3940 			       (make_tree_vec
3941 				(r->u.template_unification.num_targs)),
3942 			       r->u.template_unification.args,
3943 			       r->u.template_unification.nargs,
3944 			       r->u.template_unification.return_type,
3945 			       r->u.template_unification.strict,
3946 			       r->u.template_unification.flags,
3947 			       NULL, true, false);
3948 	  break;
3949 	case rr_invalid_copy:
3950 	  inform (cloc,
3951 		  "  a constructor taking a single argument of its own "
3952 		  "class type is invalid");
3953 	  break;
3954 	case rr_constraint_failure:
3955 	  diagnose_constraints (cloc, fn, NULL_TREE);
3956 	  break;
3957 	case rr_inherited_ctor:
3958 	  inform (cloc, "  an inherited constructor is not a candidate for "
3959 		  "initialization from an expression of the same or derived "
3960 		  "type");
3961 	  break;
3962 	case rr_none:
3963 	default:
3964 	  /* This candidate didn't have any issues or we failed to
3965 	     handle a particular code.  Either way...  */
3966 	  gcc_unreachable ();
3967 	}
3968     }
3969 }
3970 
3971 static void
print_z_candidates(location_t loc,struct z_candidate * candidates)3972 print_z_candidates (location_t loc, struct z_candidate *candidates)
3973 {
3974   struct z_candidate *cand1;
3975   struct z_candidate **cand2;
3976 
3977   if (!candidates)
3978     return;
3979 
3980   /* Remove non-viable deleted candidates.  */
3981   cand1 = candidates;
3982   for (cand2 = &cand1; *cand2; )
3983     {
3984       if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
3985 	  && !(*cand2)->viable
3986 	  && DECL_DELETED_FN ((*cand2)->fn))
3987 	*cand2 = (*cand2)->next;
3988       else
3989 	cand2 = &(*cand2)->next;
3990     }
3991   /* ...if there are any non-deleted ones.  */
3992   if (cand1)
3993     candidates = cand1;
3994 
3995   /* There may be duplicates in the set of candidates.  We put off
3996      checking this condition as long as possible, since we have no way
3997      to eliminate duplicates from a set of functions in less than n^2
3998      time.  Now we are about to emit an error message, so it is more
3999      permissible to go slowly.  */
4000   for (cand1 = candidates; cand1; cand1 = cand1->next)
4001     {
4002       tree fn = cand1->fn;
4003       /* Skip builtin candidates and conversion functions.  */
4004       if (!DECL_P (fn))
4005 	continue;
4006       cand2 = &cand1->next;
4007       while (*cand2)
4008 	{
4009 	  if (DECL_P ((*cand2)->fn)
4010 	      && equal_functions (fn, (*cand2)->fn))
4011 	    *cand2 = (*cand2)->next;
4012 	  else
4013 	    cand2 = &(*cand2)->next;
4014 	}
4015     }
4016 
4017   for (; candidates; candidates = candidates->next)
4018     print_z_candidate (loc, N_("candidate:"), candidates);
4019 }
4020 
4021 /* USER_SEQ is a user-defined conversion sequence, beginning with a
4022    USER_CONV.  STD_SEQ is the standard conversion sequence applied to
4023    the result of the conversion function to convert it to the final
4024    desired type.  Merge the two sequences into a single sequence,
4025    and return the merged sequence.  */
4026 
4027 static conversion *
merge_conversion_sequences(conversion * user_seq,conversion * std_seq)4028 merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
4029 {
4030   conversion **t;
4031   bool bad = user_seq->bad_p;
4032 
4033   gcc_assert (user_seq->kind == ck_user);
4034 
4035   /* Find the end of the second conversion sequence.  */
4036   for (t = &std_seq; (*t)->kind != ck_identity; t = &((*t)->u.next))
4037     {
4038       /* The entire sequence is a user-conversion sequence.  */
4039       (*t)->user_conv_p = true;
4040       if (bad)
4041 	(*t)->bad_p = true;
4042     }
4043 
4044   if ((*t)->rvaluedness_matches_p)
4045     /* We're binding a reference directly to the result of the conversion.
4046        build_user_type_conversion_1 stripped the REFERENCE_TYPE from the return
4047        type, but we want it back.  */
4048     user_seq->type = TREE_TYPE (TREE_TYPE (user_seq->cand->fn));
4049 
4050   /* Replace the identity conversion with the user conversion
4051      sequence.  */
4052   *t = user_seq;
4053 
4054   return std_seq;
4055 }
4056 
4057 /* Handle overload resolution for initializing an object of class type from
4058    an initializer list.  First we look for a suitable constructor that
4059    takes a std::initializer_list; if we don't find one, we then look for a
4060    non-list constructor.
4061 
4062    Parameters are as for add_candidates, except that the arguments are in
4063    the form of a CONSTRUCTOR (the initializer list) rather than a vector, and
4064    the RETURN_TYPE parameter is replaced by TOTYPE, the desired type.  */
4065 
4066 static void
add_list_candidates(tree fns,tree first_arg,const vec<tree,va_gc> * args,tree totype,tree explicit_targs,bool template_only,tree conversion_path,tree access_path,int flags,struct z_candidate ** candidates,tsubst_flags_t complain)4067 add_list_candidates (tree fns, tree first_arg,
4068 		     const vec<tree, va_gc> *args, tree totype,
4069 		     tree explicit_targs, bool template_only,
4070 		     tree conversion_path, tree access_path,
4071 		     int flags,
4072 		     struct z_candidate **candidates,
4073 		     tsubst_flags_t complain)
4074 {
4075   gcc_assert (*candidates == NULL);
4076 
4077   /* We're looking for a ctor for list-initialization.  */
4078   flags |= LOOKUP_LIST_INIT_CTOR;
4079   /* And we don't allow narrowing conversions.  We also use this flag to
4080      avoid the copy constructor call for copy-list-initialization.  */
4081   flags |= LOOKUP_NO_NARROWING;
4082 
4083   unsigned nart = num_artificial_parms_for (OVL_FIRST (fns)) - 1;
4084   tree init_list = (*args)[nart];
4085 
4086   /* Always use the default constructor if the list is empty (DR 990).  */
4087   if (CONSTRUCTOR_NELTS (init_list) == 0
4088       && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype))
4089     ;
4090   /* If the class has a list ctor, try passing the list as a single
4091      argument first, but only consider list ctors.  */
4092   else if (TYPE_HAS_LIST_CTOR (totype))
4093     {
4094       flags |= LOOKUP_LIST_ONLY;
4095       add_candidates (fns, first_arg, args, NULL_TREE,
4096 		      explicit_targs, template_only, conversion_path,
4097 		      access_path, flags, candidates, complain);
4098       if (any_strictly_viable (*candidates))
4099 	return;
4100     }
4101   else if (CONSTRUCTOR_IS_DESIGNATED_INIT (init_list)
4102 	   && !CP_AGGREGATE_TYPE_P (totype))
4103     {
4104       if (complain & tf_error)
4105 	error ("designated initializers cannot be used with a "
4106 	       "non-aggregate type %qT", totype);
4107       return;
4108     }
4109 
4110   /* Expand the CONSTRUCTOR into a new argument vec.  */
4111   vec<tree, va_gc> *new_args;
4112   vec_alloc (new_args, nart + CONSTRUCTOR_NELTS (init_list));
4113   for (unsigned i = 0; i < nart; ++i)
4114     new_args->quick_push ((*args)[i]);
4115   for (unsigned i = 0; i < CONSTRUCTOR_NELTS (init_list); ++i)
4116     new_args->quick_push (CONSTRUCTOR_ELT (init_list, i)->value);
4117 
4118   /* We aren't looking for list-ctors anymore.  */
4119   flags &= ~LOOKUP_LIST_ONLY;
4120   /* We allow more user-defined conversions within an init-list.  */
4121   flags &= ~LOOKUP_NO_CONVERSION;
4122 
4123   add_candidates (fns, first_arg, new_args, NULL_TREE,
4124 		  explicit_targs, template_only, conversion_path,
4125 		  access_path, flags, candidates, complain);
4126 }
4127 
4128 /* Returns the best overload candidate to perform the requested
4129    conversion.  This function is used for three the overloading situations
4130    described in [over.match.copy], [over.match.conv], and [over.match.ref].
4131    If TOTYPE is a REFERENCE_TYPE, we're trying to find a direct binding as
4132    per [dcl.init.ref], so we ignore temporary bindings.  */
4133 
4134 static struct z_candidate *
build_user_type_conversion_1(tree totype,tree expr,int flags,tsubst_flags_t complain)4135 build_user_type_conversion_1 (tree totype, tree expr, int flags,
4136 			      tsubst_flags_t complain)
4137 {
4138   struct z_candidate *candidates, *cand;
4139   tree fromtype;
4140   tree ctors = NULL_TREE;
4141   tree conv_fns = NULL_TREE;
4142   conversion *conv = NULL;
4143   tree first_arg = NULL_TREE;
4144   vec<tree, va_gc> *args = NULL;
4145   bool any_viable_p;
4146   int convflags;
4147 
4148   if (!expr)
4149     return NULL;
4150 
4151   fromtype = TREE_TYPE (expr);
4152 
4153   /* We represent conversion within a hierarchy using RVALUE_CONV and
4154      BASE_CONV, as specified by [over.best.ics]; these become plain
4155      constructor calls, as specified in [dcl.init].  */
4156   gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
4157 	      || !DERIVED_FROM_P (totype, fromtype));
4158 
4159   if (CLASS_TYPE_P (totype))
4160     /* Use lookup_fnfields_slot instead of lookup_fnfields to avoid
4161        creating a garbage BASELINK; constructors can't be inherited.  */
4162     ctors = get_class_binding (totype, complete_ctor_identifier);
4163 
4164   tree to_nonref = non_reference (totype);
4165   if (MAYBE_CLASS_TYPE_P (fromtype))
4166     {
4167       if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
4168 	  (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
4169 	   && DERIVED_FROM_P (to_nonref, fromtype)))
4170 	{
4171 	  /* [class.conv.fct] A conversion function is never used to
4172 	     convert a (possibly cv-qualified) object to the (possibly
4173 	     cv-qualified) same object type (or a reference to it), to a
4174 	     (possibly cv-qualified) base class of that type (or a
4175 	     reference to it)...  */
4176 	}
4177       else
4178 	conv_fns = lookup_conversions (fromtype);
4179     }
4180 
4181   candidates = 0;
4182   flags |= LOOKUP_NO_CONVERSION;
4183   if (BRACE_ENCLOSED_INITIALIZER_P (expr))
4184     flags |= LOOKUP_NO_NARROWING;
4185   /* Prevent add_candidates from treating a non-strictly viable candidate
4186      as unviable.  */
4187   complain |= tf_conv;
4188 
4189   /* It's OK to bind a temporary for converting constructor arguments, but
4190      not in converting the return value of a conversion operator.  */
4191   convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION
4192 	       | (flags & LOOKUP_NO_NARROWING));
4193   flags &= ~LOOKUP_NO_TEMP_BIND;
4194 
4195   if (ctors)
4196     {
4197       int ctorflags = flags;
4198 
4199       first_arg = build_dummy_object (totype);
4200 
4201       /* We should never try to call the abstract or base constructor
4202 	 from here.  */
4203       gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_FIRST (ctors))
4204 		  && !DECL_HAS_VTT_PARM_P (OVL_FIRST (ctors)));
4205 
4206       args = make_tree_vector_single (expr);
4207       if (BRACE_ENCLOSED_INITIALIZER_P (expr))
4208 	{
4209 	  /* List-initialization.  */
4210 	  add_list_candidates (ctors, first_arg, args, totype, NULL_TREE,
4211 			       false, TYPE_BINFO (totype), TYPE_BINFO (totype),
4212 			       ctorflags, &candidates, complain);
4213 	}
4214       else
4215 	{
4216 	  add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
4217 			  TYPE_BINFO (totype), TYPE_BINFO (totype),
4218 			  ctorflags, &candidates, complain);
4219 	}
4220 
4221       for (cand = candidates; cand; cand = cand->next)
4222 	{
4223 	  cand->second_conv = build_identity_conv (totype, NULL_TREE);
4224 
4225 	  /* If totype isn't a reference, and LOOKUP_ONLYCONVERTING is
4226 	     set, then this is copy-initialization.  In that case, "The
4227 	     result of the call is then used to direct-initialize the
4228 	     object that is the destination of the copy-initialization."
4229 	     [dcl.init]
4230 
4231 	     We represent this in the conversion sequence with an
4232 	     rvalue conversion, which means a constructor call.  */
4233 	  if (!TYPE_REF_P (totype)
4234 	      && cxx_dialect < cxx17
4235 	      && (flags & LOOKUP_ONLYCONVERTING)
4236 	      && !(convflags & LOOKUP_NO_TEMP_BIND))
4237 	    cand->second_conv
4238 	      = build_conv (ck_rvalue, totype, cand->second_conv);
4239 	}
4240     }
4241 
4242   if (conv_fns)
4243     {
4244       if (BRACE_ENCLOSED_INITIALIZER_P (expr))
4245 	first_arg = CONSTRUCTOR_ELT (expr, 0)->value;
4246       else
4247 	first_arg = expr;
4248     }
4249 
4250   for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
4251     {
4252       tree conversion_path = TREE_PURPOSE (conv_fns);
4253       struct z_candidate *old_candidates;
4254 
4255       /* If LOOKUP_NO_CONVERSION, don't consider a conversion function that
4256 	 would need an addional user-defined conversion, i.e. if the return
4257 	 type differs in class-ness from the desired type.  So we avoid
4258 	 considering operator bool when calling a copy constructor.
4259 
4260 	 This optimization avoids the failure in PR97600, and is allowed by
4261 	 [temp.inst]/9: "If the function selected by overload resolution can be
4262 	 determined without instantiating a class template definition, it is
4263 	 unspecified whether that instantiation actually takes place."	*/
4264       tree convtype = non_reference (TREE_TYPE (conv_fns));
4265       if ((flags & LOOKUP_NO_CONVERSION)
4266 	  && !WILDCARD_TYPE_P (convtype)
4267 	  && (CLASS_TYPE_P (to_nonref)
4268 	      != CLASS_TYPE_P (convtype)))
4269 	continue;
4270 
4271       /* If we are called to convert to a reference type, we are trying to
4272 	 find a direct binding, so don't even consider temporaries.  If
4273 	 we don't find a direct binding, the caller will try again to
4274 	 look for a temporary binding.  */
4275       if (TYPE_REF_P (totype))
4276 	convflags |= LOOKUP_NO_TEMP_BIND;
4277 
4278       old_candidates = candidates;
4279       add_candidates (TREE_VALUE (conv_fns), first_arg, NULL, totype,
4280 		      NULL_TREE, false,
4281 		      conversion_path, TYPE_BINFO (fromtype),
4282 		      flags, &candidates, complain);
4283 
4284       for (cand = candidates; cand != old_candidates; cand = cand->next)
4285 	{
4286 	  if (cand->viable == 0)
4287 	    /* Already rejected, don't change to -1.  */
4288 	    continue;
4289 
4290 	  tree rettype = TREE_TYPE (TREE_TYPE (cand->fn));
4291 	  conversion *ics
4292 	    = implicit_conversion (totype,
4293 				   rettype,
4294 				   0,
4295 				   /*c_cast_p=*/false, convflags,
4296 				   complain);
4297 
4298 	  /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
4299 	     copy-initialization.  In that case, "The result of the
4300 	     call is then used to direct-initialize the object that is
4301 	     the destination of the copy-initialization."  [dcl.init]
4302 
4303 	     We represent this in the conversion sequence with an
4304 	     rvalue conversion, which means a constructor call.  But
4305 	     don't add a second rvalue conversion if there's already
4306 	     one there.  Which there really shouldn't be, but it's
4307 	     harmless since we'd add it here anyway. */
4308 	  if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
4309 	      && !(convflags & LOOKUP_NO_TEMP_BIND))
4310 	    ics = build_conv (ck_rvalue, totype, ics);
4311 
4312 	  cand->second_conv = ics;
4313 
4314 	  if (!ics)
4315 	    {
4316 	      cand->viable = 0;
4317 	      cand->reason = arg_conversion_rejection (NULL_TREE, -2,
4318 						       rettype, totype,
4319 						       EXPR_LOCATION (expr));
4320 	    }
4321 	  else if (TYPE_REF_P (totype) && !ics->rvaluedness_matches_p
4322 		   /* Limit this to non-templates for now (PR90546).  */
4323 		   && !cand->template_decl
4324 		   && TREE_CODE (TREE_TYPE (totype)) != FUNCTION_TYPE)
4325 	    {
4326 	      /* If we are called to convert to a reference type, we are trying
4327 		 to find a direct binding per [over.match.ref], so rvaluedness
4328 		 must match for non-functions.  */
4329 	      cand->viable = 0;
4330 	    }
4331 	  else if (DECL_NONCONVERTING_P (cand->fn)
4332 		   && ics->rank > cr_exact)
4333 	    {
4334 	      /* 13.3.1.5: For direct-initialization, those explicit
4335 		 conversion functions that are not hidden within S and
4336 		 yield type T or a type that can be converted to type T
4337 		 with a qualification conversion (4.4) are also candidate
4338 		 functions.  */
4339 	      /* 13.3.1.6 doesn't have a parallel restriction, but it should;
4340 		 I've raised this issue with the committee. --jason 9/2011 */
4341 	      cand->viable = -1;
4342 	      cand->reason = explicit_conversion_rejection (rettype, totype);
4343 	    }
4344 	  else if (cand->viable == 1 && ics->bad_p)
4345 	    {
4346 	      cand->viable = -1;
4347 	      cand->reason
4348 		= bad_arg_conversion_rejection (NULL_TREE, -2,
4349 						rettype, totype,
4350 						EXPR_LOCATION (expr));
4351 	    }
4352 	  else if (primary_template_specialization_p (cand->fn)
4353 		   && ics->rank > cr_exact)
4354 	    {
4355 	      /* 13.3.3.1.2: If the user-defined conversion is specified by
4356 		 a specialization of a conversion function template, the
4357 		 second standard conversion sequence shall have exact match
4358 		 rank.  */
4359 	      cand->viable = -1;
4360 	      cand->reason = template_conversion_rejection (rettype, totype);
4361 	    }
4362 	}
4363     }
4364 
4365   candidates = splice_viable (candidates, false, &any_viable_p);
4366   if (!any_viable_p)
4367     {
4368       if (args)
4369 	release_tree_vector (args);
4370       return NULL;
4371     }
4372 
4373   cand = tourney (candidates, complain);
4374   if (cand == NULL)
4375     {
4376       if (complain & tf_error)
4377 	{
4378 	  auto_diagnostic_group d;
4379 	  error_at (cp_expr_loc_or_input_loc (expr),
4380 		    "conversion from %qH to %qI is ambiguous",
4381 		    fromtype, totype);
4382 	  print_z_candidates (location_of (expr), candidates);
4383 	}
4384 
4385       cand = candidates;	/* any one will do */
4386       cand->second_conv = build_ambiguous_conv (totype, expr);
4387       cand->second_conv->user_conv_p = true;
4388       if (!any_strictly_viable (candidates))
4389 	cand->second_conv->bad_p = true;
4390       if (flags & LOOKUP_ONLYCONVERTING)
4391 	cand->second_conv->need_temporary_p = true;
4392       /* If there are viable candidates, don't set ICS_BAD_FLAG; an
4393 	 ambiguous conversion is no worse than another user-defined
4394 	 conversion.  */
4395 
4396       return cand;
4397     }
4398 
4399   tree convtype;
4400   if (!DECL_CONSTRUCTOR_P (cand->fn))
4401     convtype = non_reference (TREE_TYPE (TREE_TYPE (cand->fn)));
4402   else if (cand->second_conv->kind == ck_rvalue)
4403     /* DR 5: [in the first step of copy-initialization]...if the function
4404        is a constructor, the call initializes a temporary of the
4405        cv-unqualified version of the destination type. */
4406     convtype = cv_unqualified (totype);
4407   else
4408     convtype = totype;
4409   /* Build the user conversion sequence.  */
4410   conv = build_conv
4411     (ck_user,
4412      convtype,
4413      build_identity_conv (TREE_TYPE (expr), expr));
4414   conv->cand = cand;
4415   if (cand->viable == -1)
4416     conv->bad_p = true;
4417 
4418   /* We're performing the maybe-rvalue overload resolution and
4419      a conversion function is in play.  Reject converting the return
4420      value of the conversion function to a base class.  */
4421   if ((flags & LOOKUP_PREFER_RVALUE) && !DECL_CONSTRUCTOR_P (cand->fn))
4422     for (conversion *t = cand->second_conv; t; t = next_conversion (t))
4423       if (t->kind == ck_base)
4424 	return NULL;
4425 
4426   /* Remember that this was a list-initialization.  */
4427   if (flags & LOOKUP_NO_NARROWING)
4428     conv->check_narrowing = true;
4429 
4430   /* Combine it with the second conversion sequence.  */
4431   cand->second_conv = merge_conversion_sequences (conv,
4432 						  cand->second_conv);
4433 
4434   return cand;
4435 }
4436 
4437 /* Wrapper for above. */
4438 
4439 tree
build_user_type_conversion(tree totype,tree expr,int flags,tsubst_flags_t complain)4440 build_user_type_conversion (tree totype, tree expr, int flags,
4441 			    tsubst_flags_t complain)
4442 {
4443   struct z_candidate *cand;
4444   tree ret;
4445 
4446   auto_cond_timevar tv (TV_OVERLOAD);
4447   cand = build_user_type_conversion_1 (totype, expr, flags, complain);
4448 
4449   if (cand)
4450     {
4451       if (cand->second_conv->kind == ck_ambig)
4452 	ret = error_mark_node;
4453       else
4454         {
4455           expr = convert_like (cand->second_conv, expr, complain);
4456           ret = convert_from_reference (expr);
4457         }
4458     }
4459   else
4460     ret = NULL_TREE;
4461 
4462   return ret;
4463 }
4464 
4465 /* Give a helpful diagnostic when implicit_conversion fails.  */
4466 
4467 static void
implicit_conversion_error(location_t loc,tree type,tree expr)4468 implicit_conversion_error (location_t loc, tree type, tree expr)
4469 {
4470   tsubst_flags_t complain = tf_warning_or_error;
4471 
4472   /* If expr has unknown type, then it is an overloaded function.
4473      Call instantiate_type to get good error messages.  */
4474   if (TREE_TYPE (expr) == unknown_type_node)
4475     instantiate_type (type, expr, complain);
4476   else if (invalid_nonstatic_memfn_p (loc, expr, complain))
4477     /* We gave an error.  */;
4478   else if (BRACE_ENCLOSED_INITIALIZER_P (expr)
4479 	   && CONSTRUCTOR_IS_DESIGNATED_INIT (expr)
4480 	   && !CP_AGGREGATE_TYPE_P (type))
4481     error_at (loc, "designated initializers cannot be used with a "
4482 	      "non-aggregate type %qT", type);
4483   else
4484     {
4485       range_label_for_type_mismatch label (TREE_TYPE (expr), type);
4486       gcc_rich_location rich_loc (loc, &label);
4487       error_at (&rich_loc, "could not convert %qE from %qH to %qI",
4488 		expr, TREE_TYPE (expr), type);
4489     }
4490 }
4491 
4492 /* Worker for build_converted_constant_expr.  */
4493 
4494 static tree
build_converted_constant_expr_internal(tree type,tree expr,int flags,tsubst_flags_t complain)4495 build_converted_constant_expr_internal (tree type, tree expr,
4496 					int flags, tsubst_flags_t complain)
4497 {
4498   conversion *conv;
4499   void *p;
4500   tree t;
4501   location_t loc = cp_expr_loc_or_input_loc (expr);
4502 
4503   if (error_operand_p (expr))
4504     return error_mark_node;
4505 
4506   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
4507   p = conversion_obstack_alloc (0);
4508 
4509   conv = implicit_conversion (type, TREE_TYPE (expr), expr,
4510 			      /*c_cast_p=*/false, flags, complain);
4511 
4512   /* A converted constant expression of type T is an expression, implicitly
4513      converted to type T, where the converted expression is a constant
4514      expression and the implicit conversion sequence contains only
4515 
4516        * user-defined conversions,
4517        * lvalue-to-rvalue conversions (7.1),
4518        * array-to-pointer conversions (7.2),
4519        * function-to-pointer conversions (7.3),
4520        * qualification conversions (7.5),
4521        * integral promotions (7.6),
4522        * integral conversions (7.8) other than narrowing conversions (11.6.4),
4523        * null pointer conversions (7.11) from std::nullptr_t,
4524        * null member pointer conversions (7.12) from std::nullptr_t, and
4525        * function pointer conversions (7.13),
4526 
4527      and where the reference binding (if any) binds directly.  */
4528 
4529   for (conversion *c = conv;
4530        c && c->kind != ck_identity;
4531        c = next_conversion (c))
4532     {
4533       switch (c->kind)
4534 	{
4535 	  /* A conversion function is OK.  If it isn't constexpr, we'll
4536 	     complain later that the argument isn't constant.  */
4537 	case ck_user:
4538 	  /* List-initialization is OK.  */
4539 	case ck_aggr:
4540 	  /* The lvalue-to-rvalue conversion is OK.  */
4541 	case ck_rvalue:
4542 	  /* Array-to-pointer and function-to-pointer.  */
4543 	case ck_lvalue:
4544 	  /* Function pointer conversions.  */
4545 	case ck_fnptr:
4546 	  /* Qualification conversions.  */
4547 	case ck_qual:
4548 	  break;
4549 
4550 	case ck_ref_bind:
4551 	  if (c->need_temporary_p)
4552 	    {
4553 	      if (complain & tf_error)
4554 		error_at (loc, "initializing %qH with %qI in converted "
4555 			  "constant expression does not bind directly",
4556 			  type, next_conversion (c)->type);
4557 	      conv = NULL;
4558 	    }
4559 	  break;
4560 
4561 	case ck_base:
4562 	case ck_pmem:
4563 	case ck_ptr:
4564 	case ck_std:
4565 	  t = next_conversion (c)->type;
4566 	  if (INTEGRAL_OR_ENUMERATION_TYPE_P (t)
4567 	      && INTEGRAL_OR_ENUMERATION_TYPE_P (type))
4568 	    /* Integral promotion or conversion.  */
4569 	    break;
4570 	  if (NULLPTR_TYPE_P (t))
4571 	    /* Conversion from nullptr to pointer or pointer-to-member.  */
4572 	    break;
4573 
4574 	  if (complain & tf_error)
4575 	    error_at (loc, "conversion from %qH to %qI in a "
4576 		      "converted constant expression", t, type);
4577 	  /* fall through.  */
4578 
4579 	default:
4580 	  conv = NULL;
4581 	  break;
4582 	}
4583     }
4584 
4585   /* Avoid confusing convert_nontype_argument by introducing
4586      a redundant conversion to the same reference type.  */
4587   if (conv && conv->kind == ck_ref_bind
4588       && REFERENCE_REF_P (expr))
4589     {
4590       tree ref = TREE_OPERAND (expr, 0);
4591       if (same_type_p (type, TREE_TYPE (ref)))
4592 	return ref;
4593     }
4594 
4595   if (conv)
4596     {
4597       /* Don't copy a class in a template.  */
4598       if (CLASS_TYPE_P (type) && conv->kind == ck_rvalue
4599 	  && processing_template_decl)
4600 	conv = next_conversion (conv);
4601 
4602       /* Issuing conversion warnings for value-dependent expressions is
4603 	 likely too noisy.  */
4604       warning_sentinel w (warn_conversion);
4605       conv->check_narrowing = true;
4606       conv->check_narrowing_const_only = true;
4607       expr = convert_like (conv, expr, complain);
4608     }
4609   else
4610     {
4611       if (complain & tf_error)
4612 	implicit_conversion_error (loc, type, expr);
4613       expr = error_mark_node;
4614     }
4615 
4616   /* Free all the conversions we allocated.  */
4617   obstack_free (&conversion_obstack, p);
4618 
4619   return expr;
4620 }
4621 
4622 /* Subroutine of convert_nontype_argument.
4623 
4624    EXPR is an expression used in a context that requires a converted
4625    constant-expression, such as a template non-type parameter.  Do any
4626    necessary conversions (that are permitted for converted
4627    constant-expressions) to convert it to the desired type.
4628 
4629    This function doesn't consider explicit conversion functions.  If
4630    you mean to use "a contextually converted constant expression of type
4631    bool", use build_converted_constant_bool_expr.
4632 
4633    If conversion is successful, returns the converted expression;
4634    otherwise, returns error_mark_node.  */
4635 
4636 tree
build_converted_constant_expr(tree type,tree expr,tsubst_flags_t complain)4637 build_converted_constant_expr (tree type, tree expr, tsubst_flags_t complain)
4638 {
4639   return build_converted_constant_expr_internal (type, expr, LOOKUP_IMPLICIT,
4640 						 complain);
4641 }
4642 
4643 /* Used to create "a contextually converted constant expression of type
4644    bool".  This differs from build_converted_constant_expr in that it
4645    also considers explicit conversion functions.  */
4646 
4647 tree
build_converted_constant_bool_expr(tree expr,tsubst_flags_t complain)4648 build_converted_constant_bool_expr (tree expr, tsubst_flags_t complain)
4649 {
4650   return build_converted_constant_expr_internal (boolean_type_node, expr,
4651 						 LOOKUP_NORMAL, complain);
4652 }
4653 
4654 /* Do any initial processing on the arguments to a function call.  */
4655 
4656 vec<tree, va_gc> *
resolve_args(vec<tree,va_gc> * args,tsubst_flags_t complain)4657 resolve_args (vec<tree, va_gc> *args, tsubst_flags_t complain)
4658 {
4659   unsigned int ix;
4660   tree arg;
4661 
4662   FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
4663     {
4664       if (error_operand_p (arg))
4665 	return NULL;
4666       else if (VOID_TYPE_P (TREE_TYPE (arg)))
4667 	{
4668 	  if (complain & tf_error)
4669 	    error_at (cp_expr_loc_or_input_loc (arg),
4670 		      "invalid use of void expression");
4671 	  return NULL;
4672 	}
4673       else if (invalid_nonstatic_memfn_p (EXPR_LOCATION (arg), arg, complain))
4674 	return NULL;
4675 
4676       /* Force auto deduction now.  Omit tf_warning to avoid redundant
4677 	 deprecated warning on deprecated-14.C.  */
4678       if (!mark_single_function (arg, complain & ~tf_warning))
4679 	return NULL;
4680     }
4681   return args;
4682 }
4683 
4684 /* Perform overload resolution on FN, which is called with the ARGS.
4685 
4686    Return the candidate function selected by overload resolution, or
4687    NULL if the event that overload resolution failed.  In the case
4688    that overload resolution fails, *CANDIDATES will be the set of
4689    candidates considered, and ANY_VIABLE_P will be set to true or
4690    false to indicate whether or not any of the candidates were
4691    viable.
4692 
4693    The ARGS should already have gone through RESOLVE_ARGS before this
4694    function is called.  */
4695 
4696 static struct z_candidate *
perform_overload_resolution(tree fn,const vec<tree,va_gc> * args,struct z_candidate ** candidates,bool * any_viable_p,tsubst_flags_t complain)4697 perform_overload_resolution (tree fn,
4698 			     const vec<tree, va_gc> *args,
4699 			     struct z_candidate **candidates,
4700 			     bool *any_viable_p, tsubst_flags_t complain)
4701 {
4702   struct z_candidate *cand;
4703   tree explicit_targs;
4704   int template_only;
4705 
4706   auto_cond_timevar tv (TV_OVERLOAD);
4707 
4708   explicit_targs = NULL_TREE;
4709   template_only = 0;
4710 
4711   *candidates = NULL;
4712   *any_viable_p = true;
4713 
4714   /* Check FN.  */
4715   gcc_assert (OVL_P (fn) || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
4716 
4717   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4718     {
4719       explicit_targs = TREE_OPERAND (fn, 1);
4720       fn = TREE_OPERAND (fn, 0);
4721       template_only = 1;
4722     }
4723 
4724   /* Add the various candidate functions.  */
4725   add_candidates (fn, NULL_TREE, args, NULL_TREE,
4726 		  explicit_targs, template_only,
4727 		  /*conversion_path=*/NULL_TREE,
4728 		  /*access_path=*/NULL_TREE,
4729 		  LOOKUP_NORMAL,
4730 		  candidates, complain);
4731 
4732   *candidates = splice_viable (*candidates, false, any_viable_p);
4733   if (*any_viable_p)
4734     cand = tourney (*candidates, complain);
4735   else
4736     cand = NULL;
4737 
4738   return cand;
4739 }
4740 
4741 /* Print an error message about being unable to build a call to FN with
4742    ARGS.  ANY_VIABLE_P indicates whether any candidate functions could
4743    be located; CANDIDATES is a possibly empty list of such
4744    functions.  */
4745 
4746 static void
print_error_for_call_failure(tree fn,const vec<tree,va_gc> * args,struct z_candidate * candidates)4747 print_error_for_call_failure (tree fn, const vec<tree, va_gc> *args,
4748 			      struct z_candidate *candidates)
4749 {
4750   tree targs = NULL_TREE;
4751   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
4752     {
4753       targs = TREE_OPERAND (fn, 1);
4754       fn = TREE_OPERAND (fn, 0);
4755     }
4756   tree name = OVL_NAME (fn);
4757   location_t loc = location_of (name);
4758   if (targs)
4759     name = lookup_template_function (name, targs);
4760 
4761   auto_diagnostic_group d;
4762   if (!any_strictly_viable (candidates))
4763     error_at (loc, "no matching function for call to %<%D(%A)%>",
4764 	      name, build_tree_list_vec (args));
4765   else
4766     error_at (loc, "call of overloaded %<%D(%A)%> is ambiguous",
4767 	      name, build_tree_list_vec (args));
4768   if (candidates)
4769     print_z_candidates (loc, candidates);
4770 }
4771 
4772 /* Perform overload resolution on the set of deduction guides DGUIDES
4773    using ARGS.  Returns the selected deduction guide, or error_mark_node
4774    if overload resolution fails.  */
4775 
4776 tree
perform_dguide_overload_resolution(tree dguides,const vec<tree,va_gc> * args,tsubst_flags_t complain)4777 perform_dguide_overload_resolution (tree dguides, const vec<tree, va_gc> *args,
4778 				    tsubst_flags_t complain)
4779 {
4780   z_candidate *candidates;
4781   bool any_viable_p;
4782   tree result;
4783 
4784   gcc_assert (deduction_guide_p (OVL_FIRST (dguides)));
4785 
4786   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
4787   void *p = conversion_obstack_alloc (0);
4788 
4789   z_candidate *cand = perform_overload_resolution (dguides, args, &candidates,
4790 						   &any_viable_p, complain);
4791   if (!cand)
4792     {
4793       if (complain & tf_error)
4794 	print_error_for_call_failure (dguides, args, candidates);
4795       result = error_mark_node;
4796     }
4797   else
4798     result = cand->fn;
4799 
4800   /* Free all the conversions we allocated.  */
4801   obstack_free (&conversion_obstack, p);
4802 
4803   return result;
4804 }
4805 
4806 /* Return an expression for a call to FN (a namespace-scope function,
4807    or a static member function) with the ARGS.  This may change
4808    ARGS.  */
4809 
4810 tree
build_new_function_call(tree fn,vec<tree,va_gc> ** args,tsubst_flags_t complain)4811 build_new_function_call (tree fn, vec<tree, va_gc> **args,
4812 			 tsubst_flags_t complain)
4813 {
4814   struct z_candidate *candidates, *cand;
4815   bool any_viable_p;
4816   void *p;
4817   tree result;
4818 
4819   if (args != NULL && *args != NULL)
4820     {
4821       *args = resolve_args (*args, complain);
4822       if (*args == NULL)
4823 	return error_mark_node;
4824     }
4825 
4826   if (flag_tm)
4827     tm_malloc_replacement (fn);
4828 
4829   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
4830   p = conversion_obstack_alloc (0);
4831 
4832   cand = perform_overload_resolution (fn, *args, &candidates, &any_viable_p,
4833 				      complain);
4834 
4835   if (!cand)
4836     {
4837       if (complain & tf_error)
4838 	{
4839 	  // If there is a single (non-viable) function candidate,
4840 	  // let the error be diagnosed by cp_build_function_call_vec.
4841 	  if (!any_viable_p && candidates && ! candidates->next
4842 	      && (TREE_CODE (candidates->fn) == FUNCTION_DECL))
4843 	    return cp_build_function_call_vec (candidates->fn, args, complain);
4844 
4845 	  // Otherwise, emit notes for non-viable candidates.
4846 	  print_error_for_call_failure (fn, *args, candidates);
4847 	}
4848       result = error_mark_node;
4849     }
4850   else
4851     {
4852       result = build_over_call (cand, LOOKUP_NORMAL, complain);
4853     }
4854 
4855   if (flag_coroutines
4856       && result
4857       && TREE_CODE (result) == CALL_EXPR
4858       && DECL_BUILT_IN_CLASS (TREE_OPERAND (CALL_EXPR_FN (result), 0))
4859 	  == BUILT_IN_NORMAL)
4860    result = coro_validate_builtin_call (result);
4861 
4862   /* Free all the conversions we allocated.  */
4863   obstack_free (&conversion_obstack, p);
4864 
4865   return result;
4866 }
4867 
4868 /* Build a call to a global operator new.  FNNAME is the name of the
4869    operator (either "operator new" or "operator new[]") and ARGS are
4870    the arguments provided.  This may change ARGS.  *SIZE points to the
4871    total number of bytes required by the allocation, and is updated if
4872    that is changed here.  *COOKIE_SIZE is non-NULL if a cookie should
4873    be used.  If this function determines that no cookie should be
4874    used, after all, *COOKIE_SIZE is set to NULL_TREE.  If SIZE_CHECK
4875    is not NULL_TREE, it is evaluated before calculating the final
4876    array size, and if it fails, the array size is replaced with
4877    (size_t)-1 (usually triggering a std::bad_alloc exception).  If FN
4878    is non-NULL, it will be set, upon return, to the allocation
4879    function called.  */
4880 
4881 tree
build_operator_new_call(tree fnname,vec<tree,va_gc> ** args,tree * size,tree * cookie_size,tree align_arg,tree size_check,tree * fn,tsubst_flags_t complain)4882 build_operator_new_call (tree fnname, vec<tree, va_gc> **args,
4883 			 tree *size, tree *cookie_size,
4884 			 tree align_arg, tree size_check,
4885 			 tree *fn, tsubst_flags_t complain)
4886 {
4887   tree original_size = *size;
4888   tree fns;
4889   struct z_candidate *candidates;
4890   struct z_candidate *cand = NULL;
4891   bool any_viable_p;
4892 
4893   if (fn)
4894     *fn = NULL_TREE;
4895   /* Set to (size_t)-1 if the size check fails.  */
4896   if (size_check != NULL_TREE)
4897     {
4898       tree errval = TYPE_MAX_VALUE (sizetype);
4899       if (cxx_dialect >= cxx11 && flag_exceptions)
4900 	errval = throw_bad_array_new_length ();
4901       *size = fold_build3 (COND_EXPR, sizetype, size_check,
4902 			   original_size, errval);
4903     }
4904   vec_safe_insert (*args, 0, *size);
4905   *args = resolve_args (*args, complain);
4906   if (*args == NULL)
4907     return error_mark_node;
4908 
4909   /* Based on:
4910 
4911        [expr.new]
4912 
4913        If this lookup fails to find the name, or if the allocated type
4914        is not a class type, the allocation function's name is looked
4915        up in the global scope.
4916 
4917      we disregard block-scope declarations of "operator new".  */
4918   fns = lookup_qualified_name (global_namespace, fnname);
4919 
4920   if (align_arg)
4921     {
4922       vec<tree, va_gc>* align_args
4923 	= vec_copy_and_insert (*args, align_arg, 1);
4924       cand = perform_overload_resolution (fns, align_args, &candidates,
4925 					  &any_viable_p, tf_none);
4926       if (cand)
4927 	*args = align_args;
4928       /* If no aligned allocation function matches, try again without the
4929 	 alignment.  */
4930     }
4931 
4932   /* Figure out what function is being called.  */
4933   if (!cand)
4934     cand = perform_overload_resolution (fns, *args, &candidates, &any_viable_p,
4935 					complain);
4936 
4937   /* If no suitable function could be found, issue an error message
4938      and give up.  */
4939   if (!cand)
4940     {
4941       if (complain & tf_error)
4942 	print_error_for_call_failure (fns, *args, candidates);
4943       return error_mark_node;
4944     }
4945 
4946    /* If a cookie is required, add some extra space.  Whether
4947       or not a cookie is required cannot be determined until
4948       after we know which function was called.  */
4949    if (*cookie_size)
4950      {
4951        bool use_cookie = true;
4952        tree arg_types;
4953 
4954        arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
4955        /* Skip the size_t parameter.  */
4956        arg_types = TREE_CHAIN (arg_types);
4957        /* Check the remaining parameters (if any).  */
4958        if (arg_types
4959 	   && TREE_CHAIN (arg_types) == void_list_node
4960 	   && same_type_p (TREE_VALUE (arg_types),
4961 			   ptr_type_node))
4962 	 use_cookie = false;
4963        /* If we need a cookie, adjust the number of bytes allocated.  */
4964        if (use_cookie)
4965 	 {
4966 	   /* Update the total size.  */
4967 	   *size = size_binop (PLUS_EXPR, original_size, *cookie_size);
4968 	   if (size_check)
4969 	     {
4970 	       /* Set to (size_t)-1 if the size check fails.  */
4971 	       gcc_assert (size_check != NULL_TREE);
4972 	       *size = fold_build3 (COND_EXPR, sizetype, size_check,
4973 				    *size, TYPE_MAX_VALUE (sizetype));
4974 	    }
4975 	   /* Update the argument list to reflect the adjusted size.  */
4976 	   (**args)[0] = *size;
4977 	 }
4978        else
4979 	 *cookie_size = NULL_TREE;
4980      }
4981 
4982    /* Tell our caller which function we decided to call.  */
4983    if (fn)
4984      *fn = cand->fn;
4985 
4986    /* Build the CALL_EXPR.  */
4987    tree ret = build_over_call (cand, LOOKUP_NORMAL, complain);
4988 
4989    /* Set this flag for all callers of this function.  In addition to
4990       new-expressions, this is called for allocating coroutine state; treat
4991       that as an implicit new-expression.  */
4992    tree call = extract_call_expr (ret);
4993    if (TREE_CODE (call) == CALL_EXPR)
4994      CALL_FROM_NEW_OR_DELETE_P (call) = 1;
4995 
4996    return ret;
4997 }
4998 
4999 /* Build a new call to operator().  This may change ARGS.  */
5000 
5001 tree
build_op_call(tree obj,vec<tree,va_gc> ** args,tsubst_flags_t complain)5002 build_op_call (tree obj, vec<tree, va_gc> **args, tsubst_flags_t complain)
5003 {
5004   struct z_candidate *candidates = 0, *cand;
5005   tree fns, convs, first_mem_arg = NULL_TREE;
5006   bool any_viable_p;
5007   tree result = NULL_TREE;
5008   void *p;
5009 
5010   auto_cond_timevar tv (TV_OVERLOAD);
5011 
5012   obj = mark_lvalue_use (obj);
5013 
5014   if (error_operand_p (obj))
5015     return error_mark_node;
5016 
5017   tree type = TREE_TYPE (obj);
5018 
5019   obj = prep_operand (obj);
5020 
5021   if (TYPE_PTRMEMFUNC_P (type))
5022     {
5023       if (complain & tf_error)
5024         /* It's no good looking for an overloaded operator() on a
5025            pointer-to-member-function.  */
5026 	error ("pointer-to-member function %qE cannot be called without "
5027 	       "an object; consider using %<.*%> or %<->*%>", obj);
5028       return error_mark_node;
5029     }
5030 
5031   if (TYPE_BINFO (type))
5032     {
5033       fns = lookup_fnfields (TYPE_BINFO (type), call_op_identifier, 1, complain);
5034       if (fns == error_mark_node)
5035 	return error_mark_node;
5036     }
5037   else
5038     fns = NULL_TREE;
5039 
5040   if (args != NULL && *args != NULL)
5041     {
5042       *args = resolve_args (*args, complain);
5043       if (*args == NULL)
5044 	return error_mark_node;
5045     }
5046 
5047   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
5048   p = conversion_obstack_alloc (0);
5049 
5050   if (fns)
5051     {
5052       first_mem_arg = obj;
5053 
5054       add_candidates (BASELINK_FUNCTIONS (fns),
5055 		      first_mem_arg, *args, NULL_TREE,
5056 		      NULL_TREE, false,
5057 		      BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
5058 		      LOOKUP_NORMAL, &candidates, complain);
5059     }
5060 
5061   convs = lookup_conversions (type);
5062 
5063   for (; convs; convs = TREE_CHAIN (convs))
5064     {
5065       tree totype = TREE_TYPE (convs);
5066 
5067       if (TYPE_PTRFN_P (totype)
5068 	  || TYPE_REFFN_P (totype)
5069 	  || (TYPE_REF_P (totype)
5070 	      && TYPE_PTRFN_P (TREE_TYPE (totype))))
5071 	for (tree fn : ovl_range (TREE_VALUE (convs)))
5072 	  {
5073 	    if (DECL_NONCONVERTING_P (fn))
5074 	      continue;
5075 
5076 	    if (TREE_CODE (fn) == TEMPLATE_DECL)
5077 	      add_template_conv_candidate
5078 		(&candidates, fn, obj, *args, totype,
5079 		 /*access_path=*/NULL_TREE,
5080 		 /*conversion_path=*/NULL_TREE, complain);
5081 	    else
5082 	      add_conv_candidate (&candidates, fn, obj,
5083 				  *args, /*conversion_path=*/NULL_TREE,
5084 				  /*access_path=*/NULL_TREE, complain);
5085 	  }
5086     }
5087 
5088   /* Be strict here because if we choose a bad conversion candidate, the
5089      errors we get won't mention the call context.  */
5090   candidates = splice_viable (candidates, true, &any_viable_p);
5091   if (!any_viable_p)
5092     {
5093       if (complain & tf_error)
5094         {
5095           auto_diagnostic_group d;
5096           error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj),
5097 		 build_tree_list_vec (*args));
5098           print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
5099         }
5100       result = error_mark_node;
5101     }
5102   else
5103     {
5104       cand = tourney (candidates, complain);
5105       if (cand == 0)
5106 	{
5107           if (complain & tf_error)
5108             {
5109               auto_diagnostic_group d;
5110               error ("call of %<(%T) (%A)%> is ambiguous",
5111                      TREE_TYPE (obj), build_tree_list_vec (*args));
5112               print_z_candidates (location_of (TREE_TYPE (obj)), candidates);
5113             }
5114 	  result = error_mark_node;
5115 	}
5116       else if (TREE_CODE (cand->fn) == FUNCTION_DECL
5117 	       && DECL_OVERLOADED_OPERATOR_P (cand->fn)
5118 	       && DECL_OVERLOADED_OPERATOR_IS (cand->fn, CALL_EXPR))
5119 	result = build_over_call (cand, LOOKUP_NORMAL, complain);
5120       else
5121 	{
5122 	  if (TREE_CODE (cand->fn) == FUNCTION_DECL)
5123 	    obj = convert_like_with_context (cand->convs[0], obj, cand->fn,
5124 					     -1, complain);
5125 	  else
5126 	    {
5127 	      gcc_checking_assert (TYPE_P (cand->fn));
5128 	      obj = convert_like (cand->convs[0], obj, complain);
5129 	    }
5130 	  obj = convert_from_reference (obj);
5131 	  result = cp_build_function_call_vec (obj, args, complain);
5132 	}
5133     }
5134 
5135   /* Free all the conversions we allocated.  */
5136   obstack_free (&conversion_obstack, p);
5137 
5138   return result;
5139 }
5140 
5141 /* Called by op_error to prepare format strings suitable for the error
5142    function.  It concatenates a prefix (controlled by MATCH), ERRMSG,
5143    and a suffix (controlled by NTYPES).  */
5144 
5145 static const char *
op_error_string(const char * errmsg,int ntypes,bool match)5146 op_error_string (const char *errmsg, int ntypes, bool match)
5147 {
5148   const char *msg;
5149 
5150   const char *msgp = concat (match ? G_("ambiguous overload for ")
5151 			           : G_("no match for "), errmsg, NULL);
5152 
5153   if (ntypes == 3)
5154     msg = concat (msgp, G_(" (operand types are %qT, %qT, and %qT)"), NULL);
5155   else if (ntypes == 2)
5156     msg = concat (msgp, G_(" (operand types are %qT and %qT)"), NULL);
5157   else
5158     msg = concat (msgp, G_(" (operand type is %qT)"), NULL);
5159 
5160   return msg;
5161 }
5162 
5163 static void
op_error(const op_location_t & loc,enum tree_code code,enum tree_code code2,tree arg1,tree arg2,tree arg3,bool match)5164 op_error (const op_location_t &loc,
5165 	  enum tree_code code, enum tree_code code2,
5166 	  tree arg1, tree arg2, tree arg3, bool match)
5167 {
5168   bool assop = code == MODIFY_EXPR;
5169   const char *opname = OVL_OP_INFO (assop, assop ? code2 : code)->name;
5170 
5171   switch (code)
5172     {
5173     case COND_EXPR:
5174       if (flag_diagnostics_show_caret)
5175 	error_at (loc, op_error_string (G_("ternary %<operator?:%>"),
5176 					3, match),
5177 		  TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
5178       else
5179 	error_at (loc, op_error_string (G_("ternary %<operator?:%> "
5180 					   "in %<%E ? %E : %E%>"), 3, match),
5181 		  arg1, arg2, arg3,
5182 		  TREE_TYPE (arg1), TREE_TYPE (arg2), TREE_TYPE (arg3));
5183       break;
5184 
5185     case POSTINCREMENT_EXPR:
5186     case POSTDECREMENT_EXPR:
5187       if (flag_diagnostics_show_caret)
5188 	error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
5189 		  opname, TREE_TYPE (arg1));
5190       else
5191 	error_at (loc, op_error_string (G_("%<operator%s%> in %<%E%s%>"),
5192 					1, match),
5193 		  opname, arg1, opname, TREE_TYPE (arg1));
5194       break;
5195 
5196     case ARRAY_REF:
5197       if (flag_diagnostics_show_caret)
5198 	error_at (loc, op_error_string (G_("%<operator[]%>"), 2, match),
5199 		  TREE_TYPE (arg1), TREE_TYPE (arg2));
5200       else
5201 	error_at (loc, op_error_string (G_("%<operator[]%> in %<%E[%E]%>"),
5202 					2, match),
5203 		  arg1, arg2, TREE_TYPE (arg1), TREE_TYPE (arg2));
5204       break;
5205 
5206     case REALPART_EXPR:
5207     case IMAGPART_EXPR:
5208       if (flag_diagnostics_show_caret)
5209 	error_at (loc, op_error_string (G_("%qs"), 1, match),
5210 		  opname, TREE_TYPE (arg1));
5211       else
5212 	error_at (loc, op_error_string (G_("%qs in %<%s %E%>"), 1, match),
5213 		  opname, opname, arg1, TREE_TYPE (arg1));
5214       break;
5215 
5216     case CO_AWAIT_EXPR:
5217       if (flag_diagnostics_show_caret)
5218 	error_at (loc, op_error_string (G_("%<operator %s%>"), 1, match),
5219 		  opname, TREE_TYPE (arg1));
5220       else
5221 	error_at (loc, op_error_string (G_("%<operator %s%> in %<%s%E%>"),
5222 					  1, match),
5223 		   opname, opname, arg1, TREE_TYPE (arg1));
5224       break;
5225 
5226     default:
5227       if (arg2)
5228 	if (flag_diagnostics_show_caret)
5229 	  {
5230 	    binary_op_rich_location richloc (loc, arg1, arg2, true);
5231 	    error_at (&richloc,
5232 		      op_error_string (G_("%<operator%s%>"), 2, match),
5233 		      opname, TREE_TYPE (arg1), TREE_TYPE (arg2));
5234 	  }
5235 	else
5236 	  error_at (loc, op_error_string (G_("%<operator%s%> in %<%E %s %E%>"),
5237 					  2, match),
5238 		    opname, arg1, opname, arg2,
5239 		    TREE_TYPE (arg1), TREE_TYPE (arg2));
5240       else
5241 	if (flag_diagnostics_show_caret)
5242 	  error_at (loc, op_error_string (G_("%<operator%s%>"), 1, match),
5243 		    opname, TREE_TYPE (arg1));
5244 	else
5245 	  error_at (loc, op_error_string (G_("%<operator%s%> in %<%s%E%>"),
5246 					  1, match),
5247 		    opname, opname, arg1, TREE_TYPE (arg1));
5248       break;
5249     }
5250 }
5251 
5252 /* Return the implicit conversion sequence that could be used to
5253    convert E1 to E2 in [expr.cond].  */
5254 
5255 static conversion *
conditional_conversion(tree e1,tree e2,tsubst_flags_t complain)5256 conditional_conversion (tree e1, tree e2, tsubst_flags_t complain)
5257 {
5258   tree t1 = non_reference (TREE_TYPE (e1));
5259   tree t2 = non_reference (TREE_TYPE (e2));
5260   conversion *conv;
5261   bool good_base;
5262 
5263   /* [expr.cond]
5264 
5265      If E2 is an lvalue: E1 can be converted to match E2 if E1 can be
5266      implicitly converted (clause _conv_) to the type "lvalue reference to
5267      T2", subject to the constraint that in the conversion the
5268      reference must bind directly (_dcl.init.ref_) to an lvalue.
5269 
5270      If E2 is an xvalue: E1 can be converted to match E2 if E1 can be
5271      implicitly converted to the type "rvalue reference to T2", subject to
5272      the constraint that the reference must bind directly.  */
5273   if (glvalue_p (e2))
5274     {
5275       tree rtype = cp_build_reference_type (t2, !lvalue_p (e2));
5276       conv = implicit_conversion (rtype,
5277 				  t1,
5278 				  e1,
5279 				  /*c_cast_p=*/false,
5280 				  LOOKUP_NO_TEMP_BIND|LOOKUP_NO_RVAL_BIND
5281 				  |LOOKUP_ONLYCONVERTING,
5282 				  complain);
5283       if (conv && !conv->bad_p)
5284 	return conv;
5285     }
5286 
5287   /* If E2 is a prvalue or if neither of the conversions above can be done
5288      and at least one of the operands has (possibly cv-qualified) class
5289      type: */
5290   if (!CLASS_TYPE_P (t1) && !CLASS_TYPE_P (t2))
5291     return NULL;
5292 
5293   /* [expr.cond]
5294 
5295      If E1 and E2 have class type, and the underlying class types are
5296      the same or one is a base class of the other: E1 can be converted
5297      to match E2 if the class of T2 is the same type as, or a base
5298      class of, the class of T1, and the cv-qualification of T2 is the
5299      same cv-qualification as, or a greater cv-qualification than, the
5300      cv-qualification of T1.  If the conversion is applied, E1 is
5301      changed to an rvalue of type T2 that still refers to the original
5302      source class object (or the appropriate subobject thereof).  */
5303   if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
5304       && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
5305     {
5306       if (good_base && at_least_as_qualified_p (t2, t1))
5307 	{
5308 	  conv = build_identity_conv (t1, e1);
5309 	  if (!same_type_p (TYPE_MAIN_VARIANT (t1),
5310 			    TYPE_MAIN_VARIANT (t2)))
5311 	    conv = build_conv (ck_base, t2, conv);
5312 	  else
5313 	    conv = build_conv (ck_rvalue, t2, conv);
5314 	  return conv;
5315 	}
5316       else
5317 	return NULL;
5318     }
5319   else
5320     /* [expr.cond]
5321 
5322        Otherwise: E1 can be converted to match E2 if E1 can be implicitly
5323        converted to the type that expression E2 would have if E2 were
5324        converted to an rvalue (or the type it has, if E2 is an rvalue).  */
5325     return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
5326 				LOOKUP_IMPLICIT, complain);
5327 }
5328 
5329 /* Implement [expr.cond].  ARG1, ARG2, and ARG3 are the three
5330    arguments to the conditional expression.  */
5331 
5332 tree
build_conditional_expr(const op_location_t & loc,tree arg1,tree arg2,tree arg3,tsubst_flags_t complain)5333 build_conditional_expr (const op_location_t &loc,
5334 			tree arg1, tree arg2, tree arg3,
5335 			tsubst_flags_t complain)
5336 {
5337   tree arg2_type;
5338   tree arg3_type;
5339   tree result = NULL_TREE;
5340   tree result_type = NULL_TREE;
5341   bool is_glvalue = true;
5342   struct z_candidate *candidates = 0;
5343   struct z_candidate *cand;
5344   void *p;
5345   tree orig_arg2, orig_arg3;
5346 
5347   auto_cond_timevar tv (TV_OVERLOAD);
5348 
5349   /* As a G++ extension, the second argument to the conditional can be
5350      omitted.  (So that `a ? : c' is roughly equivalent to `a ? a :
5351      c'.)  If the second operand is omitted, make sure it is
5352      calculated only once.  */
5353   if (!arg2)
5354     {
5355       if (complain & tf_error)
5356 	pedwarn (loc, OPT_Wpedantic,
5357 		 "ISO C++ forbids omitting the middle term of "
5358 		 "a %<?:%> expression");
5359 
5360       if ((complain & tf_warning) && !truth_value_p (TREE_CODE (arg1)))
5361 	warn_for_omitted_condop (loc, arg1);
5362 
5363       /* Make sure that lvalues remain lvalues.  See g++.oliva/ext1.C.  */
5364       if (glvalue_p (arg1))
5365 	{
5366 	  arg1 = cp_stabilize_reference (arg1);
5367 	  arg2 = arg1 = prevent_lifetime_extension (arg1);
5368 	}
5369       else
5370 	arg2 = arg1 = cp_save_expr (arg1);
5371     }
5372 
5373   /* If something has already gone wrong, just pass that fact up the
5374      tree.  */
5375   if (error_operand_p (arg1)
5376       || error_operand_p (arg2)
5377       || error_operand_p (arg3))
5378     return error_mark_node;
5379 
5380   orig_arg2 = arg2;
5381   orig_arg3 = arg3;
5382 
5383   if (gnu_vector_type_p (TREE_TYPE (arg1))
5384       && VECTOR_INTEGER_TYPE_P (TREE_TYPE (arg1)))
5385     {
5386       tree arg1_type = TREE_TYPE (arg1);
5387 
5388       /* If arg1 is another cond_expr choosing between -1 and 0,
5389 	 then we can use its comparison.  It may help to avoid
5390 	 additional comparison, produce more accurate diagnostics
5391 	 and enables folding.  */
5392       if (TREE_CODE (arg1) == VEC_COND_EXPR
5393 	  && integer_minus_onep (TREE_OPERAND (arg1, 1))
5394 	  && integer_zerop (TREE_OPERAND (arg1, 2)))
5395 	arg1 = TREE_OPERAND (arg1, 0);
5396 
5397       arg1 = force_rvalue (arg1, complain);
5398       arg2 = force_rvalue (arg2, complain);
5399       arg3 = force_rvalue (arg3, complain);
5400 
5401       /* force_rvalue can return error_mark on valid arguments.  */
5402       if (error_operand_p (arg1)
5403 	  || error_operand_p (arg2)
5404 	  || error_operand_p (arg3))
5405 	return error_mark_node;
5406 
5407       arg2_type = TREE_TYPE (arg2);
5408       arg3_type = TREE_TYPE (arg3);
5409 
5410       if (!VECTOR_TYPE_P (arg2_type)
5411 	  && !VECTOR_TYPE_P (arg3_type))
5412 	{
5413 	  /* Rely on the error messages of the scalar version.  */
5414 	  tree scal = build_conditional_expr (loc, integer_one_node,
5415 					      orig_arg2, orig_arg3, complain);
5416 	  if (scal == error_mark_node)
5417 	    return error_mark_node;
5418 	  tree stype = TREE_TYPE (scal);
5419 	  tree ctype = TREE_TYPE (arg1_type);
5420 	  if (TYPE_SIZE (stype) != TYPE_SIZE (ctype)
5421 	      || (!INTEGRAL_TYPE_P (stype) && !SCALAR_FLOAT_TYPE_P (stype)))
5422 	    {
5423 	      if (complain & tf_error)
5424 		error_at (loc, "inferred scalar type %qT is not an integer or "
5425 			  "floating-point type of the same size as %qT", stype,
5426 			  COMPARISON_CLASS_P (arg1)
5427 			  ? TREE_TYPE (TREE_TYPE (TREE_OPERAND (arg1, 0)))
5428 			  : ctype);
5429 	      return error_mark_node;
5430 	    }
5431 
5432 	  tree vtype = build_opaque_vector_type (stype,
5433 			 TYPE_VECTOR_SUBPARTS (arg1_type));
5434 	  /* We could pass complain & tf_warning to unsafe_conversion_p,
5435 	     but the warnings (like Wsign-conversion) have already been
5436 	     given by the scalar build_conditional_expr_1. We still check
5437 	     unsafe_conversion_p to forbid truncating long long -> float.  */
5438 	  if (unsafe_conversion_p (stype, arg2, NULL_TREE, false))
5439 	    {
5440 	      if (complain & tf_error)
5441 		error_at (loc, "conversion of scalar %qH to vector %qI "
5442 			       "involves truncation", arg2_type, vtype);
5443 	      return error_mark_node;
5444 	    }
5445 	  if (unsafe_conversion_p (stype, arg3, NULL_TREE, false))
5446 	    {
5447 	      if (complain & tf_error)
5448 		error_at (loc, "conversion of scalar %qH to vector %qI "
5449 			       "involves truncation", arg3_type, vtype);
5450 	      return error_mark_node;
5451 	    }
5452 
5453 	  arg2 = cp_convert (stype, arg2, complain);
5454 	  arg2 = save_expr (arg2);
5455 	  arg2 = build_vector_from_val (vtype, arg2);
5456 	  arg2_type = vtype;
5457 	  arg3 = cp_convert (stype, arg3, complain);
5458 	  arg3 = save_expr (arg3);
5459 	  arg3 = build_vector_from_val (vtype, arg3);
5460 	  arg3_type = vtype;
5461 	}
5462 
5463       if ((gnu_vector_type_p (arg2_type) && !VECTOR_TYPE_P (arg3_type))
5464 	  || (gnu_vector_type_p (arg3_type) && !VECTOR_TYPE_P (arg2_type)))
5465 	{
5466 	  enum stv_conv convert_flag =
5467 	    scalar_to_vector (loc, VEC_COND_EXPR, arg2, arg3,
5468 			      complain & tf_error);
5469 
5470 	  switch (convert_flag)
5471 	    {
5472 	      case stv_error:
5473 		return error_mark_node;
5474 	      case stv_firstarg:
5475 		{
5476 		  arg2 = save_expr (arg2);
5477 		  arg2 = convert (TREE_TYPE (arg3_type), arg2);
5478 		  arg2 = build_vector_from_val (arg3_type, arg2);
5479 		  arg2_type = TREE_TYPE (arg2);
5480 		  break;
5481 		}
5482 	      case stv_secondarg:
5483 		{
5484 		  arg3 = save_expr (arg3);
5485 		  arg3 = convert (TREE_TYPE (arg2_type), arg3);
5486 		  arg3 = build_vector_from_val (arg2_type, arg3);
5487 		  arg3_type = TREE_TYPE (arg3);
5488 		  break;
5489 		}
5490 	      default:
5491 		break;
5492 	    }
5493 	}
5494 
5495       if (!gnu_vector_type_p (arg2_type)
5496 	  || !gnu_vector_type_p (arg3_type)
5497 	  || !same_type_p (arg2_type, arg3_type)
5498 	  || maybe_ne (TYPE_VECTOR_SUBPARTS (arg1_type),
5499 		       TYPE_VECTOR_SUBPARTS (arg2_type))
5500 	  || TYPE_SIZE (arg1_type) != TYPE_SIZE (arg2_type))
5501 	{
5502 	  if (complain & tf_error)
5503 	    error_at (loc,
5504 		      "incompatible vector types in conditional expression: "
5505 		      "%qT, %qT and %qT", TREE_TYPE (arg1),
5506 		      TREE_TYPE (orig_arg2), TREE_TYPE (orig_arg3));
5507 	  return error_mark_node;
5508 	}
5509 
5510       if (!COMPARISON_CLASS_P (arg1))
5511 	{
5512 	  tree cmp_type = truth_type_for (arg1_type);
5513 	  arg1 = build2 (NE_EXPR, cmp_type, arg1, build_zero_cst (arg1_type));
5514 	}
5515       return build3_loc (loc, VEC_COND_EXPR, arg2_type, arg1, arg2, arg3);
5516     }
5517 
5518   /* [expr.cond]
5519 
5520      The first expression is implicitly converted to bool (clause
5521      _conv_).  */
5522   arg1 = perform_implicit_conversion_flags (boolean_type_node, arg1, complain,
5523 					    LOOKUP_NORMAL);
5524   if (error_operand_p (arg1))
5525     return error_mark_node;
5526 
5527   /* [expr.cond]
5528 
5529      If either the second or the third operand has type (possibly
5530      cv-qualified) void, then the lvalue-to-rvalue (_conv.lval_),
5531      array-to-pointer (_conv.array_), and function-to-pointer
5532      (_conv.func_) standard conversions are performed on the second
5533      and third operands.  */
5534   arg2_type = unlowered_expr_type (arg2);
5535   arg3_type = unlowered_expr_type (arg3);
5536   if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
5537     {
5538       /* 'void' won't help in resolving an overloaded expression on the
5539 	 other side, so require it to resolve by itself.  */
5540       if (arg2_type == unknown_type_node)
5541 	{
5542 	  arg2 = resolve_nondeduced_context_or_error (arg2, complain);
5543 	  arg2_type = TREE_TYPE (arg2);
5544 	}
5545       if (arg3_type == unknown_type_node)
5546 	{
5547 	  arg3 = resolve_nondeduced_context_or_error (arg3, complain);
5548 	  arg3_type = TREE_TYPE (arg3);
5549 	}
5550 
5551       /* [expr.cond]
5552 
5553 	 One of the following shall hold:
5554 
5555 	 --The second or the third operand (but not both) is a
5556 	   throw-expression (_except.throw_); the result is of the type
5557 	   and value category of the other.
5558 
5559 	 --Both the second and the third operands have type void; the
5560 	   result is of type void and is a prvalue.  */
5561       if (TREE_CODE (arg2) == THROW_EXPR
5562 	  && TREE_CODE (arg3) != THROW_EXPR)
5563 	{
5564 	  result_type = arg3_type;
5565 	  is_glvalue = glvalue_p (arg3);
5566 	}
5567       else if (TREE_CODE (arg2) != THROW_EXPR
5568 	       && TREE_CODE (arg3) == THROW_EXPR)
5569 	{
5570 	  result_type = arg2_type;
5571 	  is_glvalue = glvalue_p (arg2);
5572 	}
5573       else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
5574 	{
5575 	  result_type = void_type_node;
5576 	  is_glvalue = false;
5577 	}
5578       else
5579 	{
5580           if (complain & tf_error)
5581             {
5582               if (VOID_TYPE_P (arg2_type))
5583                 error_at (cp_expr_loc_or_loc (arg3, loc),
5584 			  "second operand to the conditional operator "
5585 			  "is of type %<void%>, but the third operand is "
5586 			  "neither a throw-expression nor of type %<void%>");
5587               else
5588                 error_at (cp_expr_loc_or_loc (arg2, loc),
5589 			  "third operand to the conditional operator "
5590 			  "is of type %<void%>, but the second operand is "
5591 			  "neither a throw-expression nor of type %<void%>");
5592             }
5593 	  return error_mark_node;
5594 	}
5595 
5596       goto valid_operands;
5597     }
5598   /* [expr.cond]
5599 
5600      Otherwise, if the second and third operand have different types,
5601      and either has (possibly cv-qualified) class type, or if both are
5602      glvalues of the same value category and the same type except for
5603      cv-qualification, an attempt is made to convert each of those operands
5604      to the type of the other.  */
5605   else if (!same_type_p (arg2_type, arg3_type)
5606 	    && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)
5607 		|| (same_type_ignoring_top_level_qualifiers_p (arg2_type,
5608 							       arg3_type)
5609 		    && glvalue_p (arg2) && glvalue_p (arg3)
5610 		    && lvalue_p (arg2) == lvalue_p (arg3))))
5611     {
5612       conversion *conv2;
5613       conversion *conv3;
5614       bool converted = false;
5615 
5616       /* Get the high-water mark for the CONVERSION_OBSTACK.  */
5617       p = conversion_obstack_alloc (0);
5618 
5619       conv2 = conditional_conversion (arg2, arg3, complain);
5620       conv3 = conditional_conversion (arg3, arg2, complain);
5621 
5622       /* [expr.cond]
5623 
5624 	 If both can be converted, or one can be converted but the
5625 	 conversion is ambiguous, the program is ill-formed.  If
5626 	 neither can be converted, the operands are left unchanged and
5627 	 further checking is performed as described below.  If exactly
5628 	 one conversion is possible, that conversion is applied to the
5629 	 chosen operand and the converted operand is used in place of
5630 	 the original operand for the remainder of this section.  */
5631       if ((conv2 && !conv2->bad_p
5632 	   && conv3 && !conv3->bad_p)
5633 	  || (conv2 && conv2->kind == ck_ambig)
5634 	  || (conv3 && conv3->kind == ck_ambig))
5635 	{
5636 	  if (complain & tf_error)
5637 	    {
5638 	      error_at (loc, "operands to %<?:%> have different types "
5639 			"%qT and %qT",
5640 			arg2_type, arg3_type);
5641 	      if (conv2 && !conv2->bad_p && conv3 && !conv3->bad_p)
5642 		inform (loc, "  and each type can be converted to the other");
5643 	      else if (conv2 && conv2->kind == ck_ambig)
5644 		convert_like (conv2, arg2, complain);
5645 	      else
5646 		convert_like (conv3, arg3, complain);
5647 	    }
5648 	  result = error_mark_node;
5649 	}
5650       else if (conv2 && !conv2->bad_p)
5651 	{
5652 	  arg2 = convert_like (conv2, arg2, complain);
5653 	  arg2 = convert_from_reference (arg2);
5654 	  arg2_type = TREE_TYPE (arg2);
5655 	  /* Even if CONV2 is a valid conversion, the result of the
5656 	     conversion may be invalid.  For example, if ARG3 has type
5657 	     "volatile X", and X does not have a copy constructor
5658 	     accepting a "volatile X&", then even if ARG2 can be
5659 	     converted to X, the conversion will fail.  */
5660 	  if (error_operand_p (arg2))
5661 	    result = error_mark_node;
5662 	  converted = true;
5663 	}
5664       else if (conv3 && !conv3->bad_p)
5665 	{
5666 	  arg3 = convert_like (conv3, arg3, complain);
5667 	  arg3 = convert_from_reference (arg3);
5668 	  arg3_type = TREE_TYPE (arg3);
5669 	  if (error_operand_p (arg3))
5670 	    result = error_mark_node;
5671 	  converted = true;
5672 	}
5673 
5674       /* Free all the conversions we allocated.  */
5675       obstack_free (&conversion_obstack, p);
5676 
5677       if (result)
5678 	return result;
5679 
5680       /* If, after the conversion, both operands have class type,
5681 	 treat the cv-qualification of both operands as if it were the
5682 	 union of the cv-qualification of the operands.
5683 
5684 	 The standard is not clear about what to do in this
5685 	 circumstance.  For example, if the first operand has type
5686 	 "const X" and the second operand has a user-defined
5687 	 conversion to "volatile X", what is the type of the second
5688 	 operand after this step?  Making it be "const X" (matching
5689 	 the first operand) seems wrong, as that discards the
5690 	 qualification without actually performing a copy.  Leaving it
5691 	 as "volatile X" seems wrong as that will result in the
5692 	 conditional expression failing altogether, even though,
5693 	 according to this step, the one operand could be converted to
5694 	 the type of the other.  */
5695       if (converted
5696 	  && CLASS_TYPE_P (arg2_type)
5697 	  && cp_type_quals (arg2_type) != cp_type_quals (arg3_type))
5698 	arg2_type = arg3_type =
5699 	  cp_build_qualified_type (arg2_type,
5700 				   cp_type_quals (arg2_type)
5701 				   | cp_type_quals (arg3_type));
5702     }
5703 
5704   /* [expr.cond]
5705 
5706      If the second and third operands are glvalues of the same value
5707      category and have the same type, the result is of that type and
5708      value category.  */
5709   if (((lvalue_p (arg2) && lvalue_p (arg3))
5710        || (xvalue_p (arg2) && xvalue_p (arg3)))
5711       && same_type_p (arg2_type, arg3_type))
5712     {
5713       result_type = arg2_type;
5714       goto valid_operands;
5715     }
5716 
5717   /* [expr.cond]
5718 
5719      Otherwise, the result is an rvalue.  If the second and third
5720      operand do not have the same type, and either has (possibly
5721      cv-qualified) class type, overload resolution is used to
5722      determine the conversions (if any) to be applied to the operands
5723      (_over.match.oper_, _over.built_).  */
5724   is_glvalue = false;
5725   if (!same_type_p (arg2_type, arg3_type)
5726       && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
5727     {
5728       releasing_vec args;
5729       conversion *conv;
5730       bool any_viable_p;
5731 
5732       /* Rearrange the arguments so that add_builtin_candidate only has
5733 	 to know about two args.  In build_builtin_candidate, the
5734 	 arguments are unscrambled.  */
5735       args->quick_push (arg2);
5736       args->quick_push (arg3);
5737       args->quick_push (arg1);
5738       add_builtin_candidates (&candidates,
5739 			      COND_EXPR,
5740 			      NOP_EXPR,
5741 			      ovl_op_identifier (false, COND_EXPR),
5742 			      args,
5743 			      LOOKUP_NORMAL, complain);
5744 
5745       /* [expr.cond]
5746 
5747 	 If the overload resolution fails, the program is
5748 	 ill-formed.  */
5749       candidates = splice_viable (candidates, false, &any_viable_p);
5750       if (!any_viable_p)
5751 	{
5752           if (complain & tf_error)
5753 	    error_at (loc, "operands to %<?:%> have different types %qT and %qT",
5754 		      arg2_type, arg3_type);
5755 	  return error_mark_node;
5756 	}
5757       cand = tourney (candidates, complain);
5758       if (!cand)
5759 	{
5760           if (complain & tf_error)
5761             {
5762               auto_diagnostic_group d;
5763               op_error (loc, COND_EXPR, NOP_EXPR, arg1, arg2, arg3, FALSE);
5764               print_z_candidates (loc, candidates);
5765             }
5766 	  return error_mark_node;
5767 	}
5768 
5769       /* [expr.cond]
5770 
5771 	 Otherwise, the conversions thus determined are applied, and
5772 	 the converted operands are used in place of the original
5773 	 operands for the remainder of this section.  */
5774       conv = cand->convs[0];
5775       arg1 = convert_like (conv, arg1, complain);
5776       conv = cand->convs[1];
5777       arg2 = convert_like (conv, arg2, complain);
5778       arg2_type = TREE_TYPE (arg2);
5779       conv = cand->convs[2];
5780       arg3 = convert_like (conv, arg3, complain);
5781       arg3_type = TREE_TYPE (arg3);
5782     }
5783 
5784   /* [expr.cond]
5785 
5786      Lvalue-to-rvalue (_conv.lval_), array-to-pointer (_conv.array_),
5787      and function-to-pointer (_conv.func_) standard conversions are
5788      performed on the second and third operands.
5789 
5790      We need to force the lvalue-to-rvalue conversion here for class types,
5791      so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
5792      that isn't wrapped with a TARGET_EXPR plays havoc with exception
5793      regions.  */
5794 
5795   arg2 = force_rvalue (arg2, complain);
5796   if (!CLASS_TYPE_P (arg2_type))
5797     arg2_type = TREE_TYPE (arg2);
5798 
5799   arg3 = force_rvalue (arg3, complain);
5800   if (!CLASS_TYPE_P (arg3_type))
5801     arg3_type = TREE_TYPE (arg3);
5802 
5803   if (arg2 == error_mark_node || arg3 == error_mark_node)
5804     return error_mark_node;
5805 
5806   /* [expr.cond]
5807 
5808      After those conversions, one of the following shall hold:
5809 
5810      --The second and third operands have the same type; the result  is  of
5811        that type.  */
5812   if (same_type_p (arg2_type, arg3_type))
5813     result_type = arg2_type;
5814   /* [expr.cond]
5815 
5816      --The second and third operands have arithmetic or enumeration
5817        type; the usual arithmetic conversions are performed to bring
5818        them to a common type, and the result is of that type.  */
5819   else if ((ARITHMETIC_TYPE_P (arg2_type)
5820 	    || UNSCOPED_ENUM_P (arg2_type))
5821 	   && (ARITHMETIC_TYPE_P (arg3_type)
5822 	       || UNSCOPED_ENUM_P (arg3_type)))
5823     {
5824       /* In this case, there is always a common type.  */
5825       result_type = type_after_usual_arithmetic_conversions (arg2_type,
5826 							     arg3_type);
5827       if (complain & tf_warning)
5828 	do_warn_double_promotion (result_type, arg2_type, arg3_type,
5829 				  "implicit conversion from %qH to %qI to "
5830 				  "match other result of conditional",
5831 				  loc);
5832 
5833       if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
5834 	  && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
5835         {
5836 	  tree stripped_orig_arg2 = tree_strip_any_location_wrapper (orig_arg2);
5837 	  tree stripped_orig_arg3 = tree_strip_any_location_wrapper (orig_arg3);
5838 	  if (TREE_CODE (stripped_orig_arg2) == CONST_DECL
5839 	      && TREE_CODE (stripped_orig_arg3) == CONST_DECL
5840 	      && (DECL_CONTEXT (stripped_orig_arg2)
5841 		  == DECL_CONTEXT (stripped_orig_arg3)))
5842 	    /* Two enumerators from the same enumeration can have different
5843 	       types when the enumeration is still being defined.  */;
5844           else if (complain & tf_warning)
5845 	    warning_at (loc, OPT_Wenum_compare, "enumerated mismatch "
5846 			"in conditional expression: %qT vs %qT",
5847 			arg2_type, arg3_type);
5848         }
5849       else if ((complain & tf_warning)
5850 	       && warn_deprecated_enum_float_conv
5851 	       && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5852 		    && TREE_CODE (arg3_type) == REAL_TYPE)
5853 		   || (TREE_CODE (arg2_type) == REAL_TYPE
5854 		       && TREE_CODE (arg3_type) == ENUMERAL_TYPE)))
5855 	{
5856 	  if (TREE_CODE (arg2_type) == ENUMERAL_TYPE)
5857 	    warning_at (loc, OPT_Wdeprecated_enum_float_conversion,
5858 			"conditional expression between enumeration type "
5859 			"%qT and floating-point type %qT is deprecated",
5860 			arg2_type, arg3_type);
5861 	  else
5862 	    warning_at (loc, OPT_Wdeprecated_enum_float_conversion,
5863 			"conditional expression between floating-point "
5864 			"type %qT and enumeration type %qT is deprecated",
5865 			arg2_type, arg3_type);
5866 	}
5867       else if ((extra_warnings || warn_enum_conversion)
5868 	       && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
5869 		    && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
5870 		   || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
5871 		       && !same_type_p (arg2_type,
5872 					type_promotes_to (arg3_type)))))
5873 	{
5874 	  if (complain & tf_warning)
5875 	    {
5876 	      enum opt_code opt = (warn_enum_conversion
5877 				   ? OPT_Wenum_conversion
5878 				   : OPT_Wextra);
5879 	      warning_at (loc, opt, "enumerated and "
5880 			  "non-enumerated type in conditional expression");
5881 	    }
5882 	}
5883 
5884       arg2 = perform_implicit_conversion (result_type, arg2, complain);
5885       arg3 = perform_implicit_conversion (result_type, arg3, complain);
5886     }
5887   /* [expr.cond]
5888 
5889      --The second and third operands have pointer type, or one has
5890        pointer type and the other is a null pointer constant; pointer
5891        conversions (_conv.ptr_) and qualification conversions
5892        (_conv.qual_) are performed to bring them to their composite
5893        pointer type (_expr.rel_).  The result is of the composite
5894        pointer type.
5895 
5896      --The second and third operands have pointer to member type, or
5897        one has pointer to member type and the other is a null pointer
5898        constant; pointer to member conversions (_conv.mem_) and
5899        qualification conversions (_conv.qual_) are performed to bring
5900        them to a common type, whose cv-qualification shall match the
5901        cv-qualification of either the second or the third operand.
5902        The result is of the common type.  */
5903   else if ((null_ptr_cst_p (arg2)
5904 	    && TYPE_PTR_OR_PTRMEM_P (arg3_type))
5905 	   || (null_ptr_cst_p (arg3)
5906 	       && TYPE_PTR_OR_PTRMEM_P (arg2_type))
5907 	   || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
5908 	   || (TYPE_PTRDATAMEM_P (arg2_type) && TYPE_PTRDATAMEM_P (arg3_type))
5909 	   || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
5910     {
5911       result_type = composite_pointer_type (loc,
5912 					    arg2_type, arg3_type, arg2,
5913 					    arg3, CPO_CONDITIONAL_EXPR,
5914 					    complain);
5915       if (result_type == error_mark_node)
5916 	return error_mark_node;
5917       arg2 = perform_implicit_conversion (result_type, arg2, complain);
5918       arg3 = perform_implicit_conversion (result_type, arg3, complain);
5919     }
5920 
5921   if (!result_type)
5922     {
5923       if (complain & tf_error)
5924 	error_at (loc, "operands to %<?:%> have different types %qT and %qT",
5925 		  arg2_type, arg3_type);
5926       return error_mark_node;
5927     }
5928 
5929   if (arg2 == error_mark_node || arg3 == error_mark_node)
5930     return error_mark_node;
5931 
5932  valid_operands:
5933   if (processing_template_decl && is_glvalue)
5934     {
5935       /* Let lvalue_kind know this was a glvalue.  */
5936       tree arg = (result_type == arg2_type ? arg2 : arg3);
5937       result_type = cp_build_reference_type (result_type, xvalue_p (arg));
5938     }
5939 
5940   result = build3_loc (loc, COND_EXPR, result_type, arg1, arg2, arg3);
5941 
5942   /* If the ARG2 and ARG3 are the same and don't have side-effects,
5943      warn here, because the COND_EXPR will be turned into ARG2.  */
5944   if (warn_duplicated_branches
5945       && (complain & tf_warning)
5946       && (arg2 == arg3 || operand_equal_p (arg2, arg3,
5947 					   OEP_ADDRESS_OF_SAME_FIELD)))
5948     warning_at (EXPR_LOCATION (result), OPT_Wduplicated_branches,
5949 		"this condition has identical branches");
5950 
5951   /* We can't use result_type below, as fold might have returned a
5952      throw_expr.  */
5953 
5954   if (!is_glvalue)
5955     {
5956       /* Expand both sides into the same slot, hopefully the target of
5957 	 the ?: expression.  We used to check for TARGET_EXPRs here,
5958 	 but now we sometimes wrap them in NOP_EXPRs so the test would
5959 	 fail.  */
5960       if (CLASS_TYPE_P (TREE_TYPE (result)))
5961 	result = get_target_expr_sfinae (result, complain);
5962       /* If this expression is an rvalue, but might be mistaken for an
5963 	 lvalue, we must add a NON_LVALUE_EXPR.  */
5964       result = rvalue (result);
5965     }
5966   else
5967     result = force_paren_expr (result);
5968 
5969   return result;
5970 }
5971 
5972 /* OPERAND is an operand to an expression.  Perform necessary steps
5973    required before using it.  If OPERAND is NULL_TREE, NULL_TREE is
5974    returned.  */
5975 
5976 static tree
prep_operand(tree operand)5977 prep_operand (tree operand)
5978 {
5979   if (operand)
5980     {
5981       if (CLASS_TYPE_P (TREE_TYPE (operand))
5982 	  && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
5983 	/* Make sure the template type is instantiated now.  */
5984 	instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
5985     }
5986 
5987   return operand;
5988 }
5989 
5990 /* True iff CONV represents a conversion sequence which no other can be better
5991    than under [over.ics.rank]: in other words, a "conversion" to the exact same
5992    type (including binding to a reference to the same type).  This is stronger
5993    than the standard's "identity" category, which also includes reference
5994    bindings that add cv-qualifiers or change rvalueness.  */
5995 
5996 static bool
perfect_conversion_p(conversion * conv)5997 perfect_conversion_p (conversion *conv)
5998 {
5999   if (CONVERSION_RANK (conv) != cr_identity)
6000     return false;
6001   if (conv->kind == ck_ref_bind)
6002     {
6003       if (!conv->rvaluedness_matches_p)
6004 	return false;
6005       if (!same_type_p (TREE_TYPE (conv->type),
6006 			next_conversion (conv)->type))
6007 	return false;
6008     }
6009   if (conv->check_narrowing)
6010     /* Brace elision is imperfect.  */
6011     return false;
6012   return true;
6013 }
6014 
6015 /* True if CAND represents a perfect match, i.e. all perfect conversions, so no
6016    other candidate can be a better match.  Since the template/non-template
6017    tiebreaker comes immediately after the conversion comparison in
6018    [over.match.best], a perfect non-template candidate is better than all
6019    templates.  */
6020 
6021 static bool
perfect_candidate_p(z_candidate * cand)6022 perfect_candidate_p (z_candidate *cand)
6023 {
6024   if (cand->viable < 1)
6025     return false;
6026   /* CWG1402 makes an implicitly deleted move op worse than other
6027      candidates.  */
6028   if (DECL_DELETED_FN (cand->fn) && DECL_DEFAULTED_FN (cand->fn)
6029       && move_fn_p (cand->fn))
6030     return false;
6031   int len = cand->num_convs;
6032   for (int i = 0; i < len; ++i)
6033     if (!perfect_conversion_p (cand->convs[i]))
6034       return false;
6035   if (conversion *conv = cand->second_conv)
6036     if (!perfect_conversion_p (conv))
6037       return false;
6038   return true;
6039 }
6040 
6041 /* True iff one of CAND's argument conversions is NULL.  */
6042 
6043 static bool
missing_conversion_p(const z_candidate * cand)6044 missing_conversion_p (const z_candidate *cand)
6045 {
6046   for (unsigned i = 0; i < cand->num_convs; ++i)
6047     if (!cand->convs[i])
6048       return true;
6049   return false;
6050 }
6051 
6052 /* Add each of the viable functions in FNS (a FUNCTION_DECL or
6053    OVERLOAD) to the CANDIDATES, returning an updated list of
6054    CANDIDATES.  The ARGS are the arguments provided to the call;
6055    if FIRST_ARG is non-null it is the implicit object argument,
6056    otherwise the first element of ARGS is used if needed.  The
6057    EXPLICIT_TARGS are explicit template arguments provided.
6058    TEMPLATE_ONLY is true if only template functions should be
6059    considered.  CONVERSION_PATH, ACCESS_PATH, and FLAGS are as for
6060    add_function_candidate.  */
6061 
6062 static void
add_candidates(tree fns,tree first_arg,const vec<tree,va_gc> * args,tree return_type,tree explicit_targs,bool template_only,tree conversion_path,tree access_path,int flags,struct z_candidate ** candidates,tsubst_flags_t complain)6063 add_candidates (tree fns, tree first_arg, const vec<tree, va_gc> *args,
6064 		tree return_type,
6065 		tree explicit_targs, bool template_only,
6066 		tree conversion_path, tree access_path,
6067 		int flags,
6068 		struct z_candidate **candidates,
6069 		tsubst_flags_t complain)
6070 {
6071   tree ctype;
6072   const vec<tree, va_gc> *non_static_args;
6073   bool check_list_ctor = false;
6074   bool check_converting = false;
6075   unification_kind_t strict;
6076 
6077   if (!fns)
6078     return;
6079 
6080   /* Precalculate special handling of constructors and conversion ops.  */
6081   tree fn = OVL_FIRST (fns);
6082   if (DECL_CONV_FN_P (fn))
6083     {
6084       check_list_ctor = false;
6085       check_converting = (flags & LOOKUP_ONLYCONVERTING) != 0;
6086       if (flags & LOOKUP_NO_CONVERSION)
6087 	/* We're doing return_type(x).  */
6088 	strict = DEDUCE_CONV;
6089       else
6090 	/* We're doing x.operator return_type().  */
6091 	strict = DEDUCE_EXACT;
6092       /* [over.match.funcs] For conversion functions, the function
6093 	 is considered to be a member of the class of the implicit
6094 	 object argument for the purpose of defining the type of
6095 	 the implicit object parameter.  */
6096       ctype = TYPE_MAIN_VARIANT (TREE_TYPE (first_arg));
6097     }
6098   else
6099     {
6100       if (DECL_CONSTRUCTOR_P (fn))
6101 	{
6102 	  check_list_ctor = (flags & LOOKUP_LIST_ONLY) != 0;
6103 	  /* For list-initialization we consider explicit constructors
6104 	     and complain if one is chosen.  */
6105 	  check_converting
6106 	    = ((flags & (LOOKUP_ONLYCONVERTING|LOOKUP_LIST_INIT_CTOR))
6107 	       == LOOKUP_ONLYCONVERTING);
6108 	}
6109       strict = DEDUCE_CALL;
6110       ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
6111     }
6112 
6113   if (first_arg)
6114     non_static_args = args;
6115   else
6116     /* Delay creating the implicit this parameter until it is needed.  */
6117     non_static_args = NULL;
6118 
6119   bool seen_strictly_viable = any_strictly_viable (*candidates);
6120   /* If there's a non-template perfect match, we don't need to consider
6121      templates.  So check non-templates first.  This optimization is only
6122      really needed for the defaulted copy constructor of tuple and the like
6123      (96926), but it seems like we might as well enable it more generally.  */
6124   bool seen_perfect = false;
6125   enum { templates, non_templates, either } which = either;
6126   if (template_only)
6127     which = templates;
6128   else /*if (flags & LOOKUP_DEFAULTED)*/
6129     which = non_templates;
6130 
6131   /* During overload resolution, we first consider each function under the
6132      assumption that we'll eventually find a strictly viable candidate.
6133      This allows us to circumvent our defacto behavior when checking
6134      argument conversions and shortcut consideration of the candidate
6135      upon encountering the first bad conversion.  If this assumption
6136      turns out to be false, and all candidates end up being non-strictly
6137      viable, then we reconsider such candidates under the defacto behavior.
6138      This trick is important for pruning member function overloads according
6139      to their const/ref-qualifiers (since all 'this' conversions are at
6140      worst bad) without breaking -fpermissive.  */
6141   tree bad_fns = NULL_TREE;
6142   bool shortcut_bad_convs = true;
6143 
6144  again:
6145   for (tree fn : lkp_range (fns))
6146     {
6147       if (check_converting && DECL_NONCONVERTING_P (fn))
6148 	continue;
6149       if (check_list_ctor && !is_list_ctor (fn))
6150 	continue;
6151       if (which == templates && TREE_CODE (fn) != TEMPLATE_DECL)
6152 	continue;
6153       if (which == non_templates && TREE_CODE (fn) == TEMPLATE_DECL)
6154 	continue;
6155 
6156       tree fn_first_arg = NULL_TREE;
6157       const vec<tree, va_gc> *fn_args = args;
6158 
6159       if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
6160 	{
6161 	  /* Figure out where the object arg comes from.  If this
6162 	     function is a non-static member and we didn't get an
6163 	     implicit object argument, move it out of args.  */
6164 	  if (first_arg == NULL_TREE)
6165 	    {
6166 	      unsigned int ix;
6167 	      tree arg;
6168 	      vec<tree, va_gc> *tempvec;
6169 	      vec_alloc (tempvec, args->length () - 1);
6170 	      for (ix = 1; args->iterate (ix, &arg); ++ix)
6171 		tempvec->quick_push (arg);
6172 	      non_static_args = tempvec;
6173 	      first_arg = (*args)[0];
6174 	    }
6175 
6176 	  fn_first_arg = first_arg;
6177 	  fn_args = non_static_args;
6178 	}
6179 
6180       /* Don't bother reversing an operator with two identical parameters.  */
6181       else if (vec_safe_length (args) == 2 && (flags & LOOKUP_REVERSED))
6182 	{
6183 	  tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
6184 	  if (same_type_p (TREE_VALUE (parmlist),
6185 			   TREE_VALUE (TREE_CHAIN (parmlist))))
6186 	    continue;
6187 	}
6188 
6189       if (TREE_CODE (fn) == TEMPLATE_DECL)
6190 	{
6191 	  if (!add_template_candidate (candidates,
6192 				       fn,
6193 				       ctype,
6194 				       explicit_targs,
6195 				       fn_first_arg,
6196 				       fn_args,
6197 				       return_type,
6198 				       access_path,
6199 				       conversion_path,
6200 				       flags,
6201 				       strict,
6202 				       shortcut_bad_convs,
6203 				       complain))
6204 	    continue;
6205 	}
6206       else
6207 	{
6208 	  add_function_candidate (candidates,
6209 				  fn,
6210 				  ctype,
6211 				  fn_first_arg,
6212 				  fn_args,
6213 				  access_path,
6214 				  conversion_path,
6215 				  flags,
6216 				  NULL,
6217 				  shortcut_bad_convs,
6218 				  complain);
6219 	  if (perfect_candidate_p (*candidates))
6220 	    seen_perfect = true;
6221 	}
6222 
6223       z_candidate *cand = *candidates;
6224       if (cand->viable == 1)
6225 	seen_strictly_viable = true;
6226 
6227       if (cand->viable == -1
6228 	  && shortcut_bad_convs
6229 	  && missing_conversion_p (cand))
6230 	{
6231 	  /* This candidate has been tentatively marked non-strictly viable,
6232 	     and we didn't compute all argument conversions for it (having
6233 	     stopped at the first bad conversion).  Add the function to BAD_FNS
6234 	     to fully reconsider later if we don't find any strictly viable
6235 	     candidates.  */
6236 	  if (complain & (tf_error | tf_conv))
6237 	    {
6238 	      bad_fns = lookup_add (fn, bad_fns);
6239 	      *candidates = (*candidates)->next;
6240 	    }
6241 	  else
6242 	    /* But if we're in a SFINAE context, just mark this candidate as
6243 	       unviable outright and avoid potentially reconsidering it.
6244 	       This is safe to do because in a SFINAE context, performing a bad
6245 	       conversion is always an error (even with -fpermissive), so a
6246 	       non-strictly viable candidate is effectively unviable anyway.  */
6247 	    cand->viable = 0;
6248 	}
6249     }
6250   if (which == non_templates && !seen_perfect)
6251     {
6252       which = templates;
6253       goto again;
6254     }
6255   else if (which == templates
6256 	   && !seen_strictly_viable
6257 	   && shortcut_bad_convs
6258 	   && bad_fns)
6259     {
6260       /* None of the candidates are strictly viable, so consider again those
6261 	 functions in BAD_FNS, this time without shortcutting bad conversions
6262 	 so that all their argument conversions are computed.  */
6263       which = either;
6264       fns = bad_fns;
6265       shortcut_bad_convs = false;
6266       goto again;
6267     }
6268 }
6269 
6270 /* Returns 1 if P0145R2 says that the LHS of operator CODE is evaluated first,
6271    -1 if the RHS is evaluated first, or 0 if the order is unspecified.  */
6272 
6273 static int
op_is_ordered(tree_code code)6274 op_is_ordered (tree_code code)
6275 {
6276   switch (code)
6277     {
6278       // 5. b @= a
6279     case MODIFY_EXPR:
6280       return (flag_strong_eval_order > 1 ? -1 : 0);
6281 
6282       // 6. a[b]
6283     case ARRAY_REF:
6284       return (flag_strong_eval_order > 1 ? 1 : 0);
6285 
6286       // 1. a.b
6287       // Not overloadable (yet).
6288       // 2. a->b
6289       // Only one argument.
6290       // 3. a->*b
6291     case MEMBER_REF:
6292       // 7. a << b
6293     case LSHIFT_EXPR:
6294       // 8. a >> b
6295     case RSHIFT_EXPR:
6296       // a && b
6297       // Predates P0145R3.
6298     case TRUTH_ANDIF_EXPR:
6299       // a || b
6300       // Predates P0145R3.
6301     case TRUTH_ORIF_EXPR:
6302       // a , b
6303       // Predates P0145R3.
6304     case COMPOUND_EXPR:
6305       return (flag_strong_eval_order ? 1 : 0);
6306 
6307     default:
6308       return 0;
6309     }
6310 }
6311 
6312 /* Subroutine of build_new_op: Add to CANDIDATES all candidates for the
6313    operator indicated by CODE/CODE2.  This function calls itself recursively to
6314    handle C++20 rewritten comparison operator candidates.
6315 
6316    LOOKUPS, if non-NULL, is the set of pertinent namespace-scope operator
6317    overloads to consider.  This parameter is used when instantiating a
6318    dependent operator expression and has the same structure as
6319    DEPENDENT_OPERATOR_TYPE_SAVED_LOOKUPS.  */
6320 
6321 static tree
add_operator_candidates(z_candidate ** candidates,tree_code code,tree_code code2,vec<tree,va_gc> * arglist,tree lookups,int flags,tsubst_flags_t complain)6322 add_operator_candidates (z_candidate **candidates,
6323 			 tree_code code, tree_code code2,
6324 			 vec<tree, va_gc> *arglist, tree lookups,
6325 			 int flags, tsubst_flags_t complain)
6326 {
6327   z_candidate *start_candidates = *candidates;
6328   bool ismodop = code2 != ERROR_MARK;
6329   tree fnname = ovl_op_identifier (ismodop, ismodop ? code2 : code);
6330 
6331   /* LOOKUP_REWRITTEN is set when we're looking for the == or <=> operator to
6332      rewrite from, and also when we're looking for the e.g. < operator to use
6333      on the result of <=>.  In the latter case, we don't want the flag set in
6334      the candidate, we just want to suppress looking for rewrites.  */
6335   bool rewritten = (flags & LOOKUP_REWRITTEN);
6336   if (rewritten && code != EQ_EXPR && code != SPACESHIP_EXPR)
6337     flags &= ~LOOKUP_REWRITTEN;
6338 
6339   bool memonly = false;
6340   switch (code)
6341     {
6342       /* =, ->, [], () must be non-static member functions.  */
6343     case MODIFY_EXPR:
6344       if (code2 != NOP_EXPR)
6345 	break;
6346       /* FALLTHRU */
6347     case COMPONENT_REF:
6348     case ARRAY_REF:
6349       memonly = true;
6350       break;
6351 
6352     default:
6353       break;
6354     }
6355 
6356   /* Add namespace-scope operators to the list of functions to
6357      consider.  */
6358   if (!memonly)
6359     {
6360       tree fns;
6361       if (!lookups)
6362 	fns = lookup_name (fnname, LOOK_where::BLOCK_NAMESPACE);
6363       /* If LOOKUPS is non-NULL, then we're instantiating a dependent operator
6364 	 expression, and LOOKUPS is the result of stage 1 name lookup.  */
6365       else if (tree found = purpose_member (fnname, lookups))
6366 	fns = TREE_VALUE (found);
6367       else
6368 	fns = NULL_TREE;
6369       fns = lookup_arg_dependent (fnname, fns, arglist);
6370       add_candidates (fns, NULL_TREE, arglist, NULL_TREE,
6371 		      NULL_TREE, false, NULL_TREE, NULL_TREE,
6372 		      flags, candidates, complain);
6373     }
6374 
6375   /* Add class-member operators to the candidate set.  */
6376   tree arg1_type = TREE_TYPE ((*arglist)[0]);
6377   unsigned nargs = arglist->length () > 1 ? 2 : 1;
6378   tree arg2_type = nargs > 1 ? TREE_TYPE ((*arglist)[1]) : NULL_TREE;
6379   if (CLASS_TYPE_P (arg1_type))
6380     {
6381       tree fns = lookup_fnfields (arg1_type, fnname, 1, complain);
6382       if (fns == error_mark_node)
6383 	return error_mark_node;
6384       if (fns)
6385 	add_candidates (BASELINK_FUNCTIONS (fns),
6386 			NULL_TREE, arglist, NULL_TREE,
6387 			NULL_TREE, false,
6388 			BASELINK_BINFO (fns),
6389 			BASELINK_ACCESS_BINFO (fns),
6390 			flags, candidates, complain);
6391     }
6392   /* Per [over.match.oper]3.2, if no operand has a class type, then
6393      only non-member functions that have type T1 or reference to
6394      cv-qualified-opt T1 for the first argument, if the first argument
6395      has an enumeration type, or T2 or reference to cv-qualified-opt
6396      T2 for the second argument, if the second argument has an
6397      enumeration type.  Filter out those that don't match.  */
6398   else if (! arg2_type || ! CLASS_TYPE_P (arg2_type))
6399     {
6400       struct z_candidate **candp, **next;
6401 
6402       for (candp = candidates; *candp != start_candidates; candp = next)
6403 	{
6404 	  unsigned i;
6405 	  z_candidate *cand = *candp;
6406 	  next = &cand->next;
6407 
6408 	  tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
6409 
6410 	  for (i = 0; i < nargs; ++i)
6411 	    {
6412 	      tree parmtype = TREE_VALUE (parmlist);
6413 	      tree argtype = unlowered_expr_type ((*arglist)[i]);
6414 
6415 	      if (TYPE_REF_P (parmtype))
6416 		parmtype = TREE_TYPE (parmtype);
6417 	      if (TREE_CODE (argtype) == ENUMERAL_TYPE
6418 		  && (same_type_ignoring_top_level_qualifiers_p
6419 		      (argtype, parmtype)))
6420 		break;
6421 
6422 	      parmlist = TREE_CHAIN (parmlist);
6423 	    }
6424 
6425 	  /* No argument has an appropriate type, so remove this
6426 	     candidate function from the list.  */
6427 	  if (i == nargs)
6428 	    {
6429 	      *candp = cand->next;
6430 	      next = candp;
6431 	    }
6432 	}
6433     }
6434 
6435   if (!rewritten)
6436     {
6437       /* The standard says to rewrite built-in candidates, too,
6438 	 but there's no point.  */
6439       add_builtin_candidates (candidates, code, code2, fnname, arglist,
6440 			      flags, complain);
6441 
6442       /* Maybe add C++20 rewritten comparison candidates.  */
6443       tree_code rewrite_code = ERROR_MARK;
6444       if (cxx_dialect >= cxx20
6445 	  && nargs == 2
6446 	  && (OVERLOAD_TYPE_P (arg1_type) || OVERLOAD_TYPE_P (arg2_type)))
6447 	switch (code)
6448 	  {
6449 	  case LT_EXPR:
6450 	  case LE_EXPR:
6451 	  case GT_EXPR:
6452 	  case GE_EXPR:
6453 	  case SPACESHIP_EXPR:
6454 	    rewrite_code = SPACESHIP_EXPR;
6455 	    break;
6456 
6457 	  case NE_EXPR:
6458 	  case EQ_EXPR:
6459 	    rewrite_code = EQ_EXPR;
6460 	    break;
6461 
6462 	  default:;
6463 	  }
6464 
6465       if (rewrite_code)
6466 	{
6467 	  flags |= LOOKUP_REWRITTEN;
6468 	  if (rewrite_code != code)
6469 	    /* Add rewritten candidates in same order.  */
6470 	    add_operator_candidates (candidates, rewrite_code, ERROR_MARK,
6471 				     arglist, lookups, flags, complain);
6472 
6473 	  z_candidate *save_cand = *candidates;
6474 
6475 	  /* Add rewritten candidates in reverse order.  */
6476 	  flags |= LOOKUP_REVERSED;
6477 	  vec<tree,va_gc> *revlist = make_tree_vector ();
6478 	  revlist->quick_push ((*arglist)[1]);
6479 	  revlist->quick_push ((*arglist)[0]);
6480 	  add_operator_candidates (candidates, rewrite_code, ERROR_MARK,
6481 				   revlist, lookups, flags, complain);
6482 
6483 	  /* Release the vec if we didn't add a candidate that uses it.  */
6484 	  for (z_candidate *c = *candidates; c != save_cand; c = c->next)
6485 	    if (c->args == revlist)
6486 	      {
6487 		revlist = NULL;
6488 		break;
6489 	      }
6490 	  release_tree_vector (revlist);
6491 	}
6492     }
6493 
6494   return NULL_TREE;
6495 }
6496 
6497 tree
build_new_op(const op_location_t & loc,enum tree_code code,int flags,tree arg1,tree arg2,tree arg3,tree lookups,tree * overload,tsubst_flags_t complain)6498 build_new_op (const op_location_t &loc, enum tree_code code, int flags,
6499 	      tree arg1, tree arg2, tree arg3, tree lookups,
6500 	      tree *overload, tsubst_flags_t complain)
6501 {
6502   struct z_candidate *candidates = 0, *cand;
6503   releasing_vec arglist;
6504   tree result = NULL_TREE;
6505   bool result_valid_p = false;
6506   enum tree_code code2 = ERROR_MARK;
6507   enum tree_code code_orig_arg1 = ERROR_MARK;
6508   enum tree_code code_orig_arg2 = ERROR_MARK;
6509   void *p;
6510   bool strict_p;
6511   bool any_viable_p;
6512 
6513   auto_cond_timevar tv (TV_OVERLOAD);
6514 
6515   if (error_operand_p (arg1)
6516       || error_operand_p (arg2)
6517       || error_operand_p (arg3))
6518     return error_mark_node;
6519 
6520   bool ismodop = code == MODIFY_EXPR;
6521   if (ismodop)
6522     {
6523       code2 = TREE_CODE (arg3);
6524       arg3 = NULL_TREE;
6525     }
6526 
6527   tree arg1_type = unlowered_expr_type (arg1);
6528   tree arg2_type = arg2 ? unlowered_expr_type (arg2) : NULL_TREE;
6529 
6530   arg1 = prep_operand (arg1);
6531 
6532   switch (code)
6533     {
6534     case NEW_EXPR:
6535     case VEC_NEW_EXPR:
6536     case VEC_DELETE_EXPR:
6537     case DELETE_EXPR:
6538       /* Use build_operator_new_call and build_op_delete_call instead.  */
6539       gcc_unreachable ();
6540 
6541     case CALL_EXPR:
6542       /* Use build_op_call instead.  */
6543       gcc_unreachable ();
6544 
6545     case TRUTH_ORIF_EXPR:
6546     case TRUTH_ANDIF_EXPR:
6547     case TRUTH_AND_EXPR:
6548     case TRUTH_OR_EXPR:
6549       /* These are saved for the sake of warn_logical_operator.  */
6550       code_orig_arg1 = TREE_CODE (arg1);
6551       code_orig_arg2 = TREE_CODE (arg2);
6552       break;
6553     case GT_EXPR:
6554     case LT_EXPR:
6555     case GE_EXPR:
6556     case LE_EXPR:
6557     case EQ_EXPR:
6558     case NE_EXPR:
6559       /* These are saved for the sake of maybe_warn_bool_compare.  */
6560       code_orig_arg1 = TREE_CODE (arg1_type);
6561       code_orig_arg2 = TREE_CODE (arg2_type);
6562       break;
6563 
6564     default:
6565       break;
6566     }
6567 
6568   arg2 = prep_operand (arg2);
6569   arg3 = prep_operand (arg3);
6570 
6571   if (code == COND_EXPR)
6572     /* Use build_conditional_expr instead.  */
6573     gcc_unreachable ();
6574   else if (! OVERLOAD_TYPE_P (arg1_type)
6575 	   && (! arg2 || ! OVERLOAD_TYPE_P (arg2_type)))
6576     goto builtin;
6577 
6578   if (code == POSTINCREMENT_EXPR || code == POSTDECREMENT_EXPR)
6579     {
6580       arg2 = integer_zero_node;
6581       arg2_type = integer_type_node;
6582     }
6583 
6584   arglist->quick_push (arg1);
6585   if (arg2 != NULL_TREE)
6586     arglist->quick_push (arg2);
6587   if (arg3 != NULL_TREE)
6588     arglist->quick_push (arg3);
6589 
6590   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
6591   p = conversion_obstack_alloc (0);
6592 
6593   result = add_operator_candidates (&candidates, code, code2, arglist,
6594 				    lookups, flags, complain);
6595   if (result == error_mark_node)
6596     goto user_defined_result_ready;
6597 
6598   switch (code)
6599     {
6600     case COMPOUND_EXPR:
6601     case ADDR_EXPR:
6602       /* For these, the built-in candidates set is empty
6603 	 [over.match.oper]/3.  We don't want non-strict matches
6604 	 because exact matches are always possible with built-in
6605 	 operators.  The built-in candidate set for COMPONENT_REF
6606 	 would be empty too, but since there are no such built-in
6607 	 operators, we accept non-strict matches for them.  */
6608       strict_p = true;
6609       break;
6610 
6611     default:
6612       strict_p = false;
6613       break;
6614     }
6615 
6616   candidates = splice_viable (candidates, strict_p, &any_viable_p);
6617   if (!any_viable_p)
6618     {
6619       switch (code)
6620 	{
6621 	case POSTINCREMENT_EXPR:
6622 	case POSTDECREMENT_EXPR:
6623 	  /* Don't try anything fancy if we're not allowed to produce
6624 	     errors.  */
6625 	  if (!(complain & tf_error))
6626 	    return error_mark_node;
6627 
6628 	  /* Look for an `operator++ (int)'. Pre-1985 C++ didn't
6629 	     distinguish between prefix and postfix ++ and
6630 	     operator++() was used for both, so we allow this with
6631 	     -fpermissive.  */
6632 	  else
6633 	    {
6634 	      tree fnname = ovl_op_identifier (ismodop, ismodop ? code2 : code);
6635 	      const char *msg = (flag_permissive)
6636 		? G_("no %<%D(int)%> declared for postfix %qs,"
6637 		     " trying prefix operator instead")
6638 		: G_("no %<%D(int)%> declared for postfix %qs");
6639 	      permerror (loc, msg, fnname, OVL_OP_INFO (false, code)->name);
6640 	    }
6641 
6642 	  if (!flag_permissive)
6643 	    return error_mark_node;
6644 
6645 	  if (code == POSTINCREMENT_EXPR)
6646 	    code = PREINCREMENT_EXPR;
6647 	  else
6648 	    code = PREDECREMENT_EXPR;
6649 	  result = build_new_op (loc, code, flags, arg1, NULL_TREE,
6650 				 NULL_TREE, lookups, overload, complain);
6651 	  break;
6652 
6653 	  /* The caller will deal with these.  */
6654 	case ADDR_EXPR:
6655 	case COMPOUND_EXPR:
6656 	case COMPONENT_REF:
6657 	case CO_AWAIT_EXPR:
6658 	  result = NULL_TREE;
6659 	  result_valid_p = true;
6660 	  break;
6661 
6662 	default:
6663 	  if (complain & tf_error)
6664 	    {
6665 		/* If one of the arguments of the operator represents
6666 		   an invalid use of member function pointer, try to report
6667 		   a meaningful error ...  */
6668 	      if (invalid_nonstatic_memfn_p (loc, arg1, tf_error)
6669 		    || invalid_nonstatic_memfn_p (loc, arg2, tf_error)
6670 		    || invalid_nonstatic_memfn_p (loc, arg3, tf_error))
6671 		  /* We displayed the error message.  */;
6672 		else
6673 		  {
6674 		    /* ... Otherwise, report the more generic
6675 		       "no matching operator found" error */
6676 		    auto_diagnostic_group d;
6677 		    op_error (loc, code, code2, arg1, arg2, arg3, FALSE);
6678 		    print_z_candidates (loc, candidates);
6679 		  }
6680 	    }
6681 	  result = error_mark_node;
6682 	  break;
6683 	}
6684     }
6685   else
6686     {
6687       cand = tourney (candidates, complain);
6688       if (cand == 0)
6689 	{
6690 	  if (complain & tf_error)
6691 	    {
6692 	      auto_diagnostic_group d;
6693 	      op_error (loc, code, code2, arg1, arg2, arg3, TRUE);
6694 	      print_z_candidates (loc, candidates);
6695 	    }
6696 	  result = error_mark_node;
6697 	  if (overload)
6698 	    *overload = error_mark_node;
6699 	}
6700       else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
6701 	{
6702 	  if (overload)
6703 	    *overload = cand->fn;
6704 
6705 	  if (resolve_args (arglist, complain) == NULL)
6706 	    result = error_mark_node;
6707 	  else
6708 	    {
6709 	      tsubst_flags_t ocomplain = complain;
6710 	      if (cand->rewritten ())
6711 		/* We'll wrap this call in another one.  */
6712 		ocomplain &= ~tf_decltype;
6713 	      if (cand->reversed ())
6714 		{
6715 		  /* We swapped these in add_candidate, swap them back now.  */
6716 		  std::swap (cand->convs[0], cand->convs[1]);
6717 		  if (cand->fn == current_function_decl)
6718 		    warning_at (loc, 0, "in C++20 this comparison calls the "
6719 				"current function recursively with reversed "
6720 				"arguments");
6721 		}
6722 	      result = build_over_call (cand, LOOKUP_NORMAL, ocomplain);
6723 	    }
6724 
6725 	  if (trivial_fn_p (cand->fn) || DECL_IMMEDIATE_FUNCTION_P (cand->fn))
6726 	    /* There won't be a CALL_EXPR.  */;
6727 	  else if (result && result != error_mark_node)
6728 	    {
6729 	      tree call = extract_call_expr (result);
6730 	      CALL_EXPR_OPERATOR_SYNTAX (call) = true;
6731 
6732 	      /* Specify evaluation order as per P0145R2.  */
6733 	      CALL_EXPR_ORDERED_ARGS (call) = false;
6734 	      switch (op_is_ordered (code))
6735 		{
6736 		case -1:
6737 		  CALL_EXPR_REVERSE_ARGS (call) = true;
6738 		  break;
6739 
6740 		case 1:
6741 		  CALL_EXPR_ORDERED_ARGS (call) = true;
6742 		  break;
6743 
6744 		default:
6745 		  break;
6746 		}
6747 	    }
6748 
6749 	  /* If this was a C++20 rewritten comparison, adjust the result.  */
6750 	  if (cand->rewritten ())
6751 	    {
6752 	      /* FIXME build_min_non_dep_op_overload can't handle rewrites.  */
6753 	      if (overload)
6754 		*overload = NULL_TREE;
6755 	      switch (code)
6756 		{
6757 		case EQ_EXPR:
6758 		  gcc_checking_assert (cand->reversed ());
6759 		  gcc_fallthrough ();
6760 		case NE_EXPR:
6761 		  /* If a rewritten operator== candidate is selected by
6762 		     overload resolution for an operator @, its return type
6763 		     shall be cv bool.... */
6764 		  if (TREE_CODE (TREE_TYPE (result)) != BOOLEAN_TYPE)
6765 		    {
6766 		      if (complain & tf_error)
6767 			{
6768 			  auto_diagnostic_group d;
6769 			  error_at (loc, "return type of %qD is not %qs",
6770 				    cand->fn, "bool");
6771 			  inform (loc, "used as rewritten candidate for "
6772 				  "comparison of %qT and %qT",
6773 				  arg1_type, arg2_type);
6774 			}
6775 		      result = error_mark_node;
6776 		    }
6777 		  else if (code == NE_EXPR)
6778 		    /* !(y == x) or !(x == y)  */
6779 		    result = build1_loc (loc, TRUTH_NOT_EXPR,
6780 					 boolean_type_node, result);
6781 		  break;
6782 
6783 		  /* If a rewritten operator<=> candidate is selected by
6784 		     overload resolution for an operator @, x @ y is
6785 		     interpreted as 0 @ (y <=> x) if the selected candidate is
6786 		     a synthesized candidate with reversed order of parameters,
6787 		     or (x <=> y) @ 0 otherwise, using the selected rewritten
6788 		     operator<=> candidate.  */
6789 		case SPACESHIP_EXPR:
6790 		  if (!cand->reversed ())
6791 		    /* We're in the build_new_op call below for an outer
6792 		       reversed call; we don't need to do anything more.  */
6793 		    break;
6794 		  gcc_fallthrough ();
6795 		case LT_EXPR:
6796 		case LE_EXPR:
6797 		case GT_EXPR:
6798 		case GE_EXPR:
6799 		  {
6800 		    tree lhs = result;
6801 		    tree rhs = integer_zero_node;
6802 		    if (cand->reversed ())
6803 		      std::swap (lhs, rhs);
6804 		    warning_sentinel ws (warn_zero_as_null_pointer_constant);
6805 		    result = build_new_op (loc, code,
6806 					   LOOKUP_NORMAL|LOOKUP_REWRITTEN,
6807 					   lhs, rhs, NULL_TREE, lookups,
6808 					   NULL, complain);
6809 		  }
6810 		  break;
6811 
6812 		default:
6813 		  gcc_unreachable ();
6814 		}
6815 	    }
6816 	}
6817       else
6818 	{
6819 	  /* Give any warnings we noticed during overload resolution.  */
6820 	  if (cand->warnings && (complain & tf_warning))
6821 	    {
6822 	      struct candidate_warning *w;
6823 	      for (w = cand->warnings; w; w = w->next)
6824 		joust (cand, w->loser, 1, complain);
6825 	    }
6826 
6827 	  /* Check for comparison of different enum types.  */
6828 	  switch (code)
6829 	    {
6830 	    case GT_EXPR:
6831 	    case LT_EXPR:
6832 	    case GE_EXPR:
6833 	    case LE_EXPR:
6834 	    case EQ_EXPR:
6835 	    case NE_EXPR:
6836 	      if (TREE_CODE (arg1_type) == ENUMERAL_TYPE
6837 		  && TREE_CODE (arg2_type) == ENUMERAL_TYPE
6838 		  && (TYPE_MAIN_VARIANT (arg1_type)
6839 		      != TYPE_MAIN_VARIANT (arg2_type))
6840 		  && (complain & tf_warning))
6841 		warning_at (loc, OPT_Wenum_compare,
6842 			    "comparison between %q#T and %q#T",
6843 			    arg1_type, arg2_type);
6844 	      break;
6845 	    default:
6846 	      break;
6847 	    }
6848 
6849 	  /* "If a built-in candidate is selected by overload resolution, the
6850 	     operands of class type are converted to the types of the
6851 	     corresponding parameters of the selected operation function,
6852 	     except that the second standard conversion sequence of a
6853 	     user-defined conversion sequence (12.3.3.1.2) is not applied."  */
6854 	  conversion *conv = cand->convs[0];
6855 	  if (conv->user_conv_p)
6856 	    {
6857 	      conv = strip_standard_conversion (conv);
6858 	      arg1 = convert_like (conv, arg1, complain);
6859 	    }
6860 
6861 	  if (arg2)
6862 	    {
6863 	      conv = cand->convs[1];
6864 	      if (conv->user_conv_p)
6865 		{
6866 		  conv = strip_standard_conversion (conv);
6867 		  arg2 = convert_like (conv, arg2, complain);
6868 		}
6869 	    }
6870 
6871 	  if (arg3)
6872 	    {
6873 	      conv = cand->convs[2];
6874 	      if (conv->user_conv_p)
6875 		{
6876 		  conv = strip_standard_conversion (conv);
6877 		  arg3 = convert_like (conv, arg3, complain);
6878 		}
6879 	    }
6880 	}
6881     }
6882 
6883  user_defined_result_ready:
6884 
6885   /* Free all the conversions we allocated.  */
6886   obstack_free (&conversion_obstack, p);
6887 
6888   if (result || result_valid_p)
6889     return result;
6890 
6891  builtin:
6892   switch (code)
6893     {
6894     case MODIFY_EXPR:
6895       return cp_build_modify_expr (loc, arg1, code2, arg2, complain);
6896 
6897     case INDIRECT_REF:
6898       return cp_build_indirect_ref (loc, arg1, RO_UNARY_STAR, complain);
6899 
6900     case TRUTH_ANDIF_EXPR:
6901     case TRUTH_ORIF_EXPR:
6902     case TRUTH_AND_EXPR:
6903     case TRUTH_OR_EXPR:
6904       if ((complain & tf_warning) && !processing_template_decl)
6905 	warn_logical_operator (loc, code, boolean_type_node,
6906 			       code_orig_arg1, arg1,
6907 			       code_orig_arg2, arg2);
6908       /* Fall through.  */
6909     case GT_EXPR:
6910     case LT_EXPR:
6911     case GE_EXPR:
6912     case LE_EXPR:
6913     case EQ_EXPR:
6914     case NE_EXPR:
6915       if ((complain & tf_warning)
6916 	  && ((code_orig_arg1 == BOOLEAN_TYPE)
6917 	      ^ (code_orig_arg2 == BOOLEAN_TYPE)))
6918 	maybe_warn_bool_compare (loc, code, arg1, arg2);
6919       if (complain & tf_warning && warn_tautological_compare)
6920 	warn_tautological_cmp (loc, code, arg1, arg2);
6921       /* Fall through.  */
6922     case SPACESHIP_EXPR:
6923     case PLUS_EXPR:
6924     case MINUS_EXPR:
6925     case MULT_EXPR:
6926     case TRUNC_DIV_EXPR:
6927     case MAX_EXPR:
6928     case MIN_EXPR:
6929     case LSHIFT_EXPR:
6930     case RSHIFT_EXPR:
6931     case TRUNC_MOD_EXPR:
6932     case BIT_AND_EXPR:
6933     case BIT_IOR_EXPR:
6934     case BIT_XOR_EXPR:
6935       return cp_build_binary_op (loc, code, arg1, arg2, complain);
6936 
6937     case UNARY_PLUS_EXPR:
6938     case NEGATE_EXPR:
6939     case BIT_NOT_EXPR:
6940     case TRUTH_NOT_EXPR:
6941     case PREINCREMENT_EXPR:
6942     case POSTINCREMENT_EXPR:
6943     case PREDECREMENT_EXPR:
6944     case POSTDECREMENT_EXPR:
6945     case REALPART_EXPR:
6946     case IMAGPART_EXPR:
6947     case ABS_EXPR:
6948     case CO_AWAIT_EXPR:
6949       return cp_build_unary_op (code, arg1, false, complain);
6950 
6951     case ARRAY_REF:
6952       return cp_build_array_ref (input_location, arg1, arg2, complain);
6953 
6954     case MEMBER_REF:
6955       return build_m_component_ref (cp_build_indirect_ref (loc, arg1,
6956 							   RO_ARROW_STAR,
6957                                                            complain),
6958                                     arg2, complain);
6959 
6960       /* The caller will deal with these.  */
6961     case ADDR_EXPR:
6962     case COMPONENT_REF:
6963     case COMPOUND_EXPR:
6964       return NULL_TREE;
6965 
6966     default:
6967       gcc_unreachable ();
6968     }
6969   return NULL_TREE;
6970 }
6971 
6972 /* Build a new call to operator[].  This may change ARGS.  */
6973 
6974 tree
build_op_subscript(const op_location_t & loc,tree obj,vec<tree,va_gc> ** args,tree * overload,tsubst_flags_t complain)6975 build_op_subscript (const op_location_t &loc, tree obj,
6976 		    vec<tree, va_gc> **args, tree *overload,
6977 		    tsubst_flags_t complain)
6978 {
6979   struct z_candidate *candidates = 0, *cand;
6980   tree fns, first_mem_arg = NULL_TREE;
6981   bool any_viable_p;
6982   tree result = NULL_TREE;
6983   void *p;
6984 
6985   auto_cond_timevar tv (TV_OVERLOAD);
6986 
6987   obj = mark_lvalue_use (obj);
6988 
6989   if (error_operand_p (obj))
6990     return error_mark_node;
6991 
6992   tree type = TREE_TYPE (obj);
6993 
6994   obj = prep_operand (obj);
6995 
6996   if (TYPE_BINFO (type))
6997     {
6998       fns = lookup_fnfields (TYPE_BINFO (type), ovl_op_identifier (ARRAY_REF),
6999 			     1, complain);
7000       if (fns == error_mark_node)
7001 	return error_mark_node;
7002     }
7003   else
7004     fns = NULL_TREE;
7005 
7006   if (args != NULL && *args != NULL)
7007     {
7008       *args = resolve_args (*args, complain);
7009       if (*args == NULL)
7010 	return error_mark_node;
7011     }
7012 
7013   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
7014   p = conversion_obstack_alloc (0);
7015 
7016   if (fns)
7017     {
7018       first_mem_arg = obj;
7019 
7020       add_candidates (BASELINK_FUNCTIONS (fns),
7021 		      first_mem_arg, *args, NULL_TREE,
7022 		      NULL_TREE, false,
7023 		      BASELINK_BINFO (fns), BASELINK_ACCESS_BINFO (fns),
7024 		      LOOKUP_NORMAL, &candidates, complain);
7025     }
7026 
7027   /* Be strict here because if we choose a bad conversion candidate, the
7028      errors we get won't mention the call context.  */
7029   candidates = splice_viable (candidates, true, &any_viable_p);
7030   if (!any_viable_p)
7031     {
7032       if (complain & tf_error)
7033 	{
7034 	  auto_diagnostic_group d;
7035 	  error ("no match for call to %<%T::operator[] (%A)%>",
7036 		 TREE_TYPE (obj), build_tree_list_vec (*args));
7037 	  print_z_candidates (loc, candidates);
7038 	}
7039       result = error_mark_node;
7040     }
7041   else
7042     {
7043       cand = tourney (candidates, complain);
7044       if (cand == 0)
7045 	{
7046 	  if (complain & tf_error)
7047 	    {
7048 	      auto_diagnostic_group d;
7049 	      error ("call of %<%T::operator[] (%A)%> is ambiguous",
7050 		     TREE_TYPE (obj), build_tree_list_vec (*args));
7051 	      print_z_candidates (loc, candidates);
7052 	    }
7053 	  result = error_mark_node;
7054 	}
7055       else if (TREE_CODE (cand->fn) == FUNCTION_DECL
7056 	       && DECL_OVERLOADED_OPERATOR_P (cand->fn)
7057 	       && DECL_OVERLOADED_OPERATOR_IS (cand->fn, ARRAY_REF))
7058 	{
7059 	  if (overload)
7060 	    *overload = cand->fn;
7061 	  result = build_over_call (cand, LOOKUP_NORMAL, complain);
7062 	  if (trivial_fn_p (cand->fn) || DECL_IMMEDIATE_FUNCTION_P (cand->fn))
7063 	    /* There won't be a CALL_EXPR.  */;
7064 	  else if (result && result != error_mark_node)
7065 	    {
7066 	      tree call = extract_call_expr (result);
7067 	      CALL_EXPR_OPERATOR_SYNTAX (call) = true;
7068 
7069 	      /* Specify evaluation order as per P0145R2.  */
7070 	      CALL_EXPR_ORDERED_ARGS (call) = op_is_ordered (ARRAY_REF) == 1;
7071 	    }
7072 	}
7073       else
7074 	gcc_unreachable ();
7075     }
7076 
7077   /* Free all the conversions we allocated.  */
7078   obstack_free (&conversion_obstack, p);
7079 
7080   return result;
7081 }
7082 
7083 /* CALL was returned by some call-building function; extract the actual
7084    CALL_EXPR from any bits that have been tacked on, e.g. by
7085    convert_from_reference.  */
7086 
7087 tree
extract_call_expr(tree call)7088 extract_call_expr (tree call)
7089 {
7090   while (TREE_CODE (call) == COMPOUND_EXPR)
7091     call = TREE_OPERAND (call, 1);
7092   if (REFERENCE_REF_P (call))
7093     call = TREE_OPERAND (call, 0);
7094   if (TREE_CODE (call) == TARGET_EXPR)
7095     call = TARGET_EXPR_INITIAL (call);
7096   if (cxx_dialect >= cxx20)
7097     switch (TREE_CODE (call))
7098       {
7099 	/* C++20 rewritten comparison operators.  */
7100       case TRUTH_NOT_EXPR:
7101 	call = TREE_OPERAND (call, 0);
7102 	break;
7103       case LT_EXPR:
7104       case LE_EXPR:
7105       case GT_EXPR:
7106       case GE_EXPR:
7107       case SPACESHIP_EXPR:
7108 	{
7109 	  tree op0 = TREE_OPERAND (call, 0);
7110 	  if (integer_zerop (op0))
7111 	    call = TREE_OPERAND (call, 1);
7112 	  else
7113 	    call = op0;
7114 	}
7115 	break;
7116       default:;
7117       }
7118 
7119   if (TREE_CODE (call) != CALL_EXPR
7120       && TREE_CODE (call) != AGGR_INIT_EXPR
7121       && call != error_mark_node)
7122     return NULL_TREE;
7123   return call;
7124 }
7125 
7126 /* Returns true if FN has two parameters, of which the second has type
7127    size_t.  */
7128 
7129 static bool
second_parm_is_size_t(tree fn)7130 second_parm_is_size_t (tree fn)
7131 {
7132   tree t = FUNCTION_ARG_CHAIN (fn);
7133   if (!t || !same_type_p (TREE_VALUE (t), size_type_node))
7134     return false;
7135   t = TREE_CHAIN (t);
7136   if (t == void_list_node)
7137     return true;
7138   return false;
7139 }
7140 
7141 /* True if T, an allocation function, has std::align_val_t as its second
7142    argument.  */
7143 
7144 bool
aligned_allocation_fn_p(tree t)7145 aligned_allocation_fn_p (tree t)
7146 {
7147   if (!aligned_new_threshold)
7148     return false;
7149 
7150   tree a = FUNCTION_ARG_CHAIN (t);
7151   return (a && same_type_p (TREE_VALUE (a), align_type_node));
7152 }
7153 
7154 /* True if T is std::destroying_delete_t.  */
7155 
7156 static bool
std_destroying_delete_t_p(tree t)7157 std_destroying_delete_t_p (tree t)
7158 {
7159   return (TYPE_CONTEXT (t) == std_node
7160 	  && id_equal (TYPE_IDENTIFIER (t), "destroying_delete_t"));
7161 }
7162 
7163 /* A deallocation function with at least two parameters whose second parameter
7164    type is of type std::destroying_delete_t is a destroying operator delete. A
7165    destroying operator delete shall be a class member function named operator
7166    delete. [ Note: Array deletion cannot use a destroying operator
7167    delete. --end note ] */
7168 
7169 tree
destroying_delete_p(tree t)7170 destroying_delete_p (tree t)
7171 {
7172   tree a = TYPE_ARG_TYPES (TREE_TYPE (t));
7173   if (!a || !TREE_CHAIN (a))
7174     return NULL_TREE;
7175   tree type = TREE_VALUE (TREE_CHAIN (a));
7176   return std_destroying_delete_t_p (type) ? type : NULL_TREE;
7177 }
7178 
7179 struct dealloc_info
7180 {
7181   bool sized;
7182   bool aligned;
7183   tree destroying;
7184 };
7185 
7186 /* Returns true iff T, an element of an OVERLOAD chain, is a usual deallocation
7187    function (3.7.4.2 [basic.stc.dynamic.deallocation]).  If so, and DI is
7188    non-null, also set *DI. */
7189 
7190 static bool
usual_deallocation_fn_p(tree t,dealloc_info * di)7191 usual_deallocation_fn_p (tree t, dealloc_info *di)
7192 {
7193   if (di) *di = dealloc_info();
7194 
7195   /* A template instance is never a usual deallocation function,
7196      regardless of its signature.  */
7197   if (TREE_CODE (t) == TEMPLATE_DECL
7198       || primary_template_specialization_p (t))
7199     return false;
7200 
7201   /* A usual deallocation function is a deallocation function whose parameters
7202      after the first are
7203      - optionally, a parameter of type std::destroying_delete_t, then
7204      - optionally, a parameter of type std::size_t, then
7205      - optionally, a parameter of type std::align_val_t.  */
7206   bool global = DECL_NAMESPACE_SCOPE_P (t);
7207   tree chain = FUNCTION_ARG_CHAIN (t);
7208   if (chain && destroying_delete_p (t))
7209     {
7210       if (di) di->destroying = TREE_VALUE (chain);
7211       chain = TREE_CHAIN (chain);
7212     }
7213   if (chain
7214       && (!global || flag_sized_deallocation)
7215       && same_type_p (TREE_VALUE (chain), size_type_node))
7216     {
7217       if (di) di->sized = true;
7218       chain = TREE_CHAIN (chain);
7219     }
7220   if (chain && aligned_new_threshold
7221       && same_type_p (TREE_VALUE (chain), align_type_node))
7222     {
7223       if (di) di->aligned = true;
7224       chain = TREE_CHAIN (chain);
7225     }
7226   return (chain == void_list_node);
7227 }
7228 
7229 /* Just return whether FN is a usual deallocation function.  */
7230 
7231 bool
usual_deallocation_fn_p(tree fn)7232 usual_deallocation_fn_p (tree fn)
7233 {
7234   return usual_deallocation_fn_p (fn, NULL);
7235 }
7236 
7237 /* Build a call to operator delete.  This has to be handled very specially,
7238    because the restrictions on what signatures match are different from all
7239    other call instances.  For a normal delete, only a delete taking (void *)
7240    or (void *, size_t) is accepted.  For a placement delete, only an exact
7241    match with the placement new is accepted.
7242 
7243    CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
7244    ADDR is the pointer to be deleted.
7245    SIZE is the size of the memory block to be deleted.
7246    GLOBAL_P is true if the delete-expression should not consider
7247    class-specific delete operators.
7248    PLACEMENT is the corresponding placement new call, or NULL_TREE.
7249 
7250    If this call to "operator delete" is being generated as part to
7251    deallocate memory allocated via a new-expression (as per [expr.new]
7252    which requires that if the initialization throws an exception then
7253    we call a deallocation function), then ALLOC_FN is the allocation
7254    function.  */
7255 
7256 tree
build_op_delete_call(enum tree_code code,tree addr,tree size,bool global_p,tree placement,tree alloc_fn,tsubst_flags_t complain)7257 build_op_delete_call (enum tree_code code, tree addr, tree size,
7258 		      bool global_p, tree placement,
7259 		      tree alloc_fn, tsubst_flags_t complain)
7260 {
7261   tree fn = NULL_TREE;
7262   tree fns, fnname, type, t;
7263   dealloc_info di_fn = { };
7264 
7265   if (addr == error_mark_node)
7266     return error_mark_node;
7267 
7268   type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
7269 
7270   fnname = ovl_op_identifier (false, code);
7271 
7272   if (CLASS_TYPE_P (type)
7273       && COMPLETE_TYPE_P (complete_type (type))
7274       && !global_p)
7275     /* In [class.free]
7276 
7277        If the result of the lookup is ambiguous or inaccessible, or if
7278        the lookup selects a placement deallocation function, the
7279        program is ill-formed.
7280 
7281        Therefore, we ask lookup_fnfields to complain about ambiguity.  */
7282     {
7283       fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1, complain);
7284       if (fns == error_mark_node)
7285 	return error_mark_node;
7286     }
7287   else
7288     fns = NULL_TREE;
7289 
7290   if (fns == NULL_TREE)
7291     fns = lookup_name (fnname, LOOK_where::BLOCK_NAMESPACE);
7292 
7293   /* Strip const and volatile from addr.  */
7294   tree oaddr = addr;
7295   addr = cp_convert (ptr_type_node, addr, complain);
7296 
7297   tree excluded_destroying = NULL_TREE;
7298 
7299   if (placement)
7300     {
7301       /* "A declaration of a placement deallocation function matches the
7302 	 declaration of a placement allocation function if it has the same
7303 	 number of parameters and, after parameter transformations (8.3.5),
7304 	 all parameter types except the first are identical."
7305 
7306 	 So we build up the function type we want and ask instantiate_type
7307 	 to get it for us.  */
7308       t = FUNCTION_ARG_CHAIN (alloc_fn);
7309       t = tree_cons (NULL_TREE, ptr_type_node, t);
7310       t = build_function_type (void_type_node, t);
7311 
7312       fn = instantiate_type (t, fns, tf_none);
7313       if (fn == error_mark_node)
7314 	return NULL_TREE;
7315 
7316       fn = MAYBE_BASELINK_FUNCTIONS (fn);
7317 
7318       /* "If the lookup finds the two-parameter form of a usual deallocation
7319 	 function (3.7.4.2) and that function, considered as a placement
7320 	 deallocation function, would have been selected as a match for the
7321 	 allocation function, the program is ill-formed."  */
7322       if (second_parm_is_size_t (fn))
7323 	{
7324 	  const char *const msg1
7325 	    = G_("exception cleanup for this placement new selects "
7326 		 "non-placement %<operator delete%>");
7327 	  const char *const msg2
7328 	    = G_("%qD is a usual (non-placement) deallocation "
7329 		 "function in C++14 (or with %<-fsized-deallocation%>)");
7330 
7331 	  /* But if the class has an operator delete (void *), then that is
7332 	     the usual deallocation function, so we shouldn't complain
7333 	     about using the operator delete (void *, size_t).  */
7334 	  if (DECL_CLASS_SCOPE_P (fn))
7335 	    for (tree elt : lkp_range (MAYBE_BASELINK_FUNCTIONS (fns)))
7336 	      {
7337 		if (usual_deallocation_fn_p (elt)
7338 		    && FUNCTION_ARG_CHAIN (elt) == void_list_node)
7339 		  goto ok;
7340 	      }
7341 	  /* Before C++14 a two-parameter global deallocation function is
7342 	     always a placement deallocation function, but warn if
7343 	     -Wc++14-compat.  */
7344 	  else if (!flag_sized_deallocation)
7345 	    {
7346 	      if (complain & tf_warning)
7347 		{
7348 		  auto_diagnostic_group d;
7349 		  if (warning (OPT_Wc__14_compat, msg1))
7350 		    inform (DECL_SOURCE_LOCATION (fn), msg2, fn);
7351 		}
7352 	      goto ok;
7353 	    }
7354 
7355 	  if (complain & tf_warning_or_error)
7356 	    {
7357 	      auto_diagnostic_group d;
7358 	      if (permerror (input_location, msg1))
7359 		{
7360 		  /* Only mention C++14 for namespace-scope delete.  */
7361 		  if (DECL_NAMESPACE_SCOPE_P (fn))
7362 		    inform (DECL_SOURCE_LOCATION (fn), msg2, fn);
7363 		  else
7364 		    inform (DECL_SOURCE_LOCATION (fn),
7365 			    "%qD is a usual (non-placement) deallocation "
7366 			    "function", fn);
7367 		}
7368 	    }
7369 	  else
7370 	    return error_mark_node;
7371 	ok:;
7372 	}
7373     }
7374   else
7375     /* "Any non-placement deallocation function matches a non-placement
7376        allocation function. If the lookup finds a single matching
7377        deallocation function, that function will be called; otherwise, no
7378        deallocation function will be called."  */
7379     for (tree elt : lkp_range (MAYBE_BASELINK_FUNCTIONS (fns)))
7380       {
7381 	dealloc_info di_elt;
7382 	if (usual_deallocation_fn_p (elt, &di_elt))
7383 	  {
7384 	    /* If we're called for an EH cleanup in a new-expression, we can't
7385 	       use a destroying delete; the exception was thrown before the
7386 	       object was constructed.  */
7387 	    if (alloc_fn && di_elt.destroying)
7388 	      {
7389 		excluded_destroying = elt;
7390 		continue;
7391 	      }
7392 
7393 	    if (!fn)
7394 	      {
7395 		fn = elt;
7396 		di_fn = di_elt;
7397 		continue;
7398 	      }
7399 
7400 	    /* -- If any of the deallocation functions is a destroying
7401 	       operator delete, all deallocation functions that are not
7402 	       destroying operator deletes are eliminated from further
7403 	       consideration.  */
7404 	    if (di_elt.destroying != di_fn.destroying)
7405 	      {
7406 		if (di_elt.destroying)
7407 		  {
7408 		    fn = elt;
7409 		    di_fn = di_elt;
7410 		  }
7411 		continue;
7412 	      }
7413 
7414 	    /* -- If the type has new-extended alignment, a function with a
7415 	       parameter of type std::align_val_t is preferred; otherwise a
7416 	       function without such a parameter is preferred. If exactly one
7417 	       preferred function is found, that function is selected and the
7418 	       selection process terminates. If more than one preferred
7419 	       function is found, all non-preferred functions are eliminated
7420 	       from further consideration.  */
7421 	    if (aligned_new_threshold)
7422 	      {
7423 		bool want_align = type_has_new_extended_alignment (type);
7424 		if (di_elt.aligned != di_fn.aligned)
7425 		  {
7426 		    if (want_align == di_elt.aligned)
7427 		      {
7428 			fn = elt;
7429 			di_fn = di_elt;
7430 		      }
7431 		    continue;
7432 		  }
7433 	      }
7434 
7435 	    /* -- If the deallocation functions have class scope, the one
7436 	       without a parameter of type std::size_t is selected.  */
7437 	    bool want_size;
7438 	    if (DECL_CLASS_SCOPE_P (fn))
7439 	      want_size = false;
7440 
7441 	    /* -- If the type is complete and if, for the second alternative
7442 	       (delete array) only, the operand is a pointer to a class type
7443 	       with a non-trivial destructor or a (possibly multi-dimensional)
7444 	       array thereof, the function with a parameter of type std::size_t
7445 	       is selected.
7446 
7447 	       -- Otherwise, it is unspecified whether a deallocation function
7448 	       with a parameter of type std::size_t is selected.  */
7449 	    else
7450 	      {
7451 		want_size = COMPLETE_TYPE_P (type);
7452 		if (code == VEC_DELETE_EXPR
7453 		    && !TYPE_VEC_NEW_USES_COOKIE (type))
7454 		  /* We need a cookie to determine the array size.  */
7455 		  want_size = false;
7456 	      }
7457 	    gcc_assert (di_fn.sized != di_elt.sized);
7458 	    if (want_size == di_elt.sized)
7459 	      {
7460 		fn = elt;
7461 		di_fn = di_elt;
7462 	      }
7463 	  }
7464       }
7465 
7466   /* If we have a matching function, call it.  */
7467   if (fn)
7468     {
7469       gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
7470 
7471       /* If the FN is a member function, make sure that it is
7472 	 accessible.  */
7473       if (BASELINK_P (fns))
7474 	perform_or_defer_access_check (BASELINK_BINFO (fns), fn, fn,
7475 				       complain);
7476 
7477       /* Core issue 901: It's ok to new a type with deleted delete.  */
7478       if (DECL_DELETED_FN (fn) && alloc_fn)
7479 	return NULL_TREE;
7480 
7481       tree ret;
7482       if (placement)
7483 	{
7484 	  /* The placement args might not be suitable for overload
7485 	     resolution at this point, so build the call directly.  */
7486 	  int nargs = call_expr_nargs (placement);
7487 	  tree *argarray = XALLOCAVEC (tree, nargs);
7488 	  int i;
7489 	  argarray[0] = addr;
7490 	  for (i = 1; i < nargs; i++)
7491 	    argarray[i] = CALL_EXPR_ARG (placement, i);
7492 	  if (!mark_used (fn, complain) && !(complain & tf_error))
7493 	    return error_mark_node;
7494 	  ret = build_cxx_call (fn, nargs, argarray, complain);
7495 	}
7496       else
7497 	{
7498 	  tree destroying = di_fn.destroying;
7499 	  if (destroying)
7500 	    {
7501 	      /* Strip const and volatile from addr but retain the type of the
7502 		 object.  */
7503 	      tree rtype = TREE_TYPE (TREE_TYPE (oaddr));
7504 	      rtype = cv_unqualified (rtype);
7505 	      rtype = TYPE_POINTER_TO (rtype);
7506 	      addr = cp_convert (rtype, oaddr, complain);
7507 	      destroying = build_functional_cast (input_location,
7508 						  destroying, NULL_TREE,
7509 						  complain);
7510 	    }
7511 
7512 	  releasing_vec args;
7513 	  args->quick_push (addr);
7514 	  if (destroying)
7515 	    args->quick_push (destroying);
7516 	  if (di_fn.sized)
7517 	    args->quick_push (size);
7518 	  if (di_fn.aligned)
7519 	    {
7520 	      tree al = build_int_cst (align_type_node, TYPE_ALIGN_UNIT (type));
7521 	      args->quick_push (al);
7522 	    }
7523 	  ret = cp_build_function_call_vec (fn, &args, complain);
7524 	}
7525 
7526       /* Set this flag for all callers of this function.  In addition to
7527 	 delete-expressions, this is called for deallocating coroutine state;
7528 	 treat that as an implicit delete-expression.  This is also called for
7529 	 the delete if the constructor throws in a new-expression, and for a
7530 	 deleting destructor (which implements a delete-expression).  */
7531       /* But leave this flag off for destroying delete to avoid wrong
7532 	 assumptions in the optimizers.  */
7533       tree call = extract_call_expr (ret);
7534       if (TREE_CODE (call) == CALL_EXPR && !destroying_delete_p (fn))
7535 	CALL_FROM_NEW_OR_DELETE_P (call) = 1;
7536 
7537       return ret;
7538     }
7539 
7540   /* If there's only a destroying delete that we can't use because the
7541      object isn't constructed yet, and we used global new, use global
7542      delete as well.  */
7543   if (excluded_destroying
7544       && DECL_NAMESPACE_SCOPE_P (alloc_fn))
7545     return build_op_delete_call (code, addr, size, true, placement,
7546 				 alloc_fn, complain);
7547 
7548   /* [expr.new]
7549 
7550      If no unambiguous matching deallocation function can be found,
7551      propagating the exception does not cause the object's memory to
7552      be freed.  */
7553   if (alloc_fn)
7554     {
7555       if ((complain & tf_warning)
7556 	  && !placement)
7557 	{
7558 	  bool w = warning (0,
7559 			    "no corresponding deallocation function for %qD",
7560 			    alloc_fn);
7561 	  if (w && excluded_destroying)
7562 	    inform (DECL_SOURCE_LOCATION (excluded_destroying), "destroying "
7563 		    "delete %qD cannot be used to release the allocated memory"
7564 		    " if the initialization throws because the object is not "
7565 		    "constructed yet", excluded_destroying);
7566 	}
7567       return NULL_TREE;
7568     }
7569 
7570   if (complain & tf_error)
7571     error ("no suitable %<operator %s%> for %qT",
7572 	   OVL_OP_INFO (false, code)->name, type);
7573   return error_mark_node;
7574 }
7575 
7576 /* Issue diagnostics about a disallowed access of DECL, using DIAG_DECL
7577    in the diagnostics.
7578 
7579    If ISSUE_ERROR is true, then issue an error about the access, followed
7580    by a note showing the declaration.  Otherwise, just show the note.
7581 
7582    DIAG_DECL and DIAG_LOCATION will almost always be the same.
7583    DIAG_LOCATION is just another DECL.  NO_ACCESS_REASON is an optional
7584    parameter used to specify why DECL wasn't accessible (e.g. ak_private
7585    would be because DECL was private).  If not using NO_ACCESS_REASON,
7586    then it must be ak_none, and the access failure reason will be
7587    figured out by looking at the protection of DECL.  */
7588 
7589 void
complain_about_access(tree decl,tree diag_decl,tree diag_location,bool issue_error,access_kind no_access_reason)7590 complain_about_access (tree decl, tree diag_decl, tree diag_location,
7591 		       bool issue_error, access_kind no_access_reason)
7592 {
7593   /* If we have not already figured out why DECL is inaccessible...  */
7594   if (no_access_reason == ak_none)
7595     {
7596       /* Examine the access of DECL to find out why.  */
7597       if (TREE_PRIVATE (decl))
7598 	no_access_reason = ak_private;
7599       else if (TREE_PROTECTED (decl))
7600 	no_access_reason = ak_protected;
7601     }
7602 
7603   /* Now generate an error message depending on calculated access.  */
7604   if (no_access_reason == ak_private)
7605     {
7606       if (issue_error)
7607 	error ("%q#D is private within this context", diag_decl);
7608       inform (DECL_SOURCE_LOCATION (diag_location), "declared private here");
7609     }
7610   else if (no_access_reason == ak_protected)
7611     {
7612       if (issue_error)
7613 	error ("%q#D is protected within this context", diag_decl);
7614       inform (DECL_SOURCE_LOCATION (diag_location), "declared protected here");
7615     }
7616   /* Couldn't figure out why DECL is inaccesible, so just say it's
7617      inaccessible.  */
7618   else
7619     {
7620       if (issue_error)
7621 	error ("%q#D is inaccessible within this context", diag_decl);
7622       inform (DECL_SOURCE_LOCATION (diag_decl), "declared here");
7623     }
7624 }
7625 
7626 /* Initialize a temporary of type TYPE with EXPR.  The FLAGS are a
7627    bitwise or of LOOKUP_* values.  If any errors are warnings are
7628    generated, set *DIAGNOSTIC_FN to "error" or "warning",
7629    respectively.  If no diagnostics are generated, set *DIAGNOSTIC_FN
7630    to NULL.  */
7631 
7632 static tree
build_temp(tree expr,tree type,int flags,diagnostic_t * diagnostic_kind,tsubst_flags_t complain)7633 build_temp (tree expr, tree type, int flags,
7634 	    diagnostic_t *diagnostic_kind, tsubst_flags_t complain)
7635 {
7636   int savew, savee;
7637 
7638   *diagnostic_kind = DK_UNSPECIFIED;
7639 
7640   /* If the source is a packed field, calling the copy constructor will require
7641      binding the field to the reference parameter to the copy constructor, and
7642      we'll end up with an infinite loop.  If we can use a bitwise copy, then
7643      do that now.  */
7644   if ((lvalue_kind (expr) & clk_packed)
7645       && CLASS_TYPE_P (TREE_TYPE (expr))
7646       && !type_has_nontrivial_copy_init (TREE_TYPE (expr)))
7647     return get_target_expr_sfinae (expr, complain);
7648 
7649   /* In decltype, we might have decided not to wrap this call in a TARGET_EXPR.
7650      But it turns out to be a subexpression, so perform temporary
7651      materialization now.  */
7652   if (TREE_CODE (expr) == CALL_EXPR
7653       && CLASS_TYPE_P (type)
7654       && same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
7655     expr = build_cplus_new (type, expr, complain);
7656 
7657   savew = warningcount + werrorcount, savee = errorcount;
7658   releasing_vec args (make_tree_vector_single (expr));
7659   expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
7660 				    &args, type, flags, complain);
7661   if (warningcount + werrorcount > savew)
7662     *diagnostic_kind = DK_WARNING;
7663   else if (errorcount > savee)
7664     *diagnostic_kind = DK_ERROR;
7665   return expr;
7666 }
7667 
7668 /* Get any location for EXPR, falling back to input_location.
7669 
7670    If the result is in a system header and is the virtual location for
7671    a token coming from the expansion of a macro, unwind it to the
7672    location of the expansion point of the macro (e.g. to avoid the
7673    diagnostic being suppressed for expansions of NULL where "NULL" is
7674    in a system header).  */
7675 
7676 static location_t
get_location_for_expr_unwinding_for_system_header(tree expr)7677 get_location_for_expr_unwinding_for_system_header (tree expr)
7678 {
7679   location_t loc = EXPR_LOC_OR_LOC (expr, input_location);
7680   loc = expansion_point_location_if_in_system_header (loc);
7681   return loc;
7682 }
7683 
7684 /* Perform warnings about peculiar, but valid, conversions from/to NULL.
7685    Also handle a subset of zero as null warnings.
7686    EXPR is implicitly converted to type TOTYPE.
7687    FN and ARGNUM are used for diagnostics.  */
7688 
7689 static void
conversion_null_warnings(tree totype,tree expr,tree fn,int argnum)7690 conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
7691 {
7692   /* Issue warnings about peculiar, but valid, uses of NULL.  */
7693   if (TREE_CODE (totype) != BOOLEAN_TYPE
7694       && ARITHMETIC_TYPE_P (totype)
7695       && null_node_p (expr))
7696     {
7697       location_t loc = get_location_for_expr_unwinding_for_system_header (expr);
7698       if (fn)
7699 	{
7700 	  auto_diagnostic_group d;
7701 	  if (warning_at (loc, OPT_Wconversion_null,
7702 			  "passing NULL to non-pointer argument %P of %qD",
7703 			  argnum, fn))
7704 	    inform (get_fndecl_argument_location (fn, argnum),
7705 		    "  declared here");
7706 	}
7707       else
7708 	warning_at (loc, OPT_Wconversion_null,
7709 		    "converting to non-pointer type %qT from NULL", totype);
7710     }
7711 
7712   /* Issue warnings if "false" is converted to a NULL pointer */
7713   else if (TREE_CODE (TREE_TYPE (expr)) == BOOLEAN_TYPE
7714 	   && TYPE_PTR_P (totype))
7715     {
7716       location_t loc = get_location_for_expr_unwinding_for_system_header (expr);
7717       if (fn)
7718 	{
7719 	  auto_diagnostic_group d;
7720 	  if (warning_at (loc, OPT_Wconversion_null,
7721 			  "converting %<false%> to pointer type for argument "
7722 			  "%P of %qD", argnum, fn))
7723 	    inform (get_fndecl_argument_location (fn, argnum),
7724 		    "  declared here");
7725 	}
7726       else
7727 	warning_at (loc, OPT_Wconversion_null,
7728 		    "converting %<false%> to pointer type %qT", totype);
7729     }
7730   /* Handle zero as null pointer warnings for cases other
7731      than EQ_EXPR and NE_EXPR */
7732   else if ((TYPE_PTR_OR_PTRMEM_P (totype) || NULLPTR_TYPE_P (totype))
7733 	   && null_ptr_cst_p (expr))
7734     {
7735       location_t loc = get_location_for_expr_unwinding_for_system_header (expr);
7736       maybe_warn_zero_as_null_pointer_constant (expr, loc);
7737     }
7738 }
7739 
7740 /* We gave a diagnostic during a conversion.  If this was in the second
7741    standard conversion sequence of a user-defined conversion sequence, say
7742    which user-defined conversion.  */
7743 
7744 static void
maybe_print_user_conv_context(conversion * convs)7745 maybe_print_user_conv_context (conversion *convs)
7746 {
7747   if (convs->user_conv_p)
7748     for (conversion *t = convs; t; t = next_conversion (t))
7749       if (t->kind == ck_user)
7750 	{
7751 	  print_z_candidate (0, N_("  after user-defined conversion:"),
7752 			     t->cand);
7753 	  break;
7754 	}
7755 }
7756 
7757 /* Locate the parameter with the given index within FNDECL.
7758    ARGNUM is zero based, -1 indicates the `this' argument of a method.
7759    Return the location of the FNDECL itself if there are problems.  */
7760 
7761 location_t
get_fndecl_argument_location(tree fndecl,int argnum)7762 get_fndecl_argument_location (tree fndecl, int argnum)
7763 {
7764   /* The locations of implicitly-declared functions are likely to be
7765      more meaningful than those of their parameters.  */
7766   if (DECL_ARTIFICIAL (fndecl))
7767     return DECL_SOURCE_LOCATION (fndecl);
7768 
7769   int i;
7770   tree param;
7771 
7772   /* Locate param by index within DECL_ARGUMENTS (fndecl).  */
7773   for (i = 0, param = FUNCTION_FIRST_USER_PARM (fndecl);
7774        i < argnum && param;
7775        i++, param = TREE_CHAIN (param))
7776     ;
7777 
7778   /* If something went wrong (e.g. if we have a builtin and thus no arguments),
7779      return the location of FNDECL.  */
7780   if (param == NULL)
7781     return DECL_SOURCE_LOCATION (fndecl);
7782 
7783   return DECL_SOURCE_LOCATION (param);
7784 }
7785 
7786 /* If FNDECL is non-NULL, issue a note highlighting ARGNUM
7787    within its declaration (or the fndecl itself if something went
7788    wrong).  */
7789 
7790 void
maybe_inform_about_fndecl_for_bogus_argument_init(tree fn,int argnum)7791 maybe_inform_about_fndecl_for_bogus_argument_init (tree fn, int argnum)
7792 {
7793   if (fn)
7794     inform (get_fndecl_argument_location (fn, argnum),
7795 	    "  initializing argument %P of %qD", argnum, fn);
7796 }
7797 
7798 /* Maybe warn about C++20 Conversions to arrays of unknown bound.  C is
7799    the conversion, EXPR is the expression we're converting.  */
7800 
7801 static void
maybe_warn_array_conv(location_t loc,conversion * c,tree expr)7802 maybe_warn_array_conv (location_t loc, conversion *c, tree expr)
7803 {
7804   if (cxx_dialect >= cxx20)
7805     return;
7806 
7807   tree type = TREE_TYPE (expr);
7808   type = strip_pointer_operator (type);
7809 
7810   if (TREE_CODE (type) != ARRAY_TYPE
7811       || TYPE_DOMAIN (type) == NULL_TREE)
7812     return;
7813 
7814   if (pedantic && conv_binds_to_array_of_unknown_bound (c))
7815     pedwarn (loc, OPT_Wc__20_extensions,
7816 	     "conversions to arrays of unknown bound "
7817 	     "are only available with %<-std=c++20%> or %<-std=gnu++20%>");
7818 }
7819 
7820 /* We call this recursively in convert_like_internal.  */
7821 static tree convert_like (conversion *, tree, tree, int, bool, bool,
7822 			  tsubst_flags_t);
7823 
7824 /* Perform the conversions in CONVS on the expression EXPR.  FN and
7825    ARGNUM are used for diagnostics.  ARGNUM is zero based, -1
7826    indicates the `this' argument of a method.  INNER is nonzero when
7827    being called to continue a conversion chain. It is negative when a
7828    reference binding will be applied, positive otherwise.  If
7829    ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
7830    conversions will be emitted if appropriate.  If C_CAST_P is true,
7831    this conversion is coming from a C-style cast; in that case,
7832    conversions to inaccessible bases are permitted.  */
7833 
7834 static tree
convert_like_internal(conversion * convs,tree expr,tree fn,int argnum,bool issue_conversion_warnings,bool c_cast_p,tsubst_flags_t complain)7835 convert_like_internal (conversion *convs, tree expr, tree fn, int argnum,
7836 		       bool issue_conversion_warnings, bool c_cast_p,
7837 		       tsubst_flags_t complain)
7838 {
7839   tree totype = convs->type;
7840   diagnostic_t diag_kind;
7841   int flags;
7842   location_t loc = cp_expr_loc_or_input_loc (expr);
7843 
7844   if (convs->bad_p && !(complain & tf_error))
7845     return error_mark_node;
7846 
7847   if (convs->bad_p
7848       && convs->kind != ck_user
7849       && convs->kind != ck_list
7850       && convs->kind != ck_ambig
7851       && (convs->kind != ck_ref_bind
7852 	  || (convs->user_conv_p && next_conversion (convs)->bad_p))
7853       && (convs->kind != ck_rvalue
7854 	  || SCALAR_TYPE_P (totype))
7855       && convs->kind != ck_base)
7856     {
7857       bool complained = false;
7858       conversion *t = convs;
7859 
7860       /* Give a helpful error if this is bad because of excess braces.  */
7861       if (BRACE_ENCLOSED_INITIALIZER_P (expr)
7862 	  && SCALAR_TYPE_P (totype)
7863 	  && CONSTRUCTOR_NELTS (expr) > 0
7864 	  && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
7865 	{
7866 	  complained = permerror (loc, "too many braces around initializer "
7867 				  "for %qT", totype);
7868 	  while (BRACE_ENCLOSED_INITIALIZER_P (expr)
7869 		 && CONSTRUCTOR_NELTS (expr) == 1)
7870 	    expr = CONSTRUCTOR_ELT (expr, 0)->value;
7871 	}
7872 
7873       /* Give a helpful error if this is bad because a conversion to bool
7874 	 from std::nullptr_t requires direct-initialization.  */
7875       if (NULLPTR_TYPE_P (TREE_TYPE (expr))
7876 	  && TREE_CODE (totype) == BOOLEAN_TYPE)
7877 	complained = permerror (loc, "converting to %qH from %qI requires "
7878 				"direct-initialization",
7879 				totype, TREE_TYPE (expr));
7880 
7881       for (; t ; t = next_conversion (t))
7882 	{
7883 	  if (t->kind == ck_user && t->cand->reason)
7884 	    {
7885 	      auto_diagnostic_group d;
7886 	      complained = permerror (loc, "invalid user-defined conversion "
7887 				      "from %qH to %qI", TREE_TYPE (expr),
7888 				      totype);
7889 	      if (complained)
7890 		print_z_candidate (loc, N_("candidate is:"), t->cand);
7891 	      expr = convert_like (t, expr, fn, argnum,
7892 				   /*issue_conversion_warnings=*/false,
7893 				   /*c_cast_p=*/false, complain);
7894 	      if (convs->kind == ck_ref_bind)
7895 		expr = convert_to_reference (totype, expr, CONV_IMPLICIT,
7896 					     LOOKUP_NORMAL, NULL_TREE,
7897 					     complain);
7898 	      else
7899 		expr = cp_convert (totype, expr, complain);
7900 	      if (complained)
7901 		maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
7902 	      return expr;
7903 	    }
7904 	  else if (t->kind == ck_user || !t->bad_p)
7905 	    {
7906 	      expr = convert_like (t, expr, fn, argnum,
7907 				   /*issue_conversion_warnings=*/false,
7908 				   /*c_cast_p=*/false, complain);
7909 	      break;
7910 	    }
7911 	  else if (t->kind == ck_ambig)
7912 	    return convert_like (t, expr, fn, argnum,
7913 				 /*issue_conversion_warnings=*/false,
7914 				 /*c_cast_p=*/false, complain);
7915 	  else if (t->kind == ck_identity)
7916 	    break;
7917 	}
7918       if (!complained && expr != error_mark_node)
7919 	{
7920 	  range_label_for_type_mismatch label (TREE_TYPE (expr), totype);
7921 	  gcc_rich_location richloc (loc, &label);
7922 	  complained = permerror (&richloc,
7923 				  "invalid conversion from %qH to %qI",
7924 				  TREE_TYPE (expr), totype);
7925 	}
7926       if (complained)
7927 	maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
7928 
7929       return cp_convert (totype, expr, complain);
7930     }
7931 
7932   if (issue_conversion_warnings && (complain & tf_warning))
7933     conversion_null_warnings (totype, expr, fn, argnum);
7934 
7935   switch (convs->kind)
7936     {
7937     case ck_user:
7938       {
7939 	struct z_candidate *cand = convs->cand;
7940 
7941 	if (cand == NULL)
7942 	  /* We chose the surrogate function from add_conv_candidate, now we
7943 	     actually need to build the conversion.  */
7944 	  cand = build_user_type_conversion_1 (totype, expr,
7945 					       LOOKUP_NO_CONVERSION, complain);
7946 
7947 	tree convfn = cand->fn;
7948 
7949 	/* When converting from an init list we consider explicit
7950 	   constructors, but actually trying to call one is an error.  */
7951 	if (DECL_NONCONVERTING_P (convfn) && DECL_CONSTRUCTOR_P (convfn)
7952 	    && BRACE_ENCLOSED_INITIALIZER_P (expr)
7953 	    /* Unless this is for direct-list-initialization.  */
7954 	    && (!CONSTRUCTOR_IS_DIRECT_INIT (expr) || convs->need_temporary_p)
7955 	    /* And in C++98 a default constructor can't be explicit.  */
7956 	    && cxx_dialect >= cxx11)
7957 	  {
7958 	    if (!(complain & tf_error))
7959 	      return error_mark_node;
7960 	    location_t loc = location_of (expr);
7961 	    if (CONSTRUCTOR_NELTS (expr) == 0
7962 		&& FUNCTION_FIRST_USER_PARMTYPE (convfn) != void_list_node)
7963 	      {
7964 		auto_diagnostic_group d;
7965 		if (pedwarn (loc, 0, "converting to %qT from initializer list "
7966 			     "would use explicit constructor %qD",
7967 			     totype, convfn))
7968 		  inform (loc, "in C++11 and above a default constructor "
7969 			  "can be explicit");
7970 	      }
7971 	    else
7972 	      error ("converting to %qT from initializer list would use "
7973 		     "explicit constructor %qD", totype, convfn);
7974 	  }
7975 
7976 	/* If we're initializing from {}, it's value-initialization.  */
7977 	if (BRACE_ENCLOSED_INITIALIZER_P (expr)
7978 	    && CONSTRUCTOR_NELTS (expr) == 0
7979 	    && TYPE_HAS_DEFAULT_CONSTRUCTOR (totype)
7980 	    && !processing_template_decl)
7981 	  {
7982 	    bool direct = CONSTRUCTOR_IS_DIRECT_INIT (expr);
7983 	    if (abstract_virtuals_error_sfinae (NULL_TREE, totype, complain))
7984 	      return error_mark_node;
7985 	    expr = build_value_init (totype, complain);
7986 	    expr = get_target_expr_sfinae (expr, complain);
7987 	    if (expr != error_mark_node)
7988 	      {
7989 		TARGET_EXPR_LIST_INIT_P (expr) = true;
7990 		TARGET_EXPR_DIRECT_INIT_P (expr) = direct;
7991 	      }
7992 	    return expr;
7993 	  }
7994 
7995 	/* We don't know here whether EXPR is being used as an lvalue or
7996 	   rvalue, but we know it's read.  */
7997 	mark_exp_read (expr);
7998 
7999 	/* Pass LOOKUP_NO_CONVERSION so rvalue/base handling knows not to allow
8000 	   any more UDCs.  */
8001 	expr = build_over_call (cand, LOOKUP_NORMAL|LOOKUP_NO_CONVERSION,
8002 				complain);
8003 
8004 	/* If this is a constructor or a function returning an aggr type,
8005 	   we need to build up a TARGET_EXPR.  */
8006 	if (DECL_CONSTRUCTOR_P (convfn))
8007 	  {
8008 	    expr = build_cplus_new (totype, expr, complain);
8009 
8010 	    /* Remember that this was list-initialization.  */
8011 	    if (convs->check_narrowing && expr != error_mark_node)
8012 	      TARGET_EXPR_LIST_INIT_P (expr) = true;
8013 	  }
8014 
8015 	return expr;
8016       }
8017     case ck_identity:
8018       if (BRACE_ENCLOSED_INITIALIZER_P (expr))
8019 	{
8020 	  int nelts = CONSTRUCTOR_NELTS (expr);
8021 	  if (nelts == 0)
8022 	    expr = build_value_init (totype, complain);
8023 	  else if (nelts == 1)
8024 	    expr = CONSTRUCTOR_ELT (expr, 0)->value;
8025 	  else
8026 	    gcc_unreachable ();
8027 	}
8028       expr = mark_use (expr, /*rvalue_p=*/!convs->rvaluedness_matches_p,
8029 		       /*read_p=*/true, UNKNOWN_LOCATION,
8030 		       /*reject_builtin=*/true);
8031 
8032       if (type_unknown_p (expr))
8033 	expr = instantiate_type (totype, expr, complain);
8034       if (expr == null_node
8035 	  && INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (totype))
8036 	/* If __null has been converted to an integer type, we do not want to
8037 	   continue to warn about uses of EXPR as an integer, rather than as a
8038 	   pointer.  */
8039 	expr = build_int_cst (totype, 0);
8040       return expr;
8041     case ck_ambig:
8042       /* We leave bad_p off ck_ambig because overload resolution considers
8043 	 it valid, it just fails when we try to perform it.  So we need to
8044          check complain here, too.  */
8045       if (complain & tf_error)
8046 	{
8047 	  /* Call build_user_type_conversion again for the error.  */
8048 	  int flags = (convs->need_temporary_p
8049 		       ? LOOKUP_IMPLICIT : LOOKUP_NORMAL);
8050 	  build_user_type_conversion (totype, convs->u.expr, flags, complain);
8051 	  gcc_assert (seen_error ());
8052 	  maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
8053 	}
8054       return error_mark_node;
8055 
8056     case ck_list:
8057       {
8058 	/* Conversion to std::initializer_list<T>.  */
8059 	tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
8060 	unsigned len = CONSTRUCTOR_NELTS (expr);
8061 	tree array;
8062 
8063 	if (len)
8064 	  {
8065 	    tree val; unsigned ix;
8066 
8067 	    tree new_ctor = build_constructor (init_list_type_node, NULL);
8068 
8069 	    /* Convert all the elements.  */
8070 	    FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
8071 	      {
8072 		tree sub = convert_like (convs->u.list[ix], val, fn,
8073 					 argnum, false, false, complain);
8074 		if (sub == error_mark_node)
8075 		  return sub;
8076 		if (!BRACE_ENCLOSED_INITIALIZER_P (val)
8077 		    && !check_narrowing (TREE_TYPE (sub), val, complain))
8078 		  return error_mark_node;
8079 		CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor),
8080 					NULL_TREE, sub);
8081 		if (!TREE_CONSTANT (sub))
8082 		  TREE_CONSTANT (new_ctor) = false;
8083 	      }
8084 	    /* Build up the array.  */
8085 	    elttype = cp_build_qualified_type
8086 	      (elttype, cp_type_quals (elttype) | TYPE_QUAL_CONST);
8087 	    array = build_array_of_n_type (elttype, len);
8088 	    array = finish_compound_literal (array, new_ctor, complain);
8089 	    /* Take the address explicitly rather than via decay_conversion
8090 	       to avoid the error about taking the address of a temporary.  */
8091 	    array = cp_build_addr_expr (array, complain);
8092 	  }
8093 	else
8094 	  array = nullptr_node;
8095 
8096 	array = cp_convert (build_pointer_type (elttype), array, complain);
8097 	if (array == error_mark_node)
8098 	  return error_mark_node;
8099 
8100 	/* Build up the initializer_list object.  Note: fail gracefully
8101 	   if the object cannot be completed because, for example, no
8102 	   definition is provided (c++/80956).  */
8103 	totype = complete_type_or_maybe_complain (totype, NULL_TREE, complain);
8104 	if (!totype)
8105 	  return error_mark_node;
8106 	tree field = next_initializable_field (TYPE_FIELDS (totype));
8107 	vec<constructor_elt, va_gc> *vec = NULL;
8108 	CONSTRUCTOR_APPEND_ELT (vec, field, array);
8109 	field = next_initializable_field (DECL_CHAIN (field));
8110 	CONSTRUCTOR_APPEND_ELT (vec, field, size_int (len));
8111 	tree new_ctor = build_constructor (totype, vec);
8112 	return get_target_expr_sfinae (new_ctor, complain);
8113       }
8114 
8115     case ck_aggr:
8116       if (TREE_CODE (totype) == COMPLEX_TYPE)
8117 	{
8118 	  tree real = CONSTRUCTOR_ELT (expr, 0)->value;
8119 	  tree imag = CONSTRUCTOR_ELT (expr, 1)->value;
8120 	  real = perform_implicit_conversion (TREE_TYPE (totype),
8121 					      real, complain);
8122 	  imag = perform_implicit_conversion (TREE_TYPE (totype),
8123 					      imag, complain);
8124 	  expr = build2 (COMPLEX_EXPR, totype, real, imag);
8125 	  return expr;
8126 	}
8127       expr = reshape_init (totype, expr, complain);
8128       expr = get_target_expr_sfinae (digest_init (totype, expr, complain),
8129 				     complain);
8130       if (expr != error_mark_node)
8131 	TARGET_EXPR_LIST_INIT_P (expr) = true;
8132       return expr;
8133 
8134     default:
8135       break;
8136     };
8137 
8138   expr = convert_like (next_conversion (convs), expr, fn, argnum,
8139 		       convs->kind == ck_ref_bind
8140 		       ? issue_conversion_warnings : false,
8141 		       c_cast_p, complain & ~tf_no_cleanup);
8142   if (expr == error_mark_node)
8143     return error_mark_node;
8144 
8145   switch (convs->kind)
8146     {
8147     case ck_rvalue:
8148       expr = decay_conversion (expr, complain);
8149       if (expr == error_mark_node)
8150 	{
8151 	  if (complain & tf_error)
8152 	    {
8153 	      auto_diagnostic_group d;
8154 	      maybe_print_user_conv_context (convs);
8155 	      maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
8156 	    }
8157 	  return error_mark_node;
8158 	}
8159 
8160       if (! MAYBE_CLASS_TYPE_P (totype))
8161 	return expr;
8162 
8163       /* Don't introduce copies when passing arguments along to the inherited
8164 	 constructor.  */
8165       if (current_function_decl
8166 	  && flag_new_inheriting_ctors
8167 	  && DECL_INHERITED_CTOR (current_function_decl))
8168 	return expr;
8169 
8170       if (TREE_CODE (expr) == TARGET_EXPR
8171 	  && TARGET_EXPR_LIST_INIT_P (expr))
8172 	/* Copy-list-initialization doesn't actually involve a copy.  */
8173 	return expr;
8174 
8175       /* Fall through.  */
8176     case ck_base:
8177       if (convs->kind == ck_base && !convs->need_temporary_p)
8178 	{
8179 	  /* We are going to bind a reference directly to a base-class
8180 	     subobject of EXPR.  */
8181 	  /* Build an expression for `*((base*) &expr)'.  */
8182 	  expr = convert_to_base (expr, totype,
8183 				  !c_cast_p, /*nonnull=*/true, complain);
8184 	  return expr;
8185 	}
8186 
8187       /* Copy-initialization where the cv-unqualified version of the source
8188 	 type is the same class as, or a derived class of, the class of the
8189 	 destination [is treated as direct-initialization].  [dcl.init] */
8190       flags = LOOKUP_NORMAL;
8191       /* This conversion is being done in the context of a user-defined
8192 	 conversion (i.e. the second step of copy-initialization), so
8193 	 don't allow any more.  */
8194       if (convs->user_conv_p)
8195 	flags |= LOOKUP_NO_CONVERSION;
8196       /* We might be performing a conversion of the argument
8197 	 to the user-defined conversion, i.e., not a conversion of the
8198 	 result of the user-defined conversion.  In which case we skip
8199 	 explicit constructors.  */
8200       if (convs->copy_init_p)
8201 	flags |= LOOKUP_ONLYCONVERTING;
8202       if (convs->rvaluedness_matches_p)
8203 	/* standard_conversion got LOOKUP_PREFER_RVALUE.  */
8204 	flags |= LOOKUP_PREFER_RVALUE;
8205       expr = build_temp (expr, totype, flags, &diag_kind, complain);
8206       if (diag_kind && complain)
8207 	{
8208 	  auto_diagnostic_group d;
8209 	  maybe_print_user_conv_context (convs);
8210 	  maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
8211 	}
8212 
8213       return build_cplus_new (totype, expr, complain);
8214 
8215     case ck_ref_bind:
8216       {
8217 	tree ref_type = totype;
8218 
8219 	/* direct_reference_binding might have inserted a ck_qual under
8220 	   this ck_ref_bind for the benefit of conversion sequence ranking.
8221 	   Ignore the conversion; we'll create our own below.  */
8222 	if (next_conversion (convs)->kind == ck_qual
8223 	    && !convs->need_temporary_p)
8224 	  {
8225 	    gcc_assert (same_type_p (TREE_TYPE (expr),
8226 				     next_conversion (convs)->type));
8227 	    /* Strip the cast created by the ck_qual; cp_build_addr_expr
8228 	       below expects an lvalue.  */
8229 	    STRIP_NOPS (expr);
8230 	  }
8231 
8232 	if (convs->bad_p && !next_conversion (convs)->bad_p)
8233 	  {
8234 	    tree extype = TREE_TYPE (expr);
8235 	    auto_diagnostic_group d;
8236 	    if (TYPE_REF_IS_RVALUE (ref_type)
8237 		&& lvalue_p (expr))
8238 	      error_at (loc, "cannot bind rvalue reference of type %qH to "
8239                         "lvalue of type %qI", totype, extype);
8240 	    else if (!TYPE_REF_IS_RVALUE (ref_type) && !lvalue_p (expr)
8241 		     && !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type)))
8242 	      {
8243 		conversion *next = next_conversion (convs);
8244 		if (next->kind == ck_std)
8245 		  {
8246 		    next = next_conversion (next);
8247 		    error_at (loc, "cannot bind non-const lvalue reference of "
8248 			      "type %qH to a value of type %qI",
8249 			      totype, next->type);
8250 		  }
8251 		else if (!CP_TYPE_CONST_P (TREE_TYPE (ref_type)))
8252 		  error_at (loc, "cannot bind non-const lvalue reference of "
8253 			    "type %qH to an rvalue of type %qI", totype, extype);
8254 		else // extype is volatile
8255 		  error_at (loc, "cannot bind lvalue reference of type "
8256 			    "%qH to an rvalue of type %qI", totype,
8257 			    extype);
8258 	      }
8259 	    else if (!reference_compatible_p (TREE_TYPE (totype), extype))
8260 	      {
8261 		/* If we're converting from T[] to T[N], don't talk
8262 		   about discarding qualifiers.  (Converting from T[N] to
8263 		   T[] is allowed by P0388R4.)  */
8264 		if (TREE_CODE (extype) == ARRAY_TYPE
8265 		    && TYPE_DOMAIN (extype) == NULL_TREE
8266 		    && TREE_CODE (TREE_TYPE (totype)) == ARRAY_TYPE
8267 		    && TYPE_DOMAIN (TREE_TYPE (totype)) != NULL_TREE)
8268 		  error_at (loc, "cannot bind reference of type %qH to %qI "
8269 			    "due to different array bounds", totype, extype);
8270 		else
8271 		  error_at (loc, "binding reference of type %qH to %qI "
8272 			    "discards qualifiers", totype, extype);
8273 	      }
8274 	    else
8275 	      gcc_unreachable ();
8276 	    maybe_print_user_conv_context (convs);
8277 	    maybe_inform_about_fndecl_for_bogus_argument_init (fn, argnum);
8278 
8279 	    return error_mark_node;
8280 	  }
8281 	else if (complain & tf_warning)
8282 	  maybe_warn_array_conv (loc, convs, expr);
8283 
8284 	/* If necessary, create a temporary.
8285 
8286            VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
8287            that need temporaries, even when their types are reference
8288            compatible with the type of reference being bound, so the
8289            upcoming call to cp_build_addr_expr doesn't fail.  */
8290 	if (convs->need_temporary_p
8291 	    || TREE_CODE (expr) == CONSTRUCTOR
8292 	    || TREE_CODE (expr) == VA_ARG_EXPR)
8293 	  {
8294 	    /* Otherwise, a temporary of type "cv1 T1" is created and
8295 	       initialized from the initializer expression using the rules
8296 	       for a non-reference copy-initialization (8.5).  */
8297 
8298 	    tree type = TREE_TYPE (ref_type);
8299 	    cp_lvalue_kind lvalue = lvalue_kind (expr);
8300 
8301 	    gcc_assert (similar_type_p (type, next_conversion (convs)->type));
8302 	    if (!CP_TYPE_CONST_NON_VOLATILE_P (type)
8303 		&& !TYPE_REF_IS_RVALUE (ref_type))
8304 	      {
8305 		/* If the reference is volatile or non-const, we
8306 		   cannot create a temporary.  */
8307 		if (complain & tf_error)
8308 		  {
8309 		    if (lvalue & clk_bitfield)
8310 		      error_at (loc, "cannot bind bit-field %qE to %qT",
8311 				expr, ref_type);
8312 		    else if (lvalue & clk_packed)
8313 		      error_at (loc, "cannot bind packed field %qE to %qT",
8314 				expr, ref_type);
8315 		    else
8316 		      error_at (loc, "cannot bind rvalue %qE to %qT",
8317 				expr, ref_type);
8318 		  }
8319 		return error_mark_node;
8320 	      }
8321 	    /* If the source is a packed field, and we must use a copy
8322 	       constructor, then building the target expr will require
8323 	       binding the field to the reference parameter to the
8324 	       copy constructor, and we'll end up with an infinite
8325 	       loop.  If we can use a bitwise copy, then we'll be
8326 	       OK.  */
8327 	    if ((lvalue & clk_packed)
8328 		&& CLASS_TYPE_P (type)
8329 		&& type_has_nontrivial_copy_init (type))
8330 	      {
8331 		error_at (loc, "cannot bind packed field %qE to %qT",
8332 			  expr, ref_type);
8333 		return error_mark_node;
8334 	      }
8335 	    if (lvalue & clk_bitfield)
8336 	      {
8337 		expr = convert_bitfield_to_declared_type (expr);
8338 		expr = fold_convert (type, expr);
8339 	      }
8340 
8341 	    /* Creating &TARGET_EXPR<> in a template would break when
8342 	       tsubsting the expression, so use an IMPLICIT_CONV_EXPR
8343 	       instead.  This can happen even when there's no class
8344 	       involved, e.g., when converting an integer to a reference
8345 	       type.  */
8346 	    if (processing_template_decl)
8347 	      return build1 (IMPLICIT_CONV_EXPR, totype, expr);
8348 	    expr = build_target_expr_with_type (expr, type, complain);
8349 	  }
8350 
8351 	/* Take the address of the thing to which we will bind the
8352 	   reference.  */
8353 	expr = cp_build_addr_expr (expr, complain);
8354 	if (expr == error_mark_node)
8355 	  return error_mark_node;
8356 
8357 	/* Convert it to a pointer to the type referred to by the
8358 	   reference.  This will adjust the pointer if a derived to
8359 	   base conversion is being performed.  */
8360 	expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
8361 			   expr, complain);
8362 	/* Convert the pointer to the desired reference type.  */
8363 	return build_nop (ref_type, expr);
8364       }
8365 
8366     case ck_lvalue:
8367       return decay_conversion (expr, complain);
8368 
8369     case ck_fnptr:
8370       /* ??? Should the address of a transaction-safe pointer point to the TM
8371         clone, and this conversion look up the primary function?  */
8372       return build_nop (totype, expr);
8373 
8374     case ck_qual:
8375       /* Warn about deprecated conversion if appropriate.  */
8376       if (complain & tf_warning)
8377 	{
8378 	  string_conv_p (totype, expr, 1);
8379 	  maybe_warn_array_conv (loc, convs, expr);
8380 	}
8381       break;
8382 
8383     case ck_ptr:
8384       if (convs->base_p)
8385 	expr = convert_to_base (expr, totype, !c_cast_p,
8386 				/*nonnull=*/false, complain);
8387       return build_nop (totype, expr);
8388 
8389     case ck_pmem:
8390       return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
8391 			     c_cast_p, complain);
8392 
8393     default:
8394       break;
8395     }
8396 
8397   if (convs->check_narrowing
8398       && !check_narrowing (totype, expr, complain,
8399 			   convs->check_narrowing_const_only))
8400     return error_mark_node;
8401 
8402   warning_sentinel w (warn_zero_as_null_pointer_constant);
8403   if (issue_conversion_warnings)
8404     expr = cp_convert_and_check (totype, expr, complain);
8405   else
8406     expr = cp_convert (totype, expr, complain);
8407 
8408   return expr;
8409 }
8410 
8411 /* Return true if converting FROM to TO is unsafe in a template.  */
8412 
8413 static bool
conv_unsafe_in_template_p(tree to,tree from)8414 conv_unsafe_in_template_p (tree to, tree from)
8415 {
8416   /* Converting classes involves TARGET_EXPR.  */
8417   if (CLASS_TYPE_P (to) || CLASS_TYPE_P (from))
8418     return true;
8419 
8420   /* Converting real to integer produces FIX_TRUNC_EXPR which tsubst
8421      doesn't handle.  */
8422   if (SCALAR_FLOAT_TYPE_P (from) && INTEGRAL_OR_ENUMERATION_TYPE_P (to))
8423     return true;
8424 
8425   /* Converting integer to real isn't a trivial conversion, either.  */
8426   if (INTEGRAL_OR_ENUMERATION_TYPE_P (from) && SCALAR_FLOAT_TYPE_P (to))
8427     return true;
8428 
8429   return false;
8430 }
8431 
8432 /* Wrapper for convert_like_internal that handles creating
8433    IMPLICIT_CONV_EXPR.  */
8434 
8435 static tree
convert_like(conversion * convs,tree expr,tree fn,int argnum,bool issue_conversion_warnings,bool c_cast_p,tsubst_flags_t complain)8436 convert_like (conversion *convs, tree expr, tree fn, int argnum,
8437 	      bool issue_conversion_warnings, bool c_cast_p,
8438 	      tsubst_flags_t complain)
8439 {
8440   /* Creating &TARGET_EXPR<> in a template breaks when substituting,
8441      and creating a CALL_EXPR in a template breaks in finish_call_expr
8442      so use an IMPLICIT_CONV_EXPR for this conversion.  We would have
8443      created such codes e.g. when calling a user-defined conversion
8444      function.  */
8445   tree conv_expr = NULL_TREE;
8446   if (processing_template_decl
8447       && convs->kind != ck_identity
8448       && conv_unsafe_in_template_p (convs->type, TREE_TYPE (expr)))
8449     {
8450       conv_expr = build1 (IMPLICIT_CONV_EXPR, convs->type, expr);
8451       if (convs->kind != ck_ref_bind)
8452 	conv_expr = convert_from_reference (conv_expr);
8453       if (!convs->bad_p)
8454 	return conv_expr;
8455       /* Do the normal processing to give the bad_p errors.  But we still
8456 	 need to return the IMPLICIT_CONV_EXPR, unless we're returning
8457 	 error_mark_node.  */
8458     }
8459   expr = convert_like_internal (convs, expr, fn, argnum,
8460 				issue_conversion_warnings, c_cast_p, complain);
8461   if (expr == error_mark_node)
8462     return error_mark_node;
8463   return conv_expr ? conv_expr : expr;
8464 }
8465 
8466 /* Convenience wrapper for convert_like.  */
8467 
8468 static inline tree
convert_like(conversion * convs,tree expr,tsubst_flags_t complain)8469 convert_like (conversion *convs, tree expr, tsubst_flags_t complain)
8470 {
8471   return convert_like (convs, expr, NULL_TREE, 0,
8472 		       /*issue_conversion_warnings=*/true,
8473 		       /*c_cast_p=*/false, complain);
8474 }
8475 
8476 /* Convenience wrapper for convert_like.  */
8477 
8478 static inline tree
convert_like_with_context(conversion * convs,tree expr,tree fn,int argnum,tsubst_flags_t complain)8479 convert_like_with_context (conversion *convs, tree expr, tree fn, int argnum,
8480 			   tsubst_flags_t complain)
8481 {
8482   return convert_like (convs, expr, fn, argnum,
8483 		       /*issue_conversion_warnings=*/true,
8484 		       /*c_cast_p=*/false, complain);
8485 }
8486 
8487 /* ARG is being passed to a varargs function.  Perform any conversions
8488    required.  Return the converted value.  */
8489 
8490 tree
convert_arg_to_ellipsis(tree arg,tsubst_flags_t complain)8491 convert_arg_to_ellipsis (tree arg, tsubst_flags_t complain)
8492 {
8493   tree arg_type = TREE_TYPE (arg);
8494   location_t loc = cp_expr_loc_or_input_loc (arg);
8495 
8496   /* [expr.call]
8497 
8498      If the argument has integral or enumeration type that is subject
8499      to the integral promotions (_conv.prom_), or a floating-point
8500      type that is subject to the floating-point promotion
8501      (_conv.fpprom_), the value of the argument is converted to the
8502      promoted type before the call.  */
8503   if (TREE_CODE (arg_type) == REAL_TYPE
8504       && (TYPE_PRECISION (arg_type)
8505 	  < TYPE_PRECISION (double_type_node))
8506       && !DECIMAL_FLOAT_MODE_P (TYPE_MODE (arg_type)))
8507     {
8508       if ((complain & tf_warning)
8509 	  && warn_double_promotion && !c_inhibit_evaluation_warnings)
8510 	warning_at (loc, OPT_Wdouble_promotion,
8511 		    "implicit conversion from %qH to %qI when passing "
8512 		    "argument to function",
8513 		    arg_type, double_type_node);
8514       arg = mark_rvalue_use (arg);
8515       arg = convert_to_real_nofold (double_type_node, arg);
8516     }
8517   else if (NULLPTR_TYPE_P (arg_type))
8518     {
8519       arg = mark_rvalue_use (arg);
8520       if (TREE_SIDE_EFFECTS (arg))
8521 	{
8522 	  warning_sentinel w(warn_unused_result);
8523 	  arg = cp_build_compound_expr (arg, null_pointer_node, complain);
8524 	}
8525       else
8526 	arg = null_pointer_node;
8527     }
8528   else if (INTEGRAL_OR_ENUMERATION_TYPE_P (arg_type))
8529     {
8530       if (SCOPED_ENUM_P (arg_type))
8531 	{
8532 	  tree prom = cp_convert (ENUM_UNDERLYING_TYPE (arg_type), arg,
8533 				  complain);
8534 	  prom = cp_perform_integral_promotions (prom, complain);
8535 	  if (abi_version_crosses (6)
8536 	      && TYPE_MODE (TREE_TYPE (prom)) != TYPE_MODE (arg_type)
8537 	      && (complain & tf_warning))
8538 	    warning_at (loc, OPT_Wabi, "scoped enum %qT passed through %<...%>"
8539 			" as %qT before %<-fabi-version=6%>, %qT after",
8540 			arg_type,
8541 			TREE_TYPE (prom), ENUM_UNDERLYING_TYPE (arg_type));
8542 	  if (!abi_version_at_least (6))
8543 	    arg = prom;
8544 	}
8545       else
8546 	arg = cp_perform_integral_promotions (arg, complain);
8547     }
8548   else
8549     /* [expr.call]
8550 
8551        The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
8552        standard conversions are performed.  */
8553     arg = decay_conversion (arg, complain);
8554 
8555   arg = require_complete_type_sfinae (arg, complain);
8556   arg_type = TREE_TYPE (arg);
8557 
8558   if (arg != error_mark_node
8559       /* In a template (or ill-formed code), we can have an incomplete type
8560 	 even after require_complete_type_sfinae, in which case we don't know
8561 	 whether it has trivial copy or not.  */
8562       && COMPLETE_TYPE_P (arg_type)
8563       && !cp_unevaluated_operand)
8564     {
8565       /* [expr.call] 5.2.2/7:
8566 	 Passing a potentially-evaluated argument of class type (Clause 9)
8567 	 with a non-trivial copy constructor or a non-trivial destructor
8568 	 with no corresponding parameter is conditionally-supported, with
8569 	 implementation-defined semantics.
8570 
8571 	 We support it as pass-by-invisible-reference, just like a normal
8572 	 value parameter.
8573 
8574 	 If the call appears in the context of a sizeof expression,
8575 	 it is not potentially-evaluated.  */
8576       if (type_has_nontrivial_copy_init (arg_type)
8577 	  || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (arg_type))
8578 	{
8579 	  arg = force_rvalue (arg, complain);
8580 	  if (complain & tf_warning)
8581 	    warning (OPT_Wconditionally_supported,
8582 		     "passing objects of non-trivially-copyable "
8583 		     "type %q#T through %<...%> is conditionally supported",
8584 		     arg_type);
8585 	  return build1 (ADDR_EXPR, build_reference_type (arg_type), arg);
8586 	}
8587       /* Build up a real lvalue-to-rvalue conversion in case the
8588 	 copy constructor is trivial but not callable.  */
8589       else if (CLASS_TYPE_P (arg_type))
8590 	force_rvalue (arg, complain);
8591 
8592     }
8593 
8594   return arg;
8595 }
8596 
8597 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused.  */
8598 
8599 tree
build_x_va_arg(location_t loc,tree expr,tree type)8600 build_x_va_arg (location_t loc, tree expr, tree type)
8601 {
8602   if (processing_template_decl)
8603     {
8604       tree r = build_min (VA_ARG_EXPR, type, expr);
8605       SET_EXPR_LOCATION (r, loc);
8606       return r;
8607     }
8608 
8609   type = complete_type_or_else (type, NULL_TREE);
8610 
8611   if (expr == error_mark_node || !type)
8612     return error_mark_node;
8613 
8614   expr = mark_lvalue_use (expr);
8615 
8616   if (TYPE_REF_P (type))
8617     {
8618       error ("cannot receive reference type %qT through %<...%>", type);
8619       return error_mark_node;
8620     }
8621 
8622   if (type_has_nontrivial_copy_init (type)
8623       || TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
8624     {
8625       /* conditionally-supported behavior [expr.call] 5.2.2/7.  Let's treat
8626 	 it as pass by invisible reference.  */
8627       warning_at (loc, OPT_Wconditionally_supported,
8628 		 "receiving objects of non-trivially-copyable type %q#T "
8629 		 "through %<...%> is conditionally-supported", type);
8630 
8631       tree ref = cp_build_reference_type (type, false);
8632       expr = build_va_arg (loc, expr, ref);
8633       return convert_from_reference (expr);
8634     }
8635 
8636   tree ret = build_va_arg (loc, expr, type);
8637   if (CLASS_TYPE_P (type))
8638     /* Wrap the VA_ARG_EXPR in a TARGET_EXPR now so other code doesn't need to
8639        know how to handle it.  */
8640     ret = get_target_expr (ret);
8641   return ret;
8642 }
8643 
8644 /* TYPE has been given to va_arg.  Apply the default conversions which
8645    would have happened when passed via ellipsis.  Return the promoted
8646    type, or the passed type if there is no change.  */
8647 
8648 tree
cxx_type_promotes_to(tree type)8649 cxx_type_promotes_to (tree type)
8650 {
8651   tree promote;
8652 
8653   /* Perform the array-to-pointer and function-to-pointer
8654      conversions.  */
8655   type = type_decays_to (type);
8656 
8657   promote = type_promotes_to (type);
8658   if (same_type_p (type, promote))
8659     promote = type;
8660 
8661   return promote;
8662 }
8663 
8664 /* ARG is a default argument expression being passed to a parameter of
8665    the indicated TYPE, which is a parameter to FN.  PARMNUM is the
8666    zero-based argument number.  Do any required conversions.  Return
8667    the converted value.  */
8668 
8669 static GTY(()) vec<tree, va_gc> *default_arg_context;
8670 void
push_defarg_context(tree fn)8671 push_defarg_context (tree fn)
8672 { vec_safe_push (default_arg_context, fn); }
8673 
8674 void
pop_defarg_context(void)8675 pop_defarg_context (void)
8676 { default_arg_context->pop (); }
8677 
8678 tree
convert_default_arg(tree type,tree arg,tree fn,int parmnum,tsubst_flags_t complain)8679 convert_default_arg (tree type, tree arg, tree fn, int parmnum,
8680 		     tsubst_flags_t complain)
8681 {
8682   int i;
8683   tree t;
8684 
8685   /* See through clones.  */
8686   fn = DECL_ORIGIN (fn);
8687   /* And inheriting ctors.  */
8688   if (flag_new_inheriting_ctors)
8689     fn = strip_inheriting_ctors (fn);
8690 
8691   /* Detect recursion.  */
8692   FOR_EACH_VEC_SAFE_ELT (default_arg_context, i, t)
8693     if (t == fn)
8694       {
8695 	if (complain & tf_error)
8696 	  error ("recursive evaluation of default argument for %q#D", fn);
8697 	return error_mark_node;
8698       }
8699 
8700   /* If the ARG is an unparsed default argument expression, the
8701      conversion cannot be performed.  */
8702   if (TREE_CODE (arg) == DEFERRED_PARSE)
8703     {
8704       if (complain & tf_error)
8705 	error ("call to %qD uses the default argument for parameter %P, which "
8706 	       "is not yet defined", fn, parmnum);
8707       return error_mark_node;
8708     }
8709 
8710   push_defarg_context (fn);
8711 
8712   if (fn && DECL_TEMPLATE_INFO (fn))
8713     arg = tsubst_default_argument (fn, parmnum, type, arg, complain);
8714 
8715   /* Due to:
8716 
8717        [dcl.fct.default]
8718 
8719        The names in the expression are bound, and the semantic
8720        constraints are checked, at the point where the default
8721        expressions appears.
8722 
8723      we must not perform access checks here.  */
8724   push_deferring_access_checks (dk_no_check);
8725   /* We must make a copy of ARG, in case subsequent processing
8726      alters any part of it.  */
8727   arg = break_out_target_exprs (arg, /*clear location*/true);
8728 
8729   arg = convert_for_initialization (0, type, arg, LOOKUP_IMPLICIT,
8730 				    ICR_DEFAULT_ARGUMENT, fn, parmnum,
8731 				    complain);
8732   arg = convert_for_arg_passing (type, arg, complain);
8733   pop_deferring_access_checks();
8734 
8735   pop_defarg_context ();
8736 
8737   return arg;
8738 }
8739 
8740 /* Returns the type which will really be used for passing an argument of
8741    type TYPE.  */
8742 
8743 tree
type_passed_as(tree type)8744 type_passed_as (tree type)
8745 {
8746   /* Pass classes with copy ctors by invisible reference.  */
8747   if (TREE_ADDRESSABLE (type))
8748     type = build_reference_type (type);
8749   else if (targetm.calls.promote_prototypes (NULL_TREE)
8750 	   && INTEGRAL_TYPE_P (type)
8751 	   && COMPLETE_TYPE_P (type)
8752 	   && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
8753     type = integer_type_node;
8754 
8755   return type;
8756 }
8757 
8758 /* Actually perform the appropriate conversion.  */
8759 
8760 tree
convert_for_arg_passing(tree type,tree val,tsubst_flags_t complain)8761 convert_for_arg_passing (tree type, tree val, tsubst_flags_t complain)
8762 {
8763   tree bitfield_type;
8764 
8765   /* If VAL is a bitfield, then -- since it has already been converted
8766      to TYPE -- it cannot have a precision greater than TYPE.
8767 
8768      If it has a smaller precision, we must widen it here.  For
8769      example, passing "int f:3;" to a function expecting an "int" will
8770      not result in any conversion before this point.
8771 
8772      If the precision is the same we must not risk widening.  For
8773      example, the COMPONENT_REF for a 32-bit "long long" bitfield will
8774      often have type "int", even though the C++ type for the field is
8775      "long long".  If the value is being passed to a function
8776      expecting an "int", then no conversions will be required.  But,
8777      if we call convert_bitfield_to_declared_type, the bitfield will
8778      be converted to "long long".  */
8779   bitfield_type = is_bitfield_expr_with_lowered_type (val);
8780   if (bitfield_type
8781       && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
8782     val = convert_to_integer_nofold (TYPE_MAIN_VARIANT (bitfield_type), val);
8783 
8784   if (val == error_mark_node)
8785     ;
8786   /* Pass classes with copy ctors by invisible reference.  */
8787   else if (TREE_ADDRESSABLE (type))
8788     val = build1 (ADDR_EXPR, build_reference_type (type), val);
8789   else if (targetm.calls.promote_prototypes (NULL_TREE)
8790 	   && INTEGRAL_TYPE_P (type)
8791 	   && COMPLETE_TYPE_P (type)
8792 	   && tree_int_cst_lt (TYPE_SIZE (type), TYPE_SIZE (integer_type_node)))
8793     val = cp_perform_integral_promotions (val, complain);
8794   if (complain & tf_warning)
8795     {
8796       if (warn_suggest_attribute_format)
8797 	{
8798 	  tree rhstype = TREE_TYPE (val);
8799 	  const enum tree_code coder = TREE_CODE (rhstype);
8800 	  const enum tree_code codel = TREE_CODE (type);
8801 	  if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
8802 	      && coder == codel
8803 	      && check_missing_format_attribute (type, rhstype))
8804 	    warning (OPT_Wsuggest_attribute_format,
8805 		     "argument of function call might be a candidate "
8806 		     "for a format attribute");
8807 	}
8808       maybe_warn_parm_abi (type, cp_expr_loc_or_input_loc (val));
8809     }
8810 
8811   if (complain & tf_warning)
8812     warn_for_address_or_pointer_of_packed_member (type, val);
8813 
8814   return val;
8815 }
8816 
8817 /* Returns non-zero iff FN is a function with magic varargs, i.e. ones for
8818    which just decay_conversion or no conversions at all should be done.
8819    This is true for some builtins which don't act like normal functions.
8820    Return 2 if no conversions at all should be done, 1 if just
8821    decay_conversion.  Return 3 for special treatment of the 3rd argument
8822    for __builtin_*_overflow_p.  */
8823 
8824 int
magic_varargs_p(tree fn)8825 magic_varargs_p (tree fn)
8826 {
8827   if (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
8828     switch (DECL_FUNCTION_CODE (fn))
8829       {
8830       case BUILT_IN_CLASSIFY_TYPE:
8831       case BUILT_IN_CONSTANT_P:
8832       case BUILT_IN_NEXT_ARG:
8833       case BUILT_IN_VA_START:
8834 	return 1;
8835 
8836       case BUILT_IN_ADD_OVERFLOW_P:
8837       case BUILT_IN_SUB_OVERFLOW_P:
8838       case BUILT_IN_MUL_OVERFLOW_P:
8839 	return 3;
8840 
8841       default:;
8842 	return lookup_attribute ("type generic",
8843 				 TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
8844       }
8845 
8846   return 0;
8847 }
8848 
8849 /* Returns the decl of the dispatcher function if FN is a function version.  */
8850 
8851 tree
get_function_version_dispatcher(tree fn)8852 get_function_version_dispatcher (tree fn)
8853 {
8854   tree dispatcher_decl = NULL;
8855 
8856   if (DECL_LOCAL_DECL_P (fn))
8857     fn = DECL_LOCAL_DECL_ALIAS (fn);
8858 
8859   gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
8860 	      && DECL_FUNCTION_VERSIONED (fn));
8861 
8862   gcc_assert (targetm.get_function_versions_dispatcher);
8863   dispatcher_decl = targetm.get_function_versions_dispatcher (fn);
8864 
8865   if (dispatcher_decl == NULL)
8866     {
8867       error_at (input_location, "use of multiversioned function "
8868 				"without a default");
8869       return NULL;
8870     }
8871 
8872   retrofit_lang_decl (dispatcher_decl);
8873   gcc_assert (dispatcher_decl != NULL);
8874   return dispatcher_decl;
8875 }
8876 
8877 /* fn is a function version dispatcher that is marked used. Mark all the
8878    semantically identical function versions it will dispatch as used.  */
8879 
8880 void
mark_versions_used(tree fn)8881 mark_versions_used (tree fn)
8882 {
8883   struct cgraph_node *node;
8884   struct cgraph_function_version_info *node_v;
8885   struct cgraph_function_version_info *it_v;
8886 
8887   gcc_assert (TREE_CODE (fn) == FUNCTION_DECL);
8888 
8889   node = cgraph_node::get (fn);
8890   if (node == NULL)
8891     return;
8892 
8893   gcc_assert (node->dispatcher_function);
8894 
8895   node_v = node->function_version ();
8896   if (node_v == NULL)
8897     return;
8898 
8899   /* All semantically identical versions are chained.  Traverse and mark each
8900      one of them as used.  */
8901   it_v = node_v->next;
8902   while (it_v != NULL)
8903     {
8904       mark_used (it_v->this_node->decl);
8905       it_v = it_v->next;
8906     }
8907 }
8908 
8909 /* Build a call to "the copy constructor" for the type of A, even if it
8910    wouldn't be selected by normal overload resolution.  Used for
8911    diagnostics.  */
8912 
8913 static tree
call_copy_ctor(tree a,tsubst_flags_t complain)8914 call_copy_ctor (tree a, tsubst_flags_t complain)
8915 {
8916   tree ctype = TYPE_MAIN_VARIANT (TREE_TYPE (a));
8917   tree binfo = TYPE_BINFO (ctype);
8918   tree copy = get_copy_ctor (ctype, complain);
8919   copy = build_baselink (binfo, binfo, copy, NULL_TREE);
8920   tree ob = build_dummy_object (ctype);
8921   releasing_vec args (make_tree_vector_single (a));
8922   tree r = build_new_method_call (ob, copy, &args, NULL_TREE,
8923 				  LOOKUP_NORMAL, NULL, complain);
8924   return r;
8925 }
8926 
8927 /* Return the base constructor corresponding to COMPLETE_CTOR or NULL_TREE.  */
8928 
8929 static tree
base_ctor_for(tree complete_ctor)8930 base_ctor_for (tree complete_ctor)
8931 {
8932   tree clone;
8933   FOR_EACH_CLONE (clone, DECL_CLONED_FUNCTION (complete_ctor))
8934     if (DECL_BASE_CONSTRUCTOR_P (clone))
8935       return clone;
8936   return NULL_TREE;
8937 }
8938 
8939 /* Try to make EXP suitable to be used as the initializer for a base subobject,
8940    and return whether we were successful.  EXP must have already been cleared
8941    by unsafe_copy_elision_p{,_opt}.  */
8942 
8943 static bool
make_base_init_ok(tree exp)8944 make_base_init_ok (tree exp)
8945 {
8946   if (TREE_CODE (exp) == TARGET_EXPR)
8947     exp = TARGET_EXPR_INITIAL (exp);
8948   while (TREE_CODE (exp) == COMPOUND_EXPR)
8949     exp = TREE_OPERAND (exp, 1);
8950   if (TREE_CODE (exp) == COND_EXPR)
8951     {
8952       bool ret = make_base_init_ok (TREE_OPERAND (exp, 2));
8953       if (tree op1 = TREE_OPERAND (exp, 1))
8954 	{
8955 	  bool r1 = make_base_init_ok (op1);
8956 	  /* If unsafe_copy_elision_p was false, the arms should match.  */
8957 	  gcc_assert (r1 == ret);
8958 	}
8959       return ret;
8960     }
8961   if (TREE_CODE (exp) != AGGR_INIT_EXPR)
8962     /* A trivial copy is OK.  */
8963     return true;
8964   if (!AGGR_INIT_VIA_CTOR_P (exp))
8965     /* unsafe_copy_elision_p_opt must have said this is OK.  */
8966     return true;
8967   tree fn = cp_get_callee_fndecl_nofold (exp);
8968   if (DECL_BASE_CONSTRUCTOR_P (fn))
8969     return true;
8970   gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (fn));
8971   fn = base_ctor_for (fn);
8972   if (!fn || DECL_HAS_VTT_PARM_P (fn))
8973     /* The base constructor has more parameters, so we can't just change the
8974        call target.  It would be possible to splice in the appropriate
8975        arguments, but probably not worth the complexity.  */
8976     return false;
8977   mark_used (fn);
8978   AGGR_INIT_EXPR_FN (exp) = build_address (fn);
8979   return true;
8980 }
8981 
8982 /* Return 2 if T refers to a base, 1 if a potentially-overlapping field,
8983    neither of which can be used for return by invisible reference.  We avoid
8984    doing C++17 mandatory copy elision for either of these cases.
8985 
8986    This returns non-zero even if the type of T has no tail padding that other
8987    data could be allocated into, because that depends on the particular ABI.
8988    unsafe_copy_elision_p_opt does consider whether there is padding.  */
8989 
8990 int
unsafe_return_slot_p(tree t)8991 unsafe_return_slot_p (tree t)
8992 {
8993   /* Check empty bases separately, they don't have fields.  */
8994   if (is_empty_base_ref (t))
8995     return 2;
8996 
8997   STRIP_NOPS (t);
8998   if (TREE_CODE (t) == ADDR_EXPR)
8999     t = TREE_OPERAND (t, 0);
9000   if (TREE_CODE (t) == COMPONENT_REF)
9001     t = TREE_OPERAND (t, 1);
9002   if (TREE_CODE (t) != FIELD_DECL)
9003     return false;
9004   if (!CLASS_TYPE_P (TREE_TYPE (t)))
9005     /* The middle-end will do the right thing for scalar types.  */
9006     return false;
9007   if (DECL_FIELD_IS_BASE (t))
9008     return 2;
9009   if (lookup_attribute ("no_unique_address", DECL_ATTRIBUTES (t)))
9010     return 1;
9011   return 0;
9012 }
9013 
9014 /* True IFF EXP is a prvalue that represents return by invisible reference.  */
9015 
9016 static bool
init_by_return_slot_p(tree exp)9017 init_by_return_slot_p (tree exp)
9018 {
9019   /* Copy elision only happens with a TARGET_EXPR.  */
9020   if (TREE_CODE (exp) != TARGET_EXPR)
9021     return false;
9022   tree init = TARGET_EXPR_INITIAL (exp);
9023   /* build_compound_expr pushes COMPOUND_EXPR inside TARGET_EXPR.  */
9024   while (TREE_CODE (init) == COMPOUND_EXPR)
9025     init = TREE_OPERAND (init, 1);
9026   if (TREE_CODE (init) == COND_EXPR)
9027     {
9028       /* We'll end up copying from each of the arms of the COND_EXPR directly
9029 	 into the target, so look at them.  */
9030       if (tree op = TREE_OPERAND (init, 1))
9031 	if (init_by_return_slot_p (op))
9032 	  return true;
9033       return init_by_return_slot_p (TREE_OPERAND (init, 2));
9034     }
9035   return (TREE_CODE (init) == AGGR_INIT_EXPR
9036 	  && !AGGR_INIT_VIA_CTOR_P (init));
9037 }
9038 
9039 /* We can't elide a copy from a function returning by value to a
9040    potentially-overlapping subobject, as the callee might clobber tail padding.
9041    Return true iff this could be that case.
9042 
9043    Places that use this function (or _opt) to decide to elide a copy should
9044    probably use make_safe_copy_elision instead.  */
9045 
9046 static bool
unsafe_copy_elision_p(tree target,tree exp)9047 unsafe_copy_elision_p (tree target, tree exp)
9048 {
9049   return unsafe_return_slot_p (target) && init_by_return_slot_p (exp);
9050 }
9051 
9052 /* As above, but for optimization allow more cases that are actually safe.  */
9053 
9054 static bool
unsafe_copy_elision_p_opt(tree target,tree exp)9055 unsafe_copy_elision_p_opt (tree target, tree exp)
9056 {
9057   tree type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
9058   /* It's safe to elide the copy for a class with no tail padding.  */
9059   if (!is_empty_class (type)
9060       && tree_int_cst_equal (TYPE_SIZE (type), CLASSTYPE_SIZE (type)))
9061     return false;
9062   return unsafe_copy_elision_p (target, exp);
9063 }
9064 
9065 /* Try to make EXP suitable to be used as the initializer for TARGET,
9066    and return whether we were successful.  */
9067 
9068 bool
make_safe_copy_elision(tree target,tree exp)9069 make_safe_copy_elision (tree target, tree exp)
9070 {
9071   int uns = unsafe_return_slot_p (target);
9072   if (!uns)
9073     return true;
9074   if (init_by_return_slot_p (exp))
9075     return false;
9076   if (uns == 1)
9077     return true;
9078   return make_base_init_ok (exp);
9079 }
9080 
9081 /* True IFF the result of the conversion C is a prvalue.  */
9082 
9083 static bool
conv_is_prvalue(conversion * c)9084 conv_is_prvalue (conversion *c)
9085 {
9086   if (c->kind == ck_rvalue)
9087     return true;
9088   if (c->kind == ck_base && c->need_temporary_p)
9089     return true;
9090   if (c->kind == ck_user && !TYPE_REF_P (c->type))
9091     return true;
9092   if (c->kind == ck_identity && c->u.expr
9093       && TREE_CODE (c->u.expr) == TARGET_EXPR)
9094     return true;
9095 
9096   return false;
9097 }
9098 
9099 /* True iff C is a conversion that binds a reference to a prvalue.  */
9100 
9101 static bool
conv_binds_ref_to_prvalue(conversion * c)9102 conv_binds_ref_to_prvalue (conversion *c)
9103 {
9104   if (c->kind != ck_ref_bind)
9105     return false;
9106   if (c->need_temporary_p)
9107     return true;
9108 
9109   return conv_is_prvalue (next_conversion (c));
9110 }
9111 
9112 /* True iff converting EXPR to a reference type TYPE does not involve
9113    creating a temporary.  */
9114 
9115 bool
ref_conv_binds_directly_p(tree type,tree expr)9116 ref_conv_binds_directly_p (tree type, tree expr)
9117 {
9118   gcc_assert (TYPE_REF_P (type));
9119 
9120   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
9121   void *p = conversion_obstack_alloc (0);
9122 
9123   conversion *conv = implicit_conversion (type, TREE_TYPE (expr), expr,
9124 					  /*c_cast_p=*/false,
9125 					  LOOKUP_IMPLICIT, tf_none);
9126   bool ret = conv && !conv->bad_p && !conv_binds_ref_to_prvalue (conv);
9127 
9128   /* Free all the conversions we allocated.  */
9129   obstack_free (&conversion_obstack, p);
9130 
9131   return ret;
9132 }
9133 
9134 /* Call the trivial destructor for INSTANCE, which can be either an lvalue of
9135    class type or a pointer to class type.  If NO_PTR_DEREF is true and
9136    INSTANCE has pointer type, clobber the pointer rather than what it points
9137    to.  */
9138 
9139 tree
build_trivial_dtor_call(tree instance,bool no_ptr_deref)9140 build_trivial_dtor_call (tree instance, bool no_ptr_deref)
9141 {
9142   gcc_assert (!is_dummy_object (instance));
9143 
9144   if (!flag_lifetime_dse)
9145     {
9146     no_clobber:
9147       return fold_convert (void_type_node, instance);
9148     }
9149 
9150   if (INDIRECT_TYPE_P (TREE_TYPE (instance))
9151       && (!no_ptr_deref || TYPE_REF_P (TREE_TYPE (instance))))
9152     {
9153       if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
9154 	goto no_clobber;
9155       instance = cp_build_fold_indirect_ref (instance);
9156     }
9157 
9158   /* A trivial destructor should still clobber the object.  */
9159   tree clobber = build_clobber (TREE_TYPE (instance));
9160   return build2 (MODIFY_EXPR, void_type_node,
9161 		 instance, clobber);
9162 }
9163 
9164 /* Return true if in an immediate function context, or an unevaluated operand,
9165    or a subexpression of an immediate invocation.  */
9166 
9167 bool
in_immediate_context()9168 in_immediate_context ()
9169 {
9170   return (cp_unevaluated_operand != 0
9171 	  || (current_function_decl != NULL_TREE
9172 	      && DECL_IMMEDIATE_FUNCTION_P (current_function_decl))
9173 	  || (current_binding_level->kind == sk_function_parms
9174 	      && current_binding_level->immediate_fn_ctx_p)
9175 	  || in_consteval_if_p);
9176 }
9177 
9178 /* Return true if a call to FN with number of arguments NARGS
9179    is an immediate invocation.  */
9180 
9181 static bool
immediate_invocation_p(tree fn,int nargs)9182 immediate_invocation_p (tree fn, int nargs)
9183 {
9184   return (TREE_CODE (fn) == FUNCTION_DECL
9185 	  && DECL_IMMEDIATE_FUNCTION_P (fn)
9186 	  && !in_immediate_context ()
9187 	  /* As an exception, we defer std::source_location::current ()
9188 	     invocations until genericization because LWG3396 mandates
9189 	     special behavior for it.  */
9190 	  && (nargs > 1 || !source_location_current_p (fn)));
9191 }
9192 
9193 /* temp_override for in_consteval_if_p, which can't use make_temp_override
9194    because it is a bitfield.  */
9195 
9196 struct in_consteval_if_p_temp_override {
9197   bool save_in_consteval_if_p;
in_consteval_if_p_temp_overridein_consteval_if_p_temp_override9198   in_consteval_if_p_temp_override ()
9199     : save_in_consteval_if_p (in_consteval_if_p) {}
resetin_consteval_if_p_temp_override9200   void reset () { in_consteval_if_p = save_in_consteval_if_p; }
~in_consteval_if_p_temp_overridein_consteval_if_p_temp_override9201   ~in_consteval_if_p_temp_override ()
9202   { reset (); }
9203 };
9204 
9205 /* Subroutine of the various build_*_call functions.  Overload resolution
9206    has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
9207    ARGS is a TREE_LIST of the unconverted arguments to the call.  FLAGS is a
9208    bitmask of various LOOKUP_* flags which apply to the call itself.  */
9209 
9210 static tree
build_over_call(struct z_candidate * cand,int flags,tsubst_flags_t complain)9211 build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
9212 {
9213   tree fn = cand->fn;
9214   const vec<tree, va_gc> *args = cand->args;
9215   tree first_arg = cand->first_arg;
9216   conversion **convs = cand->convs;
9217   conversion *conv;
9218   tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
9219   int parmlen;
9220   tree val;
9221   int i = 0;
9222   int j = 0;
9223   unsigned int arg_index = 0;
9224   int is_method = 0;
9225   int nargs;
9226   tree *argarray;
9227   bool already_used = false;
9228 
9229   /* In a template, there is no need to perform all of the work that
9230      is normally done.  We are only interested in the type of the call
9231      expression, i.e., the return type of the function.  Any semantic
9232      errors will be deferred until the template is instantiated.  */
9233   if (processing_template_decl)
9234     {
9235       if (undeduced_auto_decl (fn))
9236 	mark_used (fn, complain);
9237       else
9238 	/* Otherwise set TREE_USED for the benefit of -Wunused-function.
9239 	   See PR80598.  */
9240 	TREE_USED (fn) = 1;
9241 
9242       tree return_type = TREE_TYPE (TREE_TYPE (fn));
9243       tree callee;
9244       if (first_arg == NULL_TREE)
9245 	{
9246 	  callee = build_addr_func (fn, complain);
9247 	  if (callee == error_mark_node)
9248 	    return error_mark_node;
9249 	}
9250       else
9251 	{
9252 	  callee = build_baselink (cand->conversion_path, cand->access_path,
9253 				   fn, NULL_TREE);
9254 	  callee = build_min (COMPONENT_REF, TREE_TYPE (fn),
9255 			      first_arg, callee, NULL_TREE);
9256 	}
9257 
9258       tree expr = build_call_vec (return_type, callee, args);
9259       SET_EXPR_LOCATION (expr, input_location);
9260       if (TREE_THIS_VOLATILE (fn) && cfun)
9261 	current_function_returns_abnormally = 1;
9262       if (immediate_invocation_p (fn, vec_safe_length (args)))
9263 	{
9264 	  tree obj_arg = NULL_TREE, exprimm = expr;
9265 	  if (DECL_CONSTRUCTOR_P (fn))
9266 	    obj_arg = first_arg;
9267 	  if (obj_arg
9268 	      && is_dummy_object (obj_arg)
9269 	      && !type_dependent_expression_p (obj_arg))
9270 	    {
9271 	      exprimm = build_cplus_new (DECL_CONTEXT (fn), expr, complain);
9272 	      obj_arg = NULL_TREE;
9273 	    }
9274 	  /* Look through *(const T *)&obj.  */
9275 	  else if (obj_arg && TREE_CODE (obj_arg) == INDIRECT_REF)
9276 	    {
9277 	      tree addr = TREE_OPERAND (obj_arg, 0);
9278 	      STRIP_NOPS (addr);
9279 	      if (TREE_CODE (addr) == ADDR_EXPR)
9280 		{
9281 		  tree typeo = TREE_TYPE (obj_arg);
9282 		  tree typei = TREE_TYPE (TREE_OPERAND (addr, 0));
9283 		  if (same_type_ignoring_top_level_qualifiers_p (typeo, typei))
9284 		    obj_arg = TREE_OPERAND (addr, 0);
9285 		}
9286 	    }
9287 	  fold_non_dependent_expr (exprimm, complain,
9288 				   /*manifestly_const_eval=*/true,
9289 				   obj_arg);
9290 	}
9291       return convert_from_reference (expr);
9292     }
9293 
9294   /* Give any warnings we noticed during overload resolution.  */
9295   if (cand->warnings && (complain & tf_warning))
9296     {
9297       struct candidate_warning *w;
9298       for (w = cand->warnings; w; w = w->next)
9299 	joust (cand, w->loser, 1, complain);
9300     }
9301 
9302   /* Core issue 2327: P0135 doesn't say how to handle the case where the
9303      argument to the copy constructor ends up being a prvalue after
9304      conversion.  Let's do the normal processing, but pretend we aren't
9305      actually using the copy constructor.  */
9306   bool force_elide = false;
9307   if (cxx_dialect >= cxx17
9308       && cand->num_convs == 1
9309       && DECL_COMPLETE_CONSTRUCTOR_P (fn)
9310       && (DECL_COPY_CONSTRUCTOR_P (fn)
9311 	  || DECL_MOVE_CONSTRUCTOR_P (fn))
9312       && !unsafe_return_slot_p (first_arg)
9313       && conv_binds_ref_to_prvalue (convs[0]))
9314     {
9315       force_elide = true;
9316       goto not_really_used;
9317     }
9318 
9319   /* OK, we're actually calling this inherited constructor; set its deletedness
9320      appropriately.  We can get away with doing this here because calling is
9321      the only way to refer to a constructor.  */
9322   if (DECL_INHERITED_CTOR (fn)
9323       && !deduce_inheriting_ctor (fn))
9324     {
9325       if (complain & tf_error)
9326 	mark_used (fn);
9327       return error_mark_node;
9328     }
9329 
9330   /* Make =delete work with SFINAE.  */
9331   if (DECL_DELETED_FN (fn))
9332     {
9333       if (complain & tf_error)
9334 	mark_used (fn);
9335       return error_mark_node;
9336     }
9337 
9338   if (DECL_FUNCTION_MEMBER_P (fn))
9339     {
9340       tree access_fn;
9341       /* If FN is a template function, two cases must be considered.
9342 	 For example:
9343 
9344 	   struct A {
9345 	     protected:
9346 	       template <class T> void f();
9347 	   };
9348 	   template <class T> struct B {
9349 	     protected:
9350 	       void g();
9351 	   };
9352 	   struct C : A, B<int> {
9353 	     using A::f;	// #1
9354 	     using B<int>::g;	// #2
9355 	   };
9356 
9357 	 In case #1 where `A::f' is a member template, DECL_ACCESS is
9358 	 recorded in the primary template but not in its specialization.
9359 	 We check access of FN using its primary template.
9360 
9361 	 In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
9362 	 because it is a member of class template B, DECL_ACCESS is
9363 	 recorded in the specialization `B<int>::g'.  We cannot use its
9364 	 primary template because `B<T>::g' and `B<int>::g' may have
9365 	 different access.  */
9366       if (DECL_TEMPLATE_INFO (fn)
9367 	  && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
9368 	access_fn = DECL_TI_TEMPLATE (fn);
9369       else
9370 	access_fn = fn;
9371       if (!perform_or_defer_access_check (cand->access_path, access_fn,
9372 					  fn, complain))
9373 	return error_mark_node;
9374     }
9375 
9376   /* If we're checking for implicit delete, don't bother with argument
9377      conversions.  */
9378   if (flags & LOOKUP_SPECULATIVE)
9379     {
9380       if (cand->viable == 1)
9381 	return fn;
9382       else if (!(complain & tf_error))
9383 	/* Reject bad conversions now.  */
9384 	return error_mark_node;
9385       /* else continue to get conversion error.  */
9386     }
9387 
9388  not_really_used:
9389 
9390   /* N3276 magic doesn't apply to nested calls.  */
9391   tsubst_flags_t decltype_flag = (complain & tf_decltype);
9392   complain &= ~tf_decltype;
9393   /* No-Cleanup doesn't apply to nested calls either.  */
9394   tsubst_flags_t no_cleanup_complain = complain;
9395   complain &= ~tf_no_cleanup;
9396 
9397   /* Find maximum size of vector to hold converted arguments.  */
9398   parmlen = list_length (parm);
9399   nargs = vec_safe_length (args) + (first_arg != NULL_TREE ? 1 : 0);
9400   if (parmlen > nargs)
9401     nargs = parmlen;
9402   argarray = XALLOCAVEC (tree, nargs);
9403 
9404   in_consteval_if_p_temp_override icip;
9405   /* If the call is immediate function invocation, make sure
9406      taking address of immediate functions is allowed in its arguments.  */
9407   if (immediate_invocation_p (STRIP_TEMPLATE (fn), nargs))
9408     in_consteval_if_p = true;
9409 
9410   /* The implicit parameters to a constructor are not considered by overload
9411      resolution, and must be of the proper type.  */
9412   if (DECL_CONSTRUCTOR_P (fn))
9413     {
9414       tree object_arg;
9415       if (first_arg != NULL_TREE)
9416 	{
9417 	  object_arg = first_arg;
9418 	  first_arg = NULL_TREE;
9419 	}
9420       else
9421 	{
9422 	  object_arg = (*args)[arg_index];
9423 	  ++arg_index;
9424 	}
9425       argarray[j++] = build_this (object_arg);
9426       parm = TREE_CHAIN (parm);
9427       /* We should never try to call the abstract constructor.  */
9428       gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
9429 
9430       if (DECL_HAS_VTT_PARM_P (fn))
9431 	{
9432 	  argarray[j++] = (*args)[arg_index];
9433 	  ++arg_index;
9434 	  parm = TREE_CHAIN (parm);
9435 	}
9436 
9437       if (cxx_dialect < cxx20
9438 	  && (cand->flags & LOOKUP_PREFER_RVALUE))
9439 	{
9440 	  /* The implicit move specified in 15.8.3/3 fails "...if the type of
9441 	     the first parameter of the selected constructor is not an rvalue
9442 	     reference to the object's type (possibly cv-qualified)...." */
9443 	  gcc_assert (!(complain & tf_error));
9444 	  tree ptype = convs[0]->type;
9445 	  /* Allow calling a by-value converting constructor even though it
9446 	     isn't permitted by the above, because we've allowed it since GCC 5
9447 	     (PR58051) and it's allowed in C++20.  But don't call a copy
9448 	     constructor.  */
9449 	  if ((TYPE_REF_P (ptype) && !TYPE_REF_IS_RVALUE (ptype))
9450 	      || CONVERSION_RANK (convs[0]) > cr_exact)
9451 	    return error_mark_node;
9452 	}
9453     }
9454   /* Bypass access control for 'this' parameter.  */
9455   else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
9456     {
9457       tree arg = build_this (first_arg != NULL_TREE
9458 			     ? first_arg
9459 			     : (*args)[arg_index]);
9460       tree argtype = TREE_TYPE (arg);
9461 
9462       if (arg == error_mark_node)
9463 	return error_mark_node;
9464 
9465       if (convs[i]->bad_p)
9466 	{
9467 	  if (complain & tf_error)
9468 	    {
9469 	      auto_diagnostic_group d;
9470 	      if (permerror (input_location, "passing %qT as %<this%> "
9471 			     "argument discards qualifiers",
9472 			     TREE_TYPE (argtype)))
9473 		inform (DECL_SOURCE_LOCATION (fn), "  in call to %qD", fn);
9474 	    }
9475 	  else
9476 	    return error_mark_node;
9477 	}
9478 
9479       /* The class where FN is defined.  */
9480       tree ctx = DECL_CONTEXT (fn);
9481 
9482       /* See if the function member or the whole class type is declared
9483 	 final and the call can be devirtualized.  */
9484       if (DECL_FINAL_P (fn) || CLASSTYPE_FINAL (ctx))
9485 	flags |= LOOKUP_NONVIRTUAL;
9486 
9487       /* [class.mfct.non-static]: If a non-static member function of a class
9488 	 X is called for an object that is not of type X, or of a type
9489 	 derived from X, the behavior is undefined.
9490 
9491 	 So we can assume that anything passed as 'this' is non-null, and
9492 	 optimize accordingly.  */
9493       /* Check that the base class is accessible.  */
9494       if (!accessible_base_p (TREE_TYPE (argtype),
9495 			      BINFO_TYPE (cand->conversion_path), true))
9496 	{
9497 	  if (complain & tf_error)
9498 	    error ("%qT is not an accessible base of %qT",
9499 		   BINFO_TYPE (cand->conversion_path),
9500 		   TREE_TYPE (argtype));
9501 	  else
9502 	    return error_mark_node;
9503 	}
9504       /* If fn was found by a using declaration, the conversion path
9505 	 will be to the derived class, not the base declaring fn. We
9506 	 must convert to the base.  */
9507       tree base_binfo = cand->conversion_path;
9508       if (BINFO_TYPE (base_binfo) != ctx)
9509 	{
9510 	  base_binfo = lookup_base (base_binfo, ctx, ba_unique, NULL, complain);
9511 	  if (base_binfo == error_mark_node)
9512 	    return error_mark_node;
9513 	}
9514 
9515       /* If we know the dynamic type of the object, look up the final overrider
9516 	 in the BINFO.  */
9517       if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
9518 	  && resolves_to_fixed_type_p (arg))
9519 	{
9520 	  tree ov = lookup_vfn_in_binfo (DECL_VINDEX (fn), base_binfo);
9521 
9522 	  /* And unwind base_binfo to match.  If we don't find the type we're
9523 	     looking for in BINFO_INHERITANCE_CHAIN, we're looking at diamond
9524 	     inheritance; for now do a normal virtual call in that case.  */
9525 	  tree octx = DECL_CONTEXT (ov);
9526 	  tree obinfo = base_binfo;
9527 	  while (obinfo && !SAME_BINFO_TYPE_P (BINFO_TYPE (obinfo), octx))
9528 	    obinfo = BINFO_INHERITANCE_CHAIN (obinfo);
9529 	  if (obinfo)
9530 	    {
9531 	      fn = ov;
9532 	      base_binfo = obinfo;
9533 	      flags |= LOOKUP_NONVIRTUAL;
9534 	    }
9535 	}
9536 
9537       tree converted_arg = build_base_path (PLUS_EXPR, arg,
9538 					    base_binfo, 1, complain);
9539 
9540       argarray[j++] = converted_arg;
9541       parm = TREE_CHAIN (parm);
9542       if (first_arg != NULL_TREE)
9543 	first_arg = NULL_TREE;
9544       else
9545 	++arg_index;
9546       ++i;
9547       is_method = 1;
9548     }
9549 
9550   gcc_assert (first_arg == NULL_TREE);
9551   for (; arg_index < vec_safe_length (args) && parm;
9552        parm = TREE_CHAIN (parm), ++arg_index, ++i)
9553     {
9554       tree type = TREE_VALUE (parm);
9555       tree arg = (*args)[arg_index];
9556       bool conversion_warning = true;
9557 
9558       conv = convs[i];
9559 
9560       /* If the argument is NULL and used to (implicitly) instantiate a
9561          template function (and bind one of the template arguments to
9562          the type of 'long int'), we don't want to warn about passing NULL
9563          to non-pointer argument.
9564          For example, if we have this template function:
9565 
9566            template<typename T> void func(T x) {}
9567 
9568          we want to warn (when -Wconversion is enabled) in this case:
9569 
9570            void foo() {
9571              func<int>(NULL);
9572            }
9573 
9574          but not in this case:
9575 
9576            void foo() {
9577              func(NULL);
9578            }
9579       */
9580       if (null_node_p (arg)
9581           && DECL_TEMPLATE_INFO (fn)
9582           && cand->template_decl
9583 	  && !cand->explicit_targs)
9584         conversion_warning = false;
9585 
9586       /* Set user_conv_p on the argument conversions, so rvalue/base handling
9587 	 knows not to allow any more UDCs.  This needs to happen after we
9588 	 process cand->warnings.  */
9589       if (flags & LOOKUP_NO_CONVERSION)
9590 	conv->user_conv_p = true;
9591 
9592       tsubst_flags_t arg_complain = complain;
9593       if (!conversion_warning)
9594 	arg_complain &= ~tf_warning;
9595 
9596       val = convert_like_with_context (conv, arg, fn, i - is_method,
9597 				       arg_complain);
9598       val = convert_for_arg_passing (type, val, arg_complain);
9599 
9600       if (val == error_mark_node)
9601         return error_mark_node;
9602       else
9603         argarray[j++] = val;
9604     }
9605 
9606   /* Default arguments */
9607   for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
9608     {
9609       if (TREE_VALUE (parm) == error_mark_node)
9610 	return error_mark_node;
9611       val = convert_default_arg (TREE_VALUE (parm),
9612 				 TREE_PURPOSE (parm),
9613 				 fn, i - is_method,
9614 				 complain);
9615       if (val == error_mark_node)
9616         return error_mark_node;
9617       argarray[j++] = val;
9618     }
9619 
9620   /* Ellipsis */
9621   int magic = magic_varargs_p (fn);
9622   for (; arg_index < vec_safe_length (args); ++arg_index)
9623     {
9624       tree a = (*args)[arg_index];
9625       if ((magic == 3 && arg_index == 2) || magic == 2)
9626 	{
9627 	  /* Do no conversions for certain magic varargs.  */
9628 	  a = mark_type_use (a);
9629 	  if (TREE_CODE (a) == FUNCTION_DECL && reject_gcc_builtin (a))
9630 	    return error_mark_node;
9631 	}
9632       else if (magic != 0)
9633 	/* For other magic varargs only do decay_conversion.  */
9634 	a = decay_conversion (a, complain);
9635       else if (DECL_CONSTRUCTOR_P (fn)
9636 	       && same_type_ignoring_top_level_qualifiers_p (DECL_CONTEXT (fn),
9637 							     TREE_TYPE (a)))
9638 	{
9639 	  /* Avoid infinite recursion trying to call A(...).  */
9640 	  if (complain & tf_error)
9641 	    /* Try to call the actual copy constructor for a good error.  */
9642 	    call_copy_ctor (a, complain);
9643 	  return error_mark_node;
9644 	}
9645       else
9646 	a = convert_arg_to_ellipsis (a, complain);
9647       if (a == error_mark_node)
9648 	return error_mark_node;
9649       argarray[j++] = a;
9650     }
9651 
9652   gcc_assert (j <= nargs);
9653   nargs = j;
9654   icip.reset ();
9655 
9656   /* Avoid performing argument transformation if warnings are disabled.
9657      When tf_warning is set and at least one of the warnings is active
9658      the check_function_arguments function might warn about something.  */
9659 
9660   bool warned_p = false;
9661   if ((complain & tf_warning)
9662       && (warn_nonnull
9663 	  || warn_format
9664 	  || warn_suggest_attribute_format
9665 	  || warn_restrict))
9666     {
9667       tree *fargs = (!nargs ? argarray
9668 			    : (tree *) alloca (nargs * sizeof (tree)));
9669       for (j = 0; j < nargs; j++)
9670 	{
9671 	  /* For -Wformat undo the implicit passing by hidden reference
9672 	     done by convert_arg_to_ellipsis.  */
9673 	  if (TREE_CODE (argarray[j]) == ADDR_EXPR
9674 	      && TYPE_REF_P (TREE_TYPE (argarray[j])))
9675 	    fargs[j] = TREE_OPERAND (argarray[j], 0);
9676 	  else
9677 	    fargs[j] = argarray[j];
9678 	}
9679 
9680       warned_p = check_function_arguments (input_location, fn, TREE_TYPE (fn),
9681 					   nargs, fargs, NULL);
9682     }
9683 
9684   if (DECL_INHERITED_CTOR (fn))
9685     {
9686       /* Check for passing ellipsis arguments to an inherited constructor.  We
9687 	 could handle this by open-coding the inherited constructor rather than
9688 	 defining it, but let's not bother now.  */
9689       if (!cp_unevaluated_operand
9690 	  && cand->num_convs
9691 	  && cand->convs[cand->num_convs-1]->ellipsis_p)
9692 	{
9693 	  if (complain & tf_error)
9694 	    {
9695 	      sorry ("passing arguments to ellipsis of inherited constructor "
9696 		     "%qD", cand->fn);
9697 	      inform (DECL_SOURCE_LOCATION (cand->fn), "declared here");
9698 	    }
9699 	  return error_mark_node;
9700 	}
9701 
9702       /* A base constructor inheriting from a virtual base doesn't get the
9703 	 inherited arguments, just this and __vtt.  */
9704       if (ctor_omit_inherited_parms (fn))
9705 	nargs = 2;
9706     }
9707 
9708   /* Avoid actually calling copy constructors and copy assignment operators,
9709      if possible.  */
9710 
9711   if (! flag_elide_constructors && !force_elide)
9712     /* Do things the hard way.  */;
9713   else if (cand->num_convs == 1
9714            && (DECL_COPY_CONSTRUCTOR_P (fn)
9715                || DECL_MOVE_CONSTRUCTOR_P (fn))
9716 	   /* It's unsafe to elide the constructor when handling
9717 	      a noexcept-expression, it may evaluate to the wrong
9718 	      value (c++/53025).  */
9719 	   && (force_elide || cp_noexcept_operand == 0))
9720     {
9721       tree targ;
9722       tree arg = argarray[num_artificial_parms_for (fn)];
9723       tree fa = argarray[0];
9724       bool trivial = trivial_fn_p (fn);
9725 
9726       /* Pull out the real argument, disregarding const-correctness.  */
9727       targ = arg;
9728       /* Strip the reference binding for the constructor parameter.  */
9729       if (CONVERT_EXPR_P (targ)
9730 	  && TYPE_REF_P (TREE_TYPE (targ)))
9731 	targ = TREE_OPERAND (targ, 0);
9732       /* But don't strip any other reference bindings; binding a temporary to a
9733 	 reference prevents copy elision.  */
9734       while ((CONVERT_EXPR_P (targ)
9735 	      && !TYPE_REF_P (TREE_TYPE (targ)))
9736 	     || TREE_CODE (targ) == NON_LVALUE_EXPR)
9737 	targ = TREE_OPERAND (targ, 0);
9738       if (TREE_CODE (targ) == ADDR_EXPR)
9739 	{
9740 	  targ = TREE_OPERAND (targ, 0);
9741 	  if (!same_type_ignoring_top_level_qualifiers_p
9742 	      (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
9743 	    targ = NULL_TREE;
9744 	}
9745       else
9746 	targ = NULL_TREE;
9747 
9748       if (targ)
9749 	arg = targ;
9750       else
9751 	arg = cp_build_fold_indirect_ref (arg);
9752 
9753       /* In C++17 we shouldn't be copying a TARGET_EXPR except into a
9754 	 potentially-overlapping subobject.  */
9755       if (CHECKING_P && cxx_dialect >= cxx17)
9756 	gcc_assert (TREE_CODE (arg) != TARGET_EXPR
9757 		    || force_elide
9758 		    /* It's from binding the ref parm to a packed field. */
9759 		    || convs[0]->need_temporary_p
9760 		    || seen_error ()
9761 		    /* See unsafe_copy_elision_p.  */
9762 		    || unsafe_return_slot_p (fa));
9763 
9764       bool unsafe = unsafe_copy_elision_p_opt (fa, arg);
9765       bool eliding_temp = (TREE_CODE (arg) == TARGET_EXPR && !unsafe);
9766 
9767       /* [class.copy]: the copy constructor is implicitly defined even if the
9768 	 implementation elided its use.  But don't warn about deprecation when
9769 	 eliding a temporary, as then no copy is actually performed.  */
9770       warning_sentinel s (warn_deprecated_copy, eliding_temp);
9771       if (force_elide)
9772 	/* The language says this isn't called.  */;
9773       else if (!trivial)
9774 	{
9775 	  if (!mark_used (fn, complain) && !(complain & tf_error))
9776 	    return error_mark_node;
9777 	  already_used = true;
9778 	}
9779       else
9780 	cp_handle_deprecated_or_unavailable (fn, complain);
9781 
9782       if (eliding_temp && DECL_BASE_CONSTRUCTOR_P (fn)
9783 	  && !make_base_init_ok (arg))
9784 	unsafe = true;
9785 
9786       /* If we're creating a temp and we already have one, don't create a
9787 	 new one.  If we're not creating a temp but we get one, use
9788 	 INIT_EXPR to collapse the temp into our target.  Otherwise, if the
9789 	 ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
9790 	 temp or an INIT_EXPR otherwise.  */
9791       if (is_dummy_object (fa))
9792 	{
9793 	  if (TREE_CODE (arg) == TARGET_EXPR)
9794 	    return arg;
9795 	  else if (trivial)
9796 	    return force_target_expr (DECL_CONTEXT (fn), arg, complain);
9797 	}
9798       else if ((trivial || TREE_CODE (arg) == TARGET_EXPR)
9799 	       && !unsafe)
9800 	{
9801 	  tree to = cp_build_fold_indirect_ref (fa);
9802 	  val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
9803 	  return val;
9804 	}
9805     }
9806   else if (DECL_ASSIGNMENT_OPERATOR_P (fn)
9807 	   && DECL_OVERLOADED_OPERATOR_IS (fn, NOP_EXPR)
9808 	   && trivial_fn_p (fn))
9809     {
9810       /* Don't use cp_build_fold_indirect_ref, op= returns an lvalue even if
9811 	 the object argument isn't one.  */
9812       tree to = cp_build_indirect_ref (input_location, argarray[0],
9813 				       RO_ARROW, complain);
9814       tree type = TREE_TYPE (to);
9815       tree as_base = CLASSTYPE_AS_BASE (type);
9816       tree arg = argarray[1];
9817       location_t loc = cp_expr_loc_or_input_loc (arg);
9818 
9819       if (is_really_empty_class (type, /*ignore_vptr*/true))
9820 	{
9821 	  /* Avoid copying empty classes.  */
9822 	  val = build2 (COMPOUND_EXPR, type, arg, to);
9823 	  suppress_warning (val, OPT_Wunused);
9824 	}
9825       else if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
9826 	{
9827 	  if (is_std_init_list (type)
9828 	      && conv_binds_ref_to_prvalue (convs[1]))
9829 	    warning_at (loc, OPT_Winit_list_lifetime,
9830 			"assignment from temporary %<initializer_list%> does "
9831 			"not extend the lifetime of the underlying array");
9832 	  arg = cp_build_fold_indirect_ref (arg);
9833 	  val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
9834 	}
9835       else
9836 	{
9837 	  /* We must only copy the non-tail padding parts.  */
9838 	  tree arg0, arg2, t;
9839 	  tree array_type, alias_set;
9840 
9841 	  arg2 = TYPE_SIZE_UNIT (as_base);
9842 	  to = cp_stabilize_reference (to);
9843 	  arg0 = cp_build_addr_expr (to, complain);
9844 
9845 	  array_type = build_array_type (unsigned_char_type_node,
9846 					 build_index_type
9847 					   (size_binop (MINUS_EXPR,
9848 							arg2, size_int (1))));
9849 	  alias_set = build_int_cst (build_pointer_type (type), 0);
9850 	  t = build2 (MODIFY_EXPR, void_type_node,
9851 		      build2 (MEM_REF, array_type, arg0, alias_set),
9852 		      build2 (MEM_REF, array_type, arg, alias_set));
9853 	  val = build2 (COMPOUND_EXPR, TREE_TYPE (to), t, to);
9854           suppress_warning (val, OPT_Wunused);
9855 	}
9856 
9857       cp_handle_deprecated_or_unavailable (fn, complain);
9858 
9859       return val;
9860     }
9861   else if (trivial_fn_p (fn))
9862     {
9863       if (DECL_DESTRUCTOR_P (fn))
9864 	return build_trivial_dtor_call (argarray[0]);
9865       else if (default_ctor_p (fn))
9866 	{
9867 	  if (is_dummy_object (argarray[0]))
9868 	    return force_target_expr (DECL_CONTEXT (fn), void_node,
9869 				      no_cleanup_complain);
9870 	  else
9871 	    return cp_build_fold_indirect_ref (argarray[0]);
9872 	}
9873     }
9874 
9875   gcc_assert (!force_elide);
9876 
9877   if (!already_used
9878       && !mark_used (fn, complain))
9879     return error_mark_node;
9880 
9881   /* Warn if the built-in writes to an object of a non-trivial type.  */
9882   if (warn_class_memaccess
9883       && vec_safe_length (args) >= 2
9884       && DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL)
9885     maybe_warn_class_memaccess (input_location, fn, args);
9886 
9887   if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
9888     {
9889       tree t;
9890       tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
9891 				DECL_CONTEXT (fn),
9892 				ba_any, NULL, complain);
9893       gcc_assert (binfo && binfo != error_mark_node);
9894 
9895       argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1,
9896 				     complain);
9897       if (TREE_SIDE_EFFECTS (argarray[0]))
9898 	argarray[0] = save_expr (argarray[0]);
9899       t = build_pointer_type (TREE_TYPE (fn));
9900       fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
9901       TREE_TYPE (fn) = t;
9902     }
9903   else
9904     {
9905       /* If FN is marked deprecated, then we've already issued a deprecated-use
9906 	 warning from mark_used above, so avoid redundantly issuing another one
9907 	 from build_addr_func.  */
9908       warning_sentinel w (warn_deprecated_decl);
9909 
9910       fn = build_addr_func (fn, complain);
9911       if (fn == error_mark_node)
9912 	return error_mark_node;
9913     }
9914 
9915   tree call = build_cxx_call (fn, nargs, argarray, complain|decltype_flag);
9916   if (call == error_mark_node)
9917     return call;
9918   if (cand->flags & LOOKUP_LIST_INIT_CTOR)
9919     {
9920       tree c = extract_call_expr (call);
9921       /* build_new_op will clear this when appropriate.  */
9922       CALL_EXPR_ORDERED_ARGS (c) = true;
9923     }
9924   if (warned_p)
9925     {
9926       tree c = extract_call_expr (call);
9927       if (TREE_CODE (c) == CALL_EXPR)
9928 	suppress_warning (c /* Suppress all warnings.  */);
9929     }
9930   if (TREE_CODE (fn) == ADDR_EXPR)
9931     {
9932       tree fndecl = STRIP_TEMPLATE (TREE_OPERAND (fn, 0));
9933       if (immediate_invocation_p (fndecl, nargs))
9934 	{
9935 	  tree obj_arg = NULL_TREE;
9936 	  /* Undo convert_from_reference called by build_cxx_call.  */
9937 	  if (REFERENCE_REF_P (call))
9938 	    call = TREE_OPERAND (call, 0);
9939 	  if (DECL_CONSTRUCTOR_P (fndecl))
9940 	    obj_arg = cand->first_arg ? cand->first_arg : (*args)[0];
9941 	  if (obj_arg && is_dummy_object (obj_arg))
9942 	    {
9943 	      call = build_cplus_new (DECL_CONTEXT (fndecl), call, complain);
9944 	      obj_arg = NULL_TREE;
9945 	    }
9946 	  /* Look through *(const T *)&obj.  */
9947 	  else if (obj_arg && TREE_CODE (obj_arg) == INDIRECT_REF)
9948 	    {
9949 	      tree addr = TREE_OPERAND (obj_arg, 0);
9950 	      STRIP_NOPS (addr);
9951 	      if (TREE_CODE (addr) == ADDR_EXPR)
9952 		{
9953 		  tree typeo = TREE_TYPE (obj_arg);
9954 		  tree typei = TREE_TYPE (TREE_OPERAND (addr, 0));
9955 		  if (same_type_ignoring_top_level_qualifiers_p (typeo, typei))
9956 		    obj_arg = TREE_OPERAND (addr, 0);
9957 		}
9958 	    }
9959 	  call = cxx_constant_value_sfinae (call, obj_arg, complain);
9960 	  if (obj_arg && !error_operand_p (call))
9961 	    call = build2 (INIT_EXPR, void_type_node, obj_arg, call);
9962 	  call = convert_from_reference (call);
9963 	}
9964     }
9965   return call;
9966 }
9967 
9968 namespace
9969 {
9970 
9971 /* Return the DECL of the first non-static subobject of class TYPE
9972    that satisfies the predicate PRED or null if none can be found.  */
9973 
9974 template <class Predicate>
9975 tree
first_non_static_field(tree type,Predicate pred)9976 first_non_static_field (tree type, Predicate pred)
9977 {
9978   if (!type || !CLASS_TYPE_P (type))
9979     return NULL_TREE;
9980 
9981   for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
9982     {
9983       if (TREE_CODE (field) != FIELD_DECL)
9984 	continue;
9985       if (TREE_STATIC (field))
9986 	continue;
9987       if (pred (field))
9988 	return field;
9989     }
9990 
9991   int i = 0;
9992 
9993   for (tree base_binfo, binfo = TYPE_BINFO (type);
9994        BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
9995     {
9996       tree base = TREE_TYPE (base_binfo);
9997       if (pred (base))
9998 	return base;
9999       if (tree field = first_non_static_field (base, pred))
10000 	return field;
10001     }
10002 
10003   return NULL_TREE;
10004 }
10005 
10006 struct NonPublicField
10007 {
operator ()__anon95ca84d20711::NonPublicField10008   bool operator() (const_tree t) const
10009   {
10010     return DECL_P (t) && (TREE_PRIVATE (t) || TREE_PROTECTED (t));
10011   }
10012 };
10013 
10014 /* Return the DECL of the first non-public subobject of class TYPE
10015    or null if none can be found.  */
10016 
10017 static inline tree
first_non_public_field(tree type)10018 first_non_public_field (tree type)
10019 {
10020   return first_non_static_field (type, NonPublicField ());
10021 }
10022 
10023 struct NonTrivialField
10024 {
operator ()__anon95ca84d20711::NonTrivialField10025   bool operator() (const_tree t) const
10026   {
10027     return !trivial_type_p (DECL_P (t) ? TREE_TYPE (t) : t);
10028   }
10029 };
10030 
10031 /* Return the DECL of the first non-trivial subobject of class TYPE
10032    or null if none can be found.  */
10033 
10034 static inline tree
first_non_trivial_field(tree type)10035 first_non_trivial_field (tree type)
10036 {
10037   return first_non_static_field (type, NonTrivialField ());
10038 }
10039 
10040 }   /* unnamed namespace */
10041 
10042 /* Return true if all copy and move assignment operator overloads for
10043    class TYPE are trivial and at least one of them is not deleted and,
10044    when ACCESS is set, accessible.  Return false otherwise.  Set
10045    HASASSIGN to true when the TYPE has a (not necessarily trivial)
10046    copy or move assignment.  */
10047 
10048 static bool
has_trivial_copy_assign_p(tree type,bool access,bool * hasassign)10049 has_trivial_copy_assign_p (tree type, bool access, bool *hasassign)
10050 {
10051   tree fns = get_class_binding (type, assign_op_identifier);
10052   bool all_trivial = true;
10053 
10054   /* Iterate over overloads of the assignment operator, checking
10055      accessible copy assignments for triviality.  */
10056 
10057   for (tree f : ovl_range (fns))
10058     {
10059       /* Skip operators that aren't copy assignments.  */
10060       if (!copy_fn_p (f))
10061 	continue;
10062 
10063       bool accessible = (!access || !(TREE_PRIVATE (f) || TREE_PROTECTED (f))
10064 			 || accessible_p (TYPE_BINFO (type), f, true));
10065 
10066       /* Skip template assignment operators and deleted functions.  */
10067       if (TREE_CODE (f) != FUNCTION_DECL || DECL_DELETED_FN (f))
10068 	continue;
10069 
10070       if (accessible)
10071 	*hasassign = true;
10072 
10073       if (!accessible || !trivial_fn_p (f))
10074 	all_trivial = false;
10075 
10076       /* Break early when both properties have been determined.  */
10077       if (*hasassign && !all_trivial)
10078 	break;
10079     }
10080 
10081   /* Return true if they're all trivial and one of the expressions
10082      TYPE() = TYPE() or TYPE() = (TYPE&)() is valid.  */
10083   tree ref = cp_build_reference_type (type, false);
10084   return (all_trivial
10085 	  && (is_trivially_xible (MODIFY_EXPR, type, type)
10086 	      || is_trivially_xible (MODIFY_EXPR, type, ref)));
10087 }
10088 
10089 /* Return true if all copy and move ctor overloads for class TYPE are
10090    trivial and at least one of them is not deleted and, when ACCESS is
10091    set, accessible.  Return false otherwise.  Set each element of HASCTOR[]
10092    to true when the TYPE has a (not necessarily trivial) default and copy
10093    (or move) ctor, respectively.  */
10094 
10095 static bool
has_trivial_copy_p(tree type,bool access,bool hasctor[2])10096 has_trivial_copy_p (tree type, bool access, bool hasctor[2])
10097 {
10098   tree fns = get_class_binding (type, complete_ctor_identifier);
10099   bool all_trivial = true;
10100 
10101   for (tree f : ovl_range (fns))
10102     {
10103       /* Skip template constructors.  */
10104       if (TREE_CODE (f) != FUNCTION_DECL)
10105 	continue;
10106 
10107       bool cpy_or_move_ctor_p = copy_fn_p (f);
10108 
10109       /* Skip ctors other than default, copy, and move.  */
10110       if (!cpy_or_move_ctor_p && !default_ctor_p (f))
10111 	continue;
10112 
10113       if (DECL_DELETED_FN (f))
10114 	continue;
10115 
10116       bool accessible = (!access || !(TREE_PRIVATE (f) || TREE_PROTECTED (f))
10117 			 || accessible_p (TYPE_BINFO (type), f, true));
10118 
10119       if (accessible)
10120 	hasctor[cpy_or_move_ctor_p] = true;
10121 
10122       if (cpy_or_move_ctor_p && (!accessible || !trivial_fn_p (f)))
10123 	all_trivial = false;
10124 
10125       /* Break early when both properties have been determined.  */
10126       if (hasctor[0] && hasctor[1] && !all_trivial)
10127 	break;
10128     }
10129 
10130   return all_trivial;
10131 }
10132 
10133 /* Issue a warning on a call to the built-in function FNDECL if it is
10134    a raw memory write whose destination is not an object of (something
10135    like) trivial or standard layout type with a non-deleted assignment
10136    and copy ctor.  Detects const correctness violations, corrupting
10137    references, virtual table pointers, and bypassing non-trivial
10138    assignments.  */
10139 
10140 static void
maybe_warn_class_memaccess(location_t loc,tree fndecl,const vec<tree,va_gc> * args)10141 maybe_warn_class_memaccess (location_t loc, tree fndecl,
10142 			    const vec<tree, va_gc> *args)
10143 {
10144   /* Except for bcopy where it's second, the destination pointer is
10145      the first argument for all functions handled here.  Compute
10146      the index of the destination and source arguments.  */
10147   unsigned dstidx = DECL_FUNCTION_CODE (fndecl) == BUILT_IN_BCOPY;
10148   unsigned srcidx = !dstidx;
10149 
10150   tree dest = (*args)[dstidx];
10151   if (!TREE_TYPE (dest)
10152       || (TREE_CODE (TREE_TYPE (dest)) != ARRAY_TYPE
10153 	  && !INDIRECT_TYPE_P (TREE_TYPE (dest))))
10154     return;
10155 
10156   tree srctype = NULL_TREE;
10157 
10158   /* Determine the type of the pointed-to object and whether it's
10159      a complete class type.  */
10160   tree desttype = TREE_TYPE (TREE_TYPE (dest));
10161 
10162   if (!desttype || !COMPLETE_TYPE_P (desttype) || !CLASS_TYPE_P (desttype))
10163     return;
10164 
10165   /* Check to see if the raw memory call is made by a non-static member
10166      function with THIS as the destination argument for the destination
10167      type.  If so, and if the class has no non-trivial bases or members,
10168      be more permissive.  */
10169   if (current_function_decl
10170       && DECL_NONSTATIC_MEMBER_FUNCTION_P (current_function_decl)
10171       && is_this_parameter (tree_strip_nop_conversions (dest)))
10172     {
10173       tree ctx = DECL_CONTEXT (current_function_decl);
10174       bool special = same_type_ignoring_top_level_qualifiers_p (ctx, desttype);
10175       tree binfo = TYPE_BINFO (ctx);
10176 
10177       if (special
10178 	  && !BINFO_VTABLE (binfo)
10179 	  && !first_non_trivial_field (desttype))
10180 	return;
10181     }
10182 
10183   /* True if the class is trivial.  */
10184   bool trivial = trivial_type_p (desttype);
10185 
10186   /* Set to true if DESTYPE has an accessible copy assignment.  */
10187   bool hasassign = false;
10188   /* True if all of the class' overloaded copy assignment operators
10189      are all trivial (and not deleted) and at least one of them is
10190      accessible.  */
10191   bool trivassign = has_trivial_copy_assign_p (desttype, true, &hasassign);
10192 
10193   /* Set to true if DESTTYPE has an accessible default and copy ctor,
10194      respectively.  */
10195   bool hasctors[2] = { false, false };
10196 
10197   /* True if all of the class' overloaded copy constructors are all
10198      trivial (and not deleted) and at least one of them is accessible.  */
10199   bool trivcopy = has_trivial_copy_p (desttype, true, hasctors);
10200 
10201   /* Set FLD to the first private/protected member of the class.  */
10202   tree fld = trivial ? first_non_public_field (desttype) : NULL_TREE;
10203 
10204   /* The warning format string.  */
10205   const char *warnfmt = NULL;
10206   /* A suggested alternative to offer instead of the raw memory call.
10207      Empty string when none can be come up with.  */
10208   const char *suggest = "";
10209   bool warned = false;
10210 
10211   switch (DECL_FUNCTION_CODE (fndecl))
10212     {
10213     case BUILT_IN_MEMSET:
10214       if (!integer_zerop (maybe_constant_value ((*args)[1])))
10215 	{
10216 	  /* Diagnose setting non-copy-assignable or non-trivial types,
10217 	     or types with a private member, to (potentially) non-zero
10218 	     bytes.  Since the value of the bytes being written is unknown,
10219 	     suggest using assignment instead (if one exists).  Also warn
10220 	     for writes into objects for which zero-initialization doesn't
10221 	     mean all bits clear (pointer-to-member data, where null is all
10222 	     bits set).  Since the value being written is (most likely)
10223 	     non-zero, simply suggest assignment (but not copy assignment).  */
10224 	  suggest = "; use assignment instead";
10225 	  if (!trivassign)
10226 	    warnfmt = G_("%qD writing to an object of type %#qT with "
10227 			 "no trivial copy-assignment");
10228 	  else if (!trivial)
10229 	    warnfmt = G_("%qD writing to an object of non-trivial type %#qT%s");
10230 	  else if (fld)
10231 	    {
10232 	      const char *access = TREE_PRIVATE (fld) ? "private" : "protected";
10233 	      warned = warning_at (loc, OPT_Wclass_memaccess,
10234 				   "%qD writing to an object of type %#qT with "
10235 				   "%qs member %qD",
10236 				   fndecl, desttype, access, fld);
10237 	    }
10238 	  else if (!zero_init_p (desttype))
10239 	    warnfmt = G_("%qD writing to an object of type %#qT containing "
10240 			 "a pointer to data member%s");
10241 
10242 	  break;
10243 	}
10244       /* Fall through.  */
10245 
10246     case BUILT_IN_BZERO:
10247       /* Similarly to the above, diagnose clearing non-trivial or non-
10248 	 standard layout objects, or objects of types with no assignmenmt.
10249 	 Since the value being written is known to be zero, suggest either
10250 	 copy assignment, copy ctor, or default ctor as an alternative,
10251 	 depending on what's available.  */
10252 
10253       if (hasassign && hasctors[0])
10254 	suggest = G_("; use assignment or value-initialization instead");
10255       else if (hasassign)
10256 	suggest = G_("; use assignment instead");
10257       else if (hasctors[0])
10258 	suggest = G_("; use value-initialization instead");
10259 
10260       if (!trivassign)
10261 	warnfmt = G_("%qD clearing an object of type %#qT with "
10262 		     "no trivial copy-assignment%s");
10263       else if (!trivial)
10264 	warnfmt =  G_("%qD clearing an object of non-trivial type %#qT%s");
10265       else if (!zero_init_p (desttype))
10266 	warnfmt = G_("%qD clearing an object of type %#qT containing "
10267 		     "a pointer-to-member%s");
10268       break;
10269 
10270     case BUILT_IN_BCOPY:
10271     case BUILT_IN_MEMCPY:
10272     case BUILT_IN_MEMMOVE:
10273     case BUILT_IN_MEMPCPY:
10274       /* Determine the type of the source object.  */
10275       srctype = TREE_TYPE ((*args)[srcidx]);
10276       if (!srctype || !INDIRECT_TYPE_P (srctype))
10277 	srctype = void_type_node;
10278       else
10279 	srctype = TREE_TYPE (srctype);
10280 
10281       /* Since it's impossible to determine wheter the byte copy is
10282 	 being used in place of assignment to an existing object or
10283 	 as a substitute for initialization, assume it's the former.
10284 	 Determine the best alternative to use instead depending on
10285 	 what's not deleted.  */
10286       if (hasassign && hasctors[1])
10287 	suggest = G_("; use copy-assignment or copy-initialization instead");
10288       else if (hasassign)
10289 	suggest = G_("; use copy-assignment instead");
10290       else if (hasctors[1])
10291 	suggest = G_("; use copy-initialization instead");
10292 
10293       if (!trivassign)
10294 	warnfmt = G_("%qD writing to an object of type %#qT with no trivial "
10295 		     "copy-assignment%s");
10296       else if (!trivially_copyable_p (desttype))
10297 	warnfmt = G_("%qD writing to an object of non-trivially copyable "
10298 		     "type %#qT%s");
10299       else if (!trivcopy)
10300 	warnfmt = G_("%qD writing to an object with a deleted copy constructor");
10301 
10302       else if (!trivial
10303 	       && !VOID_TYPE_P (srctype)
10304 	       && !is_byte_access_type (srctype)
10305 	       && !same_type_ignoring_top_level_qualifiers_p (desttype,
10306 							      srctype))
10307 	{
10308 	  /* Warn when copying into a non-trivial object from an object
10309 	     of a different type other than void or char.  */
10310 	  warned = warning_at (loc, OPT_Wclass_memaccess,
10311 			       "%qD copying an object of non-trivial type "
10312 			       "%#qT from an array of %#qT",
10313 			       fndecl, desttype, srctype);
10314 	}
10315       else if (fld
10316 	       && !VOID_TYPE_P (srctype)
10317 	       && !is_byte_access_type (srctype)
10318 	       && !same_type_ignoring_top_level_qualifiers_p (desttype,
10319 							      srctype))
10320 	{
10321 	  const char *access = TREE_PRIVATE (fld) ? "private" : "protected";
10322 	  warned = warning_at (loc, OPT_Wclass_memaccess,
10323 			       "%qD copying an object of type %#qT with "
10324 			       "%qs member %qD from an array of %#qT; use "
10325 			       "assignment or copy-initialization instead",
10326 			       fndecl, desttype, access, fld, srctype);
10327 	}
10328       else if (!trivial && vec_safe_length (args) > 2)
10329 	{
10330 	  tree sz = maybe_constant_value ((*args)[2]);
10331 	  if (!tree_fits_uhwi_p (sz))
10332 	    break;
10333 
10334 	  /* Finally, warn on partial copies.  */
10335 	  unsigned HOST_WIDE_INT typesize
10336 	    = tree_to_uhwi (TYPE_SIZE_UNIT (desttype));
10337 	  if (typesize == 0)
10338 	    break;
10339 	  if (unsigned HOST_WIDE_INT partial = tree_to_uhwi (sz) % typesize)
10340 	    warned = warning_at (loc, OPT_Wclass_memaccess,
10341 				 (typesize - partial > 1
10342 				  ? G_("%qD writing to an object of "
10343 				       "a non-trivial type %#qT leaves %wu "
10344 				       "bytes unchanged")
10345 				  : G_("%qD writing to an object of "
10346 				       "a non-trivial type %#qT leaves %wu "
10347 				       "byte unchanged")),
10348 				 fndecl, desttype, typesize - partial);
10349 	}
10350       break;
10351 
10352     case BUILT_IN_REALLOC:
10353 
10354       if (!trivially_copyable_p (desttype))
10355 	warnfmt = G_("%qD moving an object of non-trivially copyable type "
10356 		     "%#qT; use %<new%> and %<delete%> instead");
10357       else if (!trivcopy)
10358 	warnfmt = G_("%qD moving an object of type %#qT with deleted copy "
10359 		     "constructor; use %<new%> and %<delete%> instead");
10360       else if (!get_dtor (desttype, tf_none))
10361 	warnfmt = G_("%qD moving an object of type %#qT with deleted "
10362 		     "destructor");
10363       else if (!trivial)
10364 	{
10365 	  tree sz = maybe_constant_value ((*args)[1]);
10366 	  if (TREE_CODE (sz) == INTEGER_CST
10367 	      && tree_int_cst_lt (sz, TYPE_SIZE_UNIT (desttype)))
10368 	    /* Finally, warn on reallocation into insufficient space.  */
10369 	    warned = warning_at (loc, OPT_Wclass_memaccess,
10370 				 "%qD moving an object of non-trivial type "
10371 				 "%#qT and size %E into a region of size %E",
10372 				 fndecl, desttype, TYPE_SIZE_UNIT (desttype),
10373 				 sz);
10374 	}
10375       break;
10376 
10377     default:
10378       return;
10379     }
10380 
10381   if (warnfmt)
10382     {
10383       if (suggest)
10384 	warned = warning_at (loc, OPT_Wclass_memaccess,
10385 			     warnfmt, fndecl, desttype, suggest);
10386       else
10387 	warned = warning_at (loc, OPT_Wclass_memaccess,
10388 			     warnfmt, fndecl, desttype);
10389     }
10390 
10391   if (warned)
10392     inform (location_of (desttype), "%#qT declared here", desttype);
10393 }
10394 
10395 /* Build and return a call to FN, using NARGS arguments in ARGARRAY.
10396    If FN is the result of resolving an overloaded target built-in,
10397    ORIG_FNDECL is the original function decl, otherwise it is null.
10398    This function performs no overload resolution, conversion, or other
10399    high-level operations.  */
10400 
10401 tree
build_cxx_call(tree fn,int nargs,tree * argarray,tsubst_flags_t complain,tree orig_fndecl)10402 build_cxx_call (tree fn, int nargs, tree *argarray,
10403 		tsubst_flags_t complain, tree orig_fndecl)
10404 {
10405   tree fndecl;
10406 
10407   /* Remember roughly where this call is.  */
10408   location_t loc = cp_expr_loc_or_input_loc (fn);
10409   fn = build_call_a (fn, nargs, argarray);
10410   SET_EXPR_LOCATION (fn, loc);
10411 
10412   fndecl = get_callee_fndecl (fn);
10413   if (!orig_fndecl)
10414     orig_fndecl = fndecl;
10415 
10416   /* Check that arguments to builtin functions match the expectations.  */
10417   if (fndecl
10418       && !processing_template_decl
10419       && fndecl_built_in_p (fndecl))
10420     {
10421       int i;
10422 
10423       /* We need to take care that values to BUILT_IN_NORMAL
10424          are reduced.  */
10425       for (i = 0; i < nargs; i++)
10426 	argarray[i] = maybe_constant_value (argarray[i]);
10427 
10428       if (!check_builtin_function_arguments (EXPR_LOCATION (fn), vNULL, fndecl,
10429 					     orig_fndecl, nargs, argarray))
10430 	return error_mark_node;
10431       else if (fndecl_built_in_p (fndecl, BUILT_IN_CLEAR_PADDING))
10432 	{
10433 	  tree arg0 = argarray[0];
10434 	  STRIP_NOPS (arg0);
10435 	  if (TREE_CODE (arg0) == ADDR_EXPR
10436 	      && DECL_P (TREE_OPERAND (arg0, 0))
10437 	      && same_type_ignoring_top_level_qualifiers_p
10438 			(TREE_TYPE (TREE_TYPE (argarray[0])),
10439 			 TREE_TYPE (TREE_TYPE (arg0))))
10440 	    /* For __builtin_clear_padding (&var) we know the type
10441 	       is for a complete object, so there is no risk in clearing
10442 	       padding that is reused in some derived class member.  */;
10443 	  else if (!trivially_copyable_p (TREE_TYPE (TREE_TYPE (argarray[0]))))
10444 	    {
10445 	      error_at (EXPR_LOC_OR_LOC (argarray[0], input_location),
10446 			"argument %u in call to function %qE "
10447 			"has pointer to a non-trivially-copyable type (%qT)",
10448 			1, fndecl, TREE_TYPE (argarray[0]));
10449 	      return error_mark_node;
10450 	    }
10451 	}
10452     }
10453 
10454   if (VOID_TYPE_P (TREE_TYPE (fn)))
10455     return fn;
10456 
10457   /* 5.2.2/11: If a function call is a prvalue of object type: if the
10458      function call is either the operand of a decltype-specifier or the
10459      right operand of a comma operator that is the operand of a
10460      decltype-specifier, a temporary object is not introduced for the
10461      prvalue. The type of the prvalue may be incomplete.  */
10462   if (!(complain & tf_decltype))
10463     {
10464       fn = require_complete_type_sfinae (fn, complain);
10465       if (fn == error_mark_node)
10466 	return error_mark_node;
10467 
10468       if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
10469 	{
10470 	  fn = build_cplus_new (TREE_TYPE (fn), fn, complain);
10471 	  maybe_warn_parm_abi (TREE_TYPE (fn), loc);
10472 	}
10473     }
10474   return convert_from_reference (fn);
10475 }
10476 
10477 /* Returns the value to use for the in-charge parameter when making a
10478    call to a function with the indicated NAME.
10479 
10480    FIXME:Can't we find a neater way to do this mapping?  */
10481 
10482 tree
in_charge_arg_for_name(tree name)10483 in_charge_arg_for_name (tree name)
10484 {
10485   if (IDENTIFIER_CTOR_P (name))
10486     {
10487       if (name == complete_ctor_identifier)
10488 	return integer_one_node;
10489       gcc_checking_assert (name == base_ctor_identifier);
10490     }
10491   else
10492     {
10493       if (name == complete_dtor_identifier)
10494 	return integer_two_node;
10495       else if (name == deleting_dtor_identifier)
10496 	return integer_three_node;
10497       gcc_checking_assert (name == base_dtor_identifier);
10498     }
10499 
10500   return integer_zero_node;
10501 }
10502 
10503 /* We've built up a constructor call RET.  Complain if it delegates to the
10504    constructor we're currently compiling.  */
10505 
10506 static void
check_self_delegation(tree ret)10507 check_self_delegation (tree ret)
10508 {
10509   if (TREE_CODE (ret) == TARGET_EXPR)
10510     ret = TARGET_EXPR_INITIAL (ret);
10511   tree fn = cp_get_callee_fndecl_nofold (ret);
10512   if (fn && DECL_ABSTRACT_ORIGIN (fn) == current_function_decl)
10513     error ("constructor delegates to itself");
10514 }
10515 
10516 /* Build a call to a constructor, destructor, or an assignment
10517    operator for INSTANCE, an expression with class type.  NAME
10518    indicates the special member function to call; *ARGS are the
10519    arguments.  ARGS may be NULL.  This may change ARGS.  BINFO
10520    indicates the base of INSTANCE that is to be passed as the `this'
10521    parameter to the member function called.
10522 
10523    FLAGS are the LOOKUP_* flags to use when processing the call.
10524 
10525    If NAME indicates a complete object constructor, INSTANCE may be
10526    NULL_TREE.  In this case, the caller will call build_cplus_new to
10527    store the newly constructed object into a VAR_DECL.  */
10528 
10529 tree
build_special_member_call(tree instance,tree name,vec<tree,va_gc> ** args,tree binfo,int flags,tsubst_flags_t complain)10530 build_special_member_call (tree instance, tree name, vec<tree, va_gc> **args,
10531 			   tree binfo, int flags, tsubst_flags_t complain)
10532 {
10533   tree fns;
10534   /* The type of the subobject to be constructed or destroyed.  */
10535   tree class_type;
10536   vec<tree, va_gc> *allocated = NULL;
10537   tree ret;
10538 
10539   gcc_assert (IDENTIFIER_CDTOR_P (name) || name == assign_op_identifier);
10540 
10541   if (error_operand_p (instance))
10542     return error_mark_node;
10543 
10544   if (IDENTIFIER_DTOR_P (name))
10545     {
10546       gcc_assert (args == NULL || vec_safe_is_empty (*args));
10547       if (!type_build_dtor_call (TREE_TYPE (instance)))
10548 	/* Shortcut to avoid lazy destructor declaration.  */
10549 	return build_trivial_dtor_call (instance);
10550     }
10551 
10552   if (TYPE_P (binfo))
10553     {
10554       /* Resolve the name.  */
10555       if (!complete_type_or_maybe_complain (binfo, NULL_TREE, complain))
10556 	return error_mark_node;
10557 
10558       binfo = TYPE_BINFO (binfo);
10559     }
10560 
10561   gcc_assert (binfo != NULL_TREE);
10562 
10563   class_type = BINFO_TYPE (binfo);
10564 
10565   /* Handle the special case where INSTANCE is NULL_TREE.  */
10566   if (name == complete_ctor_identifier && !instance)
10567     instance = build_dummy_object (class_type);
10568   else
10569     {
10570       /* Convert to the base class, if necessary.  */
10571       if (!same_type_ignoring_top_level_qualifiers_p
10572 	  (TREE_TYPE (instance), BINFO_TYPE (binfo)))
10573 	{
10574 	  if (IDENTIFIER_CDTOR_P (name))
10575 	    /* For constructors and destructors, either the base is
10576 	       non-virtual, or it is virtual but we are doing the
10577 	       conversion from a constructor or destructor for the
10578 	       complete object.  In either case, we can convert
10579 	       statically.  */
10580 	    instance = convert_to_base_statically (instance, binfo);
10581 	  else
10582 	    {
10583 	      /* However, for assignment operators, we must convert
10584 		 dynamically if the base is virtual.  */
10585 	      gcc_checking_assert (name == assign_op_identifier);
10586 	      instance = build_base_path (PLUS_EXPR, instance,
10587 					  binfo, /*nonnull=*/1, complain);
10588 	    }
10589 	}
10590     }
10591 
10592   gcc_assert (instance != NULL_TREE);
10593 
10594   /* In C++17, "If the initializer expression is a prvalue and the
10595      cv-unqualified version of the source type is the same class as the class
10596      of the destination, the initializer expression is used to initialize the
10597      destination object."  Handle that here to avoid doing overload
10598      resolution.  */
10599   if (cxx_dialect >= cxx17
10600       && args && vec_safe_length (*args) == 1
10601       && !unsafe_return_slot_p (instance))
10602     {
10603       tree arg = (**args)[0];
10604 
10605       if (BRACE_ENCLOSED_INITIALIZER_P (arg)
10606 	  && !TYPE_HAS_LIST_CTOR (class_type)
10607 	  && !CONSTRUCTOR_IS_DESIGNATED_INIT (arg)
10608 	  && CONSTRUCTOR_NELTS (arg) == 1)
10609 	arg = CONSTRUCTOR_ELT (arg, 0)->value;
10610 
10611       if ((TREE_CODE (arg) == TARGET_EXPR
10612 	   || TREE_CODE (arg) == CONSTRUCTOR)
10613 	  && (same_type_ignoring_top_level_qualifiers_p
10614 	      (class_type, TREE_TYPE (arg))))
10615 	{
10616 	  if (is_dummy_object (instance))
10617 	    return arg;
10618 	  else if (TREE_CODE (arg) == TARGET_EXPR)
10619 	    TARGET_EXPR_DIRECT_INIT_P (arg) = true;
10620 
10621 	  if ((complain & tf_error)
10622 	      && (flags & LOOKUP_DELEGATING_CONS))
10623 	    check_self_delegation (arg);
10624 	  /* Avoid change of behavior on Wunused-var-2.C.  */
10625 	  instance = mark_lvalue_use (instance);
10626 	  return build2 (INIT_EXPR, class_type, instance, arg);
10627 	}
10628     }
10629 
10630   fns = lookup_fnfields (binfo, name, 1, complain);
10631 
10632   /* When making a call to a constructor or destructor for a subobject
10633      that uses virtual base classes, pass down a pointer to a VTT for
10634      the subobject.  */
10635   if ((name == base_ctor_identifier
10636        || name == base_dtor_identifier)
10637       && CLASSTYPE_VBASECLASSES (class_type))
10638     {
10639       tree vtt;
10640       tree sub_vtt;
10641 
10642       /* If the current function is a complete object constructor
10643 	 or destructor, then we fetch the VTT directly.
10644 	 Otherwise, we look it up using the VTT we were given.  */
10645       vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
10646       vtt = decay_conversion (vtt, complain);
10647       if (vtt == error_mark_node)
10648 	return error_mark_node;
10649       vtt = build_if_in_charge (vtt, current_vtt_parm);
10650       if (BINFO_SUBVTT_INDEX (binfo))
10651 	sub_vtt = fold_build_pointer_plus (vtt, BINFO_SUBVTT_INDEX (binfo));
10652       else
10653 	sub_vtt = vtt;
10654 
10655       if (args == NULL)
10656 	{
10657 	  allocated = make_tree_vector ();
10658 	  args = &allocated;
10659 	}
10660 
10661       vec_safe_insert (*args, 0, sub_vtt);
10662     }
10663 
10664   ret = build_new_method_call (instance, fns, args,
10665 			       TYPE_BINFO (BINFO_TYPE (binfo)),
10666 			       flags, /*fn=*/NULL,
10667 			       complain);
10668 
10669   if (allocated != NULL)
10670     release_tree_vector (allocated);
10671 
10672   if ((complain & tf_error)
10673       && (flags & LOOKUP_DELEGATING_CONS)
10674       && name == complete_ctor_identifier)
10675     check_self_delegation (ret);
10676 
10677   return ret;
10678 }
10679 
10680 /* Return the NAME, as a C string.  The NAME indicates a function that
10681    is a member of TYPE.  *FREE_P is set to true if the caller must
10682    free the memory returned.
10683 
10684    Rather than go through all of this, we should simply set the names
10685    of constructors and destructors appropriately, and dispense with
10686    ctor_identifier, dtor_identifier, etc.  */
10687 
10688 static char *
name_as_c_string(tree name,tree type,bool * free_p)10689 name_as_c_string (tree name, tree type, bool *free_p)
10690 {
10691   const char *pretty_name;
10692 
10693   /* Assume that we will not allocate memory.  */
10694   *free_p = false;
10695   /* Constructors and destructors are special.  */
10696   if (IDENTIFIER_CDTOR_P (name))
10697     {
10698       pretty_name
10699 	= identifier_to_locale (IDENTIFIER_POINTER (constructor_name (type)));
10700       /* For a destructor, add the '~'.  */
10701       if (IDENTIFIER_DTOR_P (name))
10702 	{
10703 	  pretty_name = concat ("~", pretty_name, NULL);
10704 	  /* Remember that we need to free the memory allocated.  */
10705 	  *free_p = true;
10706 	}
10707     }
10708   else if (IDENTIFIER_CONV_OP_P (name))
10709     {
10710       pretty_name = concat ("operator ",
10711 			    type_as_string_translate (TREE_TYPE (name),
10712 						      TFF_PLAIN_IDENTIFIER),
10713 			    NULL);
10714       /* Remember that we need to free the memory allocated.  */
10715       *free_p = true;
10716     }
10717   else
10718     pretty_name = identifier_to_locale (IDENTIFIER_POINTER (name));
10719 
10720   return CONST_CAST (char *, pretty_name);
10721 }
10722 
10723 /* If CANDIDATES contains exactly one candidate, return it, otherwise
10724    return NULL.  */
10725 
10726 static z_candidate *
single_z_candidate(z_candidate * candidates)10727 single_z_candidate (z_candidate *candidates)
10728 {
10729   if (candidates == NULL)
10730     return NULL;
10731 
10732   if (candidates->next)
10733     return NULL;
10734 
10735   return candidates;
10736 }
10737 
10738 /* If CANDIDATE is invalid due to a bad argument type, return the
10739    pertinent conversion_info.
10740 
10741    Otherwise, return NULL.  */
10742 
10743 static const conversion_info *
maybe_get_bad_conversion_for_unmatched_call(const z_candidate * candidate)10744 maybe_get_bad_conversion_for_unmatched_call (const z_candidate *candidate)
10745 {
10746   /* Must be an rr_arg_conversion or rr_bad_arg_conversion.  */
10747   rejection_reason *r = candidate->reason;
10748 
10749   if (r == NULL)
10750     return NULL;
10751 
10752   switch (r->code)
10753     {
10754     default:
10755       return NULL;
10756 
10757     case rr_arg_conversion:
10758       return &r->u.conversion;
10759 
10760     case rr_bad_arg_conversion:
10761       return &r->u.bad_conversion;
10762     }
10763 }
10764 
10765 /* Issue an error and note complaining about a bad argument type at a
10766    callsite with a single candidate FNDECL.
10767 
10768    ARG_LOC is the location of the argument (or UNKNOWN_LOCATION, in which
10769    case input_location is used).
10770    FROM_TYPE is the type of the actual argument; TO_TYPE is the type of
10771    the formal parameter.  */
10772 
10773 void
complain_about_bad_argument(location_t arg_loc,tree from_type,tree to_type,tree fndecl,int parmnum)10774 complain_about_bad_argument (location_t arg_loc,
10775 			     tree from_type, tree to_type,
10776 			     tree fndecl, int parmnum)
10777 {
10778   auto_diagnostic_group d;
10779   range_label_for_type_mismatch rhs_label (from_type, to_type);
10780   range_label *label = &rhs_label;
10781   if (arg_loc == UNKNOWN_LOCATION)
10782     {
10783       arg_loc = input_location;
10784       label = NULL;
10785     }
10786   gcc_rich_location richloc (arg_loc, label);
10787   error_at (&richloc,
10788 	    "cannot convert %qH to %qI",
10789 	    from_type, to_type);
10790   maybe_inform_about_fndecl_for_bogus_argument_init (fndecl,
10791 						     parmnum);
10792 }
10793 
10794 /* Subroutine of build_new_method_call_1, for where there are no viable
10795    candidates for the call.  */
10796 
10797 static void
complain_about_no_candidates_for_method_call(tree instance,z_candidate * candidates,tree explicit_targs,tree basetype,tree optype,tree name,bool skip_first_for_error,vec<tree,va_gc> * user_args)10798 complain_about_no_candidates_for_method_call (tree instance,
10799 					      z_candidate *candidates,
10800 					      tree explicit_targs,
10801 					      tree basetype,
10802 					      tree optype, tree name,
10803 					      bool skip_first_for_error,
10804 					      vec<tree, va_gc> *user_args)
10805 {
10806   auto_diagnostic_group d;
10807   if (!COMPLETE_OR_OPEN_TYPE_P (basetype))
10808     cxx_incomplete_type_error (instance, basetype);
10809   else if (optype)
10810     error ("no matching function for call to %<%T::operator %T(%A)%#V%>",
10811 	   basetype, optype, build_tree_list_vec (user_args),
10812 	   TREE_TYPE (instance));
10813   else
10814     {
10815       /* Special-case for when there's a single candidate that's failing
10816 	 due to a bad argument type.  */
10817       if (z_candidate *candidate = single_z_candidate (candidates))
10818 	  if (const conversion_info *conv
10819 		= maybe_get_bad_conversion_for_unmatched_call (candidate))
10820 	    {
10821 	      tree from_type = conv->from;
10822 	      if (!TYPE_P (conv->from))
10823 		from_type = lvalue_type (conv->from);
10824 	      complain_about_bad_argument (conv->loc,
10825 					   from_type, conv->to_type,
10826 					   candidate->fn, conv->n_arg);
10827 	      return;
10828 	    }
10829 
10830       tree arglist = build_tree_list_vec (user_args);
10831       tree errname = name;
10832       bool twiddle = false;
10833       if (IDENTIFIER_CDTOR_P (errname))
10834 	{
10835 	  twiddle = IDENTIFIER_DTOR_P (errname);
10836 	  errname = constructor_name (basetype);
10837 	}
10838       if (explicit_targs)
10839 	errname = lookup_template_function (errname, explicit_targs);
10840       if (skip_first_for_error)
10841 	arglist = TREE_CHAIN (arglist);
10842       error ("no matching function for call to %<%T::%s%E(%A)%#V%>",
10843 	     basetype, &"~"[!twiddle], errname, arglist,
10844 	     TREE_TYPE (instance));
10845     }
10846   print_z_candidates (location_of (name), candidates);
10847 }
10848 
10849 /* Build a call to "INSTANCE.FN (ARGS)".  If FN_P is non-NULL, it will
10850    be set, upon return, to the function called.  ARGS may be NULL.
10851    This may change ARGS.  */
10852 
10853 tree
build_new_method_call(tree instance,tree fns,vec<tree,va_gc> ** args,tree conversion_path,int flags,tree * fn_p,tsubst_flags_t complain)10854 build_new_method_call (tree instance, tree fns, vec<tree, va_gc> **args,
10855 		       tree conversion_path, int flags,
10856 		       tree *fn_p, tsubst_flags_t complain)
10857 {
10858   struct z_candidate *candidates = 0, *cand;
10859   tree explicit_targs = NULL_TREE;
10860   tree basetype = NULL_TREE;
10861   tree access_binfo;
10862   tree optype;
10863   tree first_mem_arg = NULL_TREE;
10864   tree name;
10865   bool skip_first_for_error;
10866   vec<tree, va_gc> *user_args;
10867   tree call;
10868   tree fn;
10869   int template_only = 0;
10870   bool any_viable_p;
10871   tree orig_instance;
10872   tree orig_fns;
10873   vec<tree, va_gc> *orig_args = NULL;
10874   void *p;
10875 
10876   auto_cond_timevar tv (TV_OVERLOAD);
10877 
10878   gcc_assert (instance != NULL_TREE);
10879 
10880   /* We don't know what function we're going to call, yet.  */
10881   if (fn_p)
10882     *fn_p = NULL_TREE;
10883 
10884   if (error_operand_p (instance)
10885       || !fns || error_operand_p (fns))
10886     return error_mark_node;
10887 
10888   if (!BASELINK_P (fns))
10889     {
10890       if (complain & tf_error)
10891 	error ("call to non-function %qD", fns);
10892       return error_mark_node;
10893     }
10894 
10895   orig_instance = instance;
10896   orig_fns = fns;
10897 
10898   /* Dismantle the baselink to collect all the information we need.  */
10899   if (!conversion_path)
10900     conversion_path = BASELINK_BINFO (fns);
10901   access_binfo = BASELINK_ACCESS_BINFO (fns);
10902   optype = BASELINK_OPTYPE (fns);
10903   fns = BASELINK_FUNCTIONS (fns);
10904   if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
10905     {
10906       explicit_targs = TREE_OPERAND (fns, 1);
10907       fns = TREE_OPERAND (fns, 0);
10908       template_only = 1;
10909     }
10910   gcc_assert (OVL_P (fns));
10911   fn = OVL_FIRST (fns);
10912   name = DECL_NAME (fn);
10913 
10914   basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
10915   gcc_assert (CLASS_TYPE_P (basetype));
10916 
10917   user_args = args == NULL ? NULL : *args;
10918   /* Under DR 147 A::A() is an invalid constructor call,
10919      not a functional cast.  */
10920   if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (fn))
10921     {
10922       if (! (complain & tf_error))
10923 	return error_mark_node;
10924 
10925       basetype = DECL_CONTEXT (fn);
10926       name = constructor_name (basetype);
10927       auto_diagnostic_group d;
10928       if (permerror (input_location,
10929 		     "cannot call constructor %<%T::%D%> directly",
10930 		     basetype, name))
10931 	inform (input_location, "for a function-style cast, remove the "
10932 		"redundant %<::%D%>", name);
10933       call = build_functional_cast (input_location, basetype,
10934 				    build_tree_list_vec (user_args),
10935 				    complain);
10936       return call;
10937     }
10938 
10939   if (processing_template_decl)
10940     {
10941       orig_args = args == NULL ? NULL : make_tree_vector_copy (*args);
10942       instance = build_non_dependent_expr (instance);
10943       if (args != NULL)
10944 	make_args_non_dependent (*args);
10945     }
10946 
10947   /* Process the argument list.  */
10948   if (args != NULL && *args != NULL)
10949     {
10950       *args = resolve_args (*args, complain);
10951       if (*args == NULL)
10952 	return error_mark_node;
10953       user_args = *args;
10954     }
10955 
10956   /* Consider the object argument to be used even if we end up selecting a
10957      static member function.  */
10958   instance = mark_type_use (instance);
10959 
10960   /* Figure out whether to skip the first argument for the error
10961      message we will display to users if an error occurs.  We don't
10962      want to display any compiler-generated arguments.  The "this"
10963      pointer hasn't been added yet.  However, we must remove the VTT
10964      pointer if this is a call to a base-class constructor or
10965      destructor.  */
10966   skip_first_for_error = false;
10967   if (IDENTIFIER_CDTOR_P (name))
10968     {
10969       /* Callers should explicitly indicate whether they want to ctor
10970 	 the complete object or just the part without virtual bases.  */
10971       gcc_assert (name != ctor_identifier);
10972 
10973       /* Remove the VTT pointer, if present.  */
10974       if ((name == base_ctor_identifier || name == base_dtor_identifier)
10975 	  && CLASSTYPE_VBASECLASSES (basetype))
10976 	skip_first_for_error = true;
10977 
10978       /* It's OK to call destructors and constructors on cv-qualified
10979 	 objects.  Therefore, convert the INSTANCE to the unqualified
10980 	 type, if necessary.  */
10981       if (!same_type_p (basetype, TREE_TYPE (instance)))
10982 	{
10983 	  instance = build_this (instance);
10984 	  instance = build_nop (build_pointer_type (basetype), instance);
10985 	  instance = build_fold_indirect_ref (instance);
10986 	}
10987     }
10988   else
10989     gcc_assert (!DECL_DESTRUCTOR_P (fn) && !DECL_CONSTRUCTOR_P (fn));
10990 
10991   /* For the overload resolution we need to find the actual `this`
10992      that would be captured if the call turns out to be to a
10993      non-static member function.  Do not actually capture it at this
10994      point.  */
10995   if (DECL_CONSTRUCTOR_P (fn))
10996     /* Constructors don't use the enclosing 'this'.  */
10997     first_mem_arg = instance;
10998   else
10999     first_mem_arg = maybe_resolve_dummy (instance, false);
11000 
11001   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
11002   p = conversion_obstack_alloc (0);
11003 
11004   /* The number of arguments artificial parms in ARGS; we subtract one because
11005      there's no 'this' in ARGS.  */
11006   unsigned skip = num_artificial_parms_for (fn) - 1;
11007 
11008   /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
11009      initializer, not T({ }).  */
11010   if (DECL_CONSTRUCTOR_P (fn)
11011       && vec_safe_length (user_args) > skip
11012       && DIRECT_LIST_INIT_P ((*user_args)[skip]))
11013     {
11014       tree init_list = (*user_args)[skip];
11015       tree init = NULL_TREE;
11016 
11017       gcc_assert (user_args->length () == skip + 1
11018 		  && !(flags & LOOKUP_ONLYCONVERTING));
11019 
11020       /* If the initializer list has no elements and T is a class type with
11021 	 a default constructor, the object is value-initialized.  Handle
11022 	 this here so we don't need to handle it wherever we use
11023 	 build_special_member_call.  */
11024       if (CONSTRUCTOR_NELTS (init_list) == 0
11025 	  && TYPE_HAS_DEFAULT_CONSTRUCTOR (basetype)
11026 	  /* For a user-provided default constructor, use the normal
11027 	     mechanisms so that protected access works.  */
11028 	  && type_has_non_user_provided_default_constructor (basetype)
11029 	  && !processing_template_decl)
11030 	init = build_value_init (basetype, complain);
11031 
11032       /* If BASETYPE is an aggregate, we need to do aggregate
11033 	 initialization.  */
11034       else if (CP_AGGREGATE_TYPE_P (basetype))
11035 	{
11036 	  init = reshape_init (basetype, init_list, complain);
11037 	  init = digest_init (basetype, init, complain);
11038 	}
11039 
11040       if (init)
11041 	{
11042 	  if (is_dummy_object (instance))
11043 	    return get_target_expr_sfinae (init, complain);
11044 	  init = build2 (INIT_EXPR, TREE_TYPE (instance), instance, init);
11045 	  TREE_SIDE_EFFECTS (init) = true;
11046 	  return init;
11047 	}
11048 
11049       /* Otherwise go ahead with overload resolution.  */
11050       add_list_candidates (fns, first_mem_arg, user_args,
11051 			   basetype, explicit_targs, template_only,
11052 			   conversion_path, access_binfo, flags,
11053 			   &candidates, complain);
11054     }
11055   else
11056     add_candidates (fns, first_mem_arg, user_args, optype,
11057 		    explicit_targs, template_only, conversion_path,
11058 		    access_binfo, flags, &candidates, complain);
11059 
11060   any_viable_p = false;
11061   candidates = splice_viable (candidates, false, &any_viable_p);
11062 
11063   if (!any_viable_p)
11064     {
11065       /* [dcl.init], 17.6.2.2:
11066 
11067 	 Otherwise, if no constructor is viable, the destination type is
11068 	 a (possibly cv-qualified) aggregate class A, and the initializer
11069 	 is a parenthesized expression-list, the object is initialized as
11070 	 follows...
11071 
11072 	 We achieve this by building up a CONSTRUCTOR, as for list-init,
11073 	 and setting CONSTRUCTOR_IS_PAREN_INIT to distinguish between
11074 	 the two.  */
11075       if (DECL_CONSTRUCTOR_P (fn)
11076 	  && !(flags & LOOKUP_ONLYCONVERTING)
11077 	  && cxx_dialect >= cxx20
11078 	  && CP_AGGREGATE_TYPE_P (basetype)
11079 	  && !vec_safe_is_empty (user_args))
11080 	{
11081 	  /* Create a CONSTRUCTOR from ARGS, e.g. {1, 2} from <1, 2>.  */
11082 	  tree ctor = build_constructor_from_vec (init_list_type_node,
11083 						  user_args);
11084 	  CONSTRUCTOR_IS_DIRECT_INIT (ctor) = true;
11085 	  CONSTRUCTOR_IS_PAREN_INIT (ctor) = true;
11086 	  if (is_dummy_object (instance))
11087 	    return ctor;
11088 	  else
11089 	    {
11090 	      ctor = digest_init (basetype, ctor, complain);
11091 	      if (ctor == error_mark_node)
11092 		return error_mark_node;
11093 	      ctor = build2 (INIT_EXPR, TREE_TYPE (instance), instance, ctor);
11094 	      TREE_SIDE_EFFECTS (ctor) = true;
11095 	      return ctor;
11096 	    }
11097 	}
11098       if (complain & tf_error)
11099 	complain_about_no_candidates_for_method_call (instance, candidates,
11100 						      explicit_targs, basetype,
11101 						      optype, name,
11102 						      skip_first_for_error,
11103 						      user_args);
11104       call = error_mark_node;
11105     }
11106   else
11107     {
11108       cand = tourney (candidates, complain);
11109       if (cand == 0)
11110 	{
11111 	  char *pretty_name;
11112 	  bool free_p;
11113 	  tree arglist;
11114 
11115 	  if (complain & tf_error)
11116 	    {
11117 	      pretty_name = name_as_c_string (name, basetype, &free_p);
11118 	      arglist = build_tree_list_vec (user_args);
11119 	      if (skip_first_for_error)
11120 		arglist = TREE_CHAIN (arglist);
11121 	      auto_diagnostic_group d;
11122 	      if (!any_strictly_viable (candidates))
11123 		error ("no matching function for call to %<%s(%A)%>",
11124 		       pretty_name, arglist);
11125 	      else
11126 		error ("call of overloaded %<%s(%A)%> is ambiguous",
11127 		       pretty_name, arglist);
11128 	      print_z_candidates (location_of (name), candidates);
11129 	      if (free_p)
11130 		free (pretty_name);
11131 	    }
11132 	  call = error_mark_node;
11133 	  if (fn_p)
11134 	    *fn_p = error_mark_node;
11135 	}
11136       else
11137 	{
11138 	  fn = cand->fn;
11139 	  call = NULL_TREE;
11140 
11141 	  if (!(flags & LOOKUP_NONVIRTUAL)
11142 	      && DECL_PURE_VIRTUAL_P (fn)
11143 	      && instance == current_class_ref
11144 	      && (complain & tf_warning))
11145 	    {
11146 	      /* This is not an error, it is runtime undefined
11147 		 behavior.  */
11148 	      if (!current_function_decl)
11149 		warning (0, "pure virtual %q#D called from "
11150 			 "non-static data member initializer", fn);
11151 	      else if (DECL_CONSTRUCTOR_P (current_function_decl)
11152 		       || DECL_DESTRUCTOR_P (current_function_decl))
11153 		warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
11154 			     ? G_("pure virtual %q#D called from constructor")
11155 			     : G_("pure virtual %q#D called from destructor")),
11156 			 fn);
11157 	    }
11158 
11159 	  if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
11160 	      && !DECL_CONSTRUCTOR_P (fn)
11161 	      && is_dummy_object (instance))
11162 	    {
11163 	      instance = maybe_resolve_dummy (instance, true);
11164 	      if (instance == error_mark_node)
11165 		call = error_mark_node;
11166 	      else if (!is_dummy_object (instance))
11167 		{
11168 		  /* We captured 'this' in the current lambda now that
11169 		     we know we really need it.  */
11170 		  cand->first_arg = instance;
11171 		}
11172 	      else if (current_class_ptr && any_dependent_bases_p ())
11173 		/* We can't tell until instantiation time whether we can use
11174 		   *this as the implicit object argument.  */;
11175 	      else
11176 		{
11177 		  if (complain & tf_error)
11178 		    error ("cannot call member function %qD without object",
11179 			   fn);
11180 		  call = error_mark_node;
11181 		}
11182 	    }
11183 
11184 	  if (call != error_mark_node)
11185 	    {
11186 	      /* Now we know what function is being called.  */
11187 	      if (fn_p)
11188 		*fn_p = fn;
11189 	      /* Build the actual CALL_EXPR.  */
11190 	      call = build_over_call (cand, flags, complain);
11191 	      /* In an expression of the form `a->f()' where `f' turns
11192 		 out to be a static member function, `a' is
11193 		 none-the-less evaluated.  */
11194 	      if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
11195 		  && !is_dummy_object (instance)
11196 		  && TREE_SIDE_EFFECTS (instance))
11197 		{
11198 		  /* But avoid the implicit lvalue-rvalue conversion when 'a'
11199 		     is volatile.  */
11200 		  tree a = instance;
11201 		  if (TREE_THIS_VOLATILE (a))
11202 		    a = build_this (a);
11203 		  if (TREE_SIDE_EFFECTS (a))
11204 		    call = build2 (COMPOUND_EXPR, TREE_TYPE (call), a, call);
11205 		}
11206 	      else if (call != error_mark_node
11207 		       && DECL_DESTRUCTOR_P (cand->fn)
11208 		       && !VOID_TYPE_P (TREE_TYPE (call)))
11209 		/* An explicit call of the form "x->~X()" has type
11210 		   "void".  However, on platforms where destructors
11211 		   return "this" (i.e., those where
11212 		   targetm.cxx.cdtor_returns_this is true), such calls
11213 		   will appear to have a return value of pointer type
11214 		   to the low-level call machinery.  We do not want to
11215 		   change the low-level machinery, since we want to be
11216 		   able to optimize "delete f()" on such platforms as
11217 		   "operator delete(~X(f()))" (rather than generating
11218 		   "t = f(), ~X(t), operator delete (t)").  */
11219 		call = build_nop (void_type_node, call);
11220 	    }
11221 	}
11222     }
11223 
11224   if (processing_template_decl && call != error_mark_node)
11225     {
11226       bool cast_to_void = false;
11227 
11228       if (TREE_CODE (call) == COMPOUND_EXPR)
11229 	call = TREE_OPERAND (call, 1);
11230       else if (TREE_CODE (call) == NOP_EXPR)
11231 	{
11232 	  cast_to_void = true;
11233 	  call = TREE_OPERAND (call, 0);
11234 	}
11235       if (INDIRECT_REF_P (call))
11236 	call = TREE_OPERAND (call, 0);
11237 
11238       /* Prune all but the selected function from the original overload
11239 	 set so that we can avoid some duplicate work at instantiation time.  */
11240       if (really_overloaded_fn (fns))
11241 	{
11242 	  if (DECL_TEMPLATE_INFO (fn)
11243 	      && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
11244 	    {
11245 	      /* Use the selected template, not the specialization, so that
11246 		 this looks like an actual lookup result for sake of
11247 		 filter_memfn_lookup.  */
11248 
11249 	      if (OVL_SINGLE_P (fns))
11250 		/* If the original overload set consists of a single function
11251 		   template, this isn't beneficial.  */
11252 		goto skip_prune;
11253 
11254 	      fn = ovl_make (DECL_TI_TEMPLATE (fn));
11255 	      if (template_only)
11256 		fn = lookup_template_function (fn, explicit_targs);
11257 	    }
11258 	  orig_fns = copy_node (orig_fns);
11259 	  BASELINK_FUNCTIONS (orig_fns) = fn;
11260 	  BASELINK_FUNCTIONS_MAYBE_INCOMPLETE_P (orig_fns) = true;
11261 	}
11262 
11263 skip_prune:
11264       call = (build_min_non_dep_call_vec
11265 	      (call,
11266 	       build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
11267 			  orig_instance, orig_fns, NULL_TREE),
11268 	       orig_args));
11269       SET_EXPR_LOCATION (call, input_location);
11270       call = convert_from_reference (call);
11271       if (cast_to_void)
11272 	call = build_nop (void_type_node, call);
11273     }
11274 
11275  /* Free all the conversions we allocated.  */
11276   obstack_free (&conversion_obstack, p);
11277 
11278   if (orig_args != NULL)
11279     release_tree_vector (orig_args);
11280 
11281   return call;
11282 }
11283 
11284 /* Returns true iff standard conversion sequence ICS1 is a proper
11285    subsequence of ICS2.  */
11286 
11287 static bool
is_subseq(conversion * ics1,conversion * ics2)11288 is_subseq (conversion *ics1, conversion *ics2)
11289 {
11290   /* We can assume that a conversion of the same code
11291      between the same types indicates a subsequence since we only get
11292      here if the types we are converting from are the same.  */
11293 
11294   while (ics1->kind == ck_rvalue
11295 	 || ics1->kind == ck_lvalue)
11296     ics1 = next_conversion (ics1);
11297 
11298   while (1)
11299     {
11300       while (ics2->kind == ck_rvalue
11301 	     || ics2->kind == ck_lvalue)
11302 	ics2 = next_conversion (ics2);
11303 
11304       if (ics2->kind == ck_user
11305 	  || !has_next (ics2->kind))
11306 	/* At this point, ICS1 cannot be a proper subsequence of
11307 	   ICS2.  We can get a USER_CONV when we are comparing the
11308 	   second standard conversion sequence of two user conversion
11309 	   sequences.  */
11310 	return false;
11311 
11312       ics2 = next_conversion (ics2);
11313 
11314       while (ics2->kind == ck_rvalue
11315 	     || ics2->kind == ck_lvalue)
11316 	ics2 = next_conversion (ics2);
11317 
11318       if (ics2->kind == ics1->kind
11319 	  && same_type_p (ics2->type, ics1->type)
11320 	  && (ics1->kind == ck_identity
11321 	      || same_type_p (next_conversion (ics2)->type,
11322 			      next_conversion (ics1)->type)))
11323 	return true;
11324     }
11325 }
11326 
11327 /* Returns nonzero iff DERIVED is derived from BASE.  The inputs may
11328    be any _TYPE nodes.  */
11329 
11330 bool
is_properly_derived_from(tree derived,tree base)11331 is_properly_derived_from (tree derived, tree base)
11332 {
11333   if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
11334     return false;
11335 
11336   /* We only allow proper derivation here.  The DERIVED_FROM_P macro
11337      considers every class derived from itself.  */
11338   return (!same_type_ignoring_top_level_qualifiers_p (derived, base)
11339 	  && DERIVED_FROM_P (base, derived));
11340 }
11341 
11342 /* We build the ICS for an implicit object parameter as a pointer
11343    conversion sequence.  However, such a sequence should be compared
11344    as if it were a reference conversion sequence.  If ICS is the
11345    implicit conversion sequence for an implicit object parameter,
11346    modify it accordingly.  */
11347 
11348 static void
maybe_handle_implicit_object(conversion ** ics)11349 maybe_handle_implicit_object (conversion **ics)
11350 {
11351   if ((*ics)->this_p)
11352     {
11353       /* [over.match.funcs]
11354 
11355 	 For non-static member functions, the type of the
11356 	 implicit object parameter is "reference to cv X"
11357 	 where X is the class of which the function is a
11358 	 member and cv is the cv-qualification on the member
11359 	 function declaration.  */
11360       conversion *t = *ics;
11361       tree reference_type;
11362 
11363       /* The `this' parameter is a pointer to a class type.  Make the
11364 	 implicit conversion talk about a reference to that same class
11365 	 type.  */
11366       reference_type = TREE_TYPE (t->type);
11367       reference_type = build_reference_type (reference_type);
11368 
11369       if (t->kind == ck_qual)
11370 	t = next_conversion (t);
11371       if (t->kind == ck_ptr)
11372 	t = next_conversion (t);
11373       t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
11374       t = direct_reference_binding (reference_type, t);
11375       t->this_p = 1;
11376       t->rvaluedness_matches_p = 0;
11377       *ics = t;
11378     }
11379 }
11380 
11381 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
11382    and return the initial reference binding conversion. Otherwise,
11383    leave *ICS unchanged and return NULL.  */
11384 
11385 static conversion *
maybe_handle_ref_bind(conversion ** ics)11386 maybe_handle_ref_bind (conversion **ics)
11387 {
11388   if ((*ics)->kind == ck_ref_bind)
11389     {
11390       conversion *old_ics = *ics;
11391       *ics = next_conversion (old_ics);
11392       (*ics)->user_conv_p = old_ics->user_conv_p;
11393       return old_ics;
11394     }
11395 
11396   return NULL;
11397 }
11398 
11399 /* Get the expression at the beginning of the conversion chain C.  */
11400 
11401 static tree
conv_get_original_expr(conversion * c)11402 conv_get_original_expr (conversion *c)
11403 {
11404   for (; c; c = next_conversion (c))
11405     if (c->kind == ck_identity || c->kind == ck_ambig || c->kind == ck_aggr)
11406       return c->u.expr;
11407   return NULL_TREE;
11408 }
11409 
11410 /* Return a tree representing the number of elements initialized by the
11411    list-initialization C.  The caller must check that C converts to an
11412    array type.  */
11413 
11414 static tree
nelts_initialized_by_list_init(conversion * c)11415 nelts_initialized_by_list_init (conversion *c)
11416 {
11417   /* If the array we're converting to has a dimension, we'll use that.  */
11418   if (TYPE_DOMAIN (c->type))
11419     return array_type_nelts_top (c->type);
11420   else
11421     {
11422       /* Otherwise, we look at how many elements the constructor we're
11423 	 initializing from has.  */
11424       tree ctor = conv_get_original_expr (c);
11425       return size_int (CONSTRUCTOR_NELTS (ctor));
11426     }
11427 }
11428 
11429 /* True iff C is a conversion that binds a reference or a pointer to
11430    an array of unknown bound.  */
11431 
11432 static inline bool
conv_binds_to_array_of_unknown_bound(conversion * c)11433 conv_binds_to_array_of_unknown_bound (conversion *c)
11434 {
11435   /* ck_ref_bind won't have the reference stripped.  */
11436   tree type = non_reference (c->type);
11437   /* ck_qual won't have the pointer stripped.  */
11438   type = strip_pointer_operator (type);
11439   return (TREE_CODE (type) == ARRAY_TYPE
11440 	  && TYPE_DOMAIN (type) == NULL_TREE);
11441 }
11442 
11443 /* Compare two implicit conversion sequences according to the rules set out in
11444    [over.ics.rank].  Return values:
11445 
11446       1: ics1 is better than ics2
11447      -1: ics2 is better than ics1
11448       0: ics1 and ics2 are indistinguishable */
11449 
11450 static int
compare_ics(conversion * ics1,conversion * ics2)11451 compare_ics (conversion *ics1, conversion *ics2)
11452 {
11453   tree from_type1;
11454   tree from_type2;
11455   tree to_type1;
11456   tree to_type2;
11457   tree deref_from_type1 = NULL_TREE;
11458   tree deref_from_type2 = NULL_TREE;
11459   tree deref_to_type1 = NULL_TREE;
11460   tree deref_to_type2 = NULL_TREE;
11461   conversion_rank rank1, rank2;
11462 
11463   /* REF_BINDING is nonzero if the result of the conversion sequence
11464      is a reference type.   In that case REF_CONV is the reference
11465      binding conversion. */
11466   conversion *ref_conv1;
11467   conversion *ref_conv2;
11468 
11469   /* Compare badness before stripping the reference conversion.  */
11470   if (ics1->bad_p > ics2->bad_p)
11471     return -1;
11472   else if (ics1->bad_p < ics2->bad_p)
11473     return 1;
11474 
11475   /* Handle implicit object parameters.  */
11476   maybe_handle_implicit_object (&ics1);
11477   maybe_handle_implicit_object (&ics2);
11478 
11479   /* Handle reference parameters.  */
11480   ref_conv1 = maybe_handle_ref_bind (&ics1);
11481   ref_conv2 = maybe_handle_ref_bind (&ics2);
11482 
11483   /* List-initialization sequence L1 is a better conversion sequence than
11484      list-initialization sequence L2 if L1 converts to
11485      std::initializer_list<X> for some X and L2 does not.  */
11486   if (ics1->kind == ck_list && ics2->kind != ck_list)
11487     return 1;
11488   if (ics2->kind == ck_list && ics1->kind != ck_list)
11489     return -1;
11490 
11491   /* [over.ics.rank]
11492 
11493      When  comparing  the  basic forms of implicit conversion sequences (as
11494      defined in _over.best.ics_)
11495 
11496      --a standard conversion sequence (_over.ics.scs_) is a better
11497        conversion sequence than a user-defined conversion sequence
11498        or an ellipsis conversion sequence, and
11499 
11500      --a user-defined conversion sequence (_over.ics.user_) is a
11501        better conversion sequence than an ellipsis conversion sequence
11502        (_over.ics.ellipsis_).  */
11503   /* Use BAD_CONVERSION_RANK because we already checked for a badness
11504      mismatch.  If both ICS are bad, we try to make a decision based on
11505      what would have happened if they'd been good.  This is not an
11506      extension, we'll still give an error when we build up the call; this
11507      just helps us give a more helpful error message.  */
11508   rank1 = BAD_CONVERSION_RANK (ics1);
11509   rank2 = BAD_CONVERSION_RANK (ics2);
11510 
11511   if (rank1 > rank2)
11512     return -1;
11513   else if (rank1 < rank2)
11514     return 1;
11515 
11516   if (ics1->ellipsis_p)
11517     /* Both conversions are ellipsis conversions.  */
11518     return 0;
11519 
11520   /* User-defined  conversion sequence U1 is a better conversion sequence
11521      than another user-defined conversion sequence U2 if they contain the
11522      same user-defined conversion operator or constructor and if the sec-
11523      ond standard conversion sequence of U1 is  better  than  the  second
11524      standard conversion sequence of U2.  */
11525 
11526   /* Handle list-conversion with the same code even though it isn't always
11527      ranked as a user-defined conversion and it doesn't have a second
11528      standard conversion sequence; it will still have the desired effect.
11529      Specifically, we need to do the reference binding comparison at the
11530      end of this function.  */
11531 
11532   if (ics1->user_conv_p || ics1->kind == ck_list
11533       || ics1->kind == ck_aggr || ics2->kind == ck_aggr)
11534     {
11535       conversion *t1 = strip_standard_conversion (ics1);
11536       conversion *t2 = strip_standard_conversion (ics2);
11537 
11538       if (!t1 || !t2 || t1->kind != t2->kind)
11539 	return 0;
11540       else if (t1->kind == ck_user)
11541 	{
11542 	  tree f1 = t1->cand ? t1->cand->fn : t1->type;
11543 	  tree f2 = t2->cand ? t2->cand->fn : t2->type;
11544 	  if (f1 != f2)
11545 	    return 0;
11546 	}
11547       /* List-initialization sequence L1 is a better conversion sequence than
11548 	 list-initialization sequence L2 if
11549 
11550 	 -- L1 and L2 convert to arrays of the same element type, and either
11551 	 the number of elements n1 initialized by L1 is less than the number
11552 	 of elements n2 initialized by L2, or n1=n2 and L2 converts to an array
11553 	 of unknown bound and L1 does not.  (Added in CWG 1307 and extended by
11554 	 P0388R4.)  */
11555       else if (t1->kind == ck_aggr
11556 	       && TREE_CODE (t1->type) == ARRAY_TYPE
11557 	       && TREE_CODE (t2->type) == ARRAY_TYPE
11558 	       && same_type_p (TREE_TYPE (t1->type), TREE_TYPE (t2->type)))
11559 	{
11560 	  tree n1 = nelts_initialized_by_list_init (t1);
11561 	  tree n2 = nelts_initialized_by_list_init (t2);
11562 	  if (tree_int_cst_lt (n1, n2))
11563 	    return 1;
11564 	  else if (tree_int_cst_lt (n2, n1))
11565 	    return -1;
11566 	  /* The n1 == n2 case.  */
11567 	  bool c1 = conv_binds_to_array_of_unknown_bound (t1);
11568 	  bool c2 = conv_binds_to_array_of_unknown_bound (t2);
11569 	  if (c1 && !c2)
11570 	    return -1;
11571 	  else if (!c1 && c2)
11572 	    return 1;
11573 	  else
11574 	    return 0;
11575 	}
11576       else
11577 	{
11578 	  /* For ambiguous or aggregate conversions, use the target type as
11579 	     a proxy for the conversion function.  */
11580 	  if (!same_type_ignoring_top_level_qualifiers_p (t1->type, t2->type))
11581 	    return 0;
11582 	}
11583 
11584       /* We can just fall through here, after setting up
11585 	 FROM_TYPE1 and FROM_TYPE2.  */
11586       from_type1 = t1->type;
11587       from_type2 = t2->type;
11588     }
11589   else
11590     {
11591       conversion *t1;
11592       conversion *t2;
11593 
11594       /* We're dealing with two standard conversion sequences.
11595 
11596 	 [over.ics.rank]
11597 
11598 	 Standard conversion sequence S1 is a better conversion
11599 	 sequence than standard conversion sequence S2 if
11600 
11601 	 --S1 is a proper subsequence of S2 (comparing the conversion
11602 	   sequences in the canonical form defined by _over.ics.scs_,
11603 	   excluding any Lvalue Transformation; the identity
11604 	   conversion sequence is considered to be a subsequence of
11605 	   any non-identity conversion sequence */
11606 
11607       t1 = ics1;
11608       while (t1->kind != ck_identity)
11609 	t1 = next_conversion (t1);
11610       from_type1 = t1->type;
11611 
11612       t2 = ics2;
11613       while (t2->kind != ck_identity)
11614 	t2 = next_conversion (t2);
11615       from_type2 = t2->type;
11616     }
11617 
11618   /* One sequence can only be a subsequence of the other if they start with
11619      the same type.  They can start with different types when comparing the
11620      second standard conversion sequence in two user-defined conversion
11621      sequences.  */
11622   if (same_type_p (from_type1, from_type2))
11623     {
11624       if (is_subseq (ics1, ics2))
11625 	return 1;
11626       if (is_subseq (ics2, ics1))
11627 	return -1;
11628     }
11629 
11630   /* [over.ics.rank]
11631 
11632      Or, if not that,
11633 
11634      --the rank of S1 is better than the rank of S2 (by the rules
11635        defined below):
11636 
11637     Standard conversion sequences are ordered by their ranks: an Exact
11638     Match is a better conversion than a Promotion, which is a better
11639     conversion than a Conversion.
11640 
11641     Two conversion sequences with the same rank are indistinguishable
11642     unless one of the following rules applies:
11643 
11644     --A conversion that does not a convert a pointer, pointer to member,
11645       or std::nullptr_t to bool is better than one that does.
11646 
11647     The ICS_STD_RANK automatically handles the pointer-to-bool rule,
11648     so that we do not have to check it explicitly.  */
11649   if (ics1->rank < ics2->rank)
11650     return 1;
11651   else if (ics2->rank < ics1->rank)
11652     return -1;
11653 
11654   to_type1 = ics1->type;
11655   to_type2 = ics2->type;
11656 
11657   /* A conversion from scalar arithmetic type to complex is worse than a
11658      conversion between scalar arithmetic types.  */
11659   if (same_type_p (from_type1, from_type2)
11660       && ARITHMETIC_TYPE_P (from_type1)
11661       && ARITHMETIC_TYPE_P (to_type1)
11662       && ARITHMETIC_TYPE_P (to_type2)
11663       && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
11664 	  != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
11665     {
11666       if (TREE_CODE (to_type1) == COMPLEX_TYPE)
11667 	return -1;
11668       else
11669 	return 1;
11670     }
11671 
11672   if (TYPE_PTR_P (from_type1)
11673       && TYPE_PTR_P (from_type2)
11674       && TYPE_PTR_P (to_type1)
11675       && TYPE_PTR_P (to_type2))
11676     {
11677       deref_from_type1 = TREE_TYPE (from_type1);
11678       deref_from_type2 = TREE_TYPE (from_type2);
11679       deref_to_type1 = TREE_TYPE (to_type1);
11680       deref_to_type2 = TREE_TYPE (to_type2);
11681     }
11682   /* The rules for pointers to members A::* are just like the rules
11683      for pointers A*, except opposite: if B is derived from A then
11684      A::* converts to B::*, not vice versa.  For that reason, we
11685      switch the from_ and to_ variables here.  */
11686   else if ((TYPE_PTRDATAMEM_P (from_type1) && TYPE_PTRDATAMEM_P (from_type2)
11687 	    && TYPE_PTRDATAMEM_P (to_type1) && TYPE_PTRDATAMEM_P (to_type2))
11688 	   || (TYPE_PTRMEMFUNC_P (from_type1)
11689 	       && TYPE_PTRMEMFUNC_P (from_type2)
11690 	       && TYPE_PTRMEMFUNC_P (to_type1)
11691 	       && TYPE_PTRMEMFUNC_P (to_type2)))
11692     {
11693       deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
11694       deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
11695       deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
11696       deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
11697     }
11698 
11699   if (deref_from_type1 != NULL_TREE
11700       && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
11701       && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
11702     {
11703       /* This was one of the pointer or pointer-like conversions.
11704 
11705 	 [over.ics.rank]
11706 
11707 	 --If class B is derived directly or indirectly from class A,
11708 	   conversion of B* to A* is better than conversion of B* to
11709 	   void*, and conversion of A* to void* is better than
11710 	   conversion of B* to void*.  */
11711       if (VOID_TYPE_P (deref_to_type1)
11712 	  && VOID_TYPE_P (deref_to_type2))
11713 	{
11714 	  if (is_properly_derived_from (deref_from_type1,
11715 					deref_from_type2))
11716 	    return -1;
11717 	  else if (is_properly_derived_from (deref_from_type2,
11718 					     deref_from_type1))
11719 	    return 1;
11720 	}
11721       else if (VOID_TYPE_P (deref_to_type1)
11722 	       || VOID_TYPE_P (deref_to_type2))
11723 	{
11724 	  if (same_type_p (deref_from_type1, deref_from_type2))
11725 	    {
11726 	      if (VOID_TYPE_P (deref_to_type2))
11727 		{
11728 		  if (is_properly_derived_from (deref_from_type1,
11729 						deref_to_type1))
11730 		    return 1;
11731 		}
11732 	      /* We know that DEREF_TO_TYPE1 is `void' here.  */
11733 	      else if (is_properly_derived_from (deref_from_type1,
11734 						 deref_to_type2))
11735 		return -1;
11736 	    }
11737 	}
11738       else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
11739 	       && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
11740 	{
11741 	  /* [over.ics.rank]
11742 
11743 	     --If class B is derived directly or indirectly from class A
11744 	       and class C is derived directly or indirectly from B,
11745 
11746 	     --conversion of C* to B* is better than conversion of C* to
11747 	       A*,
11748 
11749 	     --conversion of B* to A* is better than conversion of C* to
11750 	       A*  */
11751 	  if (same_type_p (deref_from_type1, deref_from_type2))
11752 	    {
11753 	      if (is_properly_derived_from (deref_to_type1,
11754 					    deref_to_type2))
11755 		return 1;
11756 	      else if (is_properly_derived_from (deref_to_type2,
11757 						 deref_to_type1))
11758 		return -1;
11759 	    }
11760 	  else if (same_type_p (deref_to_type1, deref_to_type2))
11761 	    {
11762 	      if (is_properly_derived_from (deref_from_type2,
11763 					    deref_from_type1))
11764 		return 1;
11765 	      else if (is_properly_derived_from (deref_from_type1,
11766 						 deref_from_type2))
11767 		return -1;
11768 	    }
11769 	}
11770     }
11771   else if (CLASS_TYPE_P (non_reference (from_type1))
11772 	   && same_type_p (from_type1, from_type2))
11773     {
11774       tree from = non_reference (from_type1);
11775 
11776       /* [over.ics.rank]
11777 
11778 	 --binding of an expression of type C to a reference of type
11779 	   B& is better than binding an expression of type C to a
11780 	   reference of type A&
11781 
11782 	 --conversion of C to B is better than conversion of C to A,  */
11783       if (is_properly_derived_from (from, to_type1)
11784 	  && is_properly_derived_from (from, to_type2))
11785 	{
11786 	  if (is_properly_derived_from (to_type1, to_type2))
11787 	    return 1;
11788 	  else if (is_properly_derived_from (to_type2, to_type1))
11789 	    return -1;
11790 	}
11791     }
11792   else if (CLASS_TYPE_P (non_reference (to_type1))
11793 	   && same_type_p (to_type1, to_type2))
11794     {
11795       tree to = non_reference (to_type1);
11796 
11797       /* [over.ics.rank]
11798 
11799 	 --binding of an expression of type B to a reference of type
11800 	   A& is better than binding an expression of type C to a
11801 	   reference of type A&,
11802 
11803 	 --conversion of B to A is better than conversion of C to A  */
11804       if (is_properly_derived_from (from_type1, to)
11805 	  && is_properly_derived_from (from_type2, to))
11806 	{
11807 	  if (is_properly_derived_from (from_type2, from_type1))
11808 	    return 1;
11809 	  else if (is_properly_derived_from (from_type1, from_type2))
11810 	    return -1;
11811 	}
11812     }
11813 
11814   /* [over.ics.rank]
11815 
11816      --S1 and S2 differ only in their qualification conversion and  yield
11817        similar  types  T1 and T2 (_conv.qual_), respectively, and the cv-
11818        qualification signature of type T1 is a proper subset of  the  cv-
11819        qualification signature of type T2  */
11820   if (ics1->kind == ck_qual
11821       && ics2->kind == ck_qual
11822       && same_type_p (from_type1, from_type2))
11823     {
11824       int result = comp_cv_qual_signature (to_type1, to_type2);
11825       if (result != 0)
11826 	return result;
11827     }
11828 
11829   /* [over.ics.rank]
11830 
11831      --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
11832      to an implicit object parameter of a non-static member function
11833      declared without a ref-qualifier, and either S1 binds an lvalue
11834      reference to an lvalue and S2 binds an rvalue reference or S1 binds an
11835      rvalue reference to an rvalue and S2 binds an lvalue reference (C++0x
11836      draft standard, 13.3.3.2)
11837 
11838      --S1 and S2 are reference bindings (_dcl.init.ref_), and the
11839      types to which the references refer are the same type except for
11840      top-level cv-qualifiers, and the type to which the reference
11841      initialized by S2 refers is more cv-qualified than the type to
11842      which the reference initialized by S1 refers.
11843 
11844      DR 1328 [over.match.best]: the context is an initialization by
11845      conversion function for direct reference binding (13.3.1.6) of a
11846      reference to function type, the return type of F1 is the same kind of
11847      reference (i.e. lvalue or rvalue) as the reference being initialized,
11848      and the return type of F2 is not.  */
11849 
11850   if (ref_conv1 && ref_conv2)
11851     {
11852       if (!ref_conv1->this_p && !ref_conv2->this_p
11853 	  && (ref_conv1->rvaluedness_matches_p
11854 	      != ref_conv2->rvaluedness_matches_p)
11855 	  && (same_type_p (ref_conv1->type, ref_conv2->type)
11856 	      || (TYPE_REF_IS_RVALUE (ref_conv1->type)
11857 		  != TYPE_REF_IS_RVALUE (ref_conv2->type))))
11858 	{
11859 	  if (ref_conv1->bad_p
11860 	      && !same_type_p (TREE_TYPE (ref_conv1->type),
11861 			       TREE_TYPE (ref_conv2->type)))
11862 	    /* Don't prefer a bad conversion that drops cv-quals to a bad
11863 	       conversion with the wrong rvalueness.  */
11864 	    return 0;
11865 	  return (ref_conv1->rvaluedness_matches_p
11866 		  - ref_conv2->rvaluedness_matches_p);
11867 	}
11868 
11869       if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
11870 	{
11871 	  /* Per P0388R4:
11872 
11873 	    void f (int(&)[]),     // (1)
11874 		 f (int(&)[1]),    // (2)
11875 		 f (int*);	   // (3)
11876 
11877 	    (2) is better than (1), but (3) should be equal to (1) and to
11878 	    (2).  For that reason we don't use ck_qual for (1) which would
11879 	    give it the cr_exact rank while (3) remains ck_identity.
11880 	    Therefore we compare (1) and (2) here.  For (1) we'll have
11881 
11882 	      ck_ref_bind <- ck_identity
11883 		int[] &	       int[1]
11884 
11885 	    so to handle this we must look at ref_conv.  */
11886 	  bool c1 = conv_binds_to_array_of_unknown_bound (ref_conv1);
11887 	  bool c2 = conv_binds_to_array_of_unknown_bound (ref_conv2);
11888 	  if (c1 && !c2)
11889 	    return -1;
11890 	  else if (!c1 && c2)
11891 	    return 1;
11892 
11893 	  int q1 = cp_type_quals (TREE_TYPE (ref_conv1->type));
11894 	  int q2 = cp_type_quals (TREE_TYPE (ref_conv2->type));
11895 	  if (ref_conv1->bad_p)
11896 	    {
11897 	      /* Prefer the one that drops fewer cv-quals.  */
11898 	      tree ftype = next_conversion (ref_conv1)->type;
11899 	      int fquals = cp_type_quals (ftype);
11900 	      q1 ^= fquals;
11901 	      q2 ^= fquals;
11902 	    }
11903 	  return comp_cv_qualification (q2, q1);
11904 	}
11905     }
11906 
11907   /* [over.ics.rank]
11908 
11909      Per CWG 1601:
11910      -- A conversion that promotes an enumeration whose underlying type
11911      is fixed to its underlying type is better than one that promotes to
11912      the promoted underlying type, if the two are different.  */
11913   if (ics1->rank == cr_promotion
11914       && ics2->rank == cr_promotion
11915       && UNSCOPED_ENUM_P (from_type1)
11916       && ENUM_FIXED_UNDERLYING_TYPE_P (from_type1)
11917       && same_type_p (from_type1, from_type2))
11918     {
11919       tree utype = ENUM_UNDERLYING_TYPE (from_type1);
11920       tree prom = type_promotes_to (from_type1);
11921       if (!same_type_p (utype, prom))
11922 	{
11923 	  if (same_type_p (to_type1, utype)
11924 	      && same_type_p (to_type2, prom))
11925 	    return 1;
11926 	  else if (same_type_p (to_type2, utype)
11927 		   && same_type_p (to_type1, prom))
11928 	    return -1;
11929 	}
11930     }
11931 
11932   /* Neither conversion sequence is better than the other.  */
11933   return 0;
11934 }
11935 
11936 /* The source type for this standard conversion sequence.  */
11937 
11938 static tree
source_type(conversion * t)11939 source_type (conversion *t)
11940 {
11941   return strip_standard_conversion (t)->type;
11942 }
11943 
11944 /* Note a warning about preferring WINNER to LOSER.  We do this by storing
11945    a pointer to LOSER and re-running joust to produce the warning if WINNER
11946    is actually used.  */
11947 
11948 static void
add_warning(struct z_candidate * winner,struct z_candidate * loser)11949 add_warning (struct z_candidate *winner, struct z_candidate *loser)
11950 {
11951   candidate_warning *cw = (candidate_warning *)
11952     conversion_obstack_alloc (sizeof (candidate_warning));
11953   cw->loser = loser;
11954   cw->next = winner->warnings;
11955   winner->warnings = cw;
11956 }
11957 
11958 /* CAND is a constructor candidate in joust in C++17 and up.  If it copies a
11959    prvalue returned from a conversion function, replace CAND with the candidate
11960    for the conversion and return true.  Otherwise, return false.  */
11961 
11962 static bool
joust_maybe_elide_copy(z_candidate * & cand)11963 joust_maybe_elide_copy (z_candidate *&cand)
11964 {
11965   tree fn = cand->fn;
11966   if (!DECL_COPY_CONSTRUCTOR_P (fn) && !DECL_MOVE_CONSTRUCTOR_P (fn))
11967     return false;
11968   conversion *conv = cand->convs[0];
11969   if (conv->kind == ck_ambig)
11970     return false;
11971   gcc_checking_assert (conv->kind == ck_ref_bind);
11972   conv = next_conversion (conv);
11973   if (conv->kind == ck_user && !TYPE_REF_P (conv->type))
11974     {
11975       gcc_checking_assert (same_type_ignoring_top_level_qualifiers_p
11976 			   (conv->type, DECL_CONTEXT (fn)));
11977       z_candidate *uc = conv->cand;
11978       if (DECL_CONV_FN_P (uc->fn))
11979 	{
11980 	  cand = uc;
11981 	  return true;
11982 	}
11983     }
11984   return false;
11985 }
11986 
11987 /* True if the defining declarations of the two candidates have equivalent
11988    parameters.  */
11989 
11990 static bool
cand_parms_match(z_candidate * c1,z_candidate * c2)11991 cand_parms_match (z_candidate *c1, z_candidate *c2)
11992 {
11993   tree fn1 = c1->fn;
11994   tree fn2 = c2->fn;
11995   if (fn1 == fn2)
11996     return true;
11997   if (identifier_p (fn1) || identifier_p (fn2))
11998     return false;
11999   /* We don't look at c1->template_decl because that's only set for primary
12000      templates, not e.g. non-template member functions of class templates.  */
12001   tree t1 = most_general_template (fn1);
12002   tree t2 = most_general_template (fn2);
12003   if (t1 || t2)
12004     {
12005       if (!t1 || !t2)
12006 	return false;
12007       if (t1 == t2)
12008 	return true;
12009       fn1 = DECL_TEMPLATE_RESULT (t1);
12010       fn2 = DECL_TEMPLATE_RESULT (t2);
12011     }
12012   tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (fn1));
12013   tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (fn2));
12014   if (DECL_FUNCTION_MEMBER_P (fn1)
12015       && DECL_FUNCTION_MEMBER_P (fn2)
12016       && (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn1)
12017 	  != DECL_NONSTATIC_MEMBER_FUNCTION_P (fn2)))
12018     {
12019       /* Ignore 'this' when comparing the parameters of a static member
12020 	 function with those of a non-static one.  */
12021       parms1 = skip_artificial_parms_for (fn1, parms1);
12022       parms2 = skip_artificial_parms_for (fn2, parms2);
12023     }
12024   return compparms (parms1, parms2);
12025 }
12026 
12027 /* Compare two candidates for overloading as described in
12028    [over.match.best].  Return values:
12029 
12030       1: cand1 is better than cand2
12031      -1: cand2 is better than cand1
12032       0: cand1 and cand2 are indistinguishable */
12033 
12034 static int
joust(struct z_candidate * cand1,struct z_candidate * cand2,bool warn,tsubst_flags_t complain)12035 joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn,
12036        tsubst_flags_t complain)
12037 {
12038   int winner = 0;
12039   int off1 = 0, off2 = 0;
12040   size_t i;
12041   size_t len;
12042 
12043   /* Candidates that involve bad conversions are always worse than those
12044      that don't.  */
12045   if (cand1->viable > cand2->viable)
12046     return 1;
12047   if (cand1->viable < cand2->viable)
12048     return -1;
12049 
12050   /* If we have two pseudo-candidates for conversions to the same type,
12051      or two candidates for the same function, arbitrarily pick one.  */
12052   if (cand1->fn == cand2->fn
12053       && cand1->reversed () == cand2->reversed ()
12054       && (IS_TYPE_OR_DECL_P (cand1->fn)))
12055     return 1;
12056 
12057   /* Prefer a non-deleted function over an implicitly deleted move
12058      constructor or assignment operator.  This differs slightly from the
12059      wording for issue 1402 (which says the move op is ignored by overload
12060      resolution), but this way produces better error messages.  */
12061   if (TREE_CODE (cand1->fn) == FUNCTION_DECL
12062       && TREE_CODE (cand2->fn) == FUNCTION_DECL
12063       && DECL_DELETED_FN (cand1->fn) != DECL_DELETED_FN (cand2->fn))
12064     {
12065       if (DECL_DELETED_FN (cand1->fn) && DECL_DEFAULTED_FN (cand1->fn)
12066 	  && move_fn_p (cand1->fn))
12067 	return -1;
12068       if (DECL_DELETED_FN (cand2->fn) && DECL_DEFAULTED_FN (cand2->fn)
12069 	  && move_fn_p (cand2->fn))
12070 	return 1;
12071     }
12072 
12073   /* a viable function F1
12074      is defined to be a better function than another viable function F2  if
12075      for  all arguments i, ICSi(F1) is not a worse conversion sequence than
12076      ICSi(F2), and then */
12077 
12078   /* for some argument j, ICSj(F1) is a better conversion  sequence  than
12079      ICSj(F2) */
12080 
12081   /* For comparing static and non-static member functions, we ignore
12082      the implicit object parameter of the non-static function.  The
12083      standard says to pretend that the static function has an object
12084      parm, but that won't work with operator overloading.  */
12085   len = cand1->num_convs;
12086   if (len != cand2->num_convs)
12087     {
12088       int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
12089       int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
12090 
12091       if (DECL_CONSTRUCTOR_P (cand1->fn)
12092 	  && is_list_ctor (cand1->fn) != is_list_ctor (cand2->fn))
12093 	/* We're comparing a near-match list constructor and a near-match
12094 	   non-list constructor.  Just treat them as unordered.  */
12095 	return 0;
12096 
12097       gcc_assert (static_1 != static_2);
12098 
12099       if (static_1)
12100 	off2 = 1;
12101       else
12102 	{
12103 	  off1 = 1;
12104 	  --len;
12105 	}
12106     }
12107 
12108   /* Handle C++17 copy elision in [over.match.ctor] (direct-init) context.  The
12109      standard currently says that only constructors are candidates, but if one
12110      copies a prvalue returned by a conversion function we want to treat the
12111      conversion as the candidate instead.
12112 
12113      Clang does something similar, as discussed at
12114      http://lists.isocpp.org/core/2017/10/3166.php
12115      http://lists.isocpp.org/core/2019/03/5721.php  */
12116   int elided_tiebreaker = 0;
12117   if (len == 1 && cxx_dialect >= cxx17
12118       && DECL_P (cand1->fn)
12119       && DECL_COMPLETE_CONSTRUCTOR_P (cand1->fn)
12120       && !(cand1->flags & LOOKUP_ONLYCONVERTING))
12121     {
12122       bool elided1 = joust_maybe_elide_copy (cand1);
12123       bool elided2 = joust_maybe_elide_copy (cand2);
12124       /* As a tiebreaker below we will prefer a constructor to a conversion
12125 	 operator exposed this way.  */
12126       elided_tiebreaker = elided2 - elided1;
12127     }
12128 
12129   for (i = 0; i < len; ++i)
12130     {
12131       conversion *t1 = cand1->convs[i + off1];
12132       conversion *t2 = cand2->convs[i + off2];
12133       int comp = compare_ics (t1, t2);
12134 
12135       if (comp != 0)
12136 	{
12137 	  if ((complain & tf_warning)
12138 	      && warn_sign_promo
12139 	      && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
12140 		  == cr_std + cr_promotion)
12141 	      && t1->kind == ck_std
12142 	      && t2->kind == ck_std
12143 	      && TREE_CODE (t1->type) == INTEGER_TYPE
12144 	      && TREE_CODE (t2->type) == INTEGER_TYPE
12145 	      && (TYPE_PRECISION (t1->type)
12146 		  == TYPE_PRECISION (t2->type))
12147 	      && (TYPE_UNSIGNED (next_conversion (t1)->type)
12148 		  || (TREE_CODE (next_conversion (t1)->type)
12149 		      == ENUMERAL_TYPE)))
12150 	    {
12151 	      tree type = next_conversion (t1)->type;
12152 	      tree type1, type2;
12153 	      struct z_candidate *w, *l;
12154 	      if (comp > 0)
12155 		type1 = t1->type, type2 = t2->type,
12156 		  w = cand1, l = cand2;
12157 	      else
12158 		type1 = t2->type, type2 = t1->type,
12159 		  w = cand2, l = cand1;
12160 
12161 	      if (warn)
12162 		{
12163 		  warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
12164 			   type, type1, type2);
12165 		  warning (OPT_Wsign_promo, "  in call to %qD", w->fn);
12166 		}
12167 	      else
12168 		add_warning (w, l);
12169 	    }
12170 
12171 	  if (winner && comp != winner)
12172 	    {
12173 	      /* Ambiguity between normal and reversed comparison operators
12174 		 with the same parameter types; prefer the normal one.  */
12175 	      if ((cand1->reversed () != cand2->reversed ())
12176 		  && cand_parms_match (cand1, cand2))
12177 		return cand1->reversed () ? -1 : 1;
12178 
12179 	      winner = 0;
12180 	      goto tweak;
12181 	    }
12182 	  winner = comp;
12183 	}
12184     }
12185 
12186   /* warn about confusing overload resolution for user-defined conversions,
12187      either between a constructor and a conversion op, or between two
12188      conversion ops.  */
12189   if ((complain & tf_warning)
12190       /* In C++17, the constructor might have been elided, which means that
12191 	 an originally null ->second_conv could become non-null.  */
12192       && winner && warn_conversion && cand1->second_conv && cand2->second_conv
12193       && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
12194       && winner != compare_ics (cand1->second_conv, cand2->second_conv))
12195     {
12196       struct z_candidate *w, *l;
12197       bool give_warning = false;
12198 
12199       if (winner == 1)
12200 	w = cand1, l = cand2;
12201       else
12202 	w = cand2, l = cand1;
12203 
12204       /* We don't want to complain about `X::operator T1 ()'
12205 	 beating `X::operator T2 () const', when T2 is a no less
12206 	 cv-qualified version of T1.  */
12207       if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
12208 	  && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
12209 	{
12210 	  tree t = TREE_TYPE (TREE_TYPE (l->fn));
12211 	  tree f = TREE_TYPE (TREE_TYPE (w->fn));
12212 
12213 	  if (TREE_CODE (t) == TREE_CODE (f) && INDIRECT_TYPE_P (t))
12214 	    {
12215 	      t = TREE_TYPE (t);
12216 	      f = TREE_TYPE (f);
12217 	    }
12218 	  if (!comp_ptr_ttypes (t, f))
12219 	    give_warning = true;
12220 	}
12221       else
12222 	give_warning = true;
12223 
12224       if (!give_warning)
12225 	/*NOP*/;
12226       else if (warn)
12227 	{
12228 	  tree source = source_type (w->convs[0]);
12229 	  if (INDIRECT_TYPE_P (source))
12230 	    source = TREE_TYPE (source);
12231 	  auto_diagnostic_group d;
12232 	  if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
12233 	      && warning (OPT_Wconversion, "  for conversion from %qH to %qI",
12234 			  source, w->second_conv->type))
12235 	    {
12236 	      inform (input_location, "  because conversion sequence "
12237 		      "for the argument is better");
12238 	    }
12239 	}
12240       else
12241 	add_warning (w, l);
12242     }
12243 
12244   if (winner)
12245     return winner;
12246 
12247   /* Put this tiebreaker first, so that we don't try to look at second_conv of
12248      a constructor candidate that doesn't have one.  */
12249   if (elided_tiebreaker)
12250     return elided_tiebreaker;
12251 
12252   /* DR 495 moved this tiebreaker above the template ones.  */
12253   /* or, if not that,
12254      the  context  is  an  initialization by user-defined conversion (see
12255      _dcl.init_  and  _over.match.user_)  and  the  standard   conversion
12256      sequence  from  the return type of F1 to the destination type (i.e.,
12257      the type of the entity being initialized)  is  a  better  conversion
12258      sequence  than the standard conversion sequence from the return type
12259      of F2 to the destination type.  */
12260 
12261   if (cand1->second_conv)
12262     {
12263       winner = compare_ics (cand1->second_conv, cand2->second_conv);
12264       if (winner)
12265 	return winner;
12266     }
12267 
12268   /* or, if not that,
12269      F1 is a non-template function and F2 is a template function
12270      specialization.  */
12271 
12272   if (!cand1->template_decl && cand2->template_decl)
12273     return 1;
12274   else if (cand1->template_decl && !cand2->template_decl)
12275     return -1;
12276 
12277   /* or, if not that,
12278      F1 and F2 are template functions and the function template for F1 is
12279      more specialized than the template for F2 according to the partial
12280      ordering rules.  */
12281 
12282   if (cand1->template_decl && cand2->template_decl)
12283     {
12284       winner = more_specialized_fn
12285 	(TI_TEMPLATE (cand1->template_decl),
12286 	 TI_TEMPLATE (cand2->template_decl),
12287 	 /* [temp.func.order]: The presence of unused ellipsis and default
12288 	    arguments has no effect on the partial ordering of function
12289 	    templates.   add_function_candidate() will not have
12290 	    counted the "this" argument for constructors.  */
12291 	 cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
12292       if (winner)
12293 	return winner;
12294     }
12295 
12296   /* Concepts: F1 and F2 are non-template functions with the same
12297      parameter-type-lists, and F1 is more constrained than F2 according to the
12298      partial ordering of constraints described in 13.5.4.  */
12299 
12300   if (flag_concepts && DECL_P (cand1->fn) && DECL_P (cand2->fn)
12301       && !cand1->template_decl && !cand2->template_decl
12302       && cand_parms_match (cand1, cand2))
12303     {
12304       winner = more_constrained (cand1->fn, cand2->fn);
12305       if (winner)
12306 	return winner;
12307     }
12308 
12309   /* F2 is a rewritten candidate (12.4.1.2) and F1 is not, or F1 and F2 are
12310      rewritten candidates, and F2 is a synthesized candidate with reversed
12311      order of parameters and F1 is not.  */
12312   if (cand1->rewritten ())
12313     {
12314       if (!cand2->rewritten ())
12315 	return -1;
12316       if (!cand1->reversed () && cand2->reversed ())
12317 	return 1;
12318       if (cand1->reversed () && !cand2->reversed ())
12319 	return -1;
12320     }
12321   else if (cand2->rewritten ())
12322     return 1;
12323 
12324   /* F1 is generated from a deduction-guide (13.3.1.8) and F2 is not */
12325   if (deduction_guide_p (cand1->fn))
12326     {
12327       gcc_assert (deduction_guide_p (cand2->fn));
12328       /* We distinguish between candidates from an explicit deduction guide and
12329 	 candidates built from a constructor based on DECL_ARTIFICIAL.  */
12330       int art1 = DECL_ARTIFICIAL (cand1->fn);
12331       int art2 = DECL_ARTIFICIAL (cand2->fn);
12332       if (art1 != art2)
12333 	return art2 - art1;
12334 
12335       if (art1)
12336 	{
12337 	  /* Prefer the special copy guide over a declared copy/move
12338 	     constructor.  */
12339 	  if (copy_guide_p (cand1->fn))
12340 	    return 1;
12341 	  if (copy_guide_p (cand2->fn))
12342 	    return -1;
12343 
12344 	  /* Prefer a candidate generated from a non-template constructor.  */
12345 	  int tg1 = template_guide_p (cand1->fn);
12346 	  int tg2 = template_guide_p (cand2->fn);
12347 	  if (tg1 != tg2)
12348 	    return tg2 - tg1;
12349 	}
12350     }
12351 
12352   /* F1 is a member of a class D, F2 is a member of a base class B of D, and
12353      for all arguments the corresponding parameters of F1 and F2 have the same
12354      type (CWG 2273/2277). */
12355   if (DECL_P (cand1->fn) && DECL_CLASS_SCOPE_P (cand1->fn)
12356       && !DECL_CONV_FN_P (cand1->fn)
12357       && DECL_P (cand2->fn) && DECL_CLASS_SCOPE_P (cand2->fn)
12358       && !DECL_CONV_FN_P (cand2->fn))
12359     {
12360       tree base1 = DECL_CONTEXT (strip_inheriting_ctors (cand1->fn));
12361       tree base2 = DECL_CONTEXT (strip_inheriting_ctors (cand2->fn));
12362 
12363       bool used1 = false;
12364       bool used2 = false;
12365       if (base1 == base2)
12366 	/* No difference.  */;
12367       else if (DERIVED_FROM_P (base1, base2))
12368 	used1 = true;
12369       else if (DERIVED_FROM_P (base2, base1))
12370 	used2 = true;
12371 
12372       if (int diff = used2 - used1)
12373 	{
12374 	  for (i = 0; i < len; ++i)
12375 	    {
12376 	      conversion *t1 = cand1->convs[i + off1];
12377 	      conversion *t2 = cand2->convs[i + off2];
12378 	      if (!same_type_p (t1->type, t2->type))
12379 		break;
12380 	    }
12381 	  if (i == len)
12382 	    return diff;
12383 	}
12384     }
12385 
12386   /* Check whether we can discard a builtin candidate, either because we
12387      have two identical ones or matching builtin and non-builtin candidates.
12388 
12389      (Pedantically in the latter case the builtin which matched the user
12390      function should not be added to the overload set, but we spot it here.
12391 
12392      [over.match.oper]
12393      ... the builtin candidates include ...
12394      - do not have the same parameter type list as any non-template
12395        non-member candidate.  */
12396 
12397   if (identifier_p (cand1->fn) || identifier_p (cand2->fn))
12398     {
12399       for (i = 0; i < len; ++i)
12400 	if (!same_type_p (cand1->convs[i]->type,
12401 			  cand2->convs[i]->type))
12402 	  break;
12403       if (i == cand1->num_convs)
12404 	{
12405 	  if (cand1->fn == cand2->fn)
12406 	    /* Two built-in candidates; arbitrarily pick one.  */
12407 	    return 1;
12408 	  else if (identifier_p (cand1->fn))
12409 	    /* cand1 is built-in; prefer cand2.  */
12410 	    return -1;
12411 	  else
12412 	    /* cand2 is built-in; prefer cand1.  */
12413 	    return 1;
12414 	}
12415     }
12416 
12417   /* For candidates of a multi-versioned function,  make the version with
12418      the highest priority win.  This version will be checked for dispatching
12419      first.  If this version can be inlined into the caller, the front-end
12420      will simply make a direct call to this function.  */
12421 
12422   if (TREE_CODE (cand1->fn) == FUNCTION_DECL
12423       && DECL_FUNCTION_VERSIONED (cand1->fn)
12424       && TREE_CODE (cand2->fn) == FUNCTION_DECL
12425       && DECL_FUNCTION_VERSIONED (cand2->fn))
12426     {
12427       tree f1 = TREE_TYPE (cand1->fn);
12428       tree f2 = TREE_TYPE (cand2->fn);
12429       tree p1 = TYPE_ARG_TYPES (f1);
12430       tree p2 = TYPE_ARG_TYPES (f2);
12431 
12432       /* Check if cand1->fn and cand2->fn are versions of the same function.  It
12433          is possible that cand1->fn and cand2->fn are function versions but of
12434          different functions.  Check types to see if they are versions of the same
12435          function.  */
12436       if (compparms (p1, p2)
12437 	  && same_type_p (TREE_TYPE (f1), TREE_TYPE (f2)))
12438 	{
12439 	  /* Always make the version with the higher priority, more
12440 	     specialized, win.  */
12441 	  gcc_assert (targetm.compare_version_priority);
12442 	  if (targetm.compare_version_priority (cand1->fn, cand2->fn) >= 0)
12443 	    return 1;
12444 	  else
12445 	    return -1;
12446 	}
12447     }
12448 
12449   /* If the two function declarations represent the same function (this can
12450      happen with declarations in multiple scopes and arg-dependent lookup),
12451      arbitrarily choose one.  But first make sure the default args we're
12452      using match.  */
12453   if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
12454       && equal_functions (cand1->fn, cand2->fn))
12455     {
12456       tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
12457       tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
12458 
12459       gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
12460 
12461       for (i = 0; i < len; ++i)
12462 	{
12463 	  /* Don't crash if the fn is variadic.  */
12464 	  if (!parms1)
12465 	    break;
12466 	  parms1 = TREE_CHAIN (parms1);
12467 	  parms2 = TREE_CHAIN (parms2);
12468 	}
12469 
12470       if (off1)
12471 	parms1 = TREE_CHAIN (parms1);
12472       else if (off2)
12473 	parms2 = TREE_CHAIN (parms2);
12474 
12475       for (; parms1; ++i)
12476 	{
12477 	  if (!cp_tree_equal (TREE_PURPOSE (parms1),
12478 			      TREE_PURPOSE (parms2)))
12479 	    {
12480 	      if (warn)
12481 		{
12482 		  if (complain & tf_error)
12483 		    {
12484 		      auto_diagnostic_group d;
12485 		      if (permerror (input_location,
12486 				     "default argument mismatch in "
12487 				     "overload resolution"))
12488 			{
12489 			  inform (DECL_SOURCE_LOCATION (cand1->fn),
12490 				  " candidate 1: %q#F", cand1->fn);
12491 			  inform (DECL_SOURCE_LOCATION (cand2->fn),
12492 				  " candidate 2: %q#F", cand2->fn);
12493 			}
12494 		    }
12495 		  else
12496 		    return 0;
12497 		}
12498 	      else
12499 		add_warning (cand1, cand2);
12500 	      break;
12501 	    }
12502 	  parms1 = TREE_CHAIN (parms1);
12503 	  parms2 = TREE_CHAIN (parms2);
12504 	}
12505 
12506       return 1;
12507     }
12508 
12509 tweak:
12510 
12511   /* Extension: If the worst conversion for one candidate is better than the
12512      worst conversion for the other, take the first.  */
12513   if (!pedantic && (complain & tf_warning_or_error))
12514     {
12515       conversion_rank rank1 = cr_identity, rank2 = cr_identity;
12516       struct z_candidate *w = 0, *l = 0;
12517 
12518       for (i = 0; i < len; ++i)
12519 	{
12520 	  if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
12521 	    rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
12522 	  if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
12523 	    rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
12524 	}
12525       if (rank1 < rank2)
12526 	winner = 1, w = cand1, l = cand2;
12527       if (rank1 > rank2)
12528 	winner = -1, w = cand2, l = cand1;
12529       if (winner)
12530 	{
12531 	  /* Don't choose a deleted function over ambiguity.  */
12532 	  if (DECL_P (w->fn) && DECL_DELETED_FN (w->fn))
12533 	    return 0;
12534 	  if (warn)
12535 	    {
12536 	      auto_diagnostic_group d;
12537 	      if (pedwarn (input_location, 0,
12538 			   "ISO C++ says that these are ambiguous, even "
12539 			   "though the worst conversion for the first is "
12540 			   "better than the worst conversion for the second:"))
12541 		{
12542 		  print_z_candidate (input_location, N_("candidate 1:"), w);
12543 		  print_z_candidate (input_location, N_("candidate 2:"), l);
12544 		}
12545 	    }
12546 	  else
12547 	    add_warning (w, l);
12548 	  return winner;
12549 	}
12550     }
12551 
12552   gcc_assert (!winner);
12553   return 0;
12554 }
12555 
12556 /* Given a list of candidates for overloading, find the best one, if any.
12557    This algorithm has a worst case of O(2n) (winner is last), and a best
12558    case of O(n/2) (totally ambiguous); much better than a sorting
12559    algorithm.  */
12560 
12561 static struct z_candidate *
tourney(struct z_candidate * candidates,tsubst_flags_t complain)12562 tourney (struct z_candidate *candidates, tsubst_flags_t complain)
12563 {
12564   struct z_candidate *champ = candidates, *challenger;
12565   int fate;
12566   int champ_compared_to_predecessor = 0;
12567 
12568   /* Walk through the list once, comparing each current champ to the next
12569      candidate, knocking out a candidate or two with each comparison.  */
12570 
12571   for (challenger = champ->next; challenger; )
12572     {
12573       fate = joust (champ, challenger, 0, complain);
12574       if (fate == 1)
12575 	challenger = challenger->next;
12576       else
12577 	{
12578 	  if (fate == 0)
12579 	    {
12580 	      champ = challenger->next;
12581 	      if (champ == 0)
12582 		return NULL;
12583 	      champ_compared_to_predecessor = 0;
12584 	    }
12585 	  else
12586 	    {
12587 	      champ = challenger;
12588 	      champ_compared_to_predecessor = 1;
12589 	    }
12590 
12591 	  challenger = champ->next;
12592 	}
12593     }
12594 
12595   /* Make sure the champ is better than all the candidates it hasn't yet
12596      been compared to.  */
12597 
12598   for (challenger = candidates;
12599        challenger != champ
12600 	 && !(champ_compared_to_predecessor && challenger->next == champ);
12601        challenger = challenger->next)
12602     {
12603       fate = joust (champ, challenger, 0, complain);
12604       if (fate != 1)
12605 	return NULL;
12606     }
12607 
12608   return champ;
12609 }
12610 
12611 /* Returns nonzero if things of type FROM can be converted to TO.  */
12612 
12613 bool
can_convert(tree to,tree from,tsubst_flags_t complain)12614 can_convert (tree to, tree from, tsubst_flags_t complain)
12615 {
12616   tree arg = NULL_TREE;
12617   /* implicit_conversion only considers user-defined conversions
12618      if it has an expression for the call argument list.  */
12619   if (CLASS_TYPE_P (from) || CLASS_TYPE_P (to))
12620     arg = build_stub_object (from);
12621   return can_convert_arg (to, from, arg, LOOKUP_IMPLICIT, complain);
12622 }
12623 
12624 /* Returns nonzero if things of type FROM can be converted to TO with a
12625    standard conversion.  */
12626 
12627 bool
can_convert_standard(tree to,tree from,tsubst_flags_t complain)12628 can_convert_standard (tree to, tree from, tsubst_flags_t complain)
12629 {
12630   return can_convert_arg (to, from, NULL_TREE, LOOKUP_IMPLICIT, complain);
12631 }
12632 
12633 /* Returns nonzero if ARG (of type FROM) can be converted to TO.  */
12634 
12635 bool
can_convert_arg(tree to,tree from,tree arg,int flags,tsubst_flags_t complain)12636 can_convert_arg (tree to, tree from, tree arg, int flags,
12637 		 tsubst_flags_t complain)
12638 {
12639   conversion *t;
12640   void *p;
12641   bool ok_p;
12642 
12643   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
12644   p = conversion_obstack_alloc (0);
12645   /* We want to discard any access checks done for this test,
12646      as we might not be in the appropriate access context and
12647      we'll do the check again when we actually perform the
12648      conversion.  */
12649   push_deferring_access_checks (dk_deferred);
12650 
12651   t  = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
12652 			    flags, complain);
12653   ok_p = (t && !t->bad_p);
12654 
12655   /* Discard the access checks now.  */
12656   pop_deferring_access_checks ();
12657   /* Free all the conversions we allocated.  */
12658   obstack_free (&conversion_obstack, p);
12659 
12660   return ok_p;
12661 }
12662 
12663 /* Like can_convert_arg, but allows dubious conversions as well.  */
12664 
12665 bool
can_convert_arg_bad(tree to,tree from,tree arg,int flags,tsubst_flags_t complain)12666 can_convert_arg_bad (tree to, tree from, tree arg, int flags,
12667 		     tsubst_flags_t complain)
12668 {
12669   conversion *t;
12670   void *p;
12671 
12672   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
12673   p = conversion_obstack_alloc (0);
12674   /* Try to perform the conversion.  */
12675   t  = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
12676 			    flags, complain);
12677   /* Free all the conversions we allocated.  */
12678   obstack_free (&conversion_obstack, p);
12679 
12680   return t != NULL;
12681 }
12682 
12683 /* Return an IMPLICIT_CONV_EXPR from EXPR to TYPE with bits set from overload
12684    resolution FLAGS.  */
12685 
12686 tree
build_implicit_conv_flags(tree type,tree expr,int flags)12687 build_implicit_conv_flags (tree type, tree expr, int flags)
12688 {
12689   /* In a template, we are only concerned about determining the
12690      type of non-dependent expressions, so we do not have to
12691      perform the actual conversion.  But for initializers, we
12692      need to be able to perform it at instantiation
12693      (or instantiate_non_dependent_expr) time.  */
12694   expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
12695   if (!(flags & LOOKUP_ONLYCONVERTING))
12696     IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
12697   if (flags & LOOKUP_NO_NARROWING)
12698     IMPLICIT_CONV_EXPR_BRACED_INIT (expr) = true;
12699   return expr;
12700 }
12701 
12702 /* Convert EXPR to TYPE.  Return the converted expression.
12703 
12704    Note that we allow bad conversions here because by the time we get to
12705    this point we are committed to doing the conversion.  If we end up
12706    doing a bad conversion, convert_like will complain.  */
12707 
12708 tree
perform_implicit_conversion_flags(tree type,tree expr,tsubst_flags_t complain,int flags)12709 perform_implicit_conversion_flags (tree type, tree expr,
12710 				   tsubst_flags_t complain, int flags)
12711 {
12712   conversion *conv;
12713   void *p;
12714   location_t loc = cp_expr_loc_or_input_loc (expr);
12715 
12716   if (TYPE_REF_P (type))
12717     expr = mark_lvalue_use (expr);
12718   else
12719     expr = mark_rvalue_use (expr);
12720 
12721   if (error_operand_p (expr))
12722     return error_mark_node;
12723 
12724   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
12725   p = conversion_obstack_alloc (0);
12726 
12727   conv = implicit_conversion (type, TREE_TYPE (expr), expr,
12728 			      /*c_cast_p=*/false,
12729 			      flags, complain);
12730 
12731   if (!conv)
12732     {
12733       if (complain & tf_error)
12734 	implicit_conversion_error (loc, type, expr);
12735       expr = error_mark_node;
12736     }
12737   else if (processing_template_decl && conv->kind != ck_identity)
12738     expr = build_implicit_conv_flags (type, expr, flags);
12739   else
12740     {
12741       /* Give a conversion call the same location as expr.  */
12742       iloc_sentinel il (loc);
12743       expr = convert_like (conv, expr, complain);
12744     }
12745 
12746   /* Free all the conversions we allocated.  */
12747   obstack_free (&conversion_obstack, p);
12748 
12749   return expr;
12750 }
12751 
12752 tree
perform_implicit_conversion(tree type,tree expr,tsubst_flags_t complain)12753 perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
12754 {
12755   return perform_implicit_conversion_flags (type, expr, complain,
12756 					    LOOKUP_IMPLICIT);
12757 }
12758 
12759 /* Convert EXPR to TYPE (as a direct-initialization) if that is
12760    permitted.  If the conversion is valid, the converted expression is
12761    returned.  Otherwise, NULL_TREE is returned, except in the case
12762    that TYPE is a class type; in that case, an error is issued.  If
12763    C_CAST_P is true, then this direct-initialization is taking
12764    place as part of a static_cast being attempted as part of a C-style
12765    cast.  */
12766 
12767 tree
perform_direct_initialization_if_possible(tree type,tree expr,bool c_cast_p,tsubst_flags_t complain)12768 perform_direct_initialization_if_possible (tree type,
12769 					   tree expr,
12770 					   bool c_cast_p,
12771                                            tsubst_flags_t complain)
12772 {
12773   conversion *conv;
12774   void *p;
12775 
12776   if (type == error_mark_node || error_operand_p (expr))
12777     return error_mark_node;
12778   /* [dcl.init]
12779 
12780      If the destination type is a (possibly cv-qualified) class type:
12781 
12782      -- If the initialization is direct-initialization ...,
12783      constructors are considered.
12784 
12785        -- If overload resolution is successful, the selected constructor
12786        is called to initialize the object, with the initializer expression
12787        or expression-list as its argument(s).
12788 
12789        -- Otherwise, if no constructor is viable, the destination type is
12790        a (possibly cv-qualified) aggregate class A, and the initializer is
12791        a parenthesized expression-list, the object is initialized as
12792        follows...  */
12793   if (CLASS_TYPE_P (type))
12794     {
12795       releasing_vec args (make_tree_vector_single (expr));
12796       expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
12797 					&args, type, LOOKUP_NORMAL, complain);
12798       return build_cplus_new (type, expr, complain);
12799     }
12800 
12801   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
12802   p = conversion_obstack_alloc (0);
12803 
12804   conv = implicit_conversion (type, TREE_TYPE (expr), expr,
12805 			      c_cast_p,
12806 			      LOOKUP_NORMAL, complain);
12807   if (!conv || conv->bad_p)
12808     expr = NULL_TREE;
12809   else if (processing_template_decl && conv->kind != ck_identity)
12810     {
12811       /* In a template, we are only concerned about determining the
12812 	 type of non-dependent expressions, so we do not have to
12813 	 perform the actual conversion.  But for initializers, we
12814 	 need to be able to perform it at instantiation
12815 	 (or instantiate_non_dependent_expr) time.  */
12816       expr = build1 (IMPLICIT_CONV_EXPR, type, expr);
12817       IMPLICIT_CONV_EXPR_DIRECT_INIT (expr) = true;
12818     }
12819   else
12820     expr = convert_like (conv, expr, NULL_TREE, 0,
12821 			 /*issue_conversion_warnings=*/false,
12822 			 c_cast_p, complain);
12823 
12824   /* Free all the conversions we allocated.  */
12825   obstack_free (&conversion_obstack, p);
12826 
12827   return expr;
12828 }
12829 
12830 /* When initializing a reference that lasts longer than a full-expression,
12831    this special rule applies:
12832 
12833      [class.temporary]
12834 
12835      The temporary to which the reference is bound or the temporary
12836      that is the complete object to which the reference is bound
12837      persists for the lifetime of the reference.
12838 
12839      The temporaries created during the evaluation of the expression
12840      initializing the reference, except the temporary to which the
12841      reference is bound, are destroyed at the end of the
12842      full-expression in which they are created.
12843 
12844    In that case, we store the converted expression into a new
12845    VAR_DECL in a new scope.
12846 
12847    However, we want to be careful not to create temporaries when
12848    they are not required.  For example, given:
12849 
12850      struct B {};
12851      struct D : public B {};
12852      D f();
12853      const B& b = f();
12854 
12855    there is no need to copy the return value from "f"; we can just
12856    extend its lifetime.  Similarly, given:
12857 
12858      struct S {};
12859      struct T { operator S(); };
12860      T t;
12861      const S& s = t;
12862 
12863   we can extend the lifetime of the return value of the conversion
12864   operator.
12865 
12866   The next several functions are involved in this lifetime extension.  */
12867 
12868 /* DECL is a VAR_DECL or FIELD_DECL whose type is a REFERENCE_TYPE.  The
12869    reference is being bound to a temporary.  Create and return a new
12870    VAR_DECL with the indicated TYPE; this variable will store the value to
12871    which the reference is bound.  */
12872 
12873 tree
make_temporary_var_for_ref_to_temp(tree decl,tree type)12874 make_temporary_var_for_ref_to_temp (tree decl, tree type)
12875 {
12876   tree var = create_temporary_var (type);
12877 
12878   /* Register the variable.  */
12879   if (VAR_P (decl)
12880       && (TREE_STATIC (decl) || CP_DECL_THREAD_LOCAL_P (decl)))
12881     {
12882       /* Namespace-scope or local static; give it a mangled name.  */
12883 
12884       /* If an initializer is visible to multiple translation units, those
12885 	 translation units must agree on the addresses of the
12886 	 temporaries. Therefore the temporaries must be given a consistent name
12887 	 and vague linkage. The mangled name of a temporary is the name of the
12888 	 non-temporary object in whose initializer they appear, prefixed with
12889 	 GR and suffixed with a sequence number mangled using the usual rules
12890 	 for a seq-id. Temporaries are numbered with a pre-order, depth-first,
12891 	 left-to-right walk of the complete initializer.  */
12892       copy_linkage (var, decl);
12893 
12894       tree name = mangle_ref_init_variable (decl);
12895       DECL_NAME (var) = name;
12896       SET_DECL_ASSEMBLER_NAME (var, name);
12897     }
12898   else
12899     /* Create a new cleanup level if necessary.  */
12900     maybe_push_cleanup_level (type);
12901 
12902   return pushdecl (var);
12903 }
12904 
12905 /* EXPR is the initializer for a variable DECL of reference or
12906    std::initializer_list type.  Create, push and return a new VAR_DECL
12907    for the initializer so that it will live as long as DECL.  Any
12908    cleanup for the new variable is returned through CLEANUP, and the
12909    code to initialize the new variable is returned through INITP.  */
12910 
12911 static tree
set_up_extended_ref_temp(tree decl,tree expr,vec<tree,va_gc> ** cleanups,tree * initp,tree * cond_guard)12912 set_up_extended_ref_temp (tree decl, tree expr, vec<tree, va_gc> **cleanups,
12913 			  tree *initp, tree *cond_guard)
12914 {
12915   tree init;
12916   tree type;
12917   tree var;
12918 
12919   /* Create the temporary variable.  */
12920   type = TREE_TYPE (expr);
12921   var = make_temporary_var_for_ref_to_temp (decl, type);
12922   layout_decl (var, 0);
12923   /* If the rvalue is the result of a function call it will be
12924      a TARGET_EXPR.  If it is some other construct (such as a
12925      member access expression where the underlying object is
12926      itself the result of a function call), turn it into a
12927      TARGET_EXPR here.  It is important that EXPR be a
12928      TARGET_EXPR below since otherwise the INIT_EXPR will
12929      attempt to make a bitwise copy of EXPR to initialize
12930      VAR.  */
12931   if (TREE_CODE (expr) != TARGET_EXPR)
12932     expr = get_target_expr (expr);
12933   else if (TREE_ADDRESSABLE (expr))
12934     TREE_ADDRESSABLE (var) = 1;
12935 
12936   if (TREE_CODE (decl) == FIELD_DECL
12937       && extra_warnings && !warning_suppressed_p (decl))
12938     {
12939       warning (OPT_Wextra, "a temporary bound to %qD only persists "
12940 	       "until the constructor exits", decl);
12941       suppress_warning (decl);
12942     }
12943 
12944   /* Recursively extend temps in this initializer.  */
12945   TARGET_EXPR_INITIAL (expr)
12946     = extend_ref_init_temps (decl, TARGET_EXPR_INITIAL (expr), cleanups,
12947 			     cond_guard);
12948 
12949   /* Any reference temp has a non-trivial initializer.  */
12950   DECL_NONTRIVIALLY_INITIALIZED_P (var) = true;
12951 
12952   /* If the initializer is constant, put it in DECL_INITIAL so we get
12953      static initialization and use in constant expressions.  */
12954   init = maybe_constant_init (expr, var, /*manifestly_const_eval=*/true);
12955   /* As in store_init_value.  */
12956   init = cp_fully_fold (init);
12957   if (TREE_CONSTANT (init))
12958     {
12959       if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
12960 	{
12961 	  /* 5.19 says that a constant expression can include an
12962 	     lvalue-rvalue conversion applied to "a glvalue of literal type
12963 	     that refers to a non-volatile temporary object initialized
12964 	     with a constant expression".  Rather than try to communicate
12965 	     that this VAR_DECL is a temporary, just mark it constexpr.  */
12966 	  DECL_DECLARED_CONSTEXPR_P (var) = true;
12967 	  DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (var) = true;
12968 	  TREE_CONSTANT (var) = true;
12969 	  TREE_READONLY (var) = true;
12970 	}
12971       DECL_INITIAL (var) = init;
12972       init = NULL_TREE;
12973     }
12974   else
12975     /* Create the INIT_EXPR that will initialize the temporary
12976        variable.  */
12977     init = split_nonconstant_init (var, expr);
12978   if (at_function_scope_p ())
12979     {
12980       add_decl_expr (var);
12981 
12982       if (TREE_STATIC (var))
12983 	init = add_stmt_to_compound (init, register_dtor_fn (var));
12984       else
12985 	{
12986 	  tree cleanup = cxx_maybe_build_cleanup (var, tf_warning_or_error);
12987 	  if (cleanup)
12988 	    {
12989 	      if (cond_guard && cleanup != error_mark_node)
12990 		{
12991 		  if (*cond_guard == NULL_TREE)
12992 		    {
12993 		      *cond_guard = build_local_temp (boolean_type_node);
12994 		      add_decl_expr (*cond_guard);
12995 		      tree set = cp_build_modify_expr (UNKNOWN_LOCATION,
12996 						       *cond_guard, NOP_EXPR,
12997 						       boolean_false_node,
12998 						       tf_warning_or_error);
12999 		      finish_expr_stmt (set);
13000 		    }
13001 		  cleanup = build3 (COND_EXPR, void_type_node,
13002 				    *cond_guard, cleanup, NULL_TREE);
13003 		}
13004 	      vec_safe_push (*cleanups, cleanup);
13005 	    }
13006 	}
13007 
13008       /* We must be careful to destroy the temporary only
13009 	 after its initialization has taken place.  If the
13010 	 initialization throws an exception, then the
13011 	 destructor should not be run.  We cannot simply
13012 	 transform INIT into something like:
13013 
13014 	 (INIT, ({ CLEANUP_STMT; }))
13015 
13016 	 because emit_local_var always treats the
13017 	 initializer as a full-expression.  Thus, the
13018 	 destructor would run too early; it would run at the
13019 	 end of initializing the reference variable, rather
13020 	 than at the end of the block enclosing the
13021 	 reference variable.
13022 
13023 	 The solution is to pass back a cleanup expression
13024 	 which the caller is responsible for attaching to
13025 	 the statement tree.  */
13026     }
13027   else
13028     {
13029       rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
13030       if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
13031 	{
13032 	  if (CP_DECL_THREAD_LOCAL_P (var))
13033 	    tls_aggregates = tree_cons (NULL_TREE, var,
13034 					tls_aggregates);
13035 	  else
13036 	    static_aggregates = tree_cons (NULL_TREE, var,
13037 					   static_aggregates);
13038 	}
13039       else
13040 	/* Check whether the dtor is callable.  */
13041 	cxx_maybe_build_cleanup (var, tf_warning_or_error);
13042     }
13043   /* Avoid -Wunused-variable warning (c++/38958).  */
13044   if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
13045       && VAR_P (decl))
13046     TREE_USED (decl) = DECL_READ_P (decl) = true;
13047 
13048   *initp = init;
13049   return var;
13050 }
13051 
13052 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
13053    initializing a variable of that TYPE.  */
13054 
13055 tree
initialize_reference(tree type,tree expr,int flags,tsubst_flags_t complain)13056 initialize_reference (tree type, tree expr,
13057 		      int flags, tsubst_flags_t complain)
13058 {
13059   conversion *conv;
13060   void *p;
13061   location_t loc = cp_expr_loc_or_input_loc (expr);
13062 
13063   if (type == error_mark_node || error_operand_p (expr))
13064     return error_mark_node;
13065 
13066   /* Get the high-water mark for the CONVERSION_OBSTACK.  */
13067   p = conversion_obstack_alloc (0);
13068 
13069   conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
13070 			    flags, complain);
13071   /* If this conversion failed, we're in C++20, and we have something like
13072      A& a(b) where A is an aggregate, try again, this time as A& a{b}.  */
13073   if ((!conv || conv->bad_p)
13074       && (flags & LOOKUP_AGGREGATE_PAREN_INIT))
13075     {
13076       tree e = build_constructor_single (init_list_type_node, NULL_TREE, expr);
13077       CONSTRUCTOR_IS_DIRECT_INIT (e) = true;
13078       CONSTRUCTOR_IS_PAREN_INIT (e) = true;
13079       conversion *c = reference_binding (type, TREE_TYPE (e), e,
13080 					 /*c_cast_p=*/false, flags, complain);
13081       /* If this worked, use it.  */
13082       if (c && !c->bad_p)
13083 	expr = e, conv = c;
13084     }
13085   if (!conv || conv->bad_p)
13086     {
13087       if (complain & tf_error)
13088 	{
13089 	  if (conv)
13090 	    convert_like (conv, expr, complain);
13091 	  else if (!CP_TYPE_CONST_P (TREE_TYPE (type))
13092 		   && !TYPE_REF_IS_RVALUE (type)
13093 		   && !lvalue_p (expr))
13094 	    error_at (loc, "invalid initialization of non-const reference of "
13095 		      "type %qH from an rvalue of type %qI",
13096 		      type, TREE_TYPE (expr));
13097 	  else
13098 	    error_at (loc, "invalid initialization of reference of type "
13099 		      "%qH from expression of type %qI", type,
13100 		      TREE_TYPE (expr));
13101 	}
13102       return error_mark_node;
13103     }
13104 
13105   if (conv->kind == ck_ref_bind)
13106     /* Perform the conversion.  */
13107     expr = convert_like (conv, expr, complain);
13108   else if (conv->kind == ck_ambig)
13109     /* We gave an error in build_user_type_conversion_1.  */
13110     expr = error_mark_node;
13111   else
13112     gcc_unreachable ();
13113 
13114   /* Free all the conversions we allocated.  */
13115   obstack_free (&conversion_obstack, p);
13116 
13117   return expr;
13118 }
13119 
13120 /* If *P is an xvalue expression, prevent temporary lifetime extension if it
13121    gets used to initialize a reference.  */
13122 
13123 static tree
prevent_lifetime_extension(tree t)13124 prevent_lifetime_extension (tree t)
13125 {
13126   tree *p = &t;
13127   while (TREE_CODE (*p) == COMPOUND_EXPR)
13128     p = &TREE_OPERAND (*p, 1);
13129   while (handled_component_p (*p))
13130     p = &TREE_OPERAND (*p, 0);
13131   /* Change a TARGET_EXPR from prvalue to xvalue.  */
13132   if (TREE_CODE (*p) == TARGET_EXPR)
13133     *p = build2 (COMPOUND_EXPR, TREE_TYPE (*p), *p,
13134 		 move (TARGET_EXPR_SLOT (*p)));
13135   return t;
13136 }
13137 
13138 /* Subroutine of extend_ref_init_temps.  Possibly extend one initializer,
13139    which is bound either to a reference or a std::initializer_list.  */
13140 
13141 static tree
extend_ref_init_temps_1(tree decl,tree init,vec<tree,va_gc> ** cleanups,tree * cond_guard)13142 extend_ref_init_temps_1 (tree decl, tree init, vec<tree, va_gc> **cleanups,
13143 			 tree *cond_guard)
13144 {
13145   tree sub = init;
13146   tree *p;
13147   STRIP_NOPS (sub);
13148   if (TREE_CODE (sub) == COMPOUND_EXPR)
13149     {
13150       TREE_OPERAND (sub, 1)
13151 	= extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups,
13152 				   cond_guard);
13153       return init;
13154     }
13155   if (TREE_CODE (sub) == COND_EXPR)
13156     {
13157       tree cur_cond_guard = NULL_TREE;
13158       if (TREE_OPERAND (sub, 1))
13159 	TREE_OPERAND (sub, 1)
13160 	  = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 1), cleanups,
13161 				     &cur_cond_guard);
13162       if (cur_cond_guard)
13163 	{
13164 	  tree set = cp_build_modify_expr (UNKNOWN_LOCATION, cur_cond_guard,
13165 					   NOP_EXPR, boolean_true_node,
13166 					   tf_warning_or_error);
13167 	  TREE_OPERAND (sub, 1)
13168 	    = cp_build_compound_expr (set, TREE_OPERAND (sub, 1),
13169 				      tf_warning_or_error);
13170 	}
13171       cur_cond_guard = NULL_TREE;
13172       if (TREE_OPERAND (sub, 2))
13173 	TREE_OPERAND (sub, 2)
13174 	  = extend_ref_init_temps_1 (decl, TREE_OPERAND (sub, 2), cleanups,
13175 				     &cur_cond_guard);
13176       if (cur_cond_guard)
13177 	{
13178 	  tree set = cp_build_modify_expr (UNKNOWN_LOCATION, cur_cond_guard,
13179 					   NOP_EXPR, boolean_true_node,
13180 					   tf_warning_or_error);
13181 	  TREE_OPERAND (sub, 2)
13182 	    = cp_build_compound_expr (set, TREE_OPERAND (sub, 2),
13183 				      tf_warning_or_error);
13184 	}
13185       return init;
13186     }
13187   if (TREE_CODE (sub) != ADDR_EXPR)
13188     return init;
13189   /* Deal with binding to a subobject.  */
13190   for (p = &TREE_OPERAND (sub, 0);
13191        TREE_CODE (*p) == COMPONENT_REF || TREE_CODE (*p) == ARRAY_REF; )
13192     p = &TREE_OPERAND (*p, 0);
13193   if (TREE_CODE (*p) == TARGET_EXPR)
13194     {
13195       tree subinit = NULL_TREE;
13196       *p = set_up_extended_ref_temp (decl, *p, cleanups, &subinit, cond_guard);
13197       recompute_tree_invariant_for_addr_expr (sub);
13198       if (init != sub)
13199 	init = fold_convert (TREE_TYPE (init), sub);
13200       if (subinit)
13201 	init = build2 (COMPOUND_EXPR, TREE_TYPE (init), subinit, init);
13202     }
13203   return init;
13204 }
13205 
13206 /* INIT is part of the initializer for DECL.  If there are any
13207    reference or initializer lists being initialized, extend their
13208    lifetime to match that of DECL.  */
13209 
13210 tree
extend_ref_init_temps(tree decl,tree init,vec<tree,va_gc> ** cleanups,tree * cond_guard)13211 extend_ref_init_temps (tree decl, tree init, vec<tree, va_gc> **cleanups,
13212 		       tree *cond_guard)
13213 {
13214   tree type = TREE_TYPE (init);
13215   if (processing_template_decl)
13216     return init;
13217   if (TYPE_REF_P (type))
13218     init = extend_ref_init_temps_1 (decl, init, cleanups, cond_guard);
13219   else
13220     {
13221       tree ctor = init;
13222       if (TREE_CODE (ctor) == TARGET_EXPR)
13223 	ctor = TARGET_EXPR_INITIAL (ctor);
13224       if (TREE_CODE (ctor) == CONSTRUCTOR)
13225 	{
13226 	  /* [dcl.init] When initializing an aggregate from a parenthesized list
13227 	     of values... a temporary object bound to a reference does not have
13228 	     its lifetime extended.  */
13229 	  if (CONSTRUCTOR_IS_PAREN_INIT (ctor))
13230 	    return init;
13231 
13232 	  if (is_std_init_list (type))
13233 	    {
13234 	      /* The temporary array underlying a std::initializer_list
13235 		 is handled like a reference temporary.  */
13236 	      tree array = CONSTRUCTOR_ELT (ctor, 0)->value;
13237 	      array = extend_ref_init_temps_1 (decl, array, cleanups,
13238 					       cond_guard);
13239 	      CONSTRUCTOR_ELT (ctor, 0)->value = array;
13240 	    }
13241 	  else
13242 	    {
13243 	      unsigned i;
13244 	      constructor_elt *p;
13245 	      vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ctor);
13246 	      FOR_EACH_VEC_SAFE_ELT (elts, i, p)
13247 		p->value = extend_ref_init_temps (decl, p->value, cleanups,
13248 						  cond_guard);
13249 	    }
13250 	  recompute_constructor_flags (ctor);
13251 	  if (decl_maybe_constant_var_p (decl) && TREE_CONSTANT (ctor))
13252 	    DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
13253 	}
13254     }
13255 
13256   return init;
13257 }
13258 
13259 /* Returns true iff an initializer for TYPE could contain temporaries that
13260    need to be extended because they are bound to references or
13261    std::initializer_list.  */
13262 
13263 bool
type_has_extended_temps(tree type)13264 type_has_extended_temps (tree type)
13265 {
13266   type = strip_array_types (type);
13267   if (TYPE_REF_P (type))
13268     return true;
13269   if (CLASS_TYPE_P (type))
13270     {
13271       if (is_std_init_list (type))
13272 	return true;
13273       for (tree f = next_initializable_field (TYPE_FIELDS (type));
13274 	   f; f = next_initializable_field (DECL_CHAIN (f)))
13275 	if (type_has_extended_temps (TREE_TYPE (f)))
13276 	  return true;
13277     }
13278   return false;
13279 }
13280 
13281 /* Returns true iff TYPE is some variant of std::initializer_list.  */
13282 
13283 bool
is_std_init_list(tree type)13284 is_std_init_list (tree type)
13285 {
13286   if (!TYPE_P (type))
13287     return false;
13288   if (cxx_dialect == cxx98)
13289     return false;
13290   /* Look through typedefs.  */
13291   type = TYPE_MAIN_VARIANT (type);
13292   return (CLASS_TYPE_P (type)
13293 	  && CP_TYPE_CONTEXT (type) == std_node
13294 	  && init_list_identifier == DECL_NAME (TYPE_NAME (type)));
13295 }
13296 
13297 /* Returns true iff DECL is a list constructor: i.e. a constructor which
13298    will accept an argument list of a single std::initializer_list<T>.  */
13299 
13300 bool
is_list_ctor(tree decl)13301 is_list_ctor (tree decl)
13302 {
13303   tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
13304   tree arg;
13305 
13306   if (!args || args == void_list_node)
13307     return false;
13308 
13309   arg = non_reference (TREE_VALUE (args));
13310   if (!is_std_init_list (arg))
13311     return false;
13312 
13313   args = TREE_CHAIN (args);
13314 
13315   if (args && args != void_list_node && !TREE_PURPOSE (args))
13316     /* There are more non-defaulted parms.  */
13317     return false;
13318 
13319   return true;
13320 }
13321 
13322 #include "gt-cp-call.h"
13323