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