]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/cp/call.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / cp / call.c
index c94068842a8840766c27c60de5868a1b3fb87cbd..bc4586840140487d9b01c59b14c80359dde0c23a 100644 (file)
@@ -1,31 +1,33 @@
 /* Functions related to invoking methods and overloaded functions.
    Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
-   1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+   Free Software Foundation, Inc.
    Contributed by Michael Tiemann (tiemann@cygnus.com) and
    modified by Brendan Kehoe (brendan@cygnus.com).
 
-This file is part of GNU CC.
+This file is part of GCC.
 
-GNU CC is free software; you can redistribute it and/or modify
+GCC is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
 any later version.
 
-GNU CC is distributed in the hope that it will be useful,
+GCC is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GNU CC; see the file COPYING.  If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+along with GCC; see the file COPYING3.  If not see
+<http://www.gnu.org/licenses/>.  */
 
 
 /* High-level class interface.  */
 
 #include "config.h"
 #include "system.h"
+#include "coretypes.h"
+#include "tm.h"
 #include "tree.h"
 #include "cp-tree.h"
 #include "output.h"
@@ -33,156 +35,183 @@ Boston, MA 02111-1307, USA.  */
 #include "rtl.h"
 #include "toplev.h"
 #include "expr.h"
-#include "ggc.h"
 #include "diagnostic.h"
+#include "intl.h"
+#include "target.h"
+#include "convert.h"
+#include "langhooks.h"
+
+/* The various kinds of conversion.  */
+
+typedef enum conversion_kind {
+  ck_identity,
+  ck_lvalue,
+  ck_qual,
+  ck_std,
+  ck_ptr,
+  ck_pmem,
+  ck_base,
+  ck_ref_bind,
+  ck_user,
+  ck_ambig,
+  ck_list,
+  ck_aggr,
+  ck_rvalue
+} conversion_kind;
+
+/* The rank of the conversion.  Order of the enumerals matters; better
+   conversions should come earlier in the list.  */
+
+typedef enum conversion_rank {
+  cr_identity,
+  cr_exact,
+  cr_promotion,
+  cr_std,
+  cr_pbool,
+  cr_user,
+  cr_ellipsis,
+  cr_bad
+} conversion_rank;
+
+/* An implicit conversion sequence, in the sense of [over.best.ics].
+   The first conversion to be performed is at the end of the chain.
+   That conversion is always a cr_identity conversion.  */
+
+typedef struct conversion conversion;
+struct conversion {
+  /* The kind of conversion represented by this step.  */
+  conversion_kind kind;
+  /* The rank of this conversion.  */
+  conversion_rank rank;
+  BOOL_BITFIELD user_conv_p : 1;
+  BOOL_BITFIELD ellipsis_p : 1;
+  BOOL_BITFIELD this_p : 1;
+  BOOL_BITFIELD bad_p : 1;
+  /* If KIND is ck_ref_bind ck_base_conv, true to indicate that a
+     temporary should be created to hold the result of the
+     conversion.  */
+  BOOL_BITFIELD need_temporary_p : 1;
+  /* If KIND is ck_ptr or ck_pmem, true to indicate that a conversion
+     from a pointer-to-derived to pointer-to-base is being performed.  */
+  BOOL_BITFIELD base_p : 1;
+  /* If KIND is ck_ref_bind, true when either an lvalue reference is
+     being bound to an lvalue expression or an rvalue reference is
+     being bound to an rvalue expression. */
+  BOOL_BITFIELD rvaluedness_matches_p: 1;
+  BOOL_BITFIELD check_narrowing: 1;
+  /* The type of the expression resulting from the conversion.  */
+  tree type;
+  union {
+    /* The next conversion in the chain.  Since the conversions are
+       arranged from outermost to innermost, the NEXT conversion will
+       actually be performed before this conversion.  This variant is
+       used only when KIND is neither ck_identity nor ck_ambig.  */
+    conversion *next;
+    /* The expression at the beginning of the conversion chain.  This
+       variant is used only if KIND is ck_identity or ck_ambig.  */
+    tree expr;
+    /* The array of conversions for an initializer_list.  */
+    conversion **list;
+  } u;
+  /* The function candidate corresponding to this conversion
+     sequence.  This field is only used if KIND is ck_user.  */
+  struct z_candidate *cand;
+};
 
-extern int inhibit_warnings;
-
-static tree build_new_method_call PARAMS ((tree, tree, tree, tree, int));
-
-static tree build_field_call PARAMS ((tree, tree, tree, tree));
-static struct z_candidate * tourney PARAMS ((struct z_candidate *));
-static int equal_functions PARAMS ((tree, tree));
-static int joust PARAMS ((struct z_candidate *, struct z_candidate *, int));
-static int compare_ics PARAMS ((tree, tree));
-static tree build_over_call PARAMS ((struct z_candidate *, tree, int));
-static tree build_java_interface_fn_ref PARAMS ((tree, tree));
-#define convert_like(CONV, EXPR) \
-  convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0)
-#define convert_like_with_context(CONV, EXPR, FN, ARGNO) \
-  convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0)
-static tree convert_like_real PARAMS ((tree, tree, tree, int, int));
-static void op_error PARAMS ((enum tree_code, enum tree_code, tree, tree,
-                           tree, const char *));
-static tree build_object_call PARAMS ((tree, tree));
-static tree resolve_args PARAMS ((tree));
-static struct z_candidate * build_user_type_conversion_1
-       PARAMS ((tree, tree, int));
-static void print_z_candidates PARAMS ((struct z_candidate *));
-static tree build_this PARAMS ((tree));
-static struct z_candidate * splice_viable PARAMS ((struct z_candidate *));
-static int any_viable PARAMS ((struct z_candidate *));
-static struct z_candidate * add_template_candidate
-       PARAMS ((struct z_candidate *, tree, tree, tree, tree, tree, int,
-              unification_kind_t));
-static struct z_candidate * add_template_candidate_real
-       PARAMS ((struct z_candidate *, tree, tree, tree, tree, tree, int,
-              tree, unification_kind_t));
-static struct z_candidate * add_template_conv_candidate 
-        PARAMS ((struct z_candidate *, tree, tree, tree, tree));
-static struct z_candidate * add_builtin_candidates
-       PARAMS ((struct z_candidate *, enum tree_code, enum tree_code,
-              tree, tree *, int));
-static struct z_candidate * add_builtin_candidate
-       PARAMS ((struct z_candidate *, enum tree_code, enum tree_code,
-              tree, tree, tree, tree *, tree *, int));
-static int is_complete PARAMS ((tree));
-static struct z_candidate * build_builtin_candidate 
-       PARAMS ((struct z_candidate *, tree, tree, tree, tree *, tree *,
-              int));
-static struct z_candidate * add_conv_candidate 
-       PARAMS ((struct z_candidate *, tree, tree, tree));
-static struct z_candidate * add_function_candidate 
-       PARAMS ((struct z_candidate *, tree, tree, tree, int));
-static tree implicit_conversion PARAMS ((tree, tree, tree, int));
-static tree standard_conversion PARAMS ((tree, tree, tree));
-static tree reference_binding PARAMS ((tree, tree, tree, int));
-static tree non_reference PARAMS ((tree));
-static tree build_conv PARAMS ((enum tree_code, tree, tree));
-static int is_subseq PARAMS ((tree, tree));
-static tree maybe_handle_ref_bind PARAMS ((tree*));
-static void maybe_handle_implicit_object PARAMS ((tree*));
-static struct z_candidate * add_candidate PARAMS ((struct z_candidate *,
-                                                  tree, tree, int));
-static tree source_type PARAMS ((tree));
-static void add_warning PARAMS ((struct z_candidate *, struct z_candidate *));
-static int reference_related_p PARAMS ((tree, tree));
-static int reference_compatible_p PARAMS ((tree, tree));
-static tree convert_class_to_reference PARAMS ((tree, tree, tree));
-static tree direct_reference_binding PARAMS ((tree, tree));
-static int promoted_arithmetic_type_p PARAMS ((tree));
-static tree conditional_conversion PARAMS ((tree, tree));
-static tree call_builtin_trap PARAMS ((void));
-
-tree
-build_vfield_ref (datum, type)
-     tree datum, type;
-{
-  tree rval;
-
-  if (datum == error_mark_node)
-    return error_mark_node;
-
-  if (TREE_CODE (TREE_TYPE (datum)) == REFERENCE_TYPE)
-    datum = convert_from_reference (datum);
-
-  if (! TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type))
-    rval = build (COMPONENT_REF, TREE_TYPE (TYPE_VFIELD (type)),
-                 datum, TYPE_VFIELD (type));
-  else
-    rval = build_component_ref (datum, DECL_NAME (TYPE_VFIELD (type)), NULL_TREE, 0);
-
-  return rval;
-}
-
-/* Build a call to a member of an object.  I.e., one that overloads
-   operator ()(), or is a pointer-to-function or pointer-to-method.  */
-
-static tree
-build_field_call (basetype_path, instance_ptr, name, parms)
-     tree basetype_path, instance_ptr, name, parms;
-{
-  tree field, instance;
-
-  if (IDENTIFIER_CTOR_OR_DTOR_P (name))
-    return NULL_TREE;
-
-  /* Speed up the common case.  */
-  if (instance_ptr == current_class_ptr
-      && IDENTIFIER_CLASS_VALUE (name) == NULL_TREE)
-    return NULL_TREE;
-
-  field = lookup_field (basetype_path, name, 1, 0);
-
-  if (field == error_mark_node || field == NULL_TREE)
-    return field;
-
-  if (TREE_CODE (field) == FIELD_DECL || TREE_CODE (field) == VAR_DECL)
-    {
-      /* If it's a field, try overloading operator (),
-        or calling if the field is a pointer-to-function.  */
-      instance = build_indirect_ref (instance_ptr, NULL);
-      instance = build_component_ref_1 (instance, field, 0);
-
-      if (instance == error_mark_node)
-       return error_mark_node;
-
-      if (IS_AGGR_TYPE (TREE_TYPE (instance)))
-       return build_opfncall (CALL_EXPR, LOOKUP_NORMAL,
-                              instance, parms, NULL_TREE);
-      else if (TREE_CODE (TREE_TYPE (instance)) == FUNCTION_TYPE
-              || (TREE_CODE (TREE_TYPE (instance)) == POINTER_TYPE
-                  && (TREE_CODE (TREE_TYPE (TREE_TYPE (instance)))
-                      == FUNCTION_TYPE)))
-       return build_function_call (instance, parms);
-    }
-
-  return NULL_TREE;
-}
-
-/* Returns nonzero iff the destructor name specified in NAME
-   (a BIT_NOT_EXPR) matches BASETYPE.  The operand of NAME can take many
-   forms...  */
-
-int
-check_dtor_name (basetype, name)
-     tree basetype, name;
+#define CONVERSION_RANK(NODE)                  \
+  ((NODE)->bad_p ? cr_bad                      \
+   : (NODE)->ellipsis_p ? cr_ellipsis          \
+   : (NODE)->user_conv_p ? cr_user             \
+   : (NODE)->rank)
+
+static struct obstack conversion_obstack;
+static bool conversion_obstack_initialized;
+
+static struct z_candidate * tourney (struct z_candidate *);
+static int equal_functions (tree, tree);
+static int joust (struct z_candidate *, struct z_candidate *, bool);
+static int compare_ics (conversion *, conversion *);
+static tree build_over_call (struct z_candidate *, int, tsubst_flags_t);
+static tree build_java_interface_fn_ref (tree, tree);
+#define convert_like(CONV, EXPR, COMPLAIN)                     \
+  convert_like_real ((CONV), (EXPR), NULL_TREE, 0, 0,          \
+                    /*issue_conversion_warnings=*/true,        \
+                    /*c_cast_p=*/false, (COMPLAIN))
+#define convert_like_with_context(CONV, EXPR, FN, ARGNO, COMPLAIN )    \
+  convert_like_real ((CONV), (EXPR), (FN), (ARGNO), 0,                 \
+                    /*issue_conversion_warnings=*/true,                \
+                    /*c_cast_p=*/false, (COMPLAIN))
+static tree convert_like_real (conversion *, tree, tree, int, int, bool,
+                              bool, tsubst_flags_t);
+static void op_error (enum tree_code, enum tree_code, tree, tree,
+                     tree, const char *);
+static tree build_object_call (tree, tree, tsubst_flags_t);
+static tree resolve_args (tree);
+static struct z_candidate *build_user_type_conversion_1 (tree, tree, int);
+static void print_z_candidate (const char *, struct z_candidate *);
+static void print_z_candidates (struct z_candidate *);
+static tree build_this (tree);
+static struct z_candidate *splice_viable (struct z_candidate *, bool, bool *);
+static bool any_strictly_viable (struct z_candidate *);
+static struct z_candidate *add_template_candidate
+       (struct z_candidate **, tree, tree, tree, tree, tree,
+        tree, tree, int, unification_kind_t);
+static struct z_candidate *add_template_candidate_real
+       (struct z_candidate **, tree, tree, tree, tree, tree,
+        tree, tree, int, tree, unification_kind_t);
+static struct z_candidate *add_template_conv_candidate
+       (struct z_candidate **, tree, tree, tree, tree, tree, tree);
+static void add_builtin_candidates
+       (struct z_candidate **, enum tree_code, enum tree_code,
+        tree, tree *, int);
+static void add_builtin_candidate
+       (struct z_candidate **, enum tree_code, enum tree_code,
+        tree, tree, tree, tree *, tree *, int);
+static bool is_complete (tree);
+static void build_builtin_candidate
+       (struct z_candidate **, tree, tree, tree, tree *, tree *,
+        int);
+static struct z_candidate *add_conv_candidate
+       (struct z_candidate **, tree, tree, tree, tree, tree);
+static struct z_candidate *add_function_candidate
+       (struct z_candidate **, tree, tree, tree, tree, tree, int);
+static conversion *implicit_conversion (tree, tree, tree, bool, int);
+static conversion *standard_conversion (tree, tree, tree, bool, int);
+static conversion *reference_binding (tree, tree, tree, bool, int);
+static conversion *build_conv (conversion_kind, tree, conversion *);
+static conversion *build_list_conv (tree, tree, int);
+static bool is_subseq (conversion *, conversion *);
+static conversion *maybe_handle_ref_bind (conversion **);
+static void maybe_handle_implicit_object (conversion **);
+static struct z_candidate *add_candidate
+       (struct z_candidate **, tree, tree, size_t,
+        conversion **, tree, tree, int);
+static tree source_type (conversion *);
+static void add_warning (struct z_candidate *, struct z_candidate *);
+static bool reference_related_p (tree, tree);
+static bool reference_compatible_p (tree, tree);
+static conversion *convert_class_to_reference (tree, tree, tree);
+static conversion *direct_reference_binding (tree, conversion *);
+static bool promoted_arithmetic_type_p (tree);
+static conversion *conditional_conversion (tree, tree);
+static char *name_as_c_string (tree, tree, bool *);
+static tree call_builtin_trap (void);
+static tree prep_operand (tree);
+static void add_candidates (tree, tree, tree, bool, tree, tree,
+                           int, struct z_candidate **);
+static conversion *merge_conversion_sequences (conversion *, conversion *);
+static bool magic_varargs_p (tree);
+static tree build_temp (tree, tree, int, diagnostic_t *);
+
+/* Returns nonzero iff the destructor name specified in NAME matches BASETYPE.
+   NAME can take many forms...  */
+
+bool
+check_dtor_name (tree basetype, tree name)
 {
-  name = TREE_OPERAND (name, 0);
-
   /* Just accept something we've already complained about.  */
   if (name == error_mark_node)
-    return 1;
+    return true;
 
   if (TREE_CODE (name) == TYPE_DECL)
     name = TREE_TYPE (name);
@@ -190,161 +219,37 @@ check_dtor_name (basetype, name)
     /* OK */;
   else if (TREE_CODE (name) == IDENTIFIER_NODE)
     {
-      if ((IS_AGGR_TYPE (basetype) && name == constructor_name (basetype))
+      if ((MAYBE_CLASS_TYPE_P (basetype)
+          && name == constructor_name (basetype))
          || (TREE_CODE (basetype) == ENUMERAL_TYPE
              && name == TYPE_IDENTIFIER (basetype)))
-       name = basetype;
+       return true;
       else
        name = get_type_value (name);
     }
-  /* In the case of:
-      
-       template <class T> struct S { ~S(); };
-       int i;
-       i.~S();
-
-     NAME will be a class template.  */
-  else if (DECL_CLASS_TEMPLATE_P (name))
-    return 0;
-  else
-    abort ();
-
-  if (name && TYPE_MAIN_VARIANT (basetype) == TYPE_MAIN_VARIANT (name))
-    return 1;
-  return 0;
-}
-
-/* Build a method call of the form `EXP->SCOPES::NAME (PARMS)'.
-   This is how virtual function calls are avoided.  */
-
-tree
-build_scoped_method_call (exp, basetype, name, parms)
-     tree exp, basetype, name, parms;
-{
-  /* Because this syntactic form does not allow
-     a pointer to a base class to be `stolen',
-     we need not protect the derived->base conversion
-     that happens here.
-     
-     @@ But we do have to check access privileges later.  */
-  tree binfo, decl;
-  tree type = TREE_TYPE (exp);
-
-  if (type == error_mark_node
-      || basetype == error_mark_node)
-    return error_mark_node;
-
-  if (processing_template_decl)
-    {
-      if (TREE_CODE (name) == BIT_NOT_EXPR
-         && TREE_CODE (TREE_OPERAND (name, 0)) == IDENTIFIER_NODE)
-       {
-         tree type = get_aggr_from_typedef (TREE_OPERAND (name, 0), 0);
-         if (type)
-           name = build_min_nt (BIT_NOT_EXPR, type);
-       }
-      name = build_min_nt (SCOPE_REF, basetype, name);
-      return build_min_nt (METHOD_CALL_EXPR, name, exp, parms, NULL_TREE);
-    }
-
-  if (TREE_CODE (type) == REFERENCE_TYPE)
-    type = TREE_TYPE (type);
-
-  if (TREE_CODE (basetype) == TREE_VEC)
-    {
-      binfo = basetype;
-      basetype = BINFO_TYPE (binfo);
-    }
   else
-    binfo = NULL_TREE;
-
-  /* Check the destructor call syntax.  */
-  if (TREE_CODE (name) == BIT_NOT_EXPR)
-    {
-      /* We can get here if someone writes their destructor call like
-        `obj.NS::~T()'; this isn't really a scoped method call, so hand
-        it off.  */
-      if (TREE_CODE (basetype) == NAMESPACE_DECL)
-       return build_method_call (exp, name, parms, NULL_TREE, LOOKUP_NORMAL);
-
-      if (! check_dtor_name (basetype, name))
-       error ("qualified type `%T' does not match destructor name `~%T'",
-                 basetype, TREE_OPERAND (name, 0));
-
-      /* Destructors can be "called" for simple types; see 5.2.4 and 12.4 Note
-        that explicit ~int is caught in the parser; this deals with typedefs
-        and template parms.  */
-      if (! IS_AGGR_TYPE (basetype))
-       {
-         if (TYPE_MAIN_VARIANT (type) != TYPE_MAIN_VARIANT (basetype))
-           error ("type of `%E' does not match destructor type `%T' (type was `%T')",
-                     exp, basetype, type);
-
-         return cp_convert (void_type_node, exp);
-       }
-    }
-
-  if (TREE_CODE (basetype) == NAMESPACE_DECL)
     {
-      error ("`%D' is a namespace", basetype);
-      return error_mark_node;
-    }
-  if (! is_aggr_type (basetype, 1))
-    return error_mark_node;
+      /* In the case of:
 
-  if (! IS_AGGR_TYPE (type))
-    {
-      error ("base object `%E' of scoped method call is of non-aggregate type `%T'",
-               exp, type);
-      return error_mark_node;
-    }
+        template <class T> struct S { ~S(); };
+        int i;
+        i.~S();
 
-  if (! binfo)
-    {
-      binfo = lookup_base (type, basetype, ba_check, NULL);
-      if (binfo == error_mark_node)
-       return error_mark_node;
-      if (! binfo)
-       error_not_base_type (basetype, type);
+        NAME will be a class template.  */
+      gcc_assert (DECL_CLASS_TEMPLATE_P (name));
+      return false;
     }
 
-  if (binfo)
-    {
-      if (TREE_CODE (exp) == INDIRECT_REF)
-       {
-         decl = build_base_path (PLUS_EXPR,
-                                 build_unary_op (ADDR_EXPR, exp, 0),
-                                 binfo, 1);
-         decl = build_indirect_ref (decl, NULL);
-       }
-      else
-       decl = build_scoped_ref (exp, basetype);
-
-      /* Call to a destructor.  */
-      if (TREE_CODE (name) == BIT_NOT_EXPR)
-       {
-         if (! TYPE_HAS_DESTRUCTOR (TREE_TYPE (decl)))
-           return cp_convert (void_type_node, exp);
-         
-         return build_delete (TREE_TYPE (decl), decl, 
-                              sfk_complete_destructor,
-                              LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR,
-                              0);
-       }
-
-      /* Call to a method.  */
-      return build_method_call (decl, name, parms, binfo,
-                               LOOKUP_NORMAL|LOOKUP_NONVIRTUAL);
-    }
-  return error_mark_node;
+  if (!name || name == error_mark_node)
+    return false;
+  return same_type_p (TYPE_MAIN_VARIANT (basetype), TYPE_MAIN_VARIANT (name));
 }
 
 /* We want the address of a function or method.  We avoid creating a
    pointer-to-member function.  */
 
 tree
-build_addr_func (function)
-     tree function;
+build_addr_func (tree function)
 {
   tree type = TREE_TYPE (function);
 
@@ -352,55 +257,79 @@ build_addr_func (function)
      functions.  */
   if (TREE_CODE (type) == METHOD_TYPE)
     {
-      tree addr;
-
-      type = build_pointer_type (type);
-
-      if (mark_addressable (function) == 0)
-       return error_mark_node;
-
-      addr = build1 (ADDR_EXPR, type, function);
-
-      /* Address of a static or external variable or function counts
-        as a constant */
-      if (staticp (function))
-       TREE_CONSTANT (addr) = 1;
-
-      function = addr;
+      if (TREE_CODE (function) == OFFSET_REF)
+       {
+         tree object = build_address (TREE_OPERAND (function, 0));
+         return get_member_function_from_ptrfunc (&object,
+                                                  TREE_OPERAND (function, 1));
+       }
+      function = build_address (function);
     }
   else
-    function = default_conversion (function);
+    function = decay_conversion (function);
 
   return function;
 }
 
 /* Build a CALL_EXPR, we can handle FUNCTION_TYPEs, METHOD_TYPEs, or
    POINTER_TYPE to those.  Note, pointer to member function types
-   (TYPE_PTRMEMFUNC_P) must be handled by our callers.  */
+   (TYPE_PTRMEMFUNC_P) must be handled by our callers.  There are
+   two variants.  build_call_a is the primitive taking an array of
+   arguments, while build_call_n is a wrapper that handles varargs.  */
+
+tree
+build_call_n (tree function, int n, ...)
+{
+  if (n == 0)
+    return build_call_a (function, 0, NULL);
+  else
+    {
+      tree *argarray = (tree *) alloca (n * sizeof (tree));
+      va_list ap;
+      int i;
+
+      va_start (ap, n);
+      for (i = 0; i < n; i++)
+       argarray[i] = va_arg (ap, tree);
+      va_end (ap);
+      return build_call_a (function, n, argarray);
+    }
+}
 
 tree
-build_call (function, parms)
-     tree function, parms;
+build_call_a (tree function, int n, tree *argarray)
 {
   int is_constructor = 0;
   int nothrow;
-  tree tmp;
   tree decl;
   tree result_type;
+  tree fntype;
+  int i;
 
   function = build_addr_func (function);
 
-  if (TYPE_PTRMEMFUNC_P (TREE_TYPE (function)))
-    {
-      sorry ("unable to call pointer to member function here");
-      return error_mark_node;
-    }
-
-  result_type = TREE_TYPE (TREE_TYPE (TREE_TYPE (function)));
+  gcc_assert (TYPE_PTR_P (TREE_TYPE (function)));
+  fntype = TREE_TYPE (TREE_TYPE (function));
+  gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
+             || TREE_CODE (fntype) == METHOD_TYPE);
+  result_type = TREE_TYPE (fntype);
 
   if (TREE_CODE (function) == ADDR_EXPR
       && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
-    decl = TREE_OPERAND (function, 0);
+    {
+      decl = TREE_OPERAND (function, 0);
+      if (!TREE_USED (decl))
+       {
+         /* We invoke build_call directly for several library
+            functions.  These may have been declared normally if
+            we're building libgcc, so we can't just check
+            DECL_ARTIFICIAL.  */
+         gcc_assert (DECL_ARTIFICIAL (decl)
+                     || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
+                                  "__", 2));
+         mark_used (decl);
+       }
+    }
   else
     decl = NULL_TREE;
 
@@ -409,46 +338,33 @@ build_call (function, parms)
   nothrow = ((decl && TREE_NOTHROW (decl))
             || TYPE_NOTHROW_P (TREE_TYPE (TREE_TYPE (function))));
 
-  if (decl && TREE_THIS_VOLATILE (decl) && cfun)
+  if (decl && TREE_THIS_VOLATILE (decl) && cfun && cp_function_chain)
     current_function_returns_abnormally = 1;
 
   if (decl && TREE_DEPRECATED (decl))
     warn_deprecated_use (decl);
+  require_complete_eh_spec_types (fntype, decl);
 
   if (decl && DECL_CONSTRUCTOR_P (decl))
     is_constructor = 1;
 
-  if (decl && ! TREE_USED (decl))
-    {
-      /* We invoke build_call directly for several library functions.
-        These may have been declared normally if we're building libgcc,
-        so we can't just check DECL_ARTIFICIAL.  */
-      if (DECL_ARTIFICIAL (decl)
-         || !strncmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "__", 2))
-       mark_used (decl);
-      else
-       abort ();
-    }
-
   /* Don't pass empty class objects by value.  This is useful
      for tags in STL, which are used to control overload resolution.
      We don't need to handle other cases of copying empty classes.  */
   if (! decl || ! DECL_BUILT_IN (decl))
-    for (tmp = parms; tmp; tmp = TREE_CHAIN (tmp))
-      if (is_empty_class (TREE_TYPE (TREE_VALUE (tmp)))
-         && ! TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (tmp))))
+    for (i = 0; i < n; i++)
+      if (is_empty_class (TREE_TYPE (argarray[i]))
+         && ! TREE_ADDRESSABLE (TREE_TYPE (argarray[i])))
        {
-         tree t = build (EMPTY_CLASS_EXPR, TREE_TYPE (TREE_VALUE (tmp)));
-         TREE_VALUE (tmp) = build (COMPOUND_EXPR, TREE_TYPE (t),
-                                   TREE_VALUE (tmp), t);
+         tree t = build0 (EMPTY_CLASS_EXPR, TREE_TYPE (argarray[i]));
+         argarray[i] = build2 (COMPOUND_EXPR, TREE_TYPE (t),
+                               argarray[i], t);
        }
 
-  function = build_nt (CALL_EXPR, function, parms, NULL_TREE);
+  function = build_call_array (result_type, function, n, argarray);
   TREE_HAS_CONSTRUCTOR (function) = is_constructor;
-  TREE_TYPE (function) = result_type;
-  TREE_SIDE_EFFECTS (function) = 1;
   TREE_NOTHROW (function) = nothrow;
-  
+
   return function;
 }
 
@@ -467,8 +383,7 @@ build_call (function, parms)
 
    BASETYPE_PATH, if non-NULL, contains a chain from the type of INSTANCE
    down to the real instance type to use for access checking.  We need this
-   information to get protected accesses correct.  This parameter is used
-   by build_member_call.
+   information to get protected accesses correct.
 
    FLAGS is the logical disjunction of zero or more LOOKUP_
    flags.  See cp-tree.h for more info.
@@ -484,220 +399,305 @@ build_call (function, parms)
    `operator()()' is defined for the type of that field, then we return
    that result.  */
 
-#ifdef GATHER_STATISTICS
-extern int n_build_method_call;
-#endif
-
-tree
-build_method_call (instance, name, parms, basetype_path, flags)
-     tree instance, name, parms, basetype_path;
-     int flags;
-{
-  tree basetype, instance_ptr;
+/* New overloading code.  */
 
-#ifdef GATHER_STATISTICS
-  n_build_method_call++;
-#endif
+typedef struct z_candidate z_candidate;
 
-  if (instance == error_mark_node
-      || name == error_mark_node
-      || parms == error_mark_node
-      || (instance != NULL_TREE && TREE_TYPE (instance) == error_mark_node))
-    return error_mark_node;
+typedef struct candidate_warning candidate_warning;
+struct candidate_warning {
+  z_candidate *loser;
+  candidate_warning *next;
+};
 
-  if (processing_template_decl)
-    {
-      /* We need to process template parm names here so that tsubst catches
-        them properly.  Other type names can wait.  */
-      if (TREE_CODE (name) == BIT_NOT_EXPR)
-       {
-         tree type = NULL_TREE;
+struct z_candidate {
+  /* The FUNCTION_DECL that will be called if this candidate is
+     selected by overload resolution.  */
+  tree fn;
+  /* The arguments to use when calling this function.  */
+  tree args;
+  /* The implicit conversion sequences for each of the arguments to
+     FN.  */
+  conversion **convs;
+  /* The number of implicit conversion sequences.  */
+  size_t num_convs;
+  /* If FN is a user-defined conversion, the standard conversion
+     sequence from the type returned by FN to the desired destination
+     type.  */
+  conversion *second_conv;
+  int viable;
+  /* If FN is a member function, the binfo indicating the path used to
+     qualify the name of FN at the call site.  This path is used to
+     determine whether or not FN is accessible if it is selected by
+     overload resolution.  The DECL_CONTEXT of FN will always be a
+     (possibly improper) base of this binfo.  */
+  tree access_path;
+  /* If FN is a non-static member function, the binfo indicating the
+     subobject to which the `this' pointer should be converted if FN
+     is selected by overload resolution.  The type pointed to the by
+     the `this' pointer must correspond to the most derived class
+     indicated by the CONVERSION_PATH.  */
+  tree conversion_path;
+  tree template_decl;
+  candidate_warning *warnings;
+  z_candidate *next;
+};
 
-         if (TREE_CODE (TREE_OPERAND (name, 0)) == IDENTIFIER_NODE)
-           type = get_aggr_from_typedef (TREE_OPERAND (name, 0), 0);
-         else if (TREE_CODE (TREE_OPERAND (name, 0)) == TYPE_DECL)
-           type = TREE_TYPE (TREE_OPERAND (name, 0));
+/* Returns true iff T is a null pointer constant in the sense of
+   [conv.ptr].  */
 
-         if (type && TREE_CODE (type) == TEMPLATE_TYPE_PARM)
-           name = build_min_nt (BIT_NOT_EXPR, type);
-       }
+bool
+null_ptr_cst_p (tree t)
+{
+  /* [conv.ptr]
 
-      return build_min_nt (METHOD_CALL_EXPR, name, instance, parms, NULL_TREE);
+     A null pointer constant is an integral constant expression
+     (_expr.const_) rvalue of integer type that evaluates to zero.  */
+  t = integral_constant_value (t);
+  if (t == null_node)
+    return true;
+  if (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t))
+    {
+      STRIP_NOPS (t);
+      if (!TREE_OVERFLOW (t))
+       return true;
     }
+  return false;
+}
 
-  if (TREE_CODE (name) == BIT_NOT_EXPR)
-    {
-      if (parms)
-       error ("destructors take no parameters");
-      basetype = TREE_TYPE (instance);
-      if (TREE_CODE (basetype) == REFERENCE_TYPE)
-       basetype = TREE_TYPE (basetype);
+/* Returns nonzero if PARMLIST consists of only default parms and/or
+   ellipsis.  */
+
+bool
+sufficient_parms_p (const_tree parmlist)
+{
+  for (; parmlist && parmlist != void_list_node;
+       parmlist = TREE_CHAIN (parmlist))
+    if (!TREE_PURPOSE (parmlist))
+      return false;
+  return true;
+}
 
-      if (! check_dtor_name (basetype, name))
-       error
-         ("destructor name `~%T' does not match type `%T' of expression",
-          TREE_OPERAND (name, 0), basetype);
+/* Allocate N bytes of memory from the conversion obstack.  The memory
+   is zeroed before being returned.  */
 
-      if (! TYPE_HAS_DESTRUCTOR (complete_type (basetype)))
-       return cp_convert (void_type_node, instance);
-      instance = default_conversion (instance);
-      instance_ptr = build_unary_op (ADDR_EXPR, instance, 0);
-      return build_delete (build_pointer_type (basetype),
-                          instance_ptr, sfk_complete_destructor,
-                          LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0);
+static void *
+conversion_obstack_alloc (size_t n)
+{
+  void *p;
+  if (!conversion_obstack_initialized)
+    {
+      gcc_obstack_init (&conversion_obstack);
+      conversion_obstack_initialized = true;
     }
+  p = obstack_alloc (&conversion_obstack, n);
+  memset (p, 0, n);
+  return p;
+}
+
+/* Dynamically allocate a conversion.  */
 
-  return build_new_method_call (instance, name, parms, basetype_path, flags);
+static conversion *
+alloc_conversion (conversion_kind kind)
+{
+  conversion *c;
+  c = (conversion *) conversion_obstack_alloc (sizeof (conversion));
+  c->kind = kind;
+  return c;
 }
 
-/* New overloading code.  */
+#ifdef ENABLE_CHECKING
 
-struct z_candidate {
-  tree fn;
-  tree convs;
-  tree second_conv;
-  int viable;
-  tree basetype_path;
-  tree template;
-  tree warnings;
-  struct z_candidate *next;
-};
+/* Make sure that all memory on the conversion obstack has been
+   freed.  */
 
-#define IDENTITY_RANK 0
-#define EXACT_RANK 1
-#define PROMO_RANK 2
-#define STD_RANK 3
-#define PBOOL_RANK 4
-#define USER_RANK 5
-#define ELLIPSIS_RANK 6
-#define BAD_RANK 7
-
-#define ICS_RANK(NODE)                         \
-  (ICS_BAD_FLAG (NODE) ? BAD_RANK              \
-   : ICS_ELLIPSIS_FLAG (NODE) ? ELLIPSIS_RANK  \
-   : ICS_USER_FLAG (NODE) ? USER_RANK          \
-   : ICS_STD_RANK (NODE))
-
-#define ICS_STD_RANK(NODE) TREE_COMPLEXITY (NODE)
-
-#define ICS_USER_FLAG(NODE) TREE_LANG_FLAG_0 (NODE)
-#define ICS_ELLIPSIS_FLAG(NODE) TREE_LANG_FLAG_1 (NODE)
-#define ICS_THIS_FLAG(NODE) TREE_LANG_FLAG_2 (NODE)
-#define ICS_BAD_FLAG(NODE) TREE_LANG_FLAG_3 (NODE)
-
-/* In a REF_BIND or a BASE_CONV, this indicates that a temporary
-   should be created to hold the result of the conversion.  */
-#define NEED_TEMPORARY_P(NODE) TREE_LANG_FLAG_4 (NODE)
-
-#define USER_CONV_CAND(NODE) \
-  ((struct z_candidate *)WRAPPER_PTR (TREE_OPERAND (NODE, 1)))
-#define USER_CONV_FN(NODE) (USER_CONV_CAND (NODE)->fn)
-
-int
-null_ptr_cst_p (t)
-     tree t;
+void
+validate_conversion_obstack (void)
 {
-  /* [conv.ptr]
-
-     A null pointer constant is an integral constant expression
-     (_expr.const_) rvalue of integer type that evaluates to zero.  */
-  if (t == null_node
-      || (CP_INTEGRAL_TYPE_P (TREE_TYPE (t)) && integer_zerop (t)))
-    return 1;
-  return 0;
+  if (conversion_obstack_initialized)
+    gcc_assert ((obstack_next_free (&conversion_obstack)
+                == obstack_base (&conversion_obstack)));
 }
 
+#endif /* ENABLE_CHECKING */
 
-/* Returns non-zero if PARMLIST consists of only default parms and/or
-   ellipsis. */
+/* Dynamically allocate an array of N conversions.  */
 
-int
-sufficient_parms_p (parmlist)
-     tree parmlist;
+static conversion **
+alloc_conversions (size_t n)
 {
-  for (; parmlist && parmlist != void_list_node;
-       parmlist = TREE_CHAIN (parmlist))
-    if (!TREE_PURPOSE (parmlist))
-      return 0;
-  return 1;
+  return (conversion **) conversion_obstack_alloc (n * sizeof (conversion *));
 }
 
-static tree
-build_conv (code, type, from)
-     enum tree_code code;
-     tree type, from;
+static conversion *
+build_conv (conversion_kind code, tree type, conversion *from)
 {
-  tree t;
-  int rank = ICS_STD_RANK (from);
+  conversion *t;
+  conversion_rank rank = CONVERSION_RANK (from);
 
-  /* We can't use buildl1 here because CODE could be USER_CONV, which
-     takes two arguments.  In that case, the caller is responsible for
-     filling in the second argument.  */
-  t = make_node (code);
-  TREE_TYPE (t) = type;
-  TREE_OPERAND (t, 0) = from;
+  /* Note that the caller is responsible for filling in t->cand for
+     user-defined conversions.  */
+  t = alloc_conversion (code);
+  t->type = type;
+  t->u.next = from;
 
   switch (code)
     {
-    case PTR_CONV:
-    case PMEM_CONV:
-    case BASE_CONV:
-    case STD_CONV:
-      if (rank < STD_RANK)
-       rank = STD_RANK;
+    case ck_ptr:
+    case ck_pmem:
+    case ck_base:
+    case ck_std:
+      if (rank < cr_std)
+       rank = cr_std;
       break;
 
-    case QUAL_CONV:
-      if (rank < EXACT_RANK)
-       rank = EXACT_RANK;
+    case ck_qual:
+      if (rank < cr_exact)
+       rank = cr_exact;
+      break;
 
     default:
       break;
     }
-  ICS_STD_RANK (t) = rank;
-  ICS_USER_FLAG (t) = ICS_USER_FLAG (from);
-  ICS_BAD_FLAG (t) = ICS_BAD_FLAG (from);
+  t->rank = rank;
+  t->user_conv_p = (code == ck_user || from->user_conv_p);
+  t->bad_p = from->bad_p;
+  t->base_p = false;
   return t;
 }
 
-/* If T is a REFERENCE_TYPE return the type to which T refers.
-   Otherwise, return T itself.  */
+/* Represent a conversion from CTOR, a braced-init-list, to TYPE, a
+   specialization of std::initializer_list<T>, if such a conversion is
+   possible.  */
 
-static tree
-non_reference (t)
-     tree t;
+static conversion *
+build_list_conv (tree type, tree ctor, int flags)
 {
-  if (TREE_CODE (t) == REFERENCE_TYPE)
-    t = TREE_TYPE (t);
+  tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (type), 0);
+  unsigned len = CONSTRUCTOR_NELTS (ctor);
+  conversion **subconvs = alloc_conversions (len);
+  conversion *t;
+  unsigned i;
+  tree val;
+
+  FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val)
+    {
+      conversion *sub
+       = implicit_conversion (elttype, TREE_TYPE (val), val,
+                              false, flags);
+      if (sub == NULL)
+       return NULL;
+
+      subconvs[i] = sub;
+    }
+
+  t = alloc_conversion (ck_list);
+  t->type = type;
+  t->u.list = subconvs;
+  t->rank = cr_exact;
+
+  for (i = 0; i < len; ++i)
+    {
+      conversion *sub = subconvs[i];
+      if (sub->rank > t->rank)
+       t->rank = sub->rank;
+      if (sub->user_conv_p)
+       t->user_conv_p = true;
+      if (sub->bad_p)
+       t->bad_p = true;
+    }
+
   return t;
 }
 
+/* Represent a conversion from CTOR, a braced-init-list, to TYPE, an
+   aggregate class, if such a conversion is possible.  */
+
+static conversion *
+build_aggr_conv (tree type, tree ctor, int flags)
+{
+  unsigned HOST_WIDE_INT i = 0;
+  conversion *c;
+  tree field = TYPE_FIELDS (type);
+
+  for (; field; field = TREE_CHAIN (field), ++i)
+    {
+      if (TREE_CODE (field) != FIELD_DECL)
+       continue;
+      if (i < CONSTRUCTOR_NELTS (ctor))
+       {
+         constructor_elt *ce = CONSTRUCTOR_ELT (ctor, i);
+         if (!can_convert_arg (TREE_TYPE (field), TREE_TYPE (ce->value),
+                               ce->value, flags))
+           return NULL;
+       }
+      else if (build_value_init (TREE_TYPE (field)) == error_mark_node)
+       return NULL;
+    }
+
+  c = alloc_conversion (ck_aggr);
+  c->type = type;
+  c->rank = cr_exact;
+  c->user_conv_p = true;
+  c->u.next = NULL;
+  return c;
+}
+
+/* Build a representation of the identity conversion from EXPR to
+   itself.  The TYPE should match the type of EXPR, if EXPR is non-NULL.  */
+
+static conversion *
+build_identity_conv (tree type, tree expr)
+{
+  conversion *c;
+
+  c = alloc_conversion (ck_identity);
+  c->type = type;
+  c->u.expr = expr;
+
+  return c;
+}
+
+/* Converting from EXPR to TYPE was ambiguous in the sense that there
+   were multiple user-defined conversions to accomplish the job.
+   Build a conversion that indicates that ambiguity.  */
+
+static conversion *
+build_ambiguous_conv (tree type, tree expr)
+{
+  conversion *c;
+
+  c = alloc_conversion (ck_ambig);
+  c->type = type;
+  c->u.expr = expr;
+
+  return c;
+}
+
 tree
-strip_top_quals (t)
-     tree t;
+strip_top_quals (tree t)
 {
   if (TREE_CODE (t) == ARRAY_TYPE)
     return t;
-  return TYPE_MAIN_VARIANT (t);
+  return cp_build_qualified_type (t, 0);
 }
 
 /* Returns the standard conversion path (see [conv]) from type FROM to type
    TO, if any.  For proper handling of null pointer constants, you must
-   also pass the expression EXPR to convert from.  */
+   also pass the expression EXPR to convert from.  If C_CAST_P is true,
+   this conversion is coming from a C-style cast.  */
 
-static tree
-standard_conversion (to, from, expr)
-     tree to, from, expr;
+static conversion *
+standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
+                    int flags)
 {
   enum tree_code fcode, tcode;
-  tree conv;
-  int fromref = 0;
+  conversion *conv;
+  bool fromref = false;
 
-  if (TREE_CODE (to) == REFERENCE_TYPE)
-    to = TREE_TYPE (to);
+  to = non_reference (to);
   if (TREE_CODE (from) == REFERENCE_TYPE)
     {
-      fromref = 1;
+      fromref = true;
       from = TREE_TYPE (from);
     }
   to = strip_top_quals (to);
@@ -706,48 +706,56 @@ standard_conversion (to, from, expr)
   if ((TYPE_PTRFN_P (to) || TYPE_PTRMEMFUNC_P (to))
       && expr && type_unknown_p (expr))
     {
-      expr = instantiate_type (to, expr, tf_none);
+      tsubst_flags_t tflags = tf_conv;
+      if (!(flags & LOOKUP_PROTECT))
+       tflags |= tf_no_access_control;
+      expr = instantiate_type (to, expr, tflags);
       if (expr == error_mark_node)
-       return NULL_TREE;
+       return NULL;
       from = TREE_TYPE (expr);
     }
 
   fcode = TREE_CODE (from);
   tcode = TREE_CODE (to);
 
-  conv = build1 (IDENTITY_CONV, from, expr);
-
-  if (fcode == FUNCTION_TYPE)
+  conv = build_identity_conv (from, expr);
+  if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE)
     {
-      from = build_pointer_type (from);
+      from = type_decays_to (from);
       fcode = TREE_CODE (from);
-      conv = build_conv (LVALUE_CONV, from, conv);
+      conv = build_conv (ck_lvalue, from, conv);
     }
-  else if (fcode == ARRAY_TYPE)
+  else if (fromref || (expr && lvalue_p (expr)))
     {
-      from = build_pointer_type (TREE_TYPE (from));
-      fcode = TREE_CODE (from);
-      conv = build_conv (LVALUE_CONV, from, conv);
+      if (expr)
+       {
+         tree bitfield_type;
+         bitfield_type = is_bitfield_expr_with_lowered_type (expr);
+         if (bitfield_type)
+           {
+             from = strip_top_quals (bitfield_type);
+             fcode = TREE_CODE (from);
+           }
+       }
+      conv = build_conv (ck_rvalue, from, conv);
     }
-  else if (fromref || (expr && lvalue_p (expr)))
-    conv = build_conv (RVALUE_CONV, from, conv);
 
-   /* Allow conversion between `__complex__' data types  */
+   /* Allow conversion between `__complex__' data types.  */
   if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE)
     {
       /* The standard conversion sequence to convert FROM to TO is
-         the standard conversion sequence to perform componentwise
-         conversion.  */
-      tree part_conv = standard_conversion
-        (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE);
-      
+        the standard conversion sequence to perform componentwise
+        conversion.  */
+      conversion *part_conv = standard_conversion
+       (TREE_TYPE (to), TREE_TYPE (from), NULL_TREE, c_cast_p, flags);
+
       if (part_conv)
-        {
-          conv = build_conv (TREE_CODE (part_conv), to, conv);
-          ICS_STD_RANK (conv) = ICS_STD_RANK (part_conv);
-        }
+       {
+         conv = build_conv (part_conv->kind, to, conv);
+         conv->rank = part_conv->rank;
+       }
       else
-        conv = NULL_TREE;
+       conv = NULL;
 
       return conv;
     }
@@ -755,85 +763,113 @@ standard_conversion (to, from, expr)
   if (same_type_p (from, to))
     return conv;
 
-  if ((tcode == POINTER_TYPE || TYPE_PTRMEMFUNC_P (to))
+  if ((tcode == POINTER_TYPE || TYPE_PTR_TO_MEMBER_P (to))
       && expr && null_ptr_cst_p (expr))
-    {
-      conv = build_conv (STD_CONV, to, conv);
-    }
+    conv = build_conv (ck_std, to, conv);
   else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE)
           || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE))
     {
       /* For backwards brain damage compatibility, allow interconversion of
         pointers and integers with a pedwarn.  */
-      conv = build_conv (STD_CONV, to, conv);
-      ICS_BAD_FLAG (conv) = 1;
+      conv = build_conv (ck_std, to, conv);
+      conv->bad_p = true;
     }
-  else if (tcode == ENUMERAL_TYPE && fcode == INTEGER_TYPE
-          && TYPE_PRECISION (to) == TYPE_PRECISION (from))
+  else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE)
     {
       /* For backwards brain damage compatibility, allow interconversion of
         enums and integers with a pedwarn.  */
-      conv = build_conv (STD_CONV, to, conv);
-      ICS_BAD_FLAG (conv) = 1;
+      conv = build_conv (ck_std, to, conv);
+      conv->bad_p = true;
     }
-  else if (tcode == POINTER_TYPE && fcode == POINTER_TYPE)
+  else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE)
+          || (TYPE_PTRMEM_P (to) && TYPE_PTRMEM_P (from)))
     {
-      enum tree_code ufcode = TREE_CODE (TREE_TYPE (from));
-      enum tree_code utcode = TREE_CODE (TREE_TYPE (to));
+      tree to_pointee;
+      tree from_pointee;
 
-      if (same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
-                                                    TREE_TYPE (to)))
+      if (tcode == POINTER_TYPE
+         && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (from),
+                                                       TREE_TYPE (to)))
        ;
-      else if (utcode == VOID_TYPE && ufcode != OFFSET_TYPE
-              && ufcode != FUNCTION_TYPE)
+      else if (VOID_TYPE_P (TREE_TYPE (to))
+              && !TYPE_PTRMEM_P (from)
+              && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
        {
          from = build_pointer_type
-           (cp_build_qualified_type (void_type_node, 
+           (cp_build_qualified_type (void_type_node,
                                      cp_type_quals (TREE_TYPE (from))));
-         conv = build_conv (PTR_CONV, from, conv);
+         conv = build_conv (ck_ptr, from, conv);
        }
-      else if (ufcode == OFFSET_TYPE && utcode == OFFSET_TYPE)
+      else if (TYPE_PTRMEM_P (from))
        {
-         tree fbase = TYPE_OFFSET_BASETYPE (TREE_TYPE (from));
-         tree tbase = TYPE_OFFSET_BASETYPE (TREE_TYPE (to));
+         tree fbase = TYPE_PTRMEM_CLASS_TYPE (from);
+         tree tbase = TYPE_PTRMEM_CLASS_TYPE (to);
 
          if (DERIVED_FROM_P (fbase, tbase)
              && (same_type_ignoring_top_level_qualifiers_p
-                 (TREE_TYPE (TREE_TYPE (from)),
-                  TREE_TYPE (TREE_TYPE (to)))))
+                 (TYPE_PTRMEM_POINTED_TO_TYPE (from),
+                  TYPE_PTRMEM_POINTED_TO_TYPE (to))))
            {
-             from = build_offset_type (tbase, TREE_TYPE (TREE_TYPE (from)));
-             from = build_pointer_type (from);
-             conv = build_conv (PMEM_CONV, from, conv);
+             from = build_ptrmem_type (tbase,
+                                       TYPE_PTRMEM_POINTED_TO_TYPE (from));
+             conv = build_conv (ck_pmem, from, conv);
            }
+         else if (!same_type_p (fbase, tbase))
+           return NULL;
        }
-      else if (IS_AGGR_TYPE (TREE_TYPE (from))
-              && IS_AGGR_TYPE (TREE_TYPE (to)))
+      else if (CLASS_TYPE_P (TREE_TYPE (from))
+              && CLASS_TYPE_P (TREE_TYPE (to))
+              /* [conv.ptr]
+
+                 An rvalue of type "pointer to cv D," where D is a
+                 class type, can be converted to an rvalue of type
+                 "pointer to cv B," where B is a base class (clause
+                 _class.derived_) of D.  If B is an inaccessible
+                 (clause _class.access_) or ambiguous
+                 (_class.member.lookup_) base class of D, a program
+                 that necessitates this conversion is ill-formed.
+                 Therefore, we use DERIVED_FROM_P, and do not check
+                 access or uniqueness.  */
+              && DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
        {
-         if (DERIVED_FROM_P (TREE_TYPE (to), TREE_TYPE (from)))
-           {
-             from = 
-               cp_build_qualified_type (TREE_TYPE (to),
-                                        cp_type_quals (TREE_TYPE (from)));
-             from = build_pointer_type (from);
-             conv = build_conv (PTR_CONV, from, conv);
-           }
+         from =
+           cp_build_qualified_type (TREE_TYPE (to),
+                                    cp_type_quals (TREE_TYPE (from)));
+         from = build_pointer_type (from);
+         conv = build_conv (ck_ptr, from, conv);
+         conv->base_p = true;
+       }
+
+      if (tcode == POINTER_TYPE)
+       {
+         to_pointee = TREE_TYPE (to);
+         from_pointee = TREE_TYPE (from);
+       }
+      else
+       {
+         to_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (to);
+         from_pointee = TYPE_PTRMEM_POINTED_TO_TYPE (from);
        }
 
       if (same_type_p (from, to))
        /* OK */;
-      else if (comp_ptr_ttypes (TREE_TYPE (to), TREE_TYPE (from)))
-       conv = build_conv (QUAL_CONV, to, conv);
+      else if (c_cast_p && comp_ptr_ttypes_const (to, from))
+       /* In a C-style cast, we ignore CV-qualification because we
+          are allowed to perform a static_cast followed by a
+          const_cast.  */
+       conv = build_conv (ck_qual, to, conv);
+      else if (!c_cast_p && comp_ptr_ttypes (to_pointee, from_pointee))
+       conv = build_conv (ck_qual, to, conv);
       else if (expr && string_conv_p (to, expr, 0))
        /* converting from string constant to char *.  */
-       conv = build_conv (QUAL_CONV, to, conv);
-      else if (ptr_reasonably_similar (TREE_TYPE (to), TREE_TYPE (from)))
+       conv = build_conv (ck_qual, to, conv);
+      else if (ptr_reasonably_similar (to_pointee, from_pointee))
        {
-         conv = build_conv (PTR_CONV, to, conv);
-         ICS_BAD_FLAG (conv) = 1;
+         conv = build_conv (ck_ptr, to, conv);
+         conv->bad_p = true;
        }
       else
-       return 0;
+       return NULL;
 
       from = to;
     }
@@ -849,63 +885,79 @@ standard_conversion (to, from, expr)
          || !compparms (TREE_CHAIN (TYPE_ARG_TYPES (fromfn)),
                         TREE_CHAIN (TYPE_ARG_TYPES (tofn)))
          || cp_type_quals (fbase) != cp_type_quals (tbase))
-       return 0;
+       return NULL;
 
-      from = cp_build_qualified_type (tbase, cp_type_quals (fbase));
-      from = build_cplus_method_type (from, TREE_TYPE (fromfn),
-                                     TREE_CHAIN (TYPE_ARG_TYPES (fromfn)));
+      from = build_memfn_type (fromfn, tbase, cp_type_quals (tbase));
       from = build_ptrmemfunc_type (build_pointer_type (from));
-      conv = build_conv (PMEM_CONV, from, conv);
+      conv = build_conv (ck_pmem, from, conv);
+      conv->base_p = true;
     }
   else if (tcode == BOOLEAN_TYPE)
     {
-      if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE
-            || fcode == POINTER_TYPE || TYPE_PTRMEMFUNC_P (from)))
-       return 0;
+      /* [conv.bool]
+
+         An rvalue of arithmetic, unscoped enumeration, pointer, or
+         pointer to member type can be converted to an rvalue of type
+         bool.  */
+      if (ARITHMETIC_TYPE_P (from)
+         || UNSCOPED_ENUM_P (from)
+         || fcode == POINTER_TYPE
+         || TYPE_PTR_TO_MEMBER_P (from))
+       {
+         conv = build_conv (ck_std, to, conv);
+         if (fcode == POINTER_TYPE
+             || TYPE_PTRMEM_P (from)
+             || (TYPE_PTRMEMFUNC_P (from)
+                 && conv->rank < cr_pbool))
+           conv->rank = cr_pbool;
+         return conv;
+       }
 
-      conv = build_conv (STD_CONV, to, conv);
-      if (fcode == POINTER_TYPE
-         || (TYPE_PTRMEMFUNC_P (from) && ICS_STD_RANK (conv) < PBOOL_RANK))
-       ICS_STD_RANK (conv) = PBOOL_RANK;
+      return NULL;
     }
   /* We don't check for ENUMERAL_TYPE here because there are no standard
      conversions to enum type.  */
-  else if (tcode == INTEGER_TYPE || tcode == BOOLEAN_TYPE
-          || tcode == REAL_TYPE)
+  /* As an extension, allow conversion to complex type.  */
+  else if (ARITHMETIC_TYPE_P (to))
     {
-      if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE))
-       return 0;
-      conv = build_conv (STD_CONV, to, conv);
+      if (! (INTEGRAL_CODE_P (fcode) || fcode == REAL_TYPE)
+          || SCOPED_ENUM_P (from))
+       return NULL;
+      conv = build_conv (ck_std, to, conv);
 
       /* Give this a better rank if it's a promotion.  */
-      if (to == type_promotes_to (from)
-         && ICS_STD_RANK (TREE_OPERAND (conv, 0)) <= PROMO_RANK)
-       ICS_STD_RANK (conv) = PROMO_RANK;
-    }
-  else if (IS_AGGR_TYPE (to) && IS_AGGR_TYPE (from)
+      if (same_type_p (to, type_promotes_to (from))
+         && conv->u.next->rank <= cr_promotion)
+       conv->rank = cr_promotion;
+    }
+  else if (fcode == VECTOR_TYPE && tcode == VECTOR_TYPE
+          && vector_types_convertible_p (from, to, false))
+    return build_conv (ck_std, to, conv);
+  else if (MAYBE_CLASS_TYPE_P (to) && MAYBE_CLASS_TYPE_P (from)
           && is_properly_derived_from (from, to))
     {
-      if (TREE_CODE (conv) == RVALUE_CONV)
-       conv = TREE_OPERAND (conv, 0);
-      conv = build_conv (BASE_CONV, to, conv);
+      if (conv->kind == ck_rvalue)
+       conv = conv->u.next;
+      conv = build_conv (ck_base, to, conv);
       /* The derived-to-base conversion indicates the initialization
         of a parameter with base type from an object of a derived
         type.  A temporary object is created to hold the result of
-        the conversion.  */
-      NEED_TEMPORARY_P (conv) = 1;
+        the conversion unless we're binding directly to a reference.  */
+      conv->need_temporary_p = !(flags & LOOKUP_NO_TEMP_BIND);
     }
   else
-    return 0;
+    return NULL;
+
+  if (flags & LOOKUP_NO_NARROWING)
+    conv->check_narrowing = true;
 
   return conv;
 }
 
-/* Returns non-zero if T1 is reference-related to T2.  */
+/* Returns nonzero if T1 is reference-related to T2.  */
 
-static int
-reference_related_p (t1, t2)
-     tree t1;
-     tree t2;
+static bool
+reference_related_p (tree t1, tree t2)
 {
   t1 = TYPE_MAIN_VARIANT (t1);
   t2 = TYPE_MAIN_VARIANT (t2);
@@ -920,12 +972,10 @@ reference_related_p (t1, t2)
              && DERIVED_FROM_P (t1, t2)));
 }
 
-/* Returns non-zero if T1 is reference-compatible with T2.  */
+/* Returns nonzero if T1 is reference-compatible with T2.  */
 
-static int
-reference_compatible_p (t1, t2)
-     tree t1;
-     tree t2;
+static bool
+reference_compatible_p (tree t1, tree t2)
 {
   /* [dcl.init.ref]
 
@@ -939,17 +989,20 @@ reference_compatible_p (t1, t2)
 /* Determine whether or not the EXPR (of class type S) can be
    converted to T as in [over.match.ref].  */
 
-static tree
-convert_class_to_reference (t, s, expr)
-     tree t;
-     tree s;
-     tree expr;
+static conversion *
+convert_class_to_reference (tree reference_type, tree s, tree expr)
 {
   tree conversions;
   tree arglist;
-  tree conv;
+  conversion *conv;
+  tree t;
   struct z_candidate *candidates;
   struct z_candidate *cand;
+  bool any_viable_p;
+
+  conversions = lookup_conversions (s);
+  if (!conversions)
+    return NULL;
 
   /* [over.match.ref]
 
@@ -973,13 +1026,12 @@ convert_class_to_reference (t, s, expr)
      error messages, which we should not issue now because we are just
      trying to find a conversion operator.  Therefore, we use NULL,
      cast to the appropriate type.  */
-  arglist = build_int_2 (0, 0);
-  TREE_TYPE (arglist) = build_pointer_type (s);
+  arglist = build_int_cst (build_pointer_type (s), 0);
   arglist = build_tree_list (NULL_TREE, arglist);
-  
-  for (conversions = lookup_conversions (s);
-       conversions;
-       conversions = TREE_CHAIN (conversions))
+
+  t = TREE_TYPE (reference_type);
+
+  while (conversions)
     {
       tree fns = TREE_VALUE (conversions);
 
@@ -987,87 +1039,124 @@ convert_class_to_reference (t, s, expr)
        {
          tree f = OVL_CURRENT (fns);
          tree t2 = TREE_TYPE (TREE_TYPE (f));
-         struct z_candidate *old_candidates = candidates;
+
+         cand = NULL;
 
          /* If this is a template function, try to get an exact
-             match.  */
+            match.  */
          if (TREE_CODE (f) == TEMPLATE_DECL)
            {
-             candidates 
-               = add_template_candidate (candidates,
-                                         f, s,
-                                         NULL_TREE,
-                                         arglist,
-                                         build_reference_type (t),
-                                         LOOKUP_NORMAL,
-                                         DEDUCE_CONV);
-             
-             if (candidates != old_candidates)
+             cand = add_template_candidate (&candidates,
+                                            f, s,
+                                            NULL_TREE,
+                                            arglist,
+                                            reference_type,
+                                            TYPE_BINFO (s),
+                                            TREE_PURPOSE (conversions),
+                                            LOOKUP_NORMAL,
+                                            DEDUCE_CONV);
+
+             if (cand)
                {
                  /* Now, see if the conversion function really returns
                     an lvalue of the appropriate type.  From the
                     point of view of unification, simply returning an
                     rvalue of the right type is good enough.  */
-                 f = candidates->fn;
+                 f = cand->fn;
                  t2 = TREE_TYPE (TREE_TYPE (f));
                  if (TREE_CODE (t2) != REFERENCE_TYPE
                      || !reference_compatible_p (t, TREE_TYPE (t2)))
-                   candidates = candidates->next;
+                   {
+                     candidates = candidates->next;
+                     cand = NULL;
+                   }
                }
            }
          else if (TREE_CODE (t2) == REFERENCE_TYPE
                   && reference_compatible_p (t, TREE_TYPE (t2)))
-           candidates 
-             = add_function_candidate (candidates, f, s, arglist, 
-                                       LOOKUP_NORMAL);
+           cand = add_function_candidate (&candidates, f, s, arglist,
+                                          TYPE_BINFO (s),
+                                          TREE_PURPOSE (conversions),
+                                          LOOKUP_NORMAL);
 
-         if (candidates != old_candidates)
-           candidates->basetype_path = TYPE_BINFO (s);
+         if (cand)
+           {
+             conversion *identity_conv;
+             /* Build a standard conversion sequence indicating the
+                binding from the reference type returned by the
+                function to the desired REFERENCE_TYPE.  */
+             identity_conv
+               = build_identity_conv (TREE_TYPE (TREE_TYPE
+                                                 (TREE_TYPE (cand->fn))),
+                                      NULL_TREE);
+             cand->second_conv
+               = (direct_reference_binding
+                  (reference_type, identity_conv));
+             cand->second_conv->rvaluedness_matches_p
+               = TYPE_REF_IS_RVALUE (TREE_TYPE (TREE_TYPE (cand->fn)))
+                 == TYPE_REF_IS_RVALUE (reference_type);
+             cand->second_conv->bad_p |= cand->convs[0]->bad_p;
+           }
        }
+      conversions = TREE_CHAIN (conversions);
     }
 
+  candidates = splice_viable (candidates, pedantic, &any_viable_p);
   /* If none of the conversion functions worked out, let our caller
      know.  */
-  if (!any_viable (candidates))
-    return NULL_TREE;
-  
-  candidates = splice_viable (candidates);
+  if (!any_viable_p)
+    return NULL;
+
   cand = tourney (candidates);
   if (!cand)
-    return NULL_TREE;
+    return NULL;
+
+  /* Now that we know that this is the function we're going to use fix
+     the dummy first argument.  */
+  cand->args = tree_cons (NULL_TREE,
+                         build_this (expr),
+                         TREE_CHAIN (cand->args));
+
+  /* Build a user-defined conversion sequence representing the
+     conversion.  */
+  conv = build_conv (ck_user,
+                    TREE_TYPE (TREE_TYPE (cand->fn)),
+                    build_identity_conv (TREE_TYPE (expr), expr));
+  conv->cand = cand;
+
+  /* Merge it with the standard conversion sequence from the
+     conversion function's return type to the desired type.  */
+  cand->second_conv = merge_conversion_sequences (conv, cand->second_conv);
 
-  conv = build1 (IDENTITY_CONV, s, expr);
-  conv = build_conv (USER_CONV, TREE_TYPE (TREE_TYPE (cand->fn)),
-                    conv);
-  TREE_OPERAND (conv, 1) = build_ptr_wrapper (cand);
-  ICS_USER_FLAG (conv) = 1;
   if (cand->viable == -1)
-    ICS_BAD_FLAG (conv) = 1;
-  cand->second_conv = conv;
+    conv->bad_p = true;
 
-  return conv;
+  return cand->second_conv;
 }
 
 /* A reference of the indicated TYPE is being bound directly to the
    expression represented by the implicit conversion sequence CONV.
    Return a conversion sequence for this binding.  */
 
-static tree
-direct_reference_binding (type, conv)
-     tree type;
-     tree conv;
+static conversion *
+direct_reference_binding (tree type, conversion *conv)
 {
-  tree t = TREE_TYPE (type);
+  tree t;
+
+  gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
+  gcc_assert (TREE_CODE (conv->type) != REFERENCE_TYPE);
+
+  t = TREE_TYPE (type);
+
+  /* [over.ics.rank]
 
-  /* [over.ics.rank] 
-     
      When a parameter of reference type binds directly
      (_dcl.init.ref_) to an argument expression, the implicit
      conversion sequence is the identity conversion, unless the
      argument expression has a type that is a derived class of the
      parameter type, in which case the implicit conversion sequence is
      a derived-to-base Conversion.
-        
+
      If the parameter binds directly to the result of applying a
      conversion function to the argument expression, the implicit
      conversion sequence is a user-defined conversion sequence
@@ -1075,41 +1164,41 @@ direct_reference_binding (type, conv)
      either an identity conversion or, if the conversion function
      returns an entity of a type that is a derived class of the
      parameter type, a derived-to-base conversion.  */
-  if (!same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (conv)))
+  if (!same_type_ignoring_top_level_qualifiers_p (t, conv->type))
     {
       /* Represent the derived-to-base conversion.  */
-      conv = build_conv (BASE_CONV, t, conv);
+      conv = build_conv (ck_base, t, conv);
       /* We will actually be binding to the base-class subobject in
         the derived class, so we mark this conversion appropriately.
         That way, convert_like knows not to generate a temporary.  */
-      NEED_TEMPORARY_P (conv) = 0;
+      conv->need_temporary_p = false;
     }
-  return build_conv (REF_BIND, type, conv);
+  return build_conv (ck_ref_bind, type, conv);
 }
 
 /* Returns the conversion path from type FROM to reference type TO for
    purposes of reference binding.  For lvalue binding, either pass a
    reference type to FROM or an lvalue expression to EXPR.  If the
    reference will be bound to a temporary, NEED_TEMPORARY_P is set for
-   the conversion returned.  */
+   the conversion returned.  If C_CAST_P is true, this
+   conversion is coming from a C-style cast.  */
 
-static tree
-reference_binding (rto, rfrom, expr, flags)
-     tree rto, rfrom, expr;
-     int flags;
+static conversion *
+reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags)
 {
-  tree conv = NULL_TREE;
+  conversion *conv = NULL;
   tree to = TREE_TYPE (rto);
   tree from = rfrom;
-  int related_p;
-  int compatible_p;
+  tree tfrom;
+  bool related_p;
+  bool compatible_p;
   cp_lvalue_kind lvalue_p = clk_none;
 
   if (TREE_CODE (to) == FUNCTION_TYPE && expr && type_unknown_p (expr))
     {
       expr = instantiate_type (to, expr, tf_none);
       if (expr == error_mark_node)
-       return NULL_TREE;
+       return NULL;
       from = TREE_TYPE (expr);
     }
 
@@ -1119,32 +1208,81 @@ reference_binding (rto, rfrom, expr, flags)
       lvalue_p = clk_ordinary;
       from = TREE_TYPE (from);
     }
-  else if (expr)
+
+  if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
+    {
+      maybe_warn_cpp0x ("extended initializer lists");
+      conv = implicit_conversion (to, from, expr, c_cast_p,
+                                 flags);
+      if (!CLASS_TYPE_P (to)
+         && CONSTRUCTOR_NELTS (expr) == 1)
+       {
+         expr = CONSTRUCTOR_ELT (expr, 0)->value;
+         if (error_operand_p (expr))
+           return NULL;
+         from = TREE_TYPE (expr);
+       }
+    }
+
+  if (lvalue_p == clk_none && expr)
     lvalue_p = real_lvalue_p (expr);
 
+  tfrom = from;
+  if ((lvalue_p & clk_bitfield) != 0)
+    tfrom = unlowered_expr_type (expr);
+
   /* Figure out whether or not the types are reference-related and
      reference compatible.  We have do do this after stripping
      references from FROM.  */
-  related_p = reference_related_p (to, from);
-  compatible_p = reference_compatible_p (to, from);
-
-  if (lvalue_p && compatible_p)
+  related_p = reference_related_p (to, tfrom);
+  /* If this is a C cast, first convert to an appropriately qualified
+     type, so that we can later do a const_cast to the desired type.  */
+  if (related_p && c_cast_p
+      && !at_least_as_qualified_p (to, tfrom))
+    to = build_qualified_type (to, cp_type_quals (tfrom));
+  compatible_p = reference_compatible_p (to, tfrom);
+
+  /* Directly bind reference when target expression's type is compatible with
+     the reference and expression is an lvalue. In DR391, the wording in
+     [8.5.3/5 dcl.init.ref] is changed to also require direct bindings for
+     const and rvalue references to rvalues of compatible class type. */
+  if (compatible_p
+      && (lvalue_p
+         || (!(flags & LOOKUP_NO_TEMP_BIND)
+             && (CP_TYPE_CONST_NON_VOLATILE_P(to) || TYPE_REF_IS_RVALUE (rto))
+             && CLASS_TYPE_P (from))))
     {
       /* [dcl.init.ref]
 
-        If the initializer expression 
-        
+        If the initializer expression
+
         -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
            is reference-compatible with "cv2 T2,"
-        
-        the reference is bound directly to the initializer exprssion
-        lvalue.  */
-      conv = build1 (IDENTITY_CONV, from, expr);
+
+        the reference is bound directly to the initializer expression
+        lvalue.
+
+        [...]
+        If the initializer expression is an rvalue, with T2 a class type,
+        and "cv1 T1" is reference-compatible with "cv2 T2", the reference
+        is bound to the object represented by the rvalue or to a sub-object
+        within that object.  */
+
+      conv = build_identity_conv (tfrom, expr);
       conv = direct_reference_binding (rto, conv);
-      if ((lvalue_p & clk_bitfield) != 0 
-         && CP_TYPE_CONST_NON_VOLATILE_P (to))
+
+      if (flags & LOOKUP_PREFER_RVALUE)
+       /* The top-level caller requested that we pretend that the lvalue
+          be treated as an rvalue.  */
+       conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
+      else
+       conv->rvaluedness_matches_p 
+          = (TYPE_REF_IS_RVALUE (rto) == !lvalue_p);
+
+      if ((lvalue_p & clk_bitfield) != 0
+         || ((lvalue_p & clk_packed) != 0 && !TYPE_PACKED (to)))
        /* For the purposes of overload resolution, we ignore the fact
-          this expression is a bitfield. (In particular,
+          this expression is a bitfield or packed field. (In particular,
           [over.ics.ref] says specifically that a function with a
           non-const reference parameter is viable even if the
           argument is a bitfield.)
@@ -1154,36 +1292,42 @@ reference_binding (rto, rfrom, expr, flags)
           reference is volatile, or isn't const, then we cannot make
           a temporary, so we just issue an error when the conversion
           actually occurs.  */
-       NEED_TEMPORARY_P (conv) = 1;
+       conv->need_temporary_p = true;
+
       return conv;
     }
-  else if (CLASS_TYPE_P (from) && !(flags & LOOKUP_NO_CONVERSION))
+  /* [class.conv.fct] A conversion function is never used to convert a
+     (possibly cv-qualified) object to the (possibly cv-qualified) same
+     object type (or a reference to it), to a (possibly cv-qualified) base
+     class of that type (or a reference to it).... */
+  else if (CLASS_TYPE_P (from) && !related_p
+          && !(flags & LOOKUP_NO_CONVERSION))
     {
       /* [dcl.init.ref]
 
-        If the initializer exprsesion
+        If the initializer expression
 
         -- has a class type (i.e., T2 is a class type) can be
            implicitly converted to an lvalue of type "cv3 T3," where
            "cv1 T1" is reference-compatible with "cv3 T3".  (this
            conversion is selected by enumerating the applicable
            conversion functions (_over.match.ref_) and choosing the
-           best one through overload resolution.  (_over.match_). 
+           best one through overload resolution.  (_over.match_).
 
-        the reference is bound to the lvalue result of the conversion
+       the reference is bound to the lvalue result of the conversion
        in the second case.  */
-      conv = convert_class_to_reference (to, from, expr);
+      conv = convert_class_to_reference (rto, from, expr);
       if (conv)
-       return direct_reference_binding (rto, conv);
+       return conv;
     }
 
   /* From this point on, we conceptually need temporaries, even if we
      elide them.  Only the cases above are "direct bindings".  */
   if (flags & LOOKUP_NO_TEMP_BIND)
-    return NULL_TREE;
+    return NULL;
 
   /* [over.ics.rank]
-     
+
      When a parameter of reference type is not bound directly to an
      argument expression, the conversion sequence is the one required
      to convert the argument expression to the underlying type of the
@@ -1195,29 +1339,11 @@ reference_binding (rto, rfrom, expr, flags)
 
   /* [dcl.init.ref]
 
-     Otherwise, the reference shall be to a non-volatile const type.  */
-  if (!CP_TYPE_CONST_NON_VOLATILE_P (to))
-    return NULL_TREE;
+     Otherwise, the reference shall be to a non-volatile const type.
 
-  /* [dcl.init.ref]
-     
-     If the initializer expression is an rvalue, with T2 a class type,
-     and "cv1 T1" is reference-compatible with "cv2 T2", the reference
-     is bound in one of the following ways:
-     
-     -- The reference is bound to the object represented by the rvalue
-        or to a sub-object within that object.  
-
-     In this case, the implicit conversion sequence is supposed to be
-     same as we would obtain by generating a temporary.  Fortunately,
-     if the types are reference compatible, then this is either an
-     identity conversion or the derived-to-base conversion, just as
-     for direct binding.  */
-  if (CLASS_TYPE_P (from) && compatible_p)
-    {
-      conv = build1 (IDENTITY_CONV, from, expr);
-      return direct_reference_binding (rto, conv);
-    }
+     Under C++0x, [8.5.3/5 dcl.init.ref] it may also be an rvalue reference */
+  if (!CP_TYPE_CONST_NON_VOLATILE_P (to) && !TYPE_REF_IS_RVALUE (rto))
+    return NULL;
 
   /* [dcl.init.ref]
 
@@ -1227,86 +1353,132 @@ reference_binding (rto, rfrom, expr, flags)
      T2, cv1 must be the same cv-qualification as, or greater
      cv-qualification than, cv2; otherwise, the program is ill-formed.  */
   if (related_p && !at_least_as_qualified_p (to, from))
-    return NULL_TREE;
+    return NULL;
 
-  conv = implicit_conversion (to, from, expr, flags);
+  /* We're generating a temporary now, but don't bind any more in the
+     conversion (specifically, don't slice the temporary returned by a
+     conversion operator).  */
+  flags |= LOOKUP_NO_TEMP_BIND;
+
+  if (!conv)
+    conv = implicit_conversion (to, from, expr, c_cast_p,
+                               flags);
   if (!conv)
-    return NULL_TREE;
+    return NULL;
 
-  conv = build_conv (REF_BIND, rto, conv);
+  conv = build_conv (ck_ref_bind, rto, conv);
   /* This reference binding, unlike those above, requires the
      creation of a temporary.  */
-  NEED_TEMPORARY_P (conv) = 1;
+  conv->need_temporary_p = true;
+  conv->rvaluedness_matches_p = TYPE_REF_IS_RVALUE (rto);
 
   return conv;
 }
 
-/* Returns the implicit conversion sequence (see [over.ics]) from type FROM
-   to type TO.  The optional expression EXPR may affect the conversion.
-   FLAGS are the usual overloading flags.  Only LOOKUP_NO_CONVERSION is
-   significant.  */
+/* Returns the implicit conversion sequence (see [over.ics]) from type
+   FROM to type TO.  The optional expression EXPR may affect the
+   conversion.  FLAGS are the usual overloading flags.  If C_CAST_P is
+   true, this conversion is coming from a C-style cast.  */
 
-static tree
-implicit_conversion (to, from, expr, flags)
-     tree to, from, expr;
-     int flags;
+static conversion *
+implicit_conversion (tree to, tree from, tree expr, bool c_cast_p,
+                    int flags)
 {
-  tree conv;
-  struct z_candidate *cand;
-
-  /* Resolve expressions like `A::p' that we thought might become
-     pointers-to-members.  */
-  if (expr && TREE_CODE (expr) == OFFSET_REF)
-    {
-      expr = resolve_offset_ref (expr);
-      from = TREE_TYPE (expr);
-    }
+  conversion *conv;
 
   if (from == error_mark_node || to == error_mark_node
       || expr == error_mark_node)
-    return NULL_TREE;
+    return NULL;
 
   if (TREE_CODE (to) == REFERENCE_TYPE)
-    conv = reference_binding (to, from, expr, flags);
+    conv = reference_binding (to, from, expr, c_cast_p, flags);
   else
-    conv = standard_conversion (to, from, expr);
+    conv = standard_conversion (to, from, expr, c_cast_p, flags);
 
   if (conv)
-    ;
-  else if (expr != NULL_TREE
-          && (IS_AGGR_TYPE (from)
-              || IS_AGGR_TYPE (to))
-          && (flags & LOOKUP_NO_CONVERSION) == 0)
+    return conv;
+
+  if (expr && BRACE_ENCLOSED_INITIALIZER_P (expr))
+    {
+      if (is_std_init_list (to))
+       return build_list_conv (to, expr, flags);
+
+      /* Allow conversion from an initializer-list with one element to a
+        scalar type.  */
+      if (SCALAR_TYPE_P (to))
+       {
+         int nelts = CONSTRUCTOR_NELTS (expr);
+         tree elt;
+
+         if (nelts == 0)
+           elt = integer_zero_node;
+         else if (nelts == 1)
+           elt = CONSTRUCTOR_ELT (expr, 0)->value;
+         else
+           elt = error_mark_node;
+
+         conv = implicit_conversion (to, TREE_TYPE (elt), elt,
+                                     c_cast_p, flags);
+         if (conv)
+           {
+             conv->check_narrowing = true;
+             if (BRACE_ENCLOSED_INITIALIZER_P (elt))
+               /* Too many levels of braces, i.e. '{{1}}'.  */
+               conv->bad_p = true;
+             return conv;
+           }
+       }
+    }
+
+  if (expr != NULL_TREE
+      && (MAYBE_CLASS_TYPE_P (from)
+         || MAYBE_CLASS_TYPE_P (to))
+      && (flags & LOOKUP_NO_CONVERSION) == 0)
     {
-      cand = build_user_type_conversion_1
-       (to, expr, LOOKUP_ONLYCONVERTING);
+      struct z_candidate *cand;
+      int convflags = ((flags & LOOKUP_NO_TEMP_BIND)
+                      |LOOKUP_ONLYCONVERTING);
+
+      if (CLASS_TYPE_P (to)
+         && !CLASSTYPE_NON_AGGREGATE (complete_type (to))
+         && BRACE_ENCLOSED_INITIALIZER_P (expr))
+       return build_aggr_conv (to, expr, flags);
+
+      cand = build_user_type_conversion_1 (to, expr, convflags);
       if (cand)
        conv = cand->second_conv;
 
       /* We used to try to bind a reference to a temporary here, but that
-        is now handled by the recursive call to this function at the end
+        is now handled after the recursive call to this function at the end
         of reference_binding.  */
+      return conv;
     }
 
-  return conv;
+  return NULL;
 }
 
 /* Add a new entry to the list of candidates.  Used by the add_*_candidate
    functions.  */
 
 static struct z_candidate *
-add_candidate (candidates, fn, convs, viable)
-     struct z_candidate *candidates;
-     tree fn, convs;
-     int viable;
+add_candidate (struct z_candidate **candidates,
+              tree fn, tree args,
+              size_t num_convs, conversion **convs,
+              tree access_path, tree conversion_path,
+              int viable)
 {
-  struct z_candidate *cand
-    = (struct z_candidate *) ggc_alloc_cleared (sizeof (struct z_candidate));
+  struct z_candidate *cand = (struct z_candidate *)
+    conversion_obstack_alloc (sizeof (struct z_candidate));
 
   cand->fn = fn;
+  cand->args = args;
   cand->convs = convs;
+  cand->num_convs = num_convs;
+  cand->access_path = access_path;
+  cand->conversion_path = conversion_path;
   cand->viable = viable;
-  cand->next = candidates;
+  cand->next = *candidates;
+  *candidates = cand;
 
   return cand;
 }
@@ -1319,27 +1491,36 @@ add_candidate (candidates, fn, convs, viable)
    comes from for purposes of overload resolution.  */
 
 static struct z_candidate *
-add_function_candidate (candidates, fn, ctype, arglist, flags)
-     struct z_candidate *candidates;
-     tree fn, ctype, arglist;
-     int flags;
+add_function_candidate (struct z_candidate **candidates,
+                       tree fn, tree ctype, tree arglist,
+                       tree access_path, tree conversion_path,
+                       int flags)
 {
   tree parmlist = TYPE_ARG_TYPES (TREE_TYPE (fn));
   int i, len;
-  tree convs;
+  conversion **convs;
   tree parmnode, argnode;
+  tree orig_arglist;
   int viable = 1;
 
+  /* At this point we should not see any functions which haven't been
+     explicitly declared, except for friend functions which will have
+     been found using argument dependent lookup.  */
+  gcc_assert (!DECL_ANTICIPATED (fn) || DECL_HIDDEN_FRIEND_P (fn));
+
   /* The `this', `in_chrg' and VTT arguments to constructors are not
      considered in overload resolution.  */
   if (DECL_CONSTRUCTOR_P (fn))
     {
       parmlist = skip_artificial_parms_for (fn, parmlist);
+      orig_arglist = arglist;
       arglist = skip_artificial_parms_for (fn, arglist);
     }
+  else
+    orig_arglist = arglist;
 
   len = list_length (arglist);
-  convs = make_tree_vec (len);
+  convs = alloc_conversions (len);
 
   /* 13.3.2 - Viable functions [over.match.viable]
      First, to be a viable function, a candidate function shall have enough
@@ -1377,7 +1558,7 @@ add_function_candidate (candidates, fn, ctype, arglist, flags)
     {
       tree arg = TREE_VALUE (argnode);
       tree argtype = lvalue_type (arg);
-      tree t;
+      conversion *t;
       int is_this;
 
       if (parmnode == void_list_node)
@@ -1389,6 +1570,7 @@ add_function_candidate (candidates, fn, ctype, arglist, flags)
       if (parmnode)
        {
          tree parmtype = TREE_VALUE (parmnode);
+         int lflags = flags;
 
          /* The type of the implicit object parameter ('this') for
             overload resolution is not always the same as for the
@@ -1407,25 +1589,30 @@ add_function_candidate (candidates, fn, ctype, arglist, flags)
              parmtype = build_pointer_type (parmtype);
            }
 
-         t = implicit_conversion (parmtype, argtype, arg, flags);
+         if ((flags & LOOKUP_NO_COPY_CTOR_CONVERSION)
+             && ctype && i == 0 && DECL_COPY_CONSTRUCTOR_P (fn))
+           lflags |= LOOKUP_NO_CONVERSION;
+
+         t = implicit_conversion (parmtype, argtype, arg,
+                                  /*c_cast_p=*/false, lflags);
        }
       else
        {
-         t = build1 (IDENTITY_CONV, argtype, arg);
-         ICS_ELLIPSIS_FLAG (t) = 1;
+         t = build_identity_conv (argtype, arg);
+         t->ellipsis_p = true;
        }
 
       if (t && is_this)
-       ICS_THIS_FLAG (t) = 1;
+       t->this_p = true;
 
-      TREE_VEC_ELT (convs, i) = t;
+      convs[i] = t;
       if (! t)
        {
          viable = 0;
          break;
        }
 
-      if (ICS_BAD_FLAG (t))
+      if (t->bad_p)
        viable = -1;
 
       if (parmnode)
@@ -1434,7 +1621,8 @@ add_function_candidate (candidates, fn, ctype, arglist, flags)
     }
 
  out:
-  return add_candidate (candidates, fn, convs, viable);
+  return add_candidate (candidates, fn, orig_arglist, len, convs,
+                       access_path, conversion_path, viable);
 }
 
 /* Create an overload candidate for the conversion function FN which will
@@ -1449,52 +1637,54 @@ add_function_candidate (candidates, fn, ctype, arglist, flags)
    instead of the function.  */
 
 static struct z_candidate *
-add_conv_candidate (candidates, fn, obj, arglist)
-     struct z_candidate *candidates;
-     tree fn, obj, arglist;
+add_conv_candidate (struct z_candidate **candidates, tree fn, tree obj,
+                   tree arglist, tree access_path, tree conversion_path)
 {
   tree totype = TREE_TYPE (TREE_TYPE (fn));
   int i, len, viable, flags;
-  tree parmlist, convs, parmnode, argnode;
+  tree parmlist, parmnode, argnode;
+  conversion **convs;
 
   for (parmlist = totype; TREE_CODE (parmlist) != FUNCTION_TYPE; )
     parmlist = TREE_TYPE (parmlist);
   parmlist = TYPE_ARG_TYPES (parmlist);
 
   len = list_length (arglist) + 1;
-  convs = make_tree_vec (len);
+  convs = alloc_conversions (len);
   parmnode = parmlist;
   argnode = arglist;
   viable = 1;
   flags = LOOKUP_NORMAL;
 
   /* Don't bother looking up the same type twice.  */
-  if (candidates && candidates->fn == totype)
-    return candidates;
+  if (*candidates && (*candidates)->fn == totype)
+    return NULL;
 
   for (i = 0; i < len; ++i)
     {
       tree arg = i == 0 ? obj : TREE_VALUE (argnode);
       tree argtype = lvalue_type (arg);
-      tree t;
+      conversion *t;
 
       if (i == 0)
-       t = implicit_conversion (totype, argtype, arg, flags);
+       t = implicit_conversion (totype, argtype, arg, /*c_cast_p=*/false,
+                                flags);
       else if (parmnode == void_list_node)
        break;
       else if (parmnode)
-       t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg, flags);
+       t = implicit_conversion (TREE_VALUE (parmnode), argtype, arg,
+                                /*c_cast_p=*/false, flags);
       else
        {
-         t = build1 (IDENTITY_CONV, argtype, arg);
-         ICS_ELLIPSIS_FLAG (t) = 1;
+         t = build_identity_conv (argtype, arg);
+         t->ellipsis_p = true;
        }
 
-      TREE_VEC_ELT (convs, i) = t;
+      convs[i] = t;
       if (! t)
        break;
 
-      if (ICS_BAD_FLAG (t))
+      if (t->bad_p)
        viable = -1;
 
       if (i == 0)
@@ -1511,70 +1701,75 @@ add_conv_candidate (candidates, fn, obj, arglist)
   if (!sufficient_parms_p (parmnode))
     viable = 0;
 
-  return add_candidate (candidates, totype, convs, viable);
+  return add_candidate (candidates, totype, arglist, len, convs,
+                       access_path, conversion_path, viable);
 }
 
-static struct z_candidate *
-build_builtin_candidate (candidates, fnname, type1, type2,
-                        args, argtypes, flags)
-     struct z_candidate *candidates;
-     tree fnname, type1, type2, *args, *argtypes;
-     int flags;
-
+static void
+build_builtin_candidate (struct z_candidate **candidates, tree fnname,
+                        tree type1, tree type2, tree *args, tree *argtypes,
+                        int flags)
 {
-  tree t, convs;
+  conversion *t;
+  conversion **convs;
+  size_t num_convs;
   int viable = 1, i;
   tree types[2];
 
   types[0] = type1;
   types[1] = type2;
 
-  convs = make_tree_vec (args[2] ? 3 : (args[1] ? 2 : 1));
+  num_convs =  args[2] ? 3 : (args[1] ? 2 : 1);
+  convs = alloc_conversions (num_convs);
 
   for (i = 0; i < 2; ++i)
     {
       if (! args[i])
        break;
 
-      t = implicit_conversion (types[i], argtypes[i], args[i], flags);
+      t = implicit_conversion (types[i], argtypes[i], args[i],
+                              /*c_cast_p=*/false, flags);
       if (! t)
        {
          viable = 0;
          /* We need something for printing the candidate.  */
-         t = build1 (IDENTITY_CONV, types[i], NULL_TREE);
+         t = build_identity_conv (types[i], NULL_TREE);
        }
-      else if (ICS_BAD_FLAG (t))
+      else if (t->bad_p)
        viable = 0;
-      TREE_VEC_ELT (convs, i) = t;
+      convs[i] = t;
     }
 
   /* For COND_EXPR we rearranged the arguments; undo that now.  */
   if (args[2])
     {
-      TREE_VEC_ELT (convs, 2) = TREE_VEC_ELT (convs, 1);
-      TREE_VEC_ELT (convs, 1) = TREE_VEC_ELT (convs, 0);
-      t = implicit_conversion (boolean_type_node, argtypes[2], args[2], flags);
+      convs[2] = convs[1];
+      convs[1] = convs[0];
+      t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
+                              /*c_cast_p=*/false, flags);
       if (t)
-       TREE_VEC_ELT (convs, 0) = t;
+       convs[0] = t;
       else
        viable = 0;
-    }      
+    }
 
-  return add_candidate (candidates, fnname, convs, viable);
+  add_candidate (candidates, fnname, /*args=*/NULL_TREE,
+                num_convs, convs,
+                /*access_path=*/NULL_TREE,
+                /*conversion_path=*/NULL_TREE,
+                viable);
 }
 
-static int
-is_complete (t)
-     tree t;
+static bool
+is_complete (tree t)
 {
   return COMPLETE_TYPE_P (complete_type (t));
 }
 
-/* Returns non-zero if TYPE is a promoted arithmetic type.  */
+/* Returns nonzero if TYPE is a promoted arithmetic type.  */
 
-static int
-promoted_arithmetic_type_p (type)
-     tree type;
+static bool
+promoted_arithmetic_type_p (tree type)
 {
   /* [over.built]
 
@@ -1591,20 +1786,17 @@ promoted_arithmetic_type_p (type)
 /* Create any builtin operator overload candidates for the operator in
    question given the converted operand types TYPE1 and TYPE2.  The other
    args are passed through from add_builtin_candidates to
-   build_builtin_candidate.  
-   
-   TYPE1 and TYPE2 may not be permissible, and we must filter them. 
+   build_builtin_candidate.
+
+   TYPE1 and TYPE2 may not be permissible, and we must filter them.
    If CODE is requires candidates operands of the same type of the kind
    of which TYPE1 and TYPE2 are, we add both candidates
    CODE (TYPE1, TYPE1) and CODE (TYPE2, TYPE2).  */
 
-static struct z_candidate *
-add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
-                      args, argtypes, flags)
-     struct z_candidate *candidates;
-     enum tree_code code, code2;
-     tree fnname, type1, type2, *args, *argtypes;
-     int flags;
+static void
+add_builtin_candidate (struct z_candidate **candidates, enum tree_code code,
+                      enum tree_code code2, tree fnname, tree type1,
+                      tree type2, tree *args, tree *argtypes, int flags)
 {
   switch (code)
     {
@@ -1641,7 +1833,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
     case POSTDECREMENT_EXPR:
     case PREDECREMENT_EXPR:
       if (TREE_CODE (type1) == BOOLEAN_TYPE)
-       return candidates;
+       return;
     case POSTINCREMENT_EXPR:
     case PREINCREMENT_EXPR:
       if (ARITHMETIC_TYPE_P (type1) || TYPE_PTROB_P (type1))
@@ -1649,7 +1841,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
          type1 = build_reference_type (type1);
          break;
        }
-      return candidates;
+      return;
 
 /* 7 For every cv-qualified or cv-unqualified complete object type T, there
      exist candidate operator functions of the form
@@ -1665,7 +1857,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
          && (TYPE_PTROB_P (type1)
              || TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE))
        break;
-      return candidates;
+      return;
 
 /* 9 For every type T, there exist candidate operator functions of the form
             T*      operator+(T*);
@@ -1675,14 +1867,13 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
             T       operator+(T);
             T       operator-(T);  */
 
-    case CONVERT_EXPR: /* unary + */
-      if (TREE_CODE (type1) == POINTER_TYPE
-         && TREE_CODE (TREE_TYPE (type1)) != OFFSET_TYPE)
+    case UNARY_PLUS_EXPR: /* unary + */
+      if (TREE_CODE (type1) == POINTER_TYPE)
        break;
     case NEGATE_EXPR:
       if (ARITHMETIC_TYPE_P (type1))
        break;
-      return candidates;
+      return;
 
 /* 11For every promoted integral type T,  there  exist  candidate  operator
      functions of the form
@@ -1691,7 +1882,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
     case BIT_NOT_EXPR:
       if (INTEGRAL_TYPE_P (type1))
        break;
-      return candidates;
+      return;
 
 /* 12For every quintuple C1, C2, T, CV1, CV2), where C2 is a class type, C1
      is the same type as C2 or is a derived class of C2, T  is  a  complete
@@ -1702,19 +1893,17 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
 
     case MEMBER_REF:
       if (TREE_CODE (type1) == POINTER_TYPE
-         && (TYPE_PTRMEMFUNC_P (type2) || TYPE_PTRMEM_P (type2)))
+         && TYPE_PTR_TO_MEMBER_P (type2))
        {
          tree c1 = TREE_TYPE (type1);
-         tree c2 = (TYPE_PTRMEMFUNC_P (type2)
-                    ? TYPE_METHOD_BASETYPE (TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (type2)))
-                    : TYPE_OFFSET_BASETYPE (TREE_TYPE (type2)));
+         tree c2 = TYPE_PTRMEM_CLASS_TYPE (type2);
 
-         if (IS_AGGR_TYPE (c1) && DERIVED_FROM_P (c2, c1)
+         if (MAYBE_CLASS_TYPE_P (c1) && DERIVED_FROM_P (c2, c1)
              && (TYPE_PTRMEMFUNC_P (type2)
-                 || is_complete (TREE_TYPE (TREE_TYPE (type2)))))
+                 || is_complete (TYPE_PTRMEM_POINTED_TO_TYPE (type2))))
            break;
        }
-      return candidates;
+      return;
 
 /* 13For every pair of promoted arithmetic types L and R, there exist  can-
      didate operator functions of the form
@@ -1770,26 +1959,24 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
     case TRUNC_DIV_EXPR:
       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
        break;
-      return candidates;
+      return;
 
     case EQ_EXPR:
     case NE_EXPR:
       if ((TYPE_PTRMEMFUNC_P (type1) && TYPE_PTRMEMFUNC_P (type2))
          || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2)))
        break;
-      if ((TYPE_PTRMEMFUNC_P (type1) || TYPE_PTRMEM_P (type1))
-         && null_ptr_cst_p (args[1]))
+      if (TYPE_PTR_TO_MEMBER_P (type1) && null_ptr_cst_p (args[1]))
        {
          type2 = type1;
          break;
        }
-      if ((TYPE_PTRMEMFUNC_P (type2) || TYPE_PTRMEM_P (type2))
-         && null_ptr_cst_p (args[0]))
+      if (TYPE_PTR_TO_MEMBER_P (type2) && null_ptr_cst_p (args[0]))
        {
          type1 = type2;
          break;
        }
-      /* FALLTHROUGH */
+      /* Fall through.  */
     case LT_EXPR:
     case GT_EXPR:
     case LE_EXPR:
@@ -1797,22 +1984,27 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
     case MAX_EXPR:
     case MIN_EXPR:
       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
-        break;
+       break;
       if (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
        break;
-      if (TREE_CODE (type1) == ENUMERAL_TYPE && TREE_CODE (type2) == ENUMERAL_TYPE)
-        break;
-      if (TYPE_PTR_P (type1) && null_ptr_cst_p (args[1]))
+      if (TREE_CODE (type1) == ENUMERAL_TYPE 
+         && TREE_CODE (type2) == ENUMERAL_TYPE)
+       break;
+      if (TYPE_PTR_P (type1) 
+         && null_ptr_cst_p (args[1])
+         && !uses_template_parms (type1))
        {
          type2 = type1;
          break;
        }
-      if (null_ptr_cst_p (args[0]) && TYPE_PTR_P (type2))
+      if (null_ptr_cst_p (args[0]) 
+         && TYPE_PTR_P (type2)
+         && !uses_template_parms (type2))
        {
          type1 = type2;
          break;
        }
-      return candidates;
+      return;
 
     case PLUS_EXPR:
       if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
@@ -1828,7 +2020,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
          type2 = ptrdiff_type_node;
          break;
        }
-      return candidates;
+      return;
 
 /* 18For  every pair of promoted integral types L and R, there exist candi-
      date operator functions of the form
@@ -1849,7 +2041,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
     case RSHIFT_EXPR:
       if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
        break;
-      return candidates;
+      return;
 
 /* 19For  every  triple  L, VQ, R), where L is an arithmetic or enumeration
      type, VQ is either volatile or empty, and R is a  promoted  arithmetic
@@ -1901,7 +2093,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
        case TRUNC_DIV_EXPR:
          if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
            break;
-         return candidates;
+         return;
 
        case TRUNC_MOD_EXPR:
        case BIT_AND_EXPR:
@@ -1911,7 +2103,7 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
        case RSHIFT_EXPR:
          if (INTEGRAL_TYPE_P (type1) && INTEGRAL_TYPE_P (type2))
            break;
-         return candidates;
+         return;
 
        case NOP_EXPR:
          if (ARITHMETIC_TYPE_P (type1) && ARITHMETIC_TYPE_P (type2))
@@ -1926,10 +2118,10 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
              type2 = type1;
              break;
            }
-         return candidates;
+         return;
 
        default:
-         abort ();
+         gcc_unreachable ();
        }
       type1 = build_reference_type (type1);
       break;
@@ -1938,9 +2130,9 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
       /* [over.built]
 
         For every pair of promoted arithmetic types L and R, there
-        exist candidate operator functions of the form 
+        exist candidate operator functions of the form
 
-        LR operator?(bool, L, R); 
+        LR operator?(bool, L, R);
 
         where LR is the result of the usual arithmetic conversions
         between types L and R.
@@ -1955,25 +2147,18 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
        break;
 
       /* Otherwise, the types should be pointers.  */
-      if (!(TREE_CODE (type1) == POINTER_TYPE
-           || TYPE_PTRMEM_P (type1)
-           || TYPE_PTRMEMFUNC_P (type1))
-         || !(TREE_CODE (type2) == POINTER_TYPE
-              || TYPE_PTRMEM_P (type2)
-              || TYPE_PTRMEMFUNC_P (type2)))
-       return candidates;
-      
+      if (!(TYPE_PTR_P (type1) || TYPE_PTR_TO_MEMBER_P (type1))
+         || !(TYPE_PTR_P (type2) || TYPE_PTR_TO_MEMBER_P (type2)))
+       return;
+
       /* We don't check that the two types are the same; the logic
         below will actually create two candidates; one in which both
         parameter types are TYPE1, and one in which both parameter
         types are TYPE2.  */
-       break;
-
-      /* These arguments do not make for a legal overloaded operator.  */
-      return candidates;
+      break;
 
     default:
-      abort ();
+      gcc_unreachable ();
     }
 
   /* If we're dealing with two pointer types or two enumeral types,
@@ -1981,25 +2166,25 @@ add_builtin_candidate (candidates, code, code2, fnname, type1, type2,
   if (type2 && !same_type_p (type1, type2)
       && TREE_CODE (type1) == TREE_CODE (type2)
       && (TREE_CODE (type1) == REFERENCE_TYPE
-         || (TREE_CODE (type1) == POINTER_TYPE
-             && TYPE_PTRMEM_P (type1) == TYPE_PTRMEM_P (type2))
+         || (TYPE_PTR_P (type1) && TYPE_PTR_P (type2))
+         || (TYPE_PTRMEM_P (type1) && TYPE_PTRMEM_P (type2))
          || TYPE_PTRMEMFUNC_P (type1)
-         || IS_AGGR_TYPE (type1)
+         || MAYBE_CLASS_TYPE_P (type1)
          || TREE_CODE (type1) == ENUMERAL_TYPE))
     {
-      candidates = build_builtin_candidate
+      build_builtin_candidate
        (candidates, fnname, type1, type1, args, argtypes, flags);
-      return build_builtin_candidate
+      build_builtin_candidate
        (candidates, fnname, type2, type2, args, argtypes, flags);
+      return;
     }
 
-  return build_builtin_candidate
+  build_builtin_candidate
     (candidates, fnname, type1, type2, args, argtypes, flags);
 }
 
 tree
-type_decays_to (type)
-     tree type;
+type_decays_to (tree type)
 {
   if (TREE_CODE (type) == ARRAY_TYPE)
     return build_pointer_type (TREE_TYPE (type));
@@ -2015,18 +2200,16 @@ type_decays_to (type)
       one of the input types converts to.
    3) arithmetic candidates.  According to the standard, we should generate
       all of these, but I'm trying not to...
-   
+
    Here we generate a superset of the possible candidates for this particular
    case.  That is a subset of the full set the standard defines, plus some
    other cases which the standard disallows. add_builtin_candidate will
-   filter out the illegal set.  */
+   filter out the invalid set.  */
 
-static struct z_candidate *
-add_builtin_candidates (candidates, code, code2, fnname, args, flags)
-     struct z_candidate *candidates;
-     enum tree_code code, code2;
-     tree fnname, *args;
-     int flags;
+static void
+add_builtin_candidates (struct z_candidate **candidates, enum tree_code code,
+                       enum tree_code code2, tree fnname, tree *args,
+                       int flags)
 {
   int ref1, i;
   int enum_p = 0;
@@ -2040,7 +2223,7 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
   for (i = 0; i < 3; ++i)
     {
       if (args[i])
-       argtypes[i]  = lvalue_type (args[i]);
+       argtypes[i] = unlowered_expr_type (args[i]);
       else
        argtypes[i] = NULL_TREE;
     }
@@ -2066,20 +2249,22 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
             bool    operator||(bool, bool);  */
 
     case TRUTH_NOT_EXPR:
-      return build_builtin_candidate
+      build_builtin_candidate
        (candidates, fnname, boolean_type_node,
         NULL_TREE, args, argtypes, flags);
+      return;
 
     case TRUTH_ORIF_EXPR:
     case TRUTH_ANDIF_EXPR:
-      return build_builtin_candidate
+      build_builtin_candidate
        (candidates, fnname, boolean_type_node,
         boolean_type_node, args, argtypes, flags);
+      return;
 
     case ADDR_EXPR:
     case COMPOUND_EXPR:
     case COMPONENT_REF:
-      return candidates;
+      return;
 
     case COND_EXPR:
     case EQ_EXPR:
@@ -2089,8 +2274,8 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
     case GT_EXPR:
     case GE_EXPR:
       enum_p = 1;
-      /* FALLTHROUGH */
-    
+      /* Fall through.  */
+
     default:
       ref1 = 0;
     }
@@ -2101,12 +2286,12 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
     {
       if (! args[i])
        ;
-      else if (IS_AGGR_TYPE (argtypes[i]))
+      else if (MAYBE_CLASS_TYPE_P (argtypes[i]))
        {
          tree convs;
 
          if (i == 0 && code == MODIFY_EXPR && code2 == NOP_EXPR)
-           return candidates;
+           return;
 
          convs = lookup_conversions (argtypes[i]);
 
@@ -2121,7 +2306,7 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
            }
 
          else if (! convs)
-           return candidates;
+           return;
 
          for (; convs; convs = TREE_CHAIN (convs))
            {
@@ -2139,8 +2324,8 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
              if (i != 0 || ! ref1)
                {
                  type = TYPE_MAIN_VARIANT (type_decays_to (type));
-                 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
-                   types[i] = tree_cons (NULL_TREE, type, types[i]);
+                 if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
+                   types[i] = tree_cons (NULL_TREE, type, types[i]);
                  if (INTEGRAL_TYPE_P (type))
                    type = type_promotes_to (type);
                }
@@ -2159,7 +2344,7 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
            {
              type = TYPE_MAIN_VARIANT (type_decays_to (type));
              if (enum_p && TREE_CODE (type) == ENUMERAL_TYPE)
-               types[i] = tree_cons (NULL_TREE, type, types[i]);
+               types[i] = tree_cons (NULL_TREE, type, types[i]);
              if (INTEGRAL_TYPE_P (type))
                type = type_promotes_to (type);
            }
@@ -2173,16 +2358,14 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
     {
       if (types[1])
        for (type = types[1]; type; type = TREE_CHAIN (type))
-         candidates = add_builtin_candidate
+         add_builtin_candidate
            (candidates, code, code2, fnname, TREE_VALUE (types[0]),
             TREE_VALUE (type), args, argtypes, flags);
       else
-       candidates = add_builtin_candidate
+       add_builtin_candidate
          (candidates, code, code2, fnname, TREE_VALUE (types[0]),
           NULL_TREE, args, argtypes, flags);
     }
-
-  return candidates;
 }
 
 
@@ -2197,14 +2380,11 @@ add_builtin_candidates (candidates, code, code2, fnname, args, flags)
    add_conv_candidate.  */
 
 static struct z_candidate*
-add_template_candidate_real (candidates, tmpl, ctype, explicit_targs,
-                            arglist, return_type, flags,
-                            obj, strict)
-     struct z_candidate *candidates;
-     tree tmpl, ctype, explicit_targs, arglist, return_type;
-     int flags;
-     tree obj;
-     unification_kind_t strict;
+add_template_candidate_real (struct z_candidate **candidates, tree tmpl,
+                            tree ctype, tree explicit_targs, tree arglist,
+                            tree return_type, tree access_path,
+                            tree conversion_path, int flags, tree obj,
+                            unification_kind_t strict)
 {
   int ntparms = DECL_NTPARMS (tmpl);
   tree targs = make_tree_vec (ntparms);
@@ -2220,56 +2400,58 @@ add_template_candidate_real (candidates, tmpl, ctype, explicit_targs,
 
   if ((DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (tmpl)
        || DECL_BASE_CONSTRUCTOR_P (tmpl))
-      && TYPE_USES_VIRTUAL_BASECLASSES (DECL_CONTEXT (tmpl)))
+      && CLASSTYPE_VBASECLASSES (DECL_CONTEXT (tmpl)))
     args_without_in_chrg = TREE_CHAIN (args_without_in_chrg);
 
   i = fn_type_unification (tmpl, explicit_targs, targs,
                           args_without_in_chrg,
-                          return_type, strict, -1);
+                          return_type, strict, flags);
 
   if (i != 0)
-    return candidates;
+    return NULL;
 
-  fn = instantiate_template (tmpl, targs);
+  fn = instantiate_template (tmpl, targs, tf_none);
   if (fn == error_mark_node)
-    return candidates;
+    return NULL;
 
   /* In [class.copy]:
 
        A member function template is never instantiated to perform the
-       copy of a class object to an object of its class type.  
+       copy of a class object to an object of its class type.
 
      It's a little unclear what this means; the standard explicitly
      does allow a template to be used to copy a class.  For example,
      in:
 
        struct A {
-         A(A&);
+        A(A&);
         template <class T> A(const T&);
        };
        const A f ();
        void g () { A a (f ()); }
-       
+
      the member template will be used to make the copy.  The section
      quoted above appears in the paragraph that forbids constructors
      whose only parameter is (a possibly cv-qualified variant of) the
      class type, and a logical interpretation is that the intent was
      to forbid the instantiation of member templates which would then
      have that form.  */
-  if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2) 
+  if (DECL_CONSTRUCTOR_P (fn) && list_length (arglist) == 2)
     {
       tree arg_types = FUNCTION_FIRST_USER_PARMTYPE (fn);
       if (arg_types && same_type_p (TYPE_MAIN_VARIANT (TREE_VALUE (arg_types)),
                                    ctype))
-       return candidates;
+       return NULL;
     }
 
   if (obj != NULL_TREE)
     /* Aha, this is a conversion function.  */
-    cand = add_conv_candidate (candidates, fn, obj, arglist);
+    cand = add_conv_candidate (candidates, fn, obj, access_path,
+                              conversion_path, arglist);
   else
     cand = add_function_candidate (candidates, fn, ctype,
-                                  arglist, flags);
+                                  arglist, access_path,
+                                  conversion_path, flags);
   if (DECL_TI_TEMPLATE (fn) != tmpl)
     /* This situation can occur if a member template of a template
        class is specialized.  Then, instantiate_template might return
@@ -2288,104 +2470,226 @@ add_template_candidate_real (candidates, tmpl, ctype, explicit_targs,
        for this will point at template <class T> template <> S<T>::f(int),
        so that we can find the definition.  For the purposes of
        overload resolution, however, we want the original TMPL.  */
-    cand->template = tree_cons (tmpl, targs, NULL_TREE);
+    cand->template_decl = tree_cons (tmpl, targs, NULL_TREE);
   else
-    cand->template = DECL_TEMPLATE_INFO (fn);
+    cand->template_decl = DECL_TEMPLATE_INFO (fn);
 
   return cand;
 }
 
 
 static struct z_candidate *
-add_template_candidate (candidates, tmpl, ctype, explicit_targs, 
-                       arglist, return_type, flags, strict)
-     struct z_candidate *candidates;
-     tree tmpl, ctype, explicit_targs, arglist, return_type;
-     int flags;
-     unification_kind_t strict;
+add_template_candidate (struct z_candidate **candidates, tree tmpl, tree ctype,
+                       tree explicit_targs, tree arglist, tree return_type,
+                       tree access_path, tree conversion_path, int flags,
+                       unification_kind_t strict)
 {
-  return 
+  return
     add_template_candidate_real (candidates, tmpl, ctype,
-                                explicit_targs, arglist, return_type, flags,
-                                NULL_TREE, strict);
+                                explicit_targs, arglist, return_type,
+                                access_path, conversion_path,
+                                flags, NULL_TREE, strict);
 }
 
 
 static struct z_candidate *
-add_template_conv_candidate (candidates, tmpl, obj, arglist, return_type)
-     struct z_candidate *candidates;
-     tree tmpl, obj, arglist, return_type;
+add_template_conv_candidate (struct z_candidate **candidates, tree tmpl,
+                            tree obj, tree arglist, tree return_type,
+                            tree access_path, tree conversion_path)
 {
-  return 
+  return
     add_template_candidate_real (candidates, tmpl, NULL_TREE, NULL_TREE,
-                                arglist, return_type, 0, obj, DEDUCE_CONV);
+                                arglist, return_type, access_path,
+                                conversion_path, 0, obj, DEDUCE_CONV);
 }
 
+/* The CANDS are the set of candidates that were considered for
+   overload resolution.  Return the set of viable candidates.  If none
+   of the candidates were viable, set *ANY_VIABLE_P to true.  STRICT_P
+   is true if a candidate should be considered viable only if it is
+   strictly viable.  */
 
-static int
-any_viable (cands)
-     struct z_candidate *cands;
+static struct z_candidate*
+splice_viable (struct z_candidate *cands,
+              bool strict_p,
+              bool *any_viable_p)
 {
-  for (; cands; cands = cands->next)
-    if (pedantic ? cands->viable == 1 : cands->viable)
-      return 1;
-  return 0;
-}
+  struct z_candidate *viable;
+  struct z_candidate **last_viable;
+  struct z_candidate **cand;
 
-static struct z_candidate *
-splice_viable (cands)
-     struct z_candidate *cands;
-{
-  struct z_candidate **p = &cands;
+  viable = NULL;
+  last_viable = &viable;
+  *any_viable_p = false;
 
-  for (; *p; )
+  cand = &cands;
+  while (*cand)
     {
-      if (pedantic ? (*p)->viable == 1 : (*p)->viable)
-       p = &((*p)->next);
+      struct z_candidate *c = *cand;
+      if (strict_p ? c->viable == 1 : c->viable)
+       {
+         *last_viable = c;
+         *cand = c->next;
+         c->next = NULL;
+         last_viable = &c->next;
+         *any_viable_p = true;
+       }
       else
-       *p = (*p)->next;
+       cand = &c->next;
     }
 
-  return cands;
+  return viable ? viable : cands;
+}
+
+static bool
+any_strictly_viable (struct z_candidate *cands)
+{
+  for (; cands; cands = cands->next)
+    if (cands->viable == 1)
+      return true;
+  return false;
 }
 
+/* OBJ is being used in an expression like "OBJ.f (...)".  In other
+   words, it is about to become the "this" pointer for a member
+   function call.  Take the address of the object.  */
+
 static tree
-build_this (obj)
-     tree obj;
+build_this (tree obj)
+{
+  /* In a template, we are only concerned about the type of the
+     expression, so we can take a shortcut.  */
+  if (processing_template_decl)
+    return build_address (obj);
+
+  return cp_build_unary_op (ADDR_EXPR, obj, 0, tf_warning_or_error);
+}
+
+/* Returns true iff functions are equivalent. Equivalent functions are
+   not '==' only if one is a function-local extern function or if
+   both are extern "C".  */
+
+static inline int
+equal_functions (tree fn1, tree fn2)
 {
-  /* Fix this to work on non-lvalues.  */
-  return build_unary_op (ADDR_EXPR, obj, 0);
+  if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
+      || DECL_EXTERN_C_FUNCTION_P (fn1))
+    return decls_match (fn1, fn2);
+  return fn1 == fn2;
 }
 
+/* Print information about one overload candidate CANDIDATE.  MSGSTR
+   is the text to print before the candidate itself.
+
+   NOTE: Unlike most diagnostic functions in GCC, MSGSTR is expected
+   to have been run through gettext by the caller.  This wart makes
+   life simpler in print_z_candidates and for the translators.  */
+
 static void
-print_z_candidates (candidates)
-     struct z_candidate *candidates;
+print_z_candidate (const char *msgstr, struct z_candidate *candidate)
 {
-  const char *str = "candidates are:";
-  for (; candidates; candidates = candidates->next)
-    {
-      if (TREE_CODE (candidates->fn) == IDENTIFIER_NODE)
+  if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE)
+    {
+      if (candidate->num_convs == 3)
+       inform (input_location, "%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn,
+               candidate->convs[0]->type,
+               candidate->convs[1]->type,
+               candidate->convs[2]->type);
+      else if (candidate->num_convs == 2)
+       inform (input_location, "%s %D(%T, %T) <built-in>", msgstr, candidate->fn,
+               candidate->convs[0]->type,
+               candidate->convs[1]->type);
+      else
+       inform (input_location, "%s %D(%T) <built-in>", msgstr, candidate->fn,
+               candidate->convs[0]->type);
+    }
+  else if (TYPE_P (candidate->fn))
+    inform (input_location, "%s %T <conversion>", msgstr, candidate->fn);
+  else if (candidate->viable == -1)
+    inform (input_location, "%s %+#D <near match>", msgstr, candidate->fn);
+  else
+    inform (input_location, "%s %+#D", msgstr, candidate->fn);
+}
+
+static void
+print_z_candidates (struct z_candidate *candidates)
+{
+  const char *str;
+  struct z_candidate *cand1;
+  struct z_candidate **cand2;
+
+  /* There may be duplicates in the set of candidates.  We put off
+     checking this condition as long as possible, since we have no way
+     to eliminate duplicates from a set of functions in less than n^2
+     time.  Now we are about to emit an error message, so it is more
+     permissible to go slowly.  */
+  for (cand1 = candidates; cand1; cand1 = cand1->next)
+    {
+      tree fn = cand1->fn;
+      /* Skip builtin candidates and conversion functions.  */
+      if (TREE_CODE (fn) != FUNCTION_DECL)
+       continue;
+      cand2 = &cand1->next;
+      while (*cand2)
        {
-         if (TREE_VEC_LENGTH (candidates->convs) == 3)
-           error ("%s %D(%T, %T, %T) <built-in>", str, candidates->fn,
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)),
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 1)),
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 2)));
-         else if (TREE_VEC_LENGTH (candidates->convs) == 2)
-           error ("%s %D(%T, %T) <built-in>", str, candidates->fn,
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)),
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 1)));
+         if (TREE_CODE ((*cand2)->fn) == FUNCTION_DECL
+             && equal_functions (fn, (*cand2)->fn))
+           *cand2 = (*cand2)->next;
          else
-           error ("%s %D(%T) <built-in>", str, candidates->fn,
-                     TREE_TYPE (TREE_VEC_ELT (candidates->convs, 0)));
+           cand2 = &(*cand2)->next;
        }
-      else if (TYPE_P (candidates->fn))
-       error ("%s %T <conversion>", str, candidates->fn);
-      else
-       cp_error_at ("%s %+#D%s", str, candidates->fn,
-                    candidates->viable == -1 ? " <near match>" : "");
-      str = "               "; 
     }
+
+  if (!candidates)
+    return;
+
+  str = _("candidates are:");
+  print_z_candidate (str, candidates);
+  if (candidates->next)
+    {
+      /* Indent successive candidates by the width of the translation
+        of the above string.  */
+      size_t len = gcc_gettext_width (str) + 1;
+      char *spaces = (char *) alloca (len);
+      memset (spaces, ' ', len-1);
+      spaces[len - 1] = '\0';
+
+      candidates = candidates->next;
+      do
+       {
+         print_z_candidate (spaces, candidates);
+         candidates = candidates->next;
+       }
+      while (candidates);
+    }
+}
+
+/* USER_SEQ is a user-defined conversion sequence, beginning with a
+   USER_CONV.  STD_SEQ is the standard conversion sequence applied to
+   the result of the conversion function to convert it to the final
+   desired type.  Merge the two sequences into a single sequence,
+   and return the merged sequence.  */
+
+static conversion *
+merge_conversion_sequences (conversion *user_seq, conversion *std_seq)
+{
+  conversion **t;
+
+  gcc_assert (user_seq->kind == ck_user);
+
+  /* Find the end of the second conversion sequence.  */
+  t = &(std_seq);
+  while ((*t)->kind != ck_identity)
+    t = &((*t)->u.next);
+
+  /* Replace the identity conversion with the user conversion
+     sequence.  */
+  *t = user_seq;
+
+  /* The entire sequence is a user-conversion sequence.  */
+  std_seq->user_conv_p = true;
+
+  return std_seq;
 }
 
 /* Returns the best overload candidate to perform the requested
@@ -2395,82 +2699,122 @@ print_z_candidates (candidates)
    per [dcl.init.ref], so we ignore temporary bindings.  */
 
 static struct z_candidate *
-build_user_type_conversion_1 (totype, expr, flags)
-     tree totype, expr;
-     int flags;
+build_user_type_conversion_1 (tree totype, tree expr, int flags)
 {
   struct z_candidate *candidates, *cand;
   tree fromtype = TREE_TYPE (expr);
-  tree ctors = NULL_TREE, convs = NULL_TREE, *p;
+  tree ctors = NULL_TREE;
+  tree conv_fns = NULL_TREE;
+  conversion *conv = NULL;
   tree args = NULL_TREE;
-  tree templates = NULL_TREE;
+  bool any_viable_p;
+  int convflags;
 
   /* We represent conversion within a hierarchy using RVALUE_CONV and
      BASE_CONV, as specified by [over.best.ics]; these become plain
      constructor calls, as specified in [dcl.init].  */
-  my_friendly_assert (!IS_AGGR_TYPE (fromtype) || !IS_AGGR_TYPE (totype)
-                     || !DERIVED_FROM_P (totype, fromtype), 20011226);
+  gcc_assert (!MAYBE_CLASS_TYPE_P (fromtype) || !MAYBE_CLASS_TYPE_P (totype)
+             || !DERIVED_FROM_P (totype, fromtype));
 
-  if (IS_AGGR_TYPE (totype))
-    ctors = lookup_fnfields (TYPE_BINFO (totype),
-                            complete_ctor_identifier,
-                            0);
+  if (MAYBE_CLASS_TYPE_P (totype))
+    ctors = lookup_fnfields (totype, complete_ctor_identifier, 0);
 
-  if (IS_AGGR_TYPE (fromtype))
-    convs = lookup_conversions (fromtype);
+  if (MAYBE_CLASS_TYPE_P (fromtype))
+    {
+      tree to_nonref = non_reference (totype);
+      if (same_type_ignoring_top_level_qualifiers_p (to_nonref, fromtype) ||
+         (CLASS_TYPE_P (to_nonref) && CLASS_TYPE_P (fromtype)
+          && DERIVED_FROM_P (to_nonref, fromtype)))
+       {
+         /* [class.conv.fct] A conversion function is never used to
+            convert a (possibly cv-qualified) object to the (possibly
+            cv-qualified) same object type (or a reference to it), to a
+            (possibly cv-qualified) base class of that type (or a
+            reference to it)...  */
+       }
+      else
+       conv_fns = lookup_conversions (fromtype);
+    }
 
   candidates = 0;
   flags |= LOOKUP_NO_CONVERSION;
 
+  /* It's OK to bind a temporary for converting constructor arguments, but
+     not in converting the return value of a conversion operator.  */
+  convflags = ((flags & LOOKUP_NO_TEMP_BIND) | LOOKUP_NO_CONVERSION);
+  flags &= ~LOOKUP_NO_TEMP_BIND;
+
   if (ctors)
     {
       tree t;
 
-      ctors = TREE_VALUE (ctors);
+      ctors = BASELINK_FUNCTIONS (ctors);
 
-      t = build_int_2 (0, 0);
-      TREE_TYPE (t) = build_pointer_type (totype);
-      args = build_tree_list (NULL_TREE, expr);
+      t = build_int_cst (build_pointer_type (totype), 0);
+      if (BRACE_ENCLOSED_INITIALIZER_P (expr)
+         && !TYPE_HAS_LIST_CTOR (totype))
+       {
+         args = ctor_to_list (expr);
+         /* We still allow more conversions within an init-list.  */
+         flags = ((flags & ~LOOKUP_NO_CONVERSION)
+                  /* But not for the copy ctor.  */
+                  |LOOKUP_NO_COPY_CTOR_CONVERSION
+                  |LOOKUP_NO_NARROWING);
+       }
+      else
+       args = build_tree_list (NULL_TREE, expr);
       /* We should never try to call the abstract or base constructor
         from here.  */
-      my_friendly_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
-                         && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)),
-                         20011226);
+      gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_CURRENT (ctors))
+                 && !DECL_HAS_VTT_PARM_P (OVL_CURRENT (ctors)));
       args = tree_cons (NULL_TREE, t, args);
     }
   for (; ctors; ctors = OVL_NEXT (ctors))
     {
       tree ctor = OVL_CURRENT (ctors);
-      if (DECL_NONCONVERTING_P (ctor))
+      if (DECL_NONCONVERTING_P (ctor)
+         && !BRACE_ENCLOSED_INITIALIZER_P (expr))
        continue;
 
-      if (TREE_CODE (ctor) == TEMPLATE_DECL) 
-       {
-         templates = tree_cons (NULL_TREE, ctor, templates);
-         candidates = 
-           add_template_candidate (candidates, ctor, totype,
-                                   NULL_TREE, args, NULL_TREE, flags,
-                                   DEDUCE_CALL);
-       } 
-      else 
-       candidates = add_function_candidate (candidates, ctor, totype,
-                                            args, flags); 
-
-      if (candidates) 
+      if (TREE_CODE (ctor) == TEMPLATE_DECL)
+       cand = add_template_candidate (&candidates, ctor, totype,
+                                      NULL_TREE, args, NULL_TREE,
+                                      TYPE_BINFO (totype),
+                                      TYPE_BINFO (totype),
+                                      flags,
+                                      DEDUCE_CALL);
+      else
+       cand = add_function_candidate (&candidates, ctor, totype,
+                                      args, TYPE_BINFO (totype),
+                                      TYPE_BINFO (totype),
+                                      flags);
+
+      if (cand)
        {
-         candidates->second_conv = build1 (IDENTITY_CONV, totype, NULL_TREE);
-         candidates->basetype_path = TYPE_BINFO (totype);
-       } 
+         cand->second_conv = build_identity_conv (totype, NULL_TREE);
+
+         /* If totype isn't a reference, and LOOKUP_NO_TEMP_BIND isn't
+            set, then this is copy-initialization.  In that case, "The
+            result of the call is then used to direct-initialize the
+            object that is the destination of the copy-initialization."
+            [dcl.init]
+
+            We represent this in the conversion sequence with an
+            rvalue conversion, which means a constructor call.  */
+         if (TREE_CODE (totype) != REFERENCE_TYPE
+             && !(convflags & LOOKUP_NO_TEMP_BIND))
+           cand->second_conv
+             = build_conv (ck_rvalue, totype, cand->second_conv);
+       }
     }
 
-  if (convs)
+  if (conv_fns)
     args = build_tree_list (NULL_TREE, build_this (expr));
 
-  for (; convs; convs = TREE_CHAIN (convs))
+  for (; conv_fns; conv_fns = TREE_CHAIN (conv_fns))
     {
-      tree fns = TREE_VALUE (convs);
-      int convflags = LOOKUP_NO_CONVERSION;
-      tree ics;
+      tree fns;
+      tree conversion_path = TREE_PURPOSE (conv_fns);
 
       /* If we are called to convert to a reference type, we are trying to
         find an lvalue binding, so don't even consider temporaries.  If
@@ -2479,122 +2823,124 @@ build_user_type_conversion_1 (totype, expr, flags)
       if (TREE_CODE (totype) == REFERENCE_TYPE)
        convflags |= LOOKUP_NO_TEMP_BIND;
 
-      if (TREE_CODE (OVL_CURRENT (fns)) != TEMPLATE_DECL)
-       ics = implicit_conversion
-         (totype, TREE_TYPE (TREE_TYPE (OVL_CURRENT (fns))), 0, convflags);
-      else
-       /* We can't compute this yet.  */
-       ics = error_mark_node;
-
-      if (TREE_CODE (totype) == REFERENCE_TYPE && ics && ICS_BAD_FLAG (ics))
-       /* ignore the near match.  */;
-      else if (ics)
-       for (; fns; fns = OVL_NEXT (fns))
-         {
-           tree fn = OVL_CURRENT (fns);
-           struct z_candidate *old_candidates = candidates;
-
-           /* [over.match.funcs] For conversion functions, the function is
-              considered to be a member of the class of the implicit object
-              argument for the purpose of defining the type of the implicit
-              object parameter.
+      for (fns = TREE_VALUE (conv_fns); fns; fns = OVL_NEXT (fns))
+       {
+         tree fn = OVL_CURRENT (fns);
 
-              So we pass fromtype as CTYPE to add_*_candidate.  */
+         /* [over.match.funcs] For conversion functions, the function
+            is considered to be a member of the class of the implicit
+            object argument for the purpose of defining the type of
+            the implicit object parameter.
 
-           if (TREE_CODE (fn) == TEMPLATE_DECL)
-             {
-               templates = tree_cons (NULL_TREE, fn, templates);
-               candidates = 
-                 add_template_candidate (candidates, fn, fromtype, NULL_TREE,
-                                         args, totype, flags,
-                                         DEDUCE_CONV);
-             } 
-           else 
-             candidates = add_function_candidate (candidates, fn, fromtype,
-                                                  args, flags); 
-
-           if (candidates != old_candidates)
-             {
-               if (TREE_CODE (fn) == TEMPLATE_DECL)
-                 ics = implicit_conversion
-                   (totype, TREE_TYPE (TREE_TYPE (candidates->fn)),
-                    0, convflags);
-
-               candidates->second_conv = ics;
-               candidates->basetype_path = TYPE_BINFO (fromtype);
-
-               if (ics == NULL_TREE)
-                 candidates->viable = 0;
-               else if (candidates->viable == 1 && ICS_BAD_FLAG (ics))
-                 candidates->viable = -1;
-             }
-         }
-    }
+            So we pass fromtype as CTYPE to add_*_candidate.  */
 
-  if (! any_viable (candidates))
-    {
-#if 0
-      if (flags & LOOKUP_COMPLAIN)
-       {
-         if (candidates && ! candidates->next)
-           /* say why this one won't work or try to be loose */;
+         if (TREE_CODE (fn) == TEMPLATE_DECL)
+           cand = add_template_candidate (&candidates, fn, fromtype,
+                                          NULL_TREE,
+                                          args, totype,
+                                          TYPE_BINFO (fromtype),
+                                          conversion_path,
+                                          flags,
+                                          DEDUCE_CONV);
          else
-           error ("no viable candidates");
-       }
-#endif
+           cand = add_function_candidate (&candidates, fn, fromtype,
+                                          args,
+                                          TYPE_BINFO (fromtype),
+                                          conversion_path,
+                                          flags);
 
-      return 0;
+         if (cand)
+           {
+             conversion *ics
+               = implicit_conversion (totype,
+                                      TREE_TYPE (TREE_TYPE (cand->fn)),
+                                      0,
+                                      /*c_cast_p=*/false, convflags);
+
+             /* If LOOKUP_NO_TEMP_BIND isn't set, then this is
+                copy-initialization.  In that case, "The result of the
+                call is then used to direct-initialize the object that is
+                the destination of the copy-initialization."  [dcl.init]
+
+                We represent this in the conversion sequence with an
+                rvalue conversion, which means a constructor call.  But
+                don't add a second rvalue conversion if there's already
+                one there.  Which there really shouldn't be, but it's
+                harmless since we'd add it here anyway. */
+             if (ics && MAYBE_CLASS_TYPE_P (totype) && ics->kind != ck_rvalue
+                 && !(convflags & LOOKUP_NO_TEMP_BIND))
+               ics = build_conv (ck_rvalue, totype, ics);
+
+             cand->second_conv = ics;
+
+             if (!ics)
+               cand->viable = 0;
+             else if (candidates->viable == 1 && ics->bad_p)
+               cand->viable = -1;
+           }
+       }
     }
 
-  candidates = splice_viable (candidates);
-  cand = tourney (candidates);
+  candidates = splice_viable (candidates, pedantic, &any_viable_p);
+  if (!any_viable_p)
+    return NULL;
 
+  cand = tourney (candidates);
   if (cand == 0)
     {
       if (flags & LOOKUP_COMPLAIN)
        {
-         error ("conversion from `%T' to `%T' is ambiguous",
+         error ("conversion from %qT to %qT is ambiguous",
                    fromtype, totype);
          print_z_candidates (candidates);
        }
 
       cand = candidates;       /* any one will do */
-      cand->second_conv = build1 (AMBIG_CONV, totype, expr);
-      ICS_USER_FLAG (cand->second_conv) = 1;
-      ICS_BAD_FLAG (cand->second_conv) = 1;
+      cand->second_conv = build_ambiguous_conv (totype, expr);
+      cand->second_conv->user_conv_p = true;
+      if (!any_strictly_viable (candidates))
+       cand->second_conv->bad_p = true;
+      /* If there are viable candidates, don't set ICS_BAD_FLAG; an
+        ambiguous conversion is no worse than another user-defined
+        conversion.  */
 
       return cand;
     }
 
-  for (p = &(cand->second_conv); TREE_CODE (*p) != IDENTITY_CONV; )
-    p = &(TREE_OPERAND (*p, 0));
-
-  *p = build
-    (USER_CONV,
+  /* Build the user conversion sequence.  */
+  conv = build_conv
+    (ck_user,
      (DECL_CONSTRUCTOR_P (cand->fn)
       ? totype : non_reference (TREE_TYPE (TREE_TYPE (cand->fn)))),
-     expr, build_ptr_wrapper (cand));
-  
-  ICS_USER_FLAG (cand->second_conv) = ICS_USER_FLAG (*p) = 1;
+     build_identity_conv (TREE_TYPE (expr), expr));
+  conv->cand = cand;
+
+  /* Remember that this was a list-initialization.  */
+  if (flags & LOOKUP_NO_NARROWING)
+    conv->check_narrowing = true;
+
+  /* Combine it with the second conversion sequence.  */
+  cand->second_conv = merge_conversion_sequences (conv,
+                                                 cand->second_conv);
+
   if (cand->viable == -1)
-    ICS_BAD_FLAG (cand->second_conv) = ICS_BAD_FLAG (*p) = 1;
+    cand->second_conv->bad_p = true;
 
   return cand;
 }
 
 tree
-build_user_type_conversion (totype, expr, flags)
-     tree totype, expr;
-     int flags;
+build_user_type_conversion (tree totype, tree expr, int flags)
 {
   struct z_candidate *cand
     = build_user_type_conversion_1 (totype, expr, flags);
 
   if (cand)
     {
-      if (TREE_CODE (cand->second_conv) == AMBIG_CONV)
+      if (cand->second_conv->kind == ck_ambig)
        return error_mark_node;
-      return convert_from_reference (convert_like (cand->second_conv, expr));
+      expr = convert_like (cand->second_conv, expr, tf_warning_or_error);
+      return convert_from_reference (expr);
     }
   return NULL_TREE;
 }
@@ -2602,37 +2948,58 @@ build_user_type_conversion (totype, expr, flags)
 /* Do any initial processing on the arguments to a function call.  */
 
 static tree
-resolve_args (args)
-     tree args;
+resolve_args (tree args)
 {
   tree t;
   for (t = args; t; t = TREE_CHAIN (t))
     {
       tree arg = TREE_VALUE (t);
-      
-      if (arg == error_mark_node)
+
+      if (error_operand_p (arg))
        return error_mark_node;
       else if (VOID_TYPE_P (TREE_TYPE (arg)))
        {
          error ("invalid use of void expression");
          return error_mark_node;
        }
-      else if (TREE_CODE (arg) == OFFSET_REF)
-       arg = resolve_offset_ref (arg);
-      arg = convert_from_reference (arg);
-      TREE_VALUE (t) = arg;
+      else if (invalid_nonstatic_memfn_p (arg, tf_warning_or_error))
+       return error_mark_node;
     }
   return args;
 }
-      
-tree
-build_new_function_call (fn, args)
-     tree fn, args;
+
+/* Perform overload resolution on FN, which is called with the ARGS.
+
+   Return the candidate function selected by overload resolution, or
+   NULL if the event that overload resolution failed.  In the case
+   that overload resolution fails, *CANDIDATES will be the set of
+   candidates considered, and ANY_VIABLE_P will be set to true or
+   false to indicate whether or not any of the candidates were
+   viable.
+
+   The ARGS should already have gone through RESOLVE_ARGS before this
+   function is called.  */
+
+static struct z_candidate *
+perform_overload_resolution (tree fn,
+                            tree args,
+                            struct z_candidate **candidates,
+                            bool *any_viable_p)
 {
-  struct z_candidate *candidates = 0, *cand;
+  struct z_candidate *cand;
   tree explicit_targs = NULL_TREE;
   int template_only = 0;
 
+  *candidates = NULL;
+  *any_viable_p = true;
+
+  /* Check FN and ARGS.  */
+  gcc_assert (TREE_CODE (fn) == FUNCTION_DECL
+             || TREE_CODE (fn) == TEMPLATE_DECL
+             || TREE_CODE (fn) == OVERLOAD
+             || TREE_CODE (fn) == TEMPLATE_ID_EXPR);
+  gcc_assert (!args || TREE_CODE (args) == TREE_LIST);
+
   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
     {
       explicit_targs = TREE_OPERAND (fn, 1);
@@ -2640,108 +3007,247 @@ build_new_function_call (fn, args)
       template_only = 1;
     }
 
-  if (really_overloaded_fn (fn))
-    {
-      tree t1;
-      tree templates = NULL_TREE;
+  /* Add the various candidate functions.  */
+  add_candidates (fn, args, explicit_targs, template_only,
+                 /*conversion_path=*/NULL_TREE,
+                 /*access_path=*/NULL_TREE,
+                 LOOKUP_NORMAL,
+                 candidates);
 
-      args = resolve_args (args);
+  *candidates = splice_viable (*candidates, pedantic, any_viable_p);
+  if (!*any_viable_p)
+    return NULL;
 
-      if (args == error_mark_node)
-       return error_mark_node;
+  cand = tourney (*candidates);
+  return cand;
+}
 
-      for (t1 = fn; t1; t1 = OVL_CHAIN (t1))
-       {
-         tree t = OVL_FUNCTION (t1);
+/* Return an expression for a call to FN (a namespace-scope function,
+   or a static member function) with the ARGS.  */
 
-         if (TREE_CODE (t) == TEMPLATE_DECL)
-           {
-             templates = tree_cons (NULL_TREE, t, templates);
-             candidates = add_template_candidate
-               (candidates, t, NULL_TREE, explicit_targs, args, NULL_TREE,
-                LOOKUP_NORMAL, DEDUCE_CALL);  
-           }
-         else if (! template_only)
-           candidates = add_function_candidate
-             (candidates, t, NULL_TREE, args, LOOKUP_NORMAL);
-       }
+tree
+build_new_function_call (tree fn, tree args, bool koenig_p, 
+                        tsubst_flags_t complain)
+{
+  struct z_candidate *candidates, *cand;
+  bool any_viable_p;
+  void *p;
+  tree result;
+
+  args = resolve_args (args);
+  if (args == error_mark_node)
+    return error_mark_node;
+
+  /* If this function was found without using argument dependent
+     lookup, then we want to ignore any undeclared friend
+     functions.  */
+  if (!koenig_p)
+    {
+      tree orig_fn = fn;
 
-      if (! any_viable (candidates))
+      fn = remove_hidden_names (fn);
+      if (!fn)
        {
-         if (candidates && ! candidates->next)
-           return build_function_call (candidates->fn, args);
-         error ("no matching function for call to `%D(%A)'",
-                   DECL_NAME (OVL_FUNCTION (fn)), args);
-         if (candidates)
-           print_z_candidates (candidates);
+         if (complain & tf_error)
+           error ("no matching function for call to %<%D(%A)%>",
+                  DECL_NAME (OVL_CURRENT (orig_fn)), args);
          return error_mark_node;
        }
-      candidates = splice_viable (candidates);
-      cand = tourney (candidates);
+    }
 
-      if (cand == 0)
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
+  cand = perform_overload_resolution (fn, args, &candidates, &any_viable_p);
+
+  if (!cand)
+    {
+      if (complain & tf_error)
        {
-         error ("call of overloaded `%D(%A)' is ambiguous",
-                   DECL_NAME (OVL_FUNCTION (fn)), args);
-         print_z_candidates (candidates);
-         return error_mark_node;
+         if (!any_viable_p && candidates && ! candidates->next)
+           return cp_build_function_call (candidates->fn, args, complain);
+         if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
+           fn = TREE_OPERAND (fn, 0);
+         if (!any_viable_p)
+           error ("no matching function for call to %<%D(%A)%>",
+                  DECL_NAME (OVL_CURRENT (fn)), args);
+         else
+           error ("call of overloaded %<%D(%A)%> is ambiguous",
+                  DECL_NAME (OVL_CURRENT (fn)), args);
+         if (candidates)
+           print_z_candidates (candidates);
        }
-
-      return build_over_call (cand, args, LOOKUP_NORMAL);
+      result = error_mark_node;
     }
+  else
+    result = build_over_call (cand, LOOKUP_NORMAL, complain);
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return result;
+}
+
+/* Build a call to a global operator new.  FNNAME is the name of the
+   operator (either "operator new" or "operator new[]") and ARGS are
+   the arguments provided.  *SIZE points to the total number of bytes
+   required by the allocation, and is updated if that is changed here.
+   *COOKIE_SIZE is non-NULL if a cookie should be used.  If this
+   function determines that no cookie should be used, after all,
+   *COOKIE_SIZE is set to NULL_TREE.  If FN is non-NULL, it will be
+   set, upon return, to the allocation function called.  */
+
+tree
+build_operator_new_call (tree fnname, tree args,
+                        tree *size, tree *cookie_size,
+                        tree *fn)
+{
+  tree fns;
+  struct z_candidate *candidates;
+  struct z_candidate *cand;
+  bool any_viable_p;
+
+  if (fn)
+    *fn = NULL_TREE;
+  args = tree_cons (NULL_TREE, *size, args);
+  args = resolve_args (args);
+  if (args == error_mark_node)
+    return args;
+
+  /* Based on:
+
+       [expr.new]
 
-  /* This is not really overloaded. */
-  fn = OVL_CURRENT (fn);
+       If this lookup fails to find the name, or if the allocated type
+       is not a class type, the allocation function's name is looked
+       up in the global scope.
+
+     we disregard block-scope declarations of "operator new".  */
+  fns = lookup_function_nonclass (fnname, args, /*block_p=*/false);
+
+  /* Figure out what function is being called.  */
+  cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p);
+
+  /* If no suitable function could be found, issue an error message
+     and give up.  */
+  if (!cand)
+    {
+      if (!any_viable_p)
+       error ("no matching function for call to %<%D(%A)%>",
+              DECL_NAME (OVL_CURRENT (fns)), args);
+      else
+       error ("call of overloaded %<%D(%A)%> is ambiguous",
+              DECL_NAME (OVL_CURRENT (fns)), args);
+      if (candidates)
+       print_z_candidates (candidates);
+      return error_mark_node;
+    }
 
-  return build_function_call (fn, args);
+   /* If a cookie is required, add some extra space.  Whether
+      or not a cookie is required cannot be determined until
+      after we know which function was called.  */
+   if (*cookie_size)
+     {
+       bool use_cookie = true;
+       if (!abi_version_at_least (2))
+        {
+          tree placement = TREE_CHAIN (args);
+          /* In G++ 3.2, the check was implemented incorrectly; it
+             looked at the placement expression, rather than the
+             type of the function.  */
+          if (placement && !TREE_CHAIN (placement)
+              && same_type_p (TREE_TYPE (TREE_VALUE (placement)),
+                              ptr_type_node))
+            use_cookie = false;
+        }
+       else
+        {
+          tree arg_types;
+
+          arg_types = TYPE_ARG_TYPES (TREE_TYPE (cand->fn));
+          /* Skip the size_t parameter.  */
+          arg_types = TREE_CHAIN (arg_types);
+          /* Check the remaining parameters (if any).  */
+          if (arg_types
+              && TREE_CHAIN (arg_types) == void_list_node
+              && same_type_p (TREE_VALUE (arg_types),
+                              ptr_type_node))
+            use_cookie = false;
+        }
+       /* If we need a cookie, adjust the number of bytes allocated.  */
+       if (use_cookie)
+        {
+          /* Update the total size.  */
+          *size = size_binop (PLUS_EXPR, *size, *cookie_size);
+          /* Update the argument list to reflect the adjusted size.  */
+          TREE_VALUE (args) = *size;
+        }
+       else
+        *cookie_size = NULL_TREE;
+     }
+
+   /* Tell our caller which function we decided to call.  */
+   if (fn)
+     *fn = cand->fn;
+
+   /* Build the CALL_EXPR.  */
+   return build_over_call (cand, LOOKUP_NORMAL, tf_warning_or_error);
 }
 
 static tree
-build_object_call (obj, args)
-     tree obj, args;
+build_object_call (tree obj, tree args, tsubst_flags_t complain)
 {
   struct z_candidate *candidates = 0, *cand;
   tree fns, convs, mem_args = NULL_TREE;
   tree type = TREE_TYPE (obj);
+  bool any_viable_p;
+  tree result = NULL_TREE;
+  void *p;
 
   if (TYPE_PTRMEMFUNC_P (type))
     {
-      /* It's no good looking for an overloaded operator() on a
-        pointer-to-member-function.  */
-      error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
+      if (complain & tf_error)
+        /* It's no good looking for an overloaded operator() on a
+           pointer-to-member-function.  */
+        error ("pointer-to-member function %E cannot be called without an object; consider using .* or ->*", obj);
       return error_mark_node;
     }
 
-  fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
-  if (fns == error_mark_node)
-    return error_mark_node;
-
-  args = resolve_args (args);
-
+  if (TYPE_BINFO (type))
+    {
+      fns = lookup_fnfields (TYPE_BINFO (type), ansi_opname (CALL_EXPR), 1);
+      if (fns == error_mark_node)
+       return error_mark_node;
+    }
+  else
+    fns = NULL_TREE;
+
+  args = resolve_args (args);
+
   if (args == error_mark_node)
     return error_mark_node;
 
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
   if (fns)
     {
-      tree base = BINFO_TYPE (TREE_PURPOSE (fns));
+      tree base = BINFO_TYPE (BASELINK_BINFO (fns));
       mem_args = tree_cons (NULL_TREE, build_this (obj), args);
 
-      for (fns = TREE_VALUE (fns); fns; fns = OVL_NEXT (fns))
+      for (fns = BASELINK_FUNCTIONS (fns); fns; fns = OVL_NEXT (fns))
        {
          tree fn = OVL_CURRENT (fns);
          if (TREE_CODE (fn) == TEMPLATE_DECL)
-           {
-             candidates 
-               = add_template_candidate (candidates, fn, base, NULL_TREE,
-                                         mem_args, NULL_TREE, 
-                                         LOOKUP_NORMAL, DEDUCE_CALL);
-           }
+           add_template_candidate (&candidates, fn, base, NULL_TREE,
+                                   mem_args, NULL_TREE,
+                                   TYPE_BINFO (type),
+                                   TYPE_BINFO (type),
+                                   LOOKUP_NORMAL, DEDUCE_CALL);
          else
-           candidates = add_function_candidate
-             (candidates, fn, base, mem_args, LOOKUP_NORMAL);
-
-         if (candidates)
-           candidates->basetype_path = TYPE_BINFO (type);
+           add_function_candidate
+             (&candidates, fn, base, mem_args, TYPE_BINFO (type),
+              TYPE_BINFO (type), LOOKUP_NORMAL);
        }
     }
 
@@ -2762,55 +3268,65 @@ build_object_call (obj, args)
        for (; fns; fns = OVL_NEXT (fns))
          {
            tree fn = OVL_CURRENT (fns);
-           if (TREE_CODE (fn) == TEMPLATE_DECL) 
-             {
-               candidates = add_template_conv_candidate (candidates,
-                                                         fn,
-                                                         obj,
-                                                         args,
-                                                         totype);
-             }
+           if (TREE_CODE (fn) == TEMPLATE_DECL)
+             add_template_conv_candidate
+               (&candidates, fn, obj, args, totype,
+                /*access_path=*/NULL_TREE,
+                /*conversion_path=*/NULL_TREE);
            else
-             candidates = add_conv_candidate (candidates, fn, obj, args);
+             add_conv_candidate (&candidates, fn, obj, args,
+                                 /*conversion_path=*/NULL_TREE,
+                                 /*access_path=*/NULL_TREE);
          }
     }
 
-  if (! any_viable (candidates))
+  candidates = splice_viable (candidates, pedantic, &any_viable_p);
+  if (!any_viable_p)
     {
-      error ("no match for call to `(%T) (%A)'", TREE_TYPE (obj), args);
-      print_z_candidates (candidates);
-      return error_mark_node;
+      if (complain & tf_error)
+        {
+          error ("no match for call to %<(%T) (%A)%>", TREE_TYPE (obj), args);
+          print_z_candidates (candidates);
+        }
+      result = error_mark_node;
     }
-
-  candidates = splice_viable (candidates);
-  cand = tourney (candidates);
-
-  if (cand == 0)
+  else
     {
-      error ("call of `(%T) (%A)' is ambiguous", TREE_TYPE (obj), args);
-      print_z_candidates (candidates);
-      return error_mark_node;
+      cand = tourney (candidates);
+      if (cand == 0)
+       {
+          if (complain & tf_error)
+            {
+              error ("call of %<(%T) (%A)%> is ambiguous", 
+                     TREE_TYPE (obj), args);
+              print_z_candidates (candidates);
+            }
+         result = error_mark_node;
+       }
+      /* Since cand->fn will be a type, not a function, for a conversion
+        function, we must be careful not to unconditionally look at
+        DECL_NAME here.  */
+      else if (TREE_CODE (cand->fn) == FUNCTION_DECL
+              && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
+       result = build_over_call (cand, LOOKUP_NORMAL, complain);
+      else
+       {
+         obj = convert_like_with_context (cand->convs[0], obj, cand->fn, -1,
+                                          complain);
+         obj = convert_from_reference (obj);
+         result = cp_build_function_call (obj, args, complain);
+       }
     }
 
-  /* Since cand->fn will be a type, not a function, for a conversion
-     function, we must be careful not to unconditionally look at
-     DECL_NAME here.  */
-  if (TREE_CODE (cand->fn) == FUNCTION_DECL
-      && DECL_OVERLOADED_OPERATOR_P (cand->fn) == CALL_EXPR)
-    return build_over_call (cand, mem_args, LOOKUP_NORMAL);
-
-  obj = convert_like_with_context
-          (TREE_VEC_ELT (cand->convs, 0), obj, cand->fn, -1);
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
 
-  /* FIXME */
-  return build_function_call (obj, args);
+  return result;
 }
 
 static void
-op_error (code, code2, arg1, arg2, arg3, problem)
-     enum tree_code code, code2;
-     tree arg1, arg2, arg3;
-     const char *problem;
+op_error (enum tree_code code, enum tree_code code2,
+         tree arg1, tree arg2, tree arg3, const char *problem)
 {
   const char *opname;
 
@@ -2822,37 +3338,45 @@ op_error (code, code2, arg1, arg2, arg3, problem)
   switch (code)
     {
     case COND_EXPR:
-      error ("%s for `%T ? %T : %T' operator", problem,
-               error_type (arg1), error_type (arg2), error_type (arg3));
+      error ("%s for ternary %<operator?:%> in %<%E ? %E : %E%>",
+            problem, arg1, arg2, arg3);
       break;
+
     case POSTINCREMENT_EXPR:
     case POSTDECREMENT_EXPR:
-      error ("%s for `%T %s' operator", problem, error_type (arg1), opname);
+      error ("%s for %<operator%s%> in %<%E%s%>", problem, opname, arg1, opname);
       break;
+
     case ARRAY_REF:
-      error ("%s for `%T [%T]' operator", problem,
-               error_type (arg1), error_type (arg2));
+      error ("%s for %<operator[]%> in %<%E[%E]%>", problem, arg1, arg2);
+      break;
+
+    case REALPART_EXPR:
+    case IMAGPART_EXPR:
+      error ("%s for %qs in %<%s %E%>", problem, opname, opname, arg1);
       break;
+
     default:
       if (arg2)
-       error ("%s for `%T %s %T' operator", problem,
-                 error_type (arg1), opname, error_type (arg2));
+       error ("%s for %<operator%s%> in %<%E %s %E%>",
+              problem, opname, arg1, opname, arg2);
       else
-       error ("%s for `%s %T' operator", problem, opname, error_type (arg1));
+       error ("%s for %<operator%s%> in %<%s%E%>",
+              problem, opname, opname, arg1);
+      break;
     }
 }
 
 /* Return the implicit conversion sequence that could be used to
    convert E1 to E2 in [expr.cond].  */
 
-static tree
-conditional_conversion (e1, e2)
-     tree e1;
-     tree e2;
+static conversion *
+conditional_conversion (tree e1, tree e2)
 {
   tree t1 = non_reference (TREE_TYPE (e1));
   tree t2 = non_reference (TREE_TYPE (e2));
-  tree conv;
+  conversion *conv;
+  bool good_base;
 
   /* [expr.cond]
 
@@ -2862,9 +3386,10 @@ conditional_conversion (e1, e2)
      reference must bind directly (_dcl.init.ref_) to E1.  */
   if (real_lvalue_p (e2))
     {
-      conv = implicit_conversion (build_reference_type (t2), 
+      conv = implicit_conversion (build_reference_type (t2),
                                  t1,
                                  e1,
+                                 /*c_cast_p=*/false,
                                  LOOKUP_NO_TEMP_BIND);
       if (conv)
        return conv;
@@ -2881,47 +3406,46 @@ conditional_conversion (e1, e2)
      changed to an rvalue of type T2 that still refers to the original
      source class object (or the appropriate subobject thereof).  */
   if (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
-      && same_or_base_type_p (TYPE_MAIN_VARIANT (t2), 
-                             TYPE_MAIN_VARIANT (t1)))
+      && ((good_base = DERIVED_FROM_P (t2, t1)) || DERIVED_FROM_P (t1, t2)))
     {
-      if (at_least_as_qualified_p (t2, t1))
+      if (good_base && at_least_as_qualified_p (t2, t1))
        {
-         conv = build1 (IDENTITY_CONV, t1, e1);
-         if (!same_type_p (TYPE_MAIN_VARIANT (t1), 
+         conv = build_identity_conv (t1, e1);
+         if (!same_type_p (TYPE_MAIN_VARIANT (t1),
                            TYPE_MAIN_VARIANT (t2)))
-           conv = build_conv (BASE_CONV, t2, conv);
+           conv = build_conv (ck_base, t2, conv);
+         else
+           conv = build_conv (ck_rvalue, t2, conv);
          return conv;
        }
       else
-       return NULL_TREE;
+       return NULL;
     }
+  else
+    /* [expr.cond]
 
-  /* [expr.cond]
-
-     E1 can be converted to match E2 if E1 can be implicitly converted
-     to the type that expression E2 would have if E2 were converted to
-     an rvalue (or the type it has, if E2 is an rvalue).  */
-  return implicit_conversion (t2, t1, e1, LOOKUP_NORMAL);
+       Otherwise: E1 can be converted to match E2 if E1 can be implicitly
+       converted to the type that expression E2 would have if E2 were
+       converted to an rvalue (or the type it has, if E2 is an rvalue).  */
+    return implicit_conversion (t2, t1, e1, /*c_cast_p=*/false,
+                               LOOKUP_NORMAL);
 }
 
 /* Implement [expr.cond].  ARG1, ARG2, and ARG3 are the three
-   arguments to the conditional expression.  By the time this function
-   is called, any suitable candidate functions are included in
-   CANDIDATES.  */
+   arguments to the conditional expression.  */
 
 tree
-build_conditional_expr (arg1, arg2, arg3)
-     tree arg1;
-     tree arg2;
-     tree arg3;
+build_conditional_expr (tree arg1, tree arg2, tree arg3,
+                        tsubst_flags_t complain)
 {
   tree arg2_type;
   tree arg3_type;
-  tree result;
+  tree result = NULL_TREE;
   tree result_type = NULL_TREE;
-  int lvalue_p = 1;
+  bool lvalue_p = true;
   struct z_candidate *candidates = 0;
   struct z_candidate *cand;
+  void *p;
 
   /* As a G++ extension, the second argument to the conditional can be
      omitted.  (So that `a ? : c' is roughly equivalent to `a ? a :
@@ -2929,25 +3453,28 @@ build_conditional_expr (arg1, arg2, arg3)
      calculated only once.  */
   if (!arg2)
     {
-      if (pedantic)
-       pedwarn ("ISO C++ forbids omitting the middle term of a ?: expression");
-      arg1 = arg2 = save_expr (arg1);
+      if (complain & tf_error)
+       pedwarn (input_location, OPT_pedantic, 
+                "ISO C++ forbids omitting the middle term of a ?: expression");
+
+      /* Make sure that lvalues remain lvalues.  See g++.oliva/ext1.C.  */
+      if (real_lvalue_p (arg1))
+       arg2 = arg1 = stabilize_reference (arg1);
+      else
+       arg2 = arg1 = save_expr (arg1);
     }
 
   /* [expr.cond]
-  
-     The first expr ession is implicitly converted to bool (clause
+
+     The first expression is implicitly converted to bool (clause
      _conv_).  */
-  arg1 = cp_convert (boolean_type_node, arg1);
+  arg1 = perform_implicit_conversion (boolean_type_node, arg1, complain);
 
   /* If something has already gone wrong, just pass that fact up the
      tree.  */
-  if (arg1 == error_mark_node 
-      || arg2 == error_mark_node 
-      || arg3 == error_mark_node 
-      || TREE_TYPE (arg1) == error_mark_node
-      || TREE_TYPE (arg2) == error_mark_node
-      || TREE_TYPE (arg3) == error_mark_node)
+  if (error_operand_p (arg1)
+      || error_operand_p (arg2)
+      || error_operand_p (arg3))
     return error_mark_node;
 
   /* [expr.cond]
@@ -2957,8 +3484,8 @@ build_conditional_expr (arg1, arg2, arg3)
      array-to-pointer (_conv.array_), and function-to-pointer
      (_conv.func_) standard conversions are performed on the second
      and third operands.  */
-  arg2_type = TREE_TYPE (arg2);
-  arg3_type = TREE_TYPE (arg3);
+  arg2_type = unlowered_expr_type (arg2);
+  arg3_type = unlowered_expr_type (arg3);
   if (VOID_TYPE_P (arg2_type) || VOID_TYPE_P (arg3_type))
     {
       /* Do the conversions.  We don't these for `void' type arguments
@@ -2980,21 +3507,48 @@ build_conditional_expr (arg1, arg2, arg3)
           type of the other and is an rvalue.
 
         --Both the second and the third operands have type void; the
-          result is of type void and is an rvalue.   */
-      if ((TREE_CODE (arg2) == THROW_EXPR)
-         ^ (TREE_CODE (arg3) == THROW_EXPR))
-       result_type = ((TREE_CODE (arg2) == THROW_EXPR) 
-                      ? arg3_type : arg2_type);
+          result is of type void and is an rvalue.
+
+        We must avoid calling force_rvalue for expressions of type
+        "void" because it will complain that their value is being
+        used.  */
+      if (TREE_CODE (arg2) == THROW_EXPR
+         && TREE_CODE (arg3) != THROW_EXPR)
+       {
+         if (!VOID_TYPE_P (arg3_type))
+           arg3 = force_rvalue (arg3);
+         arg3_type = TREE_TYPE (arg3);
+         result_type = arg3_type;
+       }
+      else if (TREE_CODE (arg2) != THROW_EXPR
+              && TREE_CODE (arg3) == THROW_EXPR)
+       {
+         if (!VOID_TYPE_P (arg2_type))
+           arg2 = force_rvalue (arg2);
+         arg2_type = TREE_TYPE (arg2);
+         result_type = arg2_type;
+       }
       else if (VOID_TYPE_P (arg2_type) && VOID_TYPE_P (arg3_type))
        result_type = void_type_node;
       else
        {
-         error ("`%E' has type `void' and is not a throw-expression",
-                   VOID_TYPE_P (arg2_type) ? arg2 : arg3);
+          if (complain & tf_error)
+            {
+              if (VOID_TYPE_P (arg2_type))
+                error ("second operand to the conditional operator "
+                       "is of type %<void%>, "
+                       "but the third operand is neither a throw-expression "
+                       "nor of type %<void%>");
+              else
+                error ("third operand to the conditional operator "
+                       "is of type %<void%>, "
+                       "but the second operand is neither a throw-expression "
+                       "nor of type %<void%>");
+            }
          return error_mark_node;
        }
 
-      lvalue_p = 0;
+      lvalue_p = false;
       goto valid_operands;
     }
   /* [expr.cond]
@@ -3005,9 +3559,15 @@ build_conditional_expr (arg1, arg2, arg3)
   else if (!same_type_p (arg2_type, arg3_type)
           && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
     {
-      tree conv2 = conditional_conversion (arg2, arg3);
-      tree conv3 = conditional_conversion (arg3, arg2);
-      
+      conversion *conv2;
+      conversion *conv3;
+
+      /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+      p = conversion_obstack_alloc (0);
+
+      conv2 = conditional_conversion (arg2, arg3);
+      conv3 = conditional_conversion (arg3, arg2);
+
       /* [expr.cond]
 
         If both can be converted, or one can be converted but the
@@ -3017,45 +3577,74 @@ build_conditional_expr (arg1, arg2, arg3)
         one conversion is possible, that conversion is applied to the
         chosen operand and the converted operand is used in place of
         the original operand for the remainder of this section.  */
-      if ((conv2 && !ICS_BAD_FLAG (conv2) 
-          && conv3 && !ICS_BAD_FLAG (conv3))
-         || (conv2 && TREE_CODE (conv2) == AMBIG_CONV)
-         || (conv3 && TREE_CODE (conv3) == AMBIG_CONV))
+      if ((conv2 && !conv2->bad_p
+          && conv3 && !conv3->bad_p)
+         || (conv2 && conv2->kind == ck_ambig)
+         || (conv3 && conv3->kind == ck_ambig))
        {
-         error ("operands to ?: have different types");
-         return error_mark_node;
+         error ("operands to ?: have different types %qT and %qT",
+                arg2_type, arg3_type);
+         result = error_mark_node;
        }
-      else if (conv2 && !ICS_BAD_FLAG (conv2))
+      else if (conv2 && (!conv2->bad_p || !conv3))
        {
-         arg2 = convert_like (conv2, arg2);
+         arg2 = convert_like (conv2, arg2, complain);
          arg2 = convert_from_reference (arg2);
-         /* That may not quite have done the trick.  If the two types
-            are cv-qualified variants of one another, we will have
-            just used an IDENTITY_CONV.  (There's no conversion from
-            an lvalue of one class type to an lvalue of another type,
-            even a cv-qualified variant, and we don't want to lose
-            lvalue-ness here.)  So, we manually add a NOP_EXPR here
-            if necessary.  */
-         if (!same_type_p (TREE_TYPE (arg2), arg3_type))
-           arg2 = build1 (NOP_EXPR, arg3_type, arg2);
          arg2_type = TREE_TYPE (arg2);
+         /* Even if CONV2 is a valid conversion, the result of the
+            conversion may be invalid.  For example, if ARG3 has type
+            "volatile X", and X does not have a copy constructor
+            accepting a "volatile X&", then even if ARG2 can be
+            converted to X, the conversion will fail.  */
+         if (error_operand_p (arg2))
+           result = error_mark_node;
        }
-      else if (conv3 && !ICS_BAD_FLAG (conv3))
+      else if (conv3 && (!conv3->bad_p || !conv2))
        {
-         arg3 = convert_like (conv3, arg3);
+         arg3 = convert_like (conv3, arg3, complain);
          arg3 = convert_from_reference (arg3);
-         if (!same_type_p (TREE_TYPE (arg3), arg2_type))
-           arg3 = build1 (NOP_EXPR, arg2_type, arg3);
          arg3_type = TREE_TYPE (arg3);
+         if (error_operand_p (arg3))
+           result = error_mark_node;
        }
+
+      /* Free all the conversions we allocated.  */
+      obstack_free (&conversion_obstack, p);
+
+      if (result)
+       return result;
+
+      /* If, after the conversion, both operands have class type,
+        treat the cv-qualification of both operands as if it were the
+        union of the cv-qualification of the operands.
+
+        The standard is not clear about what to do in this
+        circumstance.  For example, if the first operand has type
+        "const X" and the second operand has a user-defined
+        conversion to "volatile X", what is the type of the second
+        operand after this step?  Making it be "const X" (matching
+        the first operand) seems wrong, as that discards the
+        qualification without actually performing a copy.  Leaving it
+        as "volatile X" seems wrong as that will result in the
+        conditional expression failing altogether, even though,
+        according to this step, the one operand could be converted to
+        the type of the other.  */
+      if ((conv2 || conv3)
+         && CLASS_TYPE_P (arg2_type)
+         && TYPE_QUALS (arg2_type) != TYPE_QUALS (arg3_type))
+       arg2_type = arg3_type =
+         cp_build_qualified_type (arg2_type,
+                                  TYPE_QUALS (arg2_type)
+                                  | TYPE_QUALS (arg3_type));
     }
 
   /* [expr.cond]
 
      If the second and third operands are lvalues and have the same
      type, the result is of that type and is an lvalue.  */
-  if (real_lvalue_p (arg2) && real_lvalue_p (arg3) && 
-      same_type_p (arg2_type, arg3_type))
+  if (real_lvalue_p (arg2)
+      && real_lvalue_p (arg3)
+      && same_type_p (arg2_type, arg3_type))
     {
       result_type = arg2_type;
       goto valid_operands;
@@ -3068,12 +3657,13 @@ build_conditional_expr (arg1, arg2, arg3)
      cv-qualified) class type, overload resolution is used to
      determine the conversions (if any) to be applied to the operands
      (_over.match.oper_, _over.built_).  */
-  lvalue_p = 0;
+  lvalue_p = false;
   if (!same_type_p (arg2_type, arg3_type)
       && (CLASS_TYPE_P (arg2_type) || CLASS_TYPE_P (arg3_type)))
     {
       tree args[3];
-      tree conv;
+      conversion *conv;
+      bool any_viable_p;
 
       /* Rearrange the arguments so that add_builtin_candidate only has
         to know about two args.  In build_builtin_candidates, the
@@ -3081,29 +3671,35 @@ build_conditional_expr (arg1, arg2, arg3)
       args[0] = arg2;
       args[1] = arg3;
       args[2] = arg1;
-      candidates = add_builtin_candidates (candidates, 
-                                          COND_EXPR, 
-                                          NOP_EXPR,
-                                          ansi_opname (COND_EXPR),
-                                          args,
-                                          LOOKUP_NORMAL);
+      add_builtin_candidates (&candidates,
+                             COND_EXPR,
+                             NOP_EXPR,
+                             ansi_opname (COND_EXPR),
+                             args,
+                             LOOKUP_NORMAL);
 
       /* [expr.cond]
 
         If the overload resolution fails, the program is
         ill-formed.  */
-      if (!any_viable (candidates))
+      candidates = splice_viable (candidates, pedantic, &any_viable_p);
+      if (!any_viable_p)
        {
-         op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
-         print_z_candidates (candidates);
+          if (complain & tf_error)
+            {
+              op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
+              print_z_candidates (candidates);
+            }
          return error_mark_node;
        }
-      candidates = splice_viable (candidates);
       cand = tourney (candidates);
       if (!cand)
        {
-         op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
-         print_z_candidates (candidates);
+          if (complain & tf_error)
+            {
+              op_error (COND_EXPR, NOP_EXPR, arg1, arg2, arg3, "no match");
+              print_z_candidates (candidates);
+            }
          return error_mark_node;
        }
 
@@ -3112,12 +3708,12 @@ build_conditional_expr (arg1, arg2, arg3)
         Otherwise, the conversions thus determined are applied, and
         the converted operands are used in place of the original
         operands for the remainder of this section.  */
-      conv = TREE_VEC_ELT (cand->convs, 0);
-      arg1 = convert_like (conv, arg1);
-      conv = TREE_VEC_ELT (cand->convs, 1);
-      arg2 = convert_like (conv, arg2);
-      conv = TREE_VEC_ELT (cand->convs, 2);
-      arg3 = convert_like (conv, arg3);
+      conv = cand->convs[0];
+      arg1 = convert_like (conv, arg1, complain);
+      conv = cand->convs[1];
+      arg2 = convert_like (conv, arg2, complain);
+      conv = cand->convs[2];
+      arg3 = convert_like (conv, arg3, complain);
     }
 
   /* [expr.cond]
@@ -3129,30 +3725,21 @@ build_conditional_expr (arg1, arg2, arg3)
      We need to force the lvalue-to-rvalue conversion here for class types,
      so we get TARGET_EXPRs; trying to deal with a COND_EXPR of class rvalues
      that isn't wrapped with a TARGET_EXPR plays havoc with exception
-     regions.
-
-     We use ocp_convert rather than build_user_type_conversion because the
-     latter returns NULL_TREE on failure, while the former gives an error.  */
+     regions.  */
 
-  if (IS_AGGR_TYPE (TREE_TYPE (arg2)) && real_lvalue_p (arg2))
-    arg2 = ocp_convert (TREE_TYPE (arg2), arg2,
-                       CONV_IMPLICIT|CONV_FORCE_TEMP, LOOKUP_NORMAL);
-  else
-    arg2 = decay_conversion (arg2);
-  arg2_type = TREE_TYPE (arg2);
+  arg2 = force_rvalue (arg2);
+  if (!CLASS_TYPE_P (arg2_type))
+    arg2_type = TREE_TYPE (arg2);
 
-  if (IS_AGGR_TYPE (TREE_TYPE (arg3)) && real_lvalue_p (arg3))
-    arg3 = ocp_convert (TREE_TYPE (arg3), arg3,
-                       CONV_IMPLICIT|CONV_FORCE_TEMP, LOOKUP_NORMAL);
-  else
-    arg3 = decay_conversion (arg3);
-  arg3_type = TREE_TYPE (arg3);
+  arg3 = force_rvalue (arg3);
+  if (!CLASS_TYPE_P (arg2_type))
+    arg3_type = TREE_TYPE (arg3);
 
   if (arg2 == error_mark_node || arg3 == error_mark_node)
     return error_mark_node;
-  
+
   /* [expr.cond]
-     
+
      After those conversions, one of the following shall hold:
 
      --The second and third operands have the same type; the result  is  of
@@ -3164,28 +3751,36 @@ build_conditional_expr (arg1, arg2, arg3)
      --The second and third operands have arithmetic or enumeration
        type; the usual arithmetic conversions are performed to bring
        them to a common type, and the result is of that type.  */
-  else if ((ARITHMETIC_TYPE_P (arg2_type) 
-           || TREE_CODE (arg2_type) == ENUMERAL_TYPE)
+  else if ((ARITHMETIC_TYPE_P (arg2_type)
+           || UNSCOPED_ENUM_P (arg2_type))
           && (ARITHMETIC_TYPE_P (arg3_type)
-              || TREE_CODE (arg3_type) == ENUMERAL_TYPE))
+              || UNSCOPED_ENUM_P (arg3_type)))
     {
       /* In this case, there is always a common type.  */
-      result_type = type_after_usual_arithmetic_conversions (arg2_type, 
+      result_type = type_after_usual_arithmetic_conversions (arg2_type,
                                                             arg3_type);
-      
+
       if (TREE_CODE (arg2_type) == ENUMERAL_TYPE
-          && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
-         warning ("enumeral mismatch in conditional expression: `%T' vs `%T'",
-                   arg2_type, arg3_type);
+         && TREE_CODE (arg3_type) == ENUMERAL_TYPE)
+        {
+          if (complain & tf_warning)
+            warning (0, 
+                     "enumeral mismatch in conditional expression: %qT vs %qT",
+                     arg2_type, arg3_type);
+        }
       else if (extra_warnings
-               && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
-                    && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
-                   || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
-                       && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
-        warning ("enumeral and non-enumeral type in conditional expression");
-      
-      arg2 = perform_implicit_conversion (result_type, arg2);
-      arg3 = perform_implicit_conversion (result_type, arg3);
+              && ((TREE_CODE (arg2_type) == ENUMERAL_TYPE
+                   && !same_type_p (arg3_type, type_promotes_to (arg2_type)))
+                  || (TREE_CODE (arg3_type) == ENUMERAL_TYPE
+                      && !same_type_p (arg2_type, type_promotes_to (arg3_type)))))
+        {
+          if (complain & tf_warning)
+            warning (0, 
+                     "enumeral and non-enumeral type in conditional expression");
+        }
+
+      arg2 = perform_implicit_conversion (result_type, arg2, complain);
+      arg3 = perform_implicit_conversion (result_type, arg3, complain);
     }
   /* [expr.cond]
 
@@ -3202,70 +3797,158 @@ build_conditional_expr (arg1, arg2, arg3)
        qualification conversions (_conv.qual_) are performed to bring
        them to a common type, whose cv-qualification shall match the
        cv-qualification of either the second or the third operand.
-       The result is of the common type.   */
-  else if ((null_ptr_cst_p (arg2) 
-           && (TYPE_PTR_P (arg3_type) || TYPE_PTRMEM_P (arg3_type)
-               || TYPE_PTRMEMFUNC_P (arg3_type)))
-          || (null_ptr_cst_p (arg3) 
-              && (TYPE_PTR_P (arg2_type) || TYPE_PTRMEM_P (arg2_type)
-               || TYPE_PTRMEMFUNC_P (arg2_type)))
+       The result is of the common type.  */
+  else if ((null_ptr_cst_p (arg2)
+           && (TYPE_PTR_P (arg3_type) || TYPE_PTR_TO_MEMBER_P (arg3_type)))
+          || (null_ptr_cst_p (arg3)
+              && (TYPE_PTR_P (arg2_type) || TYPE_PTR_TO_MEMBER_P (arg2_type)))
           || (TYPE_PTR_P (arg2_type) && TYPE_PTR_P (arg3_type))
           || (TYPE_PTRMEM_P (arg2_type) && TYPE_PTRMEM_P (arg3_type))
-          || (TYPE_PTRMEMFUNC_P (arg2_type) 
-              && TYPE_PTRMEMFUNC_P (arg3_type)))
+          || (TYPE_PTRMEMFUNC_P (arg2_type) && TYPE_PTRMEMFUNC_P (arg3_type)))
     {
       result_type = composite_pointer_type (arg2_type, arg3_type, arg2,
-                                           arg3, "conditional expression");
-      arg2 = perform_implicit_conversion (result_type, arg2);
-      arg3 = perform_implicit_conversion (result_type, arg3);
+                                           arg3, "conditional expression",
+                                           complain);
+      if (result_type == error_mark_node)
+       return error_mark_node;
+      arg2 = perform_implicit_conversion (result_type, arg2, complain);
+      arg3 = perform_implicit_conversion (result_type, arg3, complain);
     }
 
   if (!result_type)
     {
-      error ("operands to ?: have different types");
+      if (complain & tf_error)
+        error ("operands to ?: have different types %qT and %qT",
+               arg2_type, arg3_type);
       return error_mark_node;
     }
 
  valid_operands:
-  result = fold (build (COND_EXPR, result_type, arg1, arg2, arg3));
-  /* Expand both sides into the same slot, hopefully the target of the
-     ?: expression.  We used to check for TARGET_EXPRs here, but now we
-     sometimes wrap them in NOP_EXPRs so the test would fail.  */
-  if (!lvalue_p && IS_AGGR_TYPE (result_type))
-    result = build_target_expr_with_type (result, result_type);
-  
-  /* If this expression is an rvalue, but might be mistaken for an
-     lvalue, we must add a NON_LVALUE_EXPR.  */
-  if (!lvalue_p && real_lvalue_p (result))
-    result = build1 (NON_LVALUE_EXPR, result_type, result);
+  result = fold_if_not_in_template (build3 (COND_EXPR, result_type, arg1,
+                                           arg2, arg3));
+  /* We can't use result_type below, as fold might have returned a
+     throw_expr.  */
+
+  if (!lvalue_p)
+    {
+      /* Expand both sides into the same slot, hopefully the target of
+        the ?: expression.  We used to check for TARGET_EXPRs here,
+        but now we sometimes wrap them in NOP_EXPRs so the test would
+        fail.  */
+      if (CLASS_TYPE_P (TREE_TYPE (result)))
+       result = get_target_expr (result);
+      /* If this expression is an rvalue, but might be mistaken for an
+        lvalue, we must add a NON_LVALUE_EXPR.  */
+      result = rvalue (result);
+    }
 
   return result;
 }
 
-tree
-build_new_op (code, flags, arg1, arg2, arg3)
-     enum tree_code code;
-     int flags;
-     tree arg1, arg2, arg3;
+/* OPERAND is an operand to an expression.  Perform necessary steps
+   required before using it.  If OPERAND is NULL_TREE, NULL_TREE is
+   returned.  */
+
+static tree
+prep_operand (tree operand)
 {
-  struct z_candidate *candidates = 0, *cand;
-  tree fns, mem_arglist = NULL_TREE, arglist, fnname;
-  enum tree_code code2 = NOP_EXPR;
-  tree templates = NULL_TREE;
-  tree conv;
+  if (operand)
+    {
+      if (CLASS_TYPE_P (TREE_TYPE (operand))
+         && CLASSTYPE_TEMPLATE_INSTANTIATION (TREE_TYPE (operand)))
+       /* Make sure the template type is instantiated now.  */
+       instantiate_class_template (TYPE_MAIN_VARIANT (TREE_TYPE (operand)));
+    }
 
-  if (arg1 == error_mark_node
-      || arg2 == error_mark_node
-      || arg3 == error_mark_node)
-    return error_mark_node;
+  return operand;
+}
+
+/* Add each of the viable functions in FNS (a FUNCTION_DECL or
+   OVERLOAD) to the CANDIDATES, returning an updated list of
+   CANDIDATES.  The ARGS are the arguments provided to the call,
+   without any implicit object parameter.  The EXPLICIT_TARGS are
+   explicit template arguments provided.  TEMPLATE_ONLY is true if
+   only template functions should be considered.  CONVERSION_PATH,
+   ACCESS_PATH, and FLAGS are as for add_function_candidate.  */
+
+static void
+add_candidates (tree fns, tree args,
+               tree explicit_targs, bool template_only,
+               tree conversion_path, tree access_path,
+               int flags,
+               struct z_candidate **candidates)
+{
+  tree ctype;
+  tree non_static_args;
+
+  ctype = conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE;
+  /* Delay creating the implicit this parameter until it is needed.  */
+  non_static_args = NULL_TREE;
 
-  /* This can happen if a template takes all non-type parameters, e.g.
-     undeclared_template<1, 5, 72>a;  */
-  if (code == LT_EXPR && TREE_CODE (arg1) == TEMPLATE_DECL)
+  while (fns)
     {
-      error ("`%D' must be declared before use", arg1);
-      return error_mark_node;
+      tree fn;
+      tree fn_args;
+
+      fn = OVL_CURRENT (fns);
+      /* Figure out which set of arguments to use.  */
+      if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
+       {
+         /* If this function is a non-static member, prepend the implicit
+            object parameter.  */
+         if (!non_static_args)
+           non_static_args = tree_cons (NULL_TREE,
+                                        build_this (TREE_VALUE (args)),
+                                        TREE_CHAIN (args));
+         fn_args = non_static_args;
+       }
+      else
+       /* Otherwise, just use the list of arguments provided.  */
+       fn_args = args;
+
+      if (TREE_CODE (fn) == TEMPLATE_DECL)
+       add_template_candidate (candidates,
+                               fn,
+                               ctype,
+                               explicit_targs,
+                               fn_args,
+                               NULL_TREE,
+                               access_path,
+                               conversion_path,
+                               flags,
+                               DEDUCE_CALL);
+      else if (!template_only)
+       add_function_candidate (candidates,
+                               fn,
+                               ctype,
+                               fn_args,
+                               access_path,
+                               conversion_path,
+                               flags);
+      fns = OVL_NEXT (fns);
     }
+}
+
+tree
+build_new_op (enum tree_code code, int flags, tree arg1, tree arg2, tree arg3,
+             bool *overloaded_p, tsubst_flags_t complain)
+{
+  struct z_candidate *candidates = 0, *cand;
+  tree arglist, fnname;
+  tree args[3];
+  tree result = NULL_TREE;
+  bool result_valid_p = false;
+  enum tree_code code2 = NOP_EXPR;
+  conversion *conv;
+  void *p;
+  bool strict_p;
+  bool any_viable_p;
+  bool expl_eq_arg1 = false;
+
+  if (error_operand_p (arg1)
+      || error_operand_p (arg2)
+      || error_operand_p (arg3))
+    return error_mark_node;
 
   if (code == MODIFY_EXPR)
     {
@@ -3276,39 +3959,33 @@ build_new_op (code, flags, arg1, arg2, arg3)
   else
     fnname = ansi_opname (code);
 
-  if (TREE_CODE (arg1) == OFFSET_REF)
-    arg1 = resolve_offset_ref (arg1);
-  arg1 = convert_from_reference (arg1);
-  
+  arg1 = prep_operand (arg1);
+
   switch (code)
     {
     case NEW_EXPR:
     case VEC_NEW_EXPR:
     case VEC_DELETE_EXPR:
     case DELETE_EXPR:
-      /* Use build_op_new_call and build_op_delete_call instead. */
-      abort ();
+      /* Use build_op_new_call and build_op_delete_call instead.  */
+      gcc_unreachable ();
 
     case CALL_EXPR:
-      return build_object_call (arg1, arg2);
+      return build_object_call (arg1, arg2, complain);
 
+    case TRUTH_ORIF_EXPR:
+    case TRUTH_ANDIF_EXPR:
+    case TRUTH_AND_EXPR:
+    case TRUTH_OR_EXPR:
+      if (COMPARISON_CLASS_P (arg1))
+       expl_eq_arg1 = true;
     default:
       break;
     }
 
-  if (arg2)
-    {
-      if (TREE_CODE (arg2) == OFFSET_REF)
-       arg2 = resolve_offset_ref (arg2);
-      arg2 = convert_from_reference (arg2);
-    }
-  if (arg3)
-    {
-      if (TREE_CODE (arg3) == OFFSET_REF)
-       arg3 = resolve_offset_ref (arg3);
-      arg3 = convert_from_reference (arg3);
-    }
-  
+  arg2 = prep_operand (arg2);
+  arg3 = prep_operand (arg3);
+
   if (code == COND_EXPR)
     {
       if (arg2 == NULL_TREE
@@ -3332,215 +4009,238 @@ build_new_op (code, flags, arg1, arg2, arg3)
     arglist = tree_cons (NULL_TREE, arg2, arglist);
   arglist = tree_cons (NULL_TREE, arg1, arglist);
 
-  fns = lookup_function_nonclass (fnname, arglist);
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
 
-  if (fns && TREE_CODE (fns) == TREE_LIST)
-    fns = TREE_VALUE (fns);
-  for (; fns; fns = OVL_NEXT (fns))
+  /* Add namespace-scope operators to the list of functions to
+     consider.  */
+  add_candidates (lookup_function_nonclass (fnname, arglist, /*block_p=*/true),
+                 arglist, NULL_TREE, false, NULL_TREE, NULL_TREE,
+                 flags, &candidates);
+  /* Add class-member operators to the candidate set.  */
+  if (CLASS_TYPE_P (TREE_TYPE (arg1)))
     {
-      tree fn = OVL_CURRENT (fns);
-      if (TREE_CODE (fn) == TEMPLATE_DECL)
+      tree fns;
+
+      fns = lookup_fnfields (TREE_TYPE (arg1), fnname, 1);
+      if (fns == error_mark_node)
        {
-         templates = tree_cons (NULL_TREE, fn, templates);
-         candidates 
-           = add_template_candidate (candidates, fn, NULL_TREE, NULL_TREE,
-                                     arglist, TREE_TYPE (fnname),
-                                     flags, DEDUCE_CALL); 
+         result = error_mark_node;
+         goto user_defined_result_ready;
        }
-      else
-       candidates = add_function_candidate (candidates, fn, NULL_TREE,
-                                            arglist, flags);
-    }
-
-  if (IS_AGGR_TYPE (TREE_TYPE (arg1)))
+      if (fns)
+       add_candidates (BASELINK_FUNCTIONS (fns), arglist,
+                       NULL_TREE, false,
+                       BASELINK_BINFO (fns),
+                       TYPE_BINFO (TREE_TYPE (arg1)),
+                       flags, &candidates);
+    }
+
+  /* Rearrange the arguments for ?: so that add_builtin_candidate only has
+     to know about two args; a builtin candidate will always have a first
+     parameter of type bool.  We'll handle that in
+     build_builtin_candidate.  */
+  if (code == COND_EXPR)
     {
-      fns = lookup_fnfields (TYPE_BINFO (TREE_TYPE (arg1)), fnname, 1);
-      if (fns == error_mark_node)
-       return fns;
+      args[0] = arg2;
+      args[1] = arg3;
+      args[2] = arg1;
     }
   else
-    fns = NULL_TREE;
-
-  if (fns)
     {
-      tree basetype = BINFO_TYPE (TREE_PURPOSE (fns));
-      mem_arglist = tree_cons (NULL_TREE, build_this (arg1), TREE_CHAIN (arglist));
-      for (fns = TREE_VALUE (fns); fns; fns = OVL_NEXT (fns))
-       {
-         tree fn = OVL_CURRENT (fns);
-         tree this_arglist;
-
-         if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
-           this_arglist = mem_arglist;
-         else
-           this_arglist = arglist;
-
-         if (TREE_CODE (fn) == TEMPLATE_DECL)
-           {
-             /* A member template. */
-             templates = tree_cons (NULL_TREE, fn, templates);
-             candidates 
-               = add_template_candidate (candidates, fn, basetype, NULL_TREE,
-                                         this_arglist,  TREE_TYPE (fnname),
-                                         flags, DEDUCE_CALL); 
-           }
-         else
-           candidates = add_function_candidate
-             (candidates, fn, basetype, this_arglist, flags);
-
-         if (candidates)
-           candidates->basetype_path = TYPE_BINFO (TREE_TYPE (arg1));
-       }
+      args[0] = arg1;
+      args[1] = arg2;
+      args[2] = NULL_TREE;
     }
 
-  {
-    tree args[3];
+  add_builtin_candidates (&candidates, code, code2, fnname, args, flags);
 
-    /* Rearrange the arguments for ?: so that add_builtin_candidate only has
-       to know about two args; a builtin candidate will always have a first
-       parameter of type bool.  We'll handle that in
-       build_builtin_candidate.  */
-    if (code == COND_EXPR)
-      {
-       args[0] = arg2;
-       args[1] = arg3;
-       args[2] = arg1;
-      }
-    else
-      {
-       args[0] = arg1;
-       args[1] = arg2;
-       args[2] = NULL_TREE;
-      }
+  switch (code)
+    {
+    case COMPOUND_EXPR:
+    case ADDR_EXPR:
+      /* For these, the built-in candidates set is empty
+        [over.match.oper]/3.  We don't want non-strict matches
+        because exact matches are always possible with built-in
+        operators.  The built-in candidate set for COMPONENT_REF
+        would be empty too, but since there are no such built-in
+        operators, we accept non-strict matches for them.  */
+      strict_p = true;
+      break;
 
-    candidates = add_builtin_candidates
-      (candidates, code, code2, fnname, args, flags);
-  }
+    default:
+      strict_p = pedantic;
+      break;
+    }
 
-  if (! any_viable (candidates))
+  candidates = splice_viable (candidates, strict_p, &any_viable_p);
+  if (!any_viable_p)
     {
       switch (code)
        {
        case POSTINCREMENT_EXPR:
        case POSTDECREMENT_EXPR:
+         /* Don't try anything fancy if we're not allowed to produce
+            errors.  */
+         if (!(complain & tf_error))
+           return error_mark_node;
+
          /* Look for an `operator++ (int)'.  If they didn't have
             one, then we fall back to the old way of doing things.  */
          if (flags & LOOKUP_COMPLAIN)
-           pedwarn ("no `%D(int)' declared for postfix `%s', trying prefix operator instead",
-                       fnname, 
-                       operator_name_info[code].name);
+           permerror (input_location, "no %<%D(int)%> declared for postfix %qs, "
+                      "trying prefix operator instead",
+                      fnname,
+                      operator_name_info[code].name);
          if (code == POSTINCREMENT_EXPR)
            code = PREINCREMENT_EXPR;
          else
-           code = PREDECREMENT_EXPR;   
-         return build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE);
-         
+           code = PREDECREMENT_EXPR;
+         result = build_new_op (code, flags, arg1, NULL_TREE, NULL_TREE,
+                                overloaded_p, complain);
+         break;
+
          /* The caller will deal with these.  */
        case ADDR_EXPR:
        case COMPOUND_EXPR:
        case COMPONENT_REF:
-         return NULL_TREE;
+         result = NULL_TREE;
+         result_valid_p = true;
+         break;
 
        default:
+         if ((flags & LOOKUP_COMPLAIN) && (complain & tf_error))
+           {
+               /* If one of the arguments of the operator represents
+                  an invalid use of member function pointer, try to report
+                  a meaningful error ...  */
+               if (invalid_nonstatic_memfn_p (arg1, tf_error)
+                   || invalid_nonstatic_memfn_p (arg2, tf_error)
+                   || invalid_nonstatic_memfn_p (arg3, tf_error))
+                 /* We displayed the error message.  */;
+               else
+                 {
+                   /* ... Otherwise, report the more generic
+                      "no matching operator found" error */
+                   op_error (code, code2, arg1, arg2, arg3, "no match");
+                   print_z_candidates (candidates);
+                 }
+           }
+         result = error_mark_node;
          break;
        }
-      if (flags & LOOKUP_COMPLAIN)
-       {
-         op_error (code, code2, arg1, arg2, arg3, "no match");
-         print_z_candidates (candidates);
-       }
-      return error_mark_node;
     }
-  candidates = splice_viable (candidates);
-  cand = tourney (candidates);
-
-  if (cand == 0)
+  else
     {
-      if (flags & LOOKUP_COMPLAIN)
+      cand = tourney (candidates);
+      if (cand == 0)
        {
-         op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
-         print_z_candidates (candidates);
+         if ((flags & LOOKUP_COMPLAIN) && (complain & tf_error))
+           {
+             op_error (code, code2, arg1, arg2, arg3, "ambiguous overload");
+             print_z_candidates (candidates);
+           }
+         result = error_mark_node;
        }
-      return error_mark_node;
-    }
-
-  if (TREE_CODE (cand->fn) == FUNCTION_DECL)
-    {
-      extern int warn_synth;
-      if (warn_synth
-         && fnname == ansi_assopname (NOP_EXPR)
-         && DECL_ARTIFICIAL (cand->fn)
-         && candidates->next
-         && ! candidates->next->next)
+      else if (TREE_CODE (cand->fn) == FUNCTION_DECL)
        {
-         warning ("using synthesized `%#D' for copy assignment",
-                     cand->fn);
-         cp_warning_at ("  where cfront would use `%#D'",
-                        cand == candidates
-                        ? candidates->next->fn
-                        : candidates->fn);
+         if (overloaded_p)
+           *overloaded_p = true;
+
+         if (resolve_args (arglist) == error_mark_node)
+           result = error_mark_node;
+         else
+           result = build_over_call (cand, LOOKUP_NORMAL, complain);
        }
+      else
+       {
+         /* Give any warnings we noticed during overload resolution.  */
+         if (cand->warnings && (complain & tf_warning))
+           {
+             struct candidate_warning *w;
+             for (w = cand->warnings; w; w = w->next)
+               joust (cand, w->loser, 1);
+           }
 
-      return build_over_call
-       (cand,
-        TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
-        ? mem_arglist : arglist,
-        LOOKUP_NORMAL);
-    }
+         /* Check for comparison of different enum types.  */
+         switch (code)
+           {
+           case GT_EXPR:
+           case LT_EXPR:
+           case GE_EXPR:
+           case LE_EXPR:
+           case EQ_EXPR:
+           case NE_EXPR:
+             if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE
+                 && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE
+                 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
+                     != TYPE_MAIN_VARIANT (TREE_TYPE (arg2)))
+                 && (complain & tf_warning))
+               {
+                 warning (OPT_Wenum_compare,
+                          "comparison between %q#T and %q#T",
+                          TREE_TYPE (arg1), TREE_TYPE (arg2));
+               }
+             break;
+           default:
+             break;
+           }
 
-  /* Check for comparison of different enum types.  */
-  switch (code)
-    {
-    case GT_EXPR:
-    case LT_EXPR:
-    case GE_EXPR:
-    case LE_EXPR:
-    case EQ_EXPR:
-    case NE_EXPR:
-      if (TREE_CODE (TREE_TYPE (arg1)) == ENUMERAL_TYPE 
-         && TREE_CODE (TREE_TYPE (arg2)) == ENUMERAL_TYPE 
-         && (TYPE_MAIN_VARIANT (TREE_TYPE (arg1))
-             != TYPE_MAIN_VARIANT (TREE_TYPE (arg2))))
-       {
-         warning ("comparison between `%#T' and `%#T'", 
-                     TREE_TYPE (arg1), TREE_TYPE (arg2));
+         /* We need to strip any leading REF_BIND so that bitfields
+            don't cause errors.  This should not remove any important
+            conversions, because builtins don't apply to class
+            objects directly.  */
+         conv = cand->convs[0];
+         if (conv->kind == ck_ref_bind)
+           conv = conv->u.next;
+         arg1 = convert_like (conv, arg1, complain);
+         if (arg2)
+           {
+             conv = cand->convs[1];
+             if (conv->kind == ck_ref_bind)
+               conv = conv->u.next;
+             arg2 = convert_like (conv, arg2, complain);
+           }
+         if (arg3)
+           {
+             conv = cand->convs[2];
+             if (conv->kind == ck_ref_bind)
+               conv = conv->u.next;
+             arg3 = convert_like (conv, arg3, complain);
+           }
+
+         if (!expl_eq_arg1) 
+           {
+             if (complain & tf_warning)
+               warn_logical_operator (code, arg1, arg2);
+             expl_eq_arg1 = true;
+           }
        }
-      break;
-    default:
-      break;
     }
 
-  /* We need to strip any leading REF_BIND so that bitfields don't cause
-     errors.  This should not remove any important conversions, because
-     builtins don't apply to class objects directly.  */
-  conv = TREE_VEC_ELT (cand->convs, 0);
-  if (TREE_CODE (conv) == REF_BIND)
-    conv = TREE_OPERAND (conv, 0);
-  arg1 = convert_like (conv, arg1);
-  if (arg2)
-    {
-      conv = TREE_VEC_ELT (cand->convs, 1);
-      if (TREE_CODE (conv) == REF_BIND)
-        conv = TREE_OPERAND (conv, 0);
-      arg2 = convert_like (conv, arg2);
-    }
-  if (arg3)
-    {
-      conv = TREE_VEC_ELT (cand->convs, 2);
-      if (TREE_CODE (conv) == REF_BIND)
-        conv = TREE_OPERAND (conv, 0);
-      arg3 = convert_like (conv, arg3);
-    }
+ user_defined_result_ready:
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
 
-builtin:
+  if (result || result_valid_p)
+    return result;
+
+ builtin:
   switch (code)
     {
     case MODIFY_EXPR:
-      return build_modify_expr (arg1, code2, arg2);
+      return cp_build_modify_expr (arg1, code2, arg2, complain);
 
     case INDIRECT_REF:
-      return build_indirect_ref (arg1, "unary *");
+      return cp_build_indirect_ref (arg1, "unary *", complain);
 
+    case TRUTH_ANDIF_EXPR:
+    case TRUTH_ORIF_EXPR:
+    case TRUTH_AND_EXPR:
+    case TRUTH_OR_EXPR:
+      if (!expl_eq_arg1)
+       warn_logical_operator (code, arg1, arg2);
     case PLUS_EXPR:
     case MINUS_EXPR:
     case MULT_EXPR:
@@ -3559,11 +4259,9 @@ builtin:
     case BIT_AND_EXPR:
     case BIT_IOR_EXPR:
     case BIT_XOR_EXPR:
-    case TRUTH_ANDIF_EXPR:
-    case TRUTH_ORIF_EXPR:
-      return cp_build_binary_op (code, arg1, arg2);
+      return cp_build_binary_op (input_location, code, arg1, arg2, complain);
 
-    case CONVERT_EXPR:
+    case UNARY_PLUS_EXPR:
     case NEGATE_EXPR:
     case BIT_NOT_EXPR:
     case TRUTH_NOT_EXPR:
@@ -3573,17 +4271,18 @@ builtin:
     case POSTDECREMENT_EXPR:
     case REALPART_EXPR:
     case IMAGPART_EXPR:
-      return build_unary_op (code, arg1, candidates != 0);
+      return cp_build_unary_op (code, arg1, candidates != 0, complain);
 
     case ARRAY_REF:
-      return build_array_ref (arg1, arg2);
+      return build_array_ref (arg1, arg2, input_location);
 
     case COND_EXPR:
-      return build_conditional_expr (arg1, arg2, arg3);
+      return build_conditional_expr (arg1, arg2, arg3, complain);
 
     case MEMBER_REF:
-      return build_m_component_ref
-       (build_indirect_ref (arg1, NULL), arg2);
+      return build_m_component_ref (cp_build_indirect_ref (arg1, NULL, 
+                                                           complain), 
+                                    arg2);
 
       /* The caller will deal with these.  */
     case ADDR_EXPR:
@@ -3592,9 +4291,9 @@ builtin:
       return NULL_TREE;
 
     default:
-      abort ();
-      return NULL_TREE;
+      gcc_unreachable ();
     }
+  return NULL_TREE;
 }
 
 /* Build a call to operator delete.  This has to be handled very specially,
@@ -3606,36 +4305,42 @@ builtin:
    CODE is either DELETE_EXPR or VEC_DELETE_EXPR.
    ADDR is the pointer to be deleted.
    SIZE is the size of the memory block to be deleted.
-   FLAGS are the usual overloading flags.
-   PLACEMENT is the corresponding placement new call, or NULL_TREE.  */
+   GLOBAL_P is true if the delete-expression should not consider
+   class-specific delete operators.
+   PLACEMENT is the corresponding placement new call, or NULL_TREE.
+
+   If this call to "operator delete" is being generated as part to
+   deallocate memory allocated via a new-expression (as per [expr.new]
+   which requires that if the initialization throws an exception then
+   we call a deallocation function), then ALLOC_FN is the allocation
+   function.  */
 
 tree
-build_op_delete_call (code, addr, size, flags, placement)
-     enum tree_code code;
-     tree addr, size, placement;
-     int flags;
+build_op_delete_call (enum tree_code code, tree addr, tree size,
+                     bool global_p, tree placement,
+                     tree alloc_fn)
 {
   tree fn = NULL_TREE;
-  tree fns, fnname, fntype, argtypes, args, type;
+  tree fns, fnname, argtypes, type;
   int pass;
 
   if (addr == error_mark_node)
     return error_mark_node;
 
-  type = TREE_TYPE (TREE_TYPE (addr));
-  while (TREE_CODE (type) == ARRAY_TYPE)
-    type = TREE_TYPE (type);
+  type = strip_array_types (TREE_TYPE (TREE_TYPE (addr)));
 
   fnname = ansi_opname (code);
 
-  if (IS_AGGR_TYPE (type) && ! (flags & LOOKUP_GLOBAL))
+  if (CLASS_TYPE_P (type)
+      && COMPLETE_TYPE_P (complete_type (type))
+      && !global_p)
     /* In [class.free]
 
        If the result of the lookup is ambiguous or inaccessible, or if
        the lookup selects a placement deallocation function, the
        program is ill-formed.
-  
-       Therefore, we ask lookup_fnfields to complain ambout ambiguity.  */
+
+       Therefore, we ask lookup_fnfields to complain about ambiguity.  */
     {
       fns = lookup_fnfields (TYPE_BINFO (type), fnname, 1);
       if (fns == error_mark_node)
@@ -3647,66 +4352,64 @@ build_op_delete_call (code, addr, size, flags, placement)
   if (fns == NULL_TREE)
     fns = lookup_name_nonclass (fnname);
 
+  /* Strip const and volatile from addr.  */
+  addr = cp_convert (ptr_type_node, addr);
+
   if (placement)
     {
-      tree alloc_fn;
-      tree call_expr;
-
-      /* Find the allocation function that is being called. */
-      call_expr = placement;
-      /* Sometimes we have a COMPOUND_EXPR, rather than a simple
-        CALL_EXPR. */
-      while (TREE_CODE (call_expr) == COMPOUND_EXPR)
-       call_expr = TREE_OPERAND (call_expr, 1);
-      /* Extract the function.  */
-      alloc_fn = get_callee_fndecl (call_expr);
-      my_friendly_assert (alloc_fn != NULL_TREE, 20020327);
-      /* Then the second parm type.  */
+      /* Get the parameter types for the allocation function that is
+        being called.  */
+      gcc_assert (alloc_fn != NULL_TREE);
       argtypes = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (alloc_fn)));
-      /* Also the second argument.  */
-      args = TREE_CHAIN (TREE_OPERAND (call_expr, 1));
     }
   else
     {
       /* First try it without the size argument.  */
       argtypes = void_list_node;
-      args = NULL_TREE;
     }
 
-  /* Strip const and volatile from addr.  */
-  addr = cp_convert (ptr_type_node, addr);
-
   /* We make two tries at finding a matching `operator delete'.  On
-     the first pass, we look for an one-operator (or placement)
+     the first pass, we look for a one-operator (or placement)
      operator delete.  If we're not doing placement delete, then on
      the second pass we look for a two-argument delete.  */
-  for (pass = 0; pass < (placement ? 1 : 2); ++pass) 
-    {
-      if (pass == 0)
-       argtypes = tree_cons (NULL_TREE, ptr_type_node, argtypes);
-      else 
-       /* Normal delete; now try to find a match including the size
-          argument.  */
-       argtypes = tree_cons (NULL_TREE, ptr_type_node,
-                             tree_cons (NULL_TREE, sizetype, 
-                                        void_list_node));
-      fntype = build_function_type (void_type_node, argtypes);
-
+  for (pass = 0; pass < (placement ? 1 : 2); ++pass)
+    {
       /* Go through the `operator delete' functions looking for one
         with a matching type.  */
-      for (fn = BASELINK_P (fns) ? TREE_VALUE (fns) : fns; 
-          fn; 
+      for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns;
+          fn;
           fn = OVL_NEXT (fn))
        {
          tree t;
 
-         /* Exception specifications on the `delete' operator do not
-            matter.  */
-         t = build_exception_variant (TREE_TYPE (OVL_CURRENT (fn)),
-                                      NULL_TREE);
-         /* We also don't compare attributes.  We're really just
-            trying to check the types of the first two parameters.  */
-         if (comptypes (t, fntype, COMPARE_NO_ATTRIBUTES))
+         /* The first argument must be "void *".  */
+         t = TYPE_ARG_TYPES (TREE_TYPE (OVL_CURRENT (fn)));
+         if (!same_type_p (TREE_VALUE (t), ptr_type_node))
+           continue;
+         t = TREE_CHAIN (t);
+         /* On the first pass, check the rest of the arguments.  */
+         if (pass == 0)
+           {
+             tree a = argtypes;
+             while (a && t)
+               {
+                 if (!same_type_p (TREE_VALUE (a), TREE_VALUE (t)))
+                   break;
+                 a = TREE_CHAIN (a);
+                 t = TREE_CHAIN (t);
+               }
+             if (!a && !t)
+               break;
+           }
+         /* On the second pass, look for a function with exactly two
+            arguments: "void *" and "size_t".  */
+         else if (pass == 1
+                  /* For "operator delete(void *, ...)" there will be
+                     no second argument, but we will not get an exact
+                     match above.  */
+                  && t
+                  && same_type_p (TREE_VALUE (t), size_type_node)
+                  && TREE_CHAIN (t) == void_list_node)
            break;
        }
 
@@ -3725,322 +4428,519 @@ build_op_delete_call (code, addr, size, flags, placement)
       /* If the FN is a member function, make sure that it is
         accessible.  */
       if (DECL_CLASS_SCOPE_P (fn))
-       enforce_access (type, fn);
+       perform_or_defer_access_check (TYPE_BINFO (type), fn, fn);
 
-      if (pass == 0)
-       args = tree_cons (NULL_TREE, addr, args);
+      if (placement)
+       {
+         /* The placement args might not be suitable for overload
+            resolution at this point, so build the call directly.  */
+         int nargs = call_expr_nargs (placement);
+         tree *argarray = (tree *) alloca (nargs * sizeof (tree));
+         int i;
+         argarray[0] = addr;
+         for (i = 1; i < nargs; i++)
+           argarray[i] = CALL_EXPR_ARG (placement, i);
+         mark_used (fn);
+         return build_cxx_call (fn, nargs, argarray);
+       }
       else
-       args = tree_cons (NULL_TREE, addr, 
-                         build_tree_list (NULL_TREE, size));
-
-      return build_function_call (fn, args);
+       {
+         tree args;
+         if (pass == 0)
+           args = tree_cons (NULL_TREE, addr, NULL_TREE);
+         else
+           args = tree_cons (NULL_TREE, addr,
+                             build_tree_list (NULL_TREE, size));
+         return cp_build_function_call (fn, args, tf_warning_or_error);
+       }
     }
 
-  /* If we are doing placement delete we do nothing if we don't find a
-     matching op delete.  */
-  if (placement)
-    return NULL_TREE;
+  /* [expr.new]
 
-  error ("no suitable `operator delete' for `%T'", type);
-  return error_mark_node;
-}
+     If no unambiguous matching deallocation function can be found,
+     propagating the exception does not cause the object's memory to
+     be freed.  */
+  if (alloc_fn)
+    {
+      if (!placement)
+       warning (0, "no corresponding deallocation function for %qD",
+                alloc_fn);
+      return NULL_TREE;
+    }
+
+  error ("no suitable %<operator %s%> for %qT",
+        operator_name_info[(int)code].name, type);
+  return error_mark_node;
+}
 
 /* If the current scope isn't allowed to access DECL along
    BASETYPE_PATH, give an error.  The most derived class in
-   BASETYPE_PATH is the one used to qualify DECL.  */
+   BASETYPE_PATH is the one used to qualify DECL. DIAG_DECL is
+   the declaration to use in the error diagnostic.  */
 
-int
-enforce_access (basetype_path, decl)
-     tree basetype_path;
-     tree decl;
+bool
+enforce_access (tree basetype_path, tree decl, tree diag_decl)
 {
-  int accessible;
+  gcc_assert (TREE_CODE (basetype_path) == TREE_BINFO);
 
-  accessible = accessible_p (basetype_path, decl);
-  if (!accessible)
+  if (!accessible_p (basetype_path, decl, true))
     {
       if (TREE_PRIVATE (decl))
-       cp_error_at ("`%+#D' is private", decl);
+       error ("%q+#D is private", diag_decl);
       else if (TREE_PROTECTED (decl))
-       cp_error_at ("`%+#D' is protected", decl);
+       error ("%q+#D is protected", diag_decl);
       else
-       cp_error_at ("`%+#D' is inaccessible", decl);
+       error ("%q+#D is inaccessible", diag_decl);
       error ("within this context");
-      return 0;
+      return false;
     }
 
-  return 1;
+  return true;
 }
 
-/* Perform the conversions in CONVS on the expression EXPR. 
-   FN and ARGNUM are used for diagnostics.  ARGNUM is zero based, -1
-   indicates the `this' argument of a method.  INNER is non-zero when
-   being called to continue a conversion chain. It is negative when a
-   reference binding will be applied, positive otherwise. */
+/* Initialize a temporary of type TYPE with EXPR.  The FLAGS are a
+   bitwise or of LOOKUP_* values.  If any errors are warnings are
+   generated, set *DIAGNOSTIC_FN to "error" or "warning",
+   respectively.  If no diagnostics are generated, set *DIAGNOSTIC_FN
+   to NULL.  */
 
 static tree
-convert_like_real (convs, expr, fn, argnum, inner)
-     tree convs, expr;
-     tree fn;
-     int argnum;
-     int inner;
+build_temp (tree expr, tree type, int flags,
+           diagnostic_t *diagnostic_kind)
 {
   int savew, savee;
 
-  tree totype = TREE_TYPE (convs);
+  savew = warningcount, savee = errorcount;
+  expr = build_special_member_call (NULL_TREE,
+                                   complete_ctor_identifier,
+                                   build_tree_list (NULL_TREE, expr),
+                                   type, flags, tf_warning_or_error);
+  if (warningcount > savew)
+    *diagnostic_kind = DK_WARNING;
+  else if (errorcount > savee)
+    *diagnostic_kind = DK_ERROR;
+  else
+    *diagnostic_kind = 0;
+  return expr;
+}
+
+/* Perform warnings about peculiar, but valid, conversions from/to NULL.
+   EXPR is implicitly converted to type TOTYPE.
+   FN and ARGNUM are used for diagnostics.  */
+
+static void
+conversion_null_warnings (tree totype, tree expr, tree fn, int argnum)
+{
+  tree t = non_reference (totype);
 
-  if (ICS_BAD_FLAG (convs)
-      && TREE_CODE (convs) != USER_CONV
-      && TREE_CODE (convs) != AMBIG_CONV
-      && TREE_CODE (convs) != REF_BIND)
+  /* Issue warnings about peculiar, but valid, uses of NULL.  */
+  if (expr == null_node && TREE_CODE (t) != BOOLEAN_TYPE && ARITHMETIC_TYPE_P (t))
     {
-      tree t = convs; 
-      for (; t; t = TREE_OPERAND (t, 0))
+      if (fn)
+       warning (OPT_Wconversion, "passing NULL to non-pointer argument %P of %qD",
+                argnum, fn);
+      else
+       warning (OPT_Wconversion, "converting to non-pointer type %qT from NULL", t);
+    }
+
+  /* Issue warnings if "false" is converted to a NULL pointer */
+  else if (expr == boolean_false_node && fn && POINTER_TYPE_P (t))
+    warning (OPT_Wconversion,
+            "converting %<false%> to pointer type for argument %P of %qD",
+            argnum, fn);
+}
+
+/* Perform the conversions in CONVS on the expression EXPR.  FN and
+   ARGNUM are used for diagnostics.  ARGNUM is zero based, -1
+   indicates the `this' argument of a method.  INNER is nonzero when
+   being called to continue a conversion chain. It is negative when a
+   reference binding will be applied, positive otherwise.  If
+   ISSUE_CONVERSION_WARNINGS is true, warnings about suspicious
+   conversions will be emitted if appropriate.  If C_CAST_P is true,
+   this conversion is coming from a C-style cast; in that case,
+   conversions to inaccessible bases are permitted.  */
+
+static tree
+convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
+                  int inner, bool issue_conversion_warnings,
+                  bool c_cast_p, tsubst_flags_t complain)
+{
+  tree totype = convs->type;
+  diagnostic_t diag_kind;
+  int flags;
+
+  if (convs->bad_p
+      && convs->kind != ck_user
+      && convs->kind != ck_list
+      && convs->kind != ck_ambig
+      && convs->kind != ck_ref_bind
+      && convs->kind != ck_rvalue
+      && convs->kind != ck_base)
+    {
+      conversion *t = convs;
+
+      /* Give a helpful error if this is bad because of excess braces.  */
+      if (BRACE_ENCLOSED_INITIALIZER_P (expr)
+         && SCALAR_TYPE_P (totype)
+         && CONSTRUCTOR_NELTS (expr) > 0
+         && BRACE_ENCLOSED_INITIALIZER_P (CONSTRUCTOR_ELT (expr, 0)->value))
+       permerror (input_location, "too many braces around initializer for %qT", totype);
+
+      for (; t; t = convs->u.next)
        {
-         if (TREE_CODE (t) == USER_CONV || !ICS_BAD_FLAG (t))
+         if (t->kind == ck_user || !t->bad_p)
            {
-             expr = convert_like_real (t, expr, fn, argnum, 1);
+             expr = convert_like_real (t, expr, fn, argnum, 1,
+                                       /*issue_conversion_warnings=*/false,
+                                       /*c_cast_p=*/false,
+                                       complain);
              break;
            }
-         else if (TREE_CODE (t) == AMBIG_CONV)
-           return convert_like_real (t, expr, fn, argnum, 1);
-         else if (TREE_CODE (t) == IDENTITY_CONV)
+         else if (t->kind == ck_ambig)
+           return convert_like_real (t, expr, fn, argnum, 1,
+                                     /*issue_conversion_warnings=*/false,
+                                     /*c_cast_p=*/false,
+                                     complain);
+         else if (t->kind == ck_identity)
            break;
        }
-      pedwarn ("invalid conversion from `%T' to `%T'", TREE_TYPE (expr), totype);
-      if (fn)
-       pedwarn ("  initializing argument %P of `%D'", argnum, fn);
+      if (complain & tf_error)
+       {
+         permerror (input_location, "invalid conversion from %qT to %qT", TREE_TYPE (expr), totype);
+         if (fn)
+           permerror (input_location, "  initializing argument %P of %qD", argnum, fn);
+       }
+      else
+       return error_mark_node;
+
       return cp_convert (totype, expr);
     }
-  
-  if (!inner)
-    expr = dubious_conversion_warnings
-             (totype, expr, "argument", fn, argnum);
-  switch (TREE_CODE (convs))
+
+  if (issue_conversion_warnings && (complain & tf_warning))
+    conversion_null_warnings (totype, expr, fn, argnum);
+
+  switch (convs->kind)
     {
-    case USER_CONV:
+    case ck_user:
       {
-       struct z_candidate *cand
-         = WRAPPER_PTR (TREE_OPERAND (convs, 1));
+       struct z_candidate *cand = convs->cand;
        tree convfn = cand->fn;
-       tree args;
+       unsigned i;
 
-       if (DECL_CONSTRUCTOR_P (convfn))
+       /* When converting from an init list we consider explicit
+          constructors, but actually trying to call one is an error.  */
+       if (DECL_NONCONVERTING_P (convfn))
          {
-           tree t = build_int_2 (0, 0);
-           TREE_TYPE (t) = build_pointer_type (DECL_CONTEXT (convfn));
-
-           args = build_tree_list (NULL_TREE, expr);
-           if (DECL_HAS_IN_CHARGE_PARM_P (convfn)
-               || DECL_HAS_VTT_PARM_P (convfn))
-             /* We should never try to call the abstract or base constructor
-                from here.  */
-             abort ();
-           args = tree_cons (NULL_TREE, t, args);
+           if (complain & tf_error)
+             error ("converting to %qT from initializer list would use "
+                    "explicit constructor %qD", totype, convfn);
+           else
+             return error_mark_node;
          }
-       else
-         args = build_this (expr);
-       expr = build_over_call (cand, args, LOOKUP_NORMAL);
+
+       /* Set user_conv_p on the argument conversions, so rvalue/base
+          handling knows not to allow any more UDCs.  */
+       for (i = 0; i < cand->num_convs; ++i)
+         cand->convs[i]->user_conv_p = true;
+
+       expr = build_over_call (cand, LOOKUP_NORMAL, complain);
 
        /* If this is a constructor or a function returning an aggr type,
           we need to build up a TARGET_EXPR.  */
        if (DECL_CONSTRUCTOR_P (convfn))
-         expr = build_cplus_new (totype, expr);
-
-       /* The result of the call is then used to direct-initialize the object
-          that is the destination of the copy-initialization.  [dcl.init]
-
-          Note that this step is not reflected in the conversion sequence;
-          it affects the semantics when we actually perform the
-          conversion, but is not considered during overload resolution.
-
-          If the target is a class, that means call a ctor.  */
-       if (IS_AGGR_TYPE (totype)
-           && (inner >= 0 || !lvalue_p (expr)))
          {
-           savew = warningcount, savee = errorcount;
-           expr = build_new_method_call
-             (NULL_TREE, complete_ctor_identifier,
-              build_tree_list (NULL_TREE, expr), TYPE_BINFO (totype),
-              /* Core issue 84, now a DR, says that we don't allow UDCs
-                 for these args (which deliberately breaks copy-init of an
-                 auto_ptr<Base> from an auto_ptr<Derived>).  */
-              LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING|LOOKUP_NO_CONVERSION);
-
-           /* Tell the user where this failing constructor call came from.  */
-           if (fn)
-             {
-               if (warningcount > savew)
-                 warning
-                   ("  initializing argument %P of `%D' from result of `%D'",
-                    argnum, fn, convfn);
-               else if (errorcount > savee)
-                 error
-                   ("  initializing argument %P of `%D' from result of `%D'",
-                    argnum, fn, convfn);
-             }
-           else
-             {
-               if (warningcount > savew)
-                 warning ("  initializing temporary from result of `%D'",
-                             convfn);
-               else if (errorcount > savee)
-                 error ("  initializing temporary from result of `%D'",
-                           convfn);
-             }
            expr = build_cplus_new (totype, expr);
+
+           /* Remember that this was list-initialization.  */
+           if (convs->check_narrowing)
+             TARGET_EXPR_LIST_INIT_P (expr) = true;
          }
+
        return expr;
       }
-    case IDENTITY_CONV:
+    case ck_identity:
+      if (BRACE_ENCLOSED_INITIALIZER_P (expr))
+       {
+         int nelts = CONSTRUCTOR_NELTS (expr);
+         if (nelts == 0)
+           expr = integer_zero_node;
+         else if (nelts == 1)
+           expr = CONSTRUCTOR_ELT (expr, 0)->value;
+         else
+           gcc_unreachable ();
+       }
+
       if (type_unknown_p (expr))
-       expr = instantiate_type (totype, expr, tf_error | tf_warning);
+       expr = instantiate_type (totype, expr, complain);
+      /* Convert a constant to its underlying value, unless we are
+        about to bind it to a reference, in which case we need to
+        leave it as an lvalue.  */
+      if (inner >= 0)
+        {   
+          expr = decl_constant_value (expr);
+          if (expr == null_node && INTEGRAL_TYPE_P (totype))
+            /* If __null has been converted to an integer type, we do not
+               want to warn about uses of EXPR as an integer, rather than
+               as a pointer.  */
+            expr = build_int_cst (totype, 0);
+        }
       return expr;
-    case AMBIG_CONV:
+    case ck_ambig:
       /* Call build_user_type_conversion again for the error.  */
       return build_user_type_conversion
-       (totype, TREE_OPERAND (convs, 0), LOOKUP_NORMAL);
+       (totype, convs->u.expr, LOOKUP_NORMAL);
+
+    case ck_list:
+      {
+       /* Conversion to std::initializer_list<T>.  */
+       tree elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (totype), 0);
+       tree new_ctor = build_constructor (init_list_type_node, NULL);
+       unsigned len = CONSTRUCTOR_NELTS (expr);
+       tree array, parms, val;
+       unsigned ix;
+
+       /* Convert all the elements.  */
+       FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expr), ix, val)
+         {
+           tree sub = convert_like_real (convs->u.list[ix], val, fn, argnum,
+                                         1, false, false, complain);
+           if (sub == error_mark_node)
+             return sub;
+           check_narrowing (TREE_TYPE (sub), val);
+           CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_ctor), NULL_TREE, sub);
+         }
+       /* Build up the array.  */
+       elttype = cp_build_qualified_type
+         (elttype, TYPE_QUALS (elttype) | TYPE_QUAL_CONST);
+       array = build_array_of_n_type (elttype, len);
+       array = finish_compound_literal (array, new_ctor);
+
+       parms = build_tree_list (NULL_TREE, size_int (len));
+       parms = tree_cons (NULL_TREE, decay_conversion (array), parms);
+       /* Call the private constructor.  */
+       push_deferring_access_checks (dk_no_check);
+       new_ctor = build_special_member_call
+         (NULL_TREE, complete_ctor_identifier, parms, totype, 0, complain);
+       pop_deferring_access_checks ();
+       return build_cplus_new (totype, new_ctor);
+      }
+
+    case ck_aggr:
+      return get_target_expr (digest_init (totype, expr));
 
     default:
       break;
     };
 
-  expr = convert_like_real (TREE_OPERAND (convs, 0), expr, fn, argnum,
-                            TREE_CODE (convs) == REF_BIND ? -1 : 1);
+  expr = convert_like_real (convs->u.next, expr, fn, argnum,
+                           convs->kind == ck_ref_bind ? -1 : 1,
+                           convs->kind == ck_ref_bind ? issue_conversion_warnings : false, 
+                           c_cast_p,
+                           complain);
   if (expr == error_mark_node)
     return error_mark_node;
 
-  /* Convert a non-array constant variable to its underlying value, unless we
-     are about to bind it to a reference, in which case we need to
-     leave it as an lvalue.  */
-  if (TREE_CODE (convs) != REF_BIND
-      && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
-    expr = decl_constant_value (expr);
-
-  switch (TREE_CODE (convs))
+  switch (convs->kind)
     {
-    case RVALUE_CONV:
-      if (! IS_AGGR_TYPE (totype))
+    case ck_rvalue:
+      expr = decay_conversion (expr);
+      if (! MAYBE_CLASS_TYPE_P (totype))
        return expr;
-      /* else fall through */
-    case BASE_CONV:
-      if (TREE_CODE (convs) == BASE_CONV && !NEED_TEMPORARY_P (convs))
+      /* Else fall through.  */
+    case ck_base:
+      if (convs->kind == ck_base && !convs->need_temporary_p)
        {
          /* We are going to bind a reference directly to a base-class
             subobject of EXPR.  */
-         tree base_ptr = build_pointer_type (totype);
-
          /* Build an expression for `*((base*) &expr)'.  */
-         expr = build_unary_op (ADDR_EXPR, expr, 0);
-         expr = perform_implicit_conversion (base_ptr, expr);
-         expr = build_indirect_ref (expr, "implicit conversion");
+         expr = cp_build_unary_op (ADDR_EXPR, expr, 0, complain);
+         expr = convert_to_base (expr, build_pointer_type (totype),
+                                 !c_cast_p, /*nonnull=*/true);
+         expr = cp_build_indirect_ref (expr, "implicit conversion", complain);
          return expr;
        }
 
       /* Copy-initialization where the cv-unqualified version of the source
         type is the same class as, or a derived class of, the class of the
         destination [is treated as direct-initialization].  [dcl.init] */
-      savew = warningcount, savee = errorcount;
-      expr = build_new_method_call (NULL_TREE, complete_ctor_identifier,
-                                   build_tree_list (NULL_TREE, expr),
-                                   TYPE_BINFO (totype),
-                                   LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING);
-      if (fn)
+      flags = LOOKUP_NORMAL|LOOKUP_ONLYCONVERTING;
+      if (convs->user_conv_p)
+       /* This conversion is being done in the context of a user-defined
+          conversion (i.e. the second step of copy-initialization), so
+          don't allow any more.  */
+       flags |= LOOKUP_NO_CONVERSION;
+      expr = build_temp (expr, totype, flags, &diag_kind);
+      if (diag_kind && fn)
        {
-         if (warningcount > savew)
-           warning ("  initializing argument %P of `%D'", argnum, fn);
-         else if (errorcount > savee)
-           error ("  initializing argument %P of `%D'", argnum, fn);
+         if ((complain & tf_error))
+           emit_diagnostic (diag_kind, input_location, 0, 
+                            "  initializing argument %P of %qD", argnum, fn);
+         else if (diag_kind == DK_ERROR)
+           return error_mark_node;
        }
       return build_cplus_new (totype, expr);
 
-    case REF_BIND:
+    case ck_ref_bind:
       {
        tree ref_type = totype;
 
-       /* If necessary, create a temporary.  */
-       if (NEED_TEMPORARY_P (convs) || !lvalue_p (expr))
+       /* If necessary, create a temporary. 
+
+           VA_ARG_EXPR and CONSTRUCTOR expressions are special cases
+           that need temporaries, even when their types are reference
+           compatible with the type of reference being bound, so the
+           upcoming call to cp_build_unary_op (ADDR_EXPR, expr, ...)
+           doesn't fail.  */
+       if (convs->need_temporary_p
+           || TREE_CODE (expr) == CONSTRUCTOR
+           || TREE_CODE (expr) == VA_ARG_EXPR)
          {
-           tree type = TREE_TYPE (TREE_OPERAND (convs, 0));
+           tree type = convs->u.next->type;
+           cp_lvalue_kind lvalue = real_lvalue_p (expr);
+
+           if (!CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (ref_type))
+               && !TYPE_REF_IS_RVALUE (ref_type))
+             {
+               if (complain & tf_error)
+                 {
+                   /* If the reference is volatile or non-const, we
+                      cannot create a temporary.  */
+                   if (lvalue & clk_bitfield)
+                     error ("cannot bind bitfield %qE to %qT",
+                            expr, ref_type);
+                   else if (lvalue & clk_packed)
+                     error ("cannot bind packed field %qE to %qT",
+                            expr, ref_type);
+                   else
+                     error ("cannot bind rvalue %qE to %qT", expr, ref_type);
+                 }
+               return error_mark_node;
+             }
+           /* If the source is a packed field, and we must use a copy
+              constructor, then building the target expr will require
+              binding the field to the reference parameter to the
+              copy constructor, and we'll end up with an infinite
+              loop.  If we can use a bitwise copy, then we'll be
+              OK.  */
+           if ((lvalue & clk_packed)
+               && CLASS_TYPE_P (type)
+               && !TYPE_HAS_TRIVIAL_INIT_REF (type))
+             {
+               if (complain & tf_error)
+                 error ("cannot bind packed field %qE to %qT",
+                        expr, ref_type);
+               return error_mark_node;
+             }
+           if (lvalue & clk_bitfield)
+             {
+               expr = convert_bitfield_to_declared_type (expr);
+               expr = fold_convert (type, expr);
+             }
            expr = build_target_expr_with_type (expr, type);
          }
 
        /* Take the address of the thing to which we will bind the
           reference.  */
-       expr = build_unary_op (ADDR_EXPR, expr, 1);
+       expr = cp_build_unary_op (ADDR_EXPR, expr, 1, complain);
        if (expr == error_mark_node)
          return error_mark_node;
 
        /* Convert it to a pointer to the type referred to by the
           reference.  This will adjust the pointer if a derived to
           base conversion is being performed.  */
-       expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)), 
+       expr = cp_convert (build_pointer_type (TREE_TYPE (ref_type)),
                           expr);
        /* Convert the pointer to the desired reference type.  */
-       expr = build1 (NOP_EXPR, ref_type, expr);
-
-       return expr;
+       return build_nop (ref_type, expr);
       }
 
-    case LVALUE_CONV:
+    case ck_lvalue:
       return decay_conversion (expr);
 
-    case QUAL_CONV:
+    case ck_qual:
       /* Warn about deprecated conversion if appropriate.  */
       string_conv_p (totype, expr, 1);
       break;
-      
+
+    case ck_ptr:
+      if (convs->base_p)
+       expr = convert_to_base (expr, totype, !c_cast_p,
+                               /*nonnull=*/false);
+      return build_nop (totype, expr);
+
+    case ck_pmem:
+      return convert_ptrmem (totype, expr, /*allow_inverse_p=*/false,
+                            c_cast_p);
+
     default:
       break;
     }
-  return ocp_convert (totype, expr, CONV_IMPLICIT,
-                     LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
+
+  if (convs->check_narrowing)
+    check_narrowing (totype, expr);
+
+  if (issue_conversion_warnings && (complain & tf_warning))
+    expr = convert_and_check (totype, expr);
+  else
+    expr = convert (totype, expr);
+
+  return expr;
 }
 
-/* Build a call to __builtin_trap which can be used in an expression.  */
+/* Build a call to __builtin_trap.  */
 
 static tree
-call_builtin_trap ()
+call_builtin_trap (void)
 {
-  tree fn = get_identifier ("__builtin_trap");
-  if (IDENTIFIER_GLOBAL_VALUE (fn))
-    fn = IDENTIFIER_GLOBAL_VALUE (fn);
-  else
-    abort ();
+  tree fn = implicit_built_in_decls[BUILT_IN_TRAP];
 
-  fn = build_call (fn, NULL_TREE);
-  fn = build (COMPOUND_EXPR, integer_type_node, fn, integer_zero_node);
+  gcc_assert (fn != NULL);
+  fn = build_call_n (fn, 0);
   return fn;
 }
 
 /* ARG is being passed to a varargs function.  Perform any conversions
-   required.  Array/function to pointer decay must have already happened.
-   Return the converted value.  */
+   required.  Return the converted value.  */
 
 tree
-convert_arg_to_ellipsis (arg)
-     tree arg;
+convert_arg_to_ellipsis (tree arg)
 {
+  /* [expr.call]
+
+     The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
+     standard conversions are performed.  */
+  arg = decay_conversion (arg);
+  /* [expr.call]
+
+     If the argument has integral or enumeration type that is subject
+     to the integral promotions (_conv.prom_), or a floating point
+     type that is subject to the floating point promotion
+     (_conv.fpprom_), the value of the argument is converted to the
+     promoted type before the call.  */
   if (TREE_CODE (TREE_TYPE (arg)) == REAL_TYPE
       && (TYPE_PRECISION (TREE_TYPE (arg))
          < TYPE_PRECISION (double_type_node)))
-    /* Convert `float' to `double'.  */
-    arg = cp_convert (double_type_node, arg);
-  else
-    /* Convert `short' and `char' to full-size `int'.  */
-    arg = default_conversion (arg);
+    arg = convert_to_real (double_type_node, arg);
+  else if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (arg)))
+    arg = perform_integral_promotions (arg);
 
   arg = require_complete_type (arg);
-  
-  if (arg != error_mark_node && ! pod_type_p (TREE_TYPE (arg)))
+
+  if (arg != error_mark_node
+      && !pod_type_p (TREE_TYPE (arg)))
     {
-      /* Undefined behaviour [expr.call] 5.2.2/7.  We used to just warn
+      /* Undefined behavior [expr.call] 5.2.2/7.  We used to just warn
         here and do a bitwise copy, but now cp_expr_size will abort if we
-        try to do that.  */
-      warning ("cannot pass objects of non-POD type `%#T' through `...'; \
-call will abort at runtime",
-              TREE_TYPE (arg));
+        try to do that.
+        If the call appears in the context of a sizeof expression,
+        there is no need to emit a warning, since the expression won't be
+        evaluated. We keep the builtin_trap just as a safety check.  */
+      if (!skip_evaluation)
+       warning (0, "cannot pass objects of non-POD type %q#T through %<...%>; "
+                "call will abort at runtime", TREE_TYPE (arg));
       arg = call_builtin_trap ();
+      arg = build2 (COMPOUND_EXPR, integer_type_node, arg,
+                   integer_zero_node);
     }
 
   return arg;
@@ -4049,177 +4949,384 @@ call will abort at runtime",
 /* va_arg (EXPR, TYPE) is a builtin. Make sure it is not abused.  */
 
 tree
-build_x_va_arg (expr, type)
-     tree expr;
-     tree type;
+build_x_va_arg (tree expr, tree type)
 {
   if (processing_template_decl)
     return build_min (VA_ARG_EXPR, type, expr);
-  
+
   type = complete_type_or_else (type, NULL_TREE);
 
   if (expr == error_mark_node || !type)
     return error_mark_node;
-  
+
   if (! pod_type_p (type))
     {
-      /* Undefined behaviour [expr.call] 5.2.2/7.  */
-      warning ("cannot receive objects of non-POD type `%#T' through `...'",
-                 type);
+      /* Remove reference types so we don't ICE later on.  */
+      tree type1 = non_reference (type);
+      /* Undefined behavior [expr.call] 5.2.2/7.  */
+      warning (0, "cannot receive objects of non-POD type %q#T through %<...%>; "
+              "call will abort at runtime", type);
+      expr = convert (build_pointer_type (type1), null_node);
+      expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr),
+                    call_builtin_trap (), expr);
+      expr = cp_build_indirect_ref (expr, NULL, tf_warning_or_error);
+      return expr;
     }
-  
+
   return build_va_arg (expr, type);
 }
 
-/* TYPE has been given to va_arg. Apply the default conversions which would
-   have happened when passed via ellipsis. Return the promoted type, or
-   NULL_TREE, if there is no change.  */
+/* TYPE has been given to va_arg.  Apply the default conversions which
+   would have happened when passed via ellipsis.  Return the promoted
+   type, or the passed type if there is no change.  */
 
 tree
-convert_type_from_ellipsis (type)
-     tree type;
+cxx_type_promotes_to (tree type)
 {
   tree promote;
-  
-  if (TREE_CODE (type) == ARRAY_TYPE)
-    promote = build_pointer_type (TREE_TYPE (type));
-  else if (TREE_CODE (type) == FUNCTION_TYPE)
-    promote = build_pointer_type (type);
-  else
-    promote = type_promotes_to (type);
-  
-  return same_type_p (type, promote) ? NULL_TREE : promote;
+
+  /* Perform the array-to-pointer and function-to-pointer
+     conversions.  */
+  type = type_decays_to (type);
+
+  promote = type_promotes_to (type);
+  if (same_type_p (type, promote))
+    promote = type;
+
+  return promote;
 }
 
 /* ARG is a default argument expression being passed to a parameter of
    the indicated TYPE, which is a parameter to FN.  Do any required
    conversions.  Return the converted value.  */
 
+static GTY(()) VEC(tree,gc) *default_arg_context;
+
 tree
-convert_default_arg (type, arg, fn, parmnum)
-     tree type;
-     tree arg;
-     tree fn;
-     int parmnum;
+convert_default_arg (tree type, tree arg, tree fn, int parmnum)
 {
+  int i;
+  tree t;
+
+  /* If the ARG is an unparsed default argument expression, the
+     conversion cannot be performed.  */
   if (TREE_CODE (arg) == DEFAULT_ARG)
     {
-      /* When processing the default args for a class, we can find that
-         there is an ordering constraint, and we call a function who's
-         default args have not yet been converted. For instance,
-          class A {
-              A (int = 0);
-              void Foo (A const & = A ());
-          };
-         We must process A::A before A::Foo's default arg can be converted.
-         Remember the dependent function, so do_pending_defargs can retry,
-         and check loops.  */
-      unprocessed_defarg_fn (fn);
-      
-      /* Don't return error_mark node, as we won't be able to distinguish
-         genuine errors from this case, and that would lead to repeated
-         diagnostics.  Just make something of the right type.  */
-      return build1 (NOP_EXPR, type, integer_zero_node);
+      error ("the default argument for parameter %d of %qD has "
+            "not yet been parsed",
+            parmnum, fn);
+      return error_mark_node;
     }
 
+  /* Detect recursion.  */
+  for (i = 0; VEC_iterate (tree, default_arg_context, i, t); ++i)
+    if (t == fn)
+      {
+       error ("recursive evaluation of default argument for %q#D", fn);
+       return error_mark_node;
+      }
+  VEC_safe_push (tree, gc, default_arg_context, fn);
+
   if (fn && DECL_TEMPLATE_INFO (fn))
     arg = tsubst_default_argument (fn, type, arg);
 
-  arg = break_out_target_exprs (arg);
+  /* Due to:
+
+       [dcl.fct.default]
+
+       The names in the expression are bound, and the semantic
+       constraints are checked, at the point where the default
+       expressions appears.
 
+     we must not perform access checks here.  */
+  push_deferring_access_checks (dk_no_check);
+  arg = break_out_target_exprs (arg);
   if (TREE_CODE (arg) == CONSTRUCTOR)
     {
-      arg = digest_init (type, arg, 0);
+      arg = digest_init (type, arg);
       arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
-                                       "default argument", fn, parmnum);
+                                       "default argument", fn, parmnum,
+                                        tf_warning_or_error);
     }
   else
     {
-      /* This could get clobbered by the following call.  */
-      if (TREE_HAS_CONSTRUCTOR (arg))
-       arg = copy_node (arg);
-
+      /* We must make a copy of ARG, in case subsequent processing
+        alters any part of it.  For example, during gimplification a
+        cast of the form (T) &X::f (where "f" is a member function)
+        will lead to replacing the PTRMEM_CST for &X::f with a
+        VAR_DECL.  We can avoid the copy for constants, since they
+        are never modified in place.  */
+      if (!CONSTANT_CLASS_P (arg))
+       arg = unshare_expr (arg);
       arg = convert_for_initialization (0, type, arg, LOOKUP_NORMAL,
-                                       "default argument", fn, parmnum);
-      if (PROMOTE_PROTOTYPES
-         && INTEGRAL_TYPE_P (type)
-         && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
-       arg = default_conversion (arg);
+                                       "default argument", fn, parmnum,
+                                        tf_warning_or_error);
+      arg = convert_for_arg_passing (type, arg);
     }
+  pop_deferring_access_checks();
+
+  VEC_pop (tree, default_arg_context);
 
   return arg;
 }
 
+/* Returns the type which will really be used for passing an argument of
+   type TYPE.  */
+
+tree
+type_passed_as (tree type)
+{
+  /* Pass classes with copy ctors by invisible reference.  */
+  if (TREE_ADDRESSABLE (type))
+    {
+      type = build_reference_type (type);
+      /* There are no other pointers to this temporary.  */
+      type = build_qualified_type (type, TYPE_QUAL_RESTRICT);
+    }
+  else if (targetm.calls.promote_prototypes (type)
+          && INTEGRAL_TYPE_P (type)
+          && COMPLETE_TYPE_P (type)
+          && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
+                                  TYPE_SIZE (integer_type_node)))
+    type = integer_type_node;
+
+  return type;
+}
+
+/* Actually perform the appropriate conversion.  */
+
+tree
+convert_for_arg_passing (tree type, tree val)
+{
+  tree bitfield_type;
+
+  /* If VAL is a bitfield, then -- since it has already been converted
+     to TYPE -- it cannot have a precision greater than TYPE.  
+
+     If it has a smaller precision, we must widen it here.  For
+     example, passing "int f:3;" to a function expecting an "int" will
+     not result in any conversion before this point.
+
+     If the precision is the same we must not risk widening.  For
+     example, the COMPONENT_REF for a 32-bit "long long" bitfield will
+     often have type "int", even though the C++ type for the field is
+     "long long".  If the value is being passed to a function
+     expecting an "int", then no conversions will be required.  But,
+     if we call convert_bitfield_to_declared_type, the bitfield will
+     be converted to "long long".  */
+  bitfield_type = is_bitfield_expr_with_lowered_type (val);
+  if (bitfield_type 
+      && TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type))
+    val = convert_to_integer (TYPE_MAIN_VARIANT (bitfield_type), val);
+
+  if (val == error_mark_node)
+    ;
+  /* Pass classes with copy ctors by invisible reference.  */
+  else if (TREE_ADDRESSABLE (type))
+    val = build1 (ADDR_EXPR, build_reference_type (type), val);
+  else if (targetm.calls.promote_prototypes (type)
+          && INTEGRAL_TYPE_P (type)
+          && COMPLETE_TYPE_P (type)
+          && INT_CST_LT_UNSIGNED (TYPE_SIZE (type),
+                                  TYPE_SIZE (integer_type_node)))
+    val = perform_integral_promotions (val);
+  if (warn_missing_format_attribute)
+    {
+      tree rhstype = TREE_TYPE (val);
+      const enum tree_code coder = TREE_CODE (rhstype);
+      const enum tree_code codel = TREE_CODE (type);
+      if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
+         && coder == codel
+         && check_missing_format_attribute (type, rhstype))
+       warning (OPT_Wmissing_format_attribute,
+                "argument of function call might be a candidate for a format attribute");
+    }
+  return val;
+}
+
+/* Returns true iff FN is a function with magic varargs, i.e. ones for
+   which no conversions at all should be done.  This is true for some
+   builtins which don't act like normal functions.  */
+
+static bool
+magic_varargs_p (tree fn)
+{
+  if (DECL_BUILT_IN (fn))
+    switch (DECL_FUNCTION_CODE (fn))
+      {
+      case BUILT_IN_CLASSIFY_TYPE:
+      case BUILT_IN_CONSTANT_P:
+      case BUILT_IN_NEXT_ARG:
+      case BUILT_IN_VA_START:
+       return true;
+
+      default:;
+       return lookup_attribute ("type generic",
+                                TYPE_ATTRIBUTES (TREE_TYPE (fn))) != 0;
+      }
+
+  return false;
+}
+
 /* Subroutine of the various build_*_call functions.  Overload resolution
    has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
    ARGS is a TREE_LIST of the unconverted arguments to the call.  FLAGS is a
    bitmask of various LOOKUP_* flags which apply to the call itself.  */
 
 static tree
-build_over_call (cand, args, flags)
-     struct z_candidate *cand;
-     tree args;
-     int flags;
+build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
 {
   tree fn = cand->fn;
-  tree convs = cand->convs;
-  tree converted_args = NULL_TREE;
+  tree args = cand->args;
+  conversion **convs = cand->convs;
+  conversion *conv;
   tree parm = TYPE_ARG_TYPES (TREE_TYPE (fn));
-  tree conv, arg, val;
+  int parmlen;
+  tree arg, val;
   int i = 0;
+  int j = 0;
   int is_method = 0;
+  int nargs;
+  tree *argarray;
+  bool already_used = false;
+
+  /* In a template, there is no need to perform all of the work that
+     is normally done.  We are only interested in the type of the call
+     expression, i.e., the return type of the function.  Any semantic
+     errors will be deferred until the template is instantiated.  */
+  if (processing_template_decl)
+    {
+      tree expr;
+      tree return_type;
+      return_type = TREE_TYPE (TREE_TYPE (fn));
+      expr = build_call_list (return_type, build_addr_func (fn), args);
+      if (TREE_THIS_VOLATILE (fn) && cfun)
+       current_function_returns_abnormally = 1;
+      if (!VOID_TYPE_P (return_type))
+       require_complete_type (return_type);
+      return convert_from_reference (expr);
+    }
 
   /* Give any warnings we noticed during overload resolution.  */
   if (cand->warnings)
-    for (val = cand->warnings; val; val = TREE_CHAIN (val))
-      joust (cand, WRAPPER_PTR (TREE_VALUE (val)), 1);
+    {
+      struct candidate_warning *w;
+      for (w = cand->warnings; w; w = w->next)
+       joust (cand, w->loser, 1);
+    }
+
+  /* Make =delete work with SFINAE.  */
+  if (DECL_DELETED_FN (fn) && !(complain & tf_error))
+    return error_mark_node;
 
   if (DECL_FUNCTION_MEMBER_P (fn))
-    enforce_access (cand->basetype_path, fn);
+    {
+      /* If FN is a template function, two cases must be considered.
+        For example:
+
+          struct A {
+            protected:
+              template <class T> void f();
+          };
+          template <class T> struct B {
+            protected:
+              void g();
+          };
+          struct C : A, B<int> {
+            using A::f;        // #1
+            using B<int>::g;   // #2
+          };
+
+        In case #1 where `A::f' is a member template, DECL_ACCESS is
+        recorded in the primary template but not in its specialization.
+        We check access of FN using its primary template.
+
+        In case #2, where `B<int>::g' has a DECL_TEMPLATE_INFO simply
+        because it is a member of class template B, DECL_ACCESS is
+        recorded in the specialization `B<int>::g'.  We cannot use its
+        primary template because `B<T>::g' and `B<int>::g' may have
+        different access.  */
+      if (DECL_TEMPLATE_INFO (fn)
+         && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (fn)))
+       perform_or_defer_access_check (cand->access_path,
+                                      DECL_TI_TEMPLATE (fn), fn);
+      else
+       perform_or_defer_access_check (cand->access_path, fn, fn);
+    }
 
   if (args && TREE_CODE (args) != TREE_LIST)
     args = build_tree_list (NULL_TREE, args);
   arg = args;
 
+  /* Find maximum size of vector to hold converted arguments.  */
+  parmlen = list_length (parm);
+  nargs = list_length (args);
+  if (parmlen > nargs)
+    nargs = parmlen;
+  argarray = (tree *) alloca (nargs * sizeof (tree));
+
   /* The implicit parameters to a constructor are not considered by overload
      resolution, and must be of the proper type.  */
   if (DECL_CONSTRUCTOR_P (fn))
     {
-      converted_args = tree_cons (NULL_TREE, TREE_VALUE (arg), converted_args);
+      argarray[j++] = TREE_VALUE (arg);
       arg = TREE_CHAIN (arg);
       parm = TREE_CHAIN (parm);
-      if (DECL_HAS_IN_CHARGE_PARM_P (fn))
-       /* We should never try to call the abstract constructor.  */
-       abort ();
+      /* We should never try to call the abstract constructor.  */
+      gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (fn));
+
       if (DECL_HAS_VTT_PARM_P (fn))
        {
-         converted_args = tree_cons
-           (NULL_TREE, TREE_VALUE (arg), converted_args);
+         argarray[j++] = TREE_VALUE (arg);
          arg = TREE_CHAIN (arg);
          parm = TREE_CHAIN (parm);
        }
-    }      
+    }
   /* Bypass access control for 'this' parameter.  */
   else if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
     {
       tree parmtype = TREE_VALUE (parm);
       tree argtype = TREE_TYPE (TREE_VALUE (arg));
-      tree t;
-      if (ICS_BAD_FLAG (TREE_VEC_ELT (convs, i)))
-       pedwarn ("passing `%T' as `this' argument of `%#D' discards qualifiers",
-                   TREE_TYPE (argtype), fn);
+      tree converted_arg;
+      tree base_binfo;
+
+      if (convs[i]->bad_p)
+       {
+         if (complain & tf_error)
+           permerror (input_location, "passing %qT as %<this%> argument of %q#D discards qualifiers",
+                      TREE_TYPE (argtype), fn);
+         else
+           return error_mark_node;
+       }
 
       /* [class.mfct.nonstatic]: If a nonstatic member function of a class
         X is called for an object that is not of type X, or of a type
         derived from X, the behavior is undefined.
 
-         So we can assume that anything passed as 'this' is non-null, and
+        So we can assume that anything passed as 'this' is non-null, and
         optimize accordingly.  */
-      my_friendly_assert (TREE_CODE (parmtype) == POINTER_TYPE, 19990811);
-      t = lookup_base (TREE_TYPE (TREE_TYPE (TREE_VALUE (arg))),
-                      TREE_TYPE (parmtype), ba_ignore, NULL);
-      t = build_base_path (PLUS_EXPR, TREE_VALUE (arg), t, 1);
-      converted_args = tree_cons (NULL_TREE, t, converted_args);
+      gcc_assert (TREE_CODE (parmtype) == POINTER_TYPE);
+      /* Convert to the base in which the function was declared.  */
+      gcc_assert (cand->conversion_path != NULL_TREE);
+      converted_arg = build_base_path (PLUS_EXPR,
+                                      TREE_VALUE (arg),
+                                      cand->conversion_path,
+                                      1);
+      /* Check that the base class is accessible.  */
+      if (!accessible_base_p (TREE_TYPE (argtype),
+                             BINFO_TYPE (cand->conversion_path), true))
+       error ("%qT is not an accessible base of %qT",
+              BINFO_TYPE (cand->conversion_path),
+              TREE_TYPE (argtype));
+      /* If fn was found by a using declaration, the conversion path
+        will be to the derived class, not the base declaring fn. We
+        must convert from derived to base.  */
+      base_binfo = lookup_base (TREE_TYPE (TREE_TYPE (converted_arg)),
+                               TREE_TYPE (parmtype), ba_unique, NULL);
+      converted_arg = build_base_path (PLUS_EXPR, converted_arg,
+                                      base_binfo, 1);
+
+      argarray[j++] = converted_arg;
       parm = TREE_CHAIN (parm);
       arg = TREE_CHAIN (arg);
       ++i;
@@ -4231,61 +5338,94 @@ build_over_call (cand, args, flags)
     {
       tree type = TREE_VALUE (parm);
 
-      conv = TREE_VEC_ELT (convs, i);
+      conv = convs[i];
+
+      /* Don't make a copy here if build_call is going to.  */
+      if (conv->kind == ck_rvalue
+         && COMPLETE_TYPE_P (complete_type (type))
+         && !TREE_ADDRESSABLE (type))
+       conv = conv->u.next;
+
+      /* Warn about initializer_list deduction that isn't currently in the
+        working draft.  */
+      if (cxx_dialect > cxx98
+         && flag_deduce_init_list
+         && cand->template_decl
+         && is_std_init_list (non_reference (type)))
+       {
+         tree tmpl = TI_TEMPLATE (cand->template_decl);
+         tree realparm = DECL_ARGUMENTS (cand->fn);
+         tree patparm;
+         int k;
+
+         for (k = j; k; --k)
+           realparm = TREE_CHAIN (realparm);
+         patparm = get_pattern_parm (realparm, tmpl);
+
+         if (!is_std_init_list (non_reference (TREE_TYPE (patparm))))
+           {
+             pedwarn (input_location, 0, "deducing %qT as %qT",
+                      non_reference (TREE_TYPE (patparm)),
+                      non_reference (type));
+             pedwarn (input_location, 0, "  in call to %q+D", cand->fn);
+             pedwarn (input_location, 0,
+                      "  (you can disable this with -fno-deduce-init-list)");
+           }
+       }
+
       val = convert_like_with_context
-       (conv, TREE_VALUE (arg), fn, i - is_method);
+       (conv, TREE_VALUE (arg), fn, i - is_method, complain);
 
-      if (PROMOTE_PROTOTYPES
-         && INTEGRAL_TYPE_P (type)
-         && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
-       val = default_conversion (val);
-      converted_args = tree_cons (NULL_TREE, val, converted_args);
+      val = convert_for_arg_passing (type, val);
+      if (val == error_mark_node)
+        return error_mark_node;
+      else
+        argarray[j++] = val;
     }
 
   /* Default arguments */
   for (; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++)
-    converted_args 
-      = tree_cons (NULL_TREE, 
-                  convert_default_arg (TREE_VALUE (parm), 
-                                       TREE_PURPOSE (parm),
-                                       fn, i - is_method),
-                  converted_args);
-
+    argarray[j++] = convert_default_arg (TREE_VALUE (parm),
+                                        TREE_PURPOSE (parm),
+                                        fn, i - is_method);
   /* Ellipsis */
   for (; arg; arg = TREE_CHAIN (arg))
-    converted_args 
-      = tree_cons (NULL_TREE,
-                  convert_arg_to_ellipsis (TREE_VALUE (arg)),
-                  converted_args);
+    {
+      tree a = TREE_VALUE (arg);
+      if (magic_varargs_p (fn))
+       /* Do no conversions for magic varargs.  */;
+      else
+       a = convert_arg_to_ellipsis (a);
+      argarray[j++] = a;
+    }
 
-  converted_args = nreverse (converted_args);
+  gcc_assert (j <= nargs);
+  nargs = j;
 
-  if (warn_format)
-    check_function_format (NULL, TYPE_ATTRIBUTES (TREE_TYPE (fn)),
-                          converted_args);
+  check_function_arguments (TYPE_ATTRIBUTES (TREE_TYPE (fn)),
+                           nargs, argarray, TYPE_ARG_TYPES (TREE_TYPE (fn)));
 
   /* Avoid actually calling copy constructors and copy assignment operators,
      if possible.  */
 
   if (! flag_elide_constructors)
     /* Do things the hard way.  */;
-  else if (TREE_VEC_LENGTH (convs) == 1
-          && DECL_COPY_CONSTRUCTOR_P (fn))
+  else if (cand->num_convs == 1 
+           && (DECL_COPY_CONSTRUCTOR_P (fn) 
+               || DECL_MOVE_CONSTRUCTOR_P (fn)))
     {
       tree targ;
-      arg = skip_artificial_parms_for (fn, converted_args);
-      arg = TREE_VALUE (arg);
+      arg = argarray[num_artificial_parms_for (fn)];
 
       /* Pull out the real argument, disregarding const-correctness.  */
       targ = arg;
-      while (TREE_CODE (targ) == NOP_EXPR
-            || TREE_CODE (targ) == NON_LVALUE_EXPR
-            || TREE_CODE (targ) == CONVERT_EXPR)
+      while (CONVERT_EXPR_P (targ)
+            || TREE_CODE (targ) == NON_LVALUE_EXPR)
        targ = TREE_OPERAND (targ, 0);
       if (TREE_CODE (targ) == ADDR_EXPR)
        {
          targ = TREE_OPERAND (targ, 0);
-         if (!same_type_ignoring_top_level_qualifiers_p 
+         if (!same_type_ignoring_top_level_qualifiers_p
              (TREE_TYPE (TREE_TYPE (arg)), TREE_TYPE (targ)))
            targ = NULL_TREE;
        }
@@ -4295,18 +5435,27 @@ build_over_call (cand, args, flags)
       if (targ)
        arg = targ;
       else
-       arg = build_indirect_ref (arg, 0);
+       arg = cp_build_indirect_ref (arg, 0, complain);
 
+      if (TREE_CODE (arg) == TARGET_EXPR
+         && TARGET_EXPR_LIST_INIT_P (arg))
+       {
+         /* Copy-list-initialization doesn't require the copy constructor
+            to be defined.  */
+       }
       /* [class.copy]: the copy constructor is implicitly defined even if
         the implementation elided its use.  */
-      if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
-       mark_used (fn);
+      else if (TYPE_HAS_COMPLEX_INIT_REF (DECL_CONTEXT (fn)))
+       {
+         mark_used (fn);
+         already_used = true;
+       }
 
       /* If we're creating a temp and we already have one, don't create a
-         new one.  If we're not creating a temp but we get one, use
-         INIT_EXPR to collapse the temp into our target.  Otherwise, if the
-         ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
-         temp or an INIT_EXPR otherwise.  */
+        new one.  If we're not creating a temp but we get one, use
+        INIT_EXPR to collapse the temp into our target.  Otherwise, if the
+        ctor is trivial, do a bitwise copy with a simple TARGET_EXPR for a
+        temp or an INIT_EXPR otherwise.  */
       if (integer_zerop (TREE_VALUE (args)))
        {
          if (TREE_CODE (arg) == TARGET_EXPR)
@@ -4314,26 +5463,15 @@ build_over_call (cand, args, flags)
          else if (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
            return build_target_expr_with_type (arg, DECL_CONTEXT (fn));
        }
-      else if ((TREE_CODE (arg) == TARGET_EXPR
-               || TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn)))
-              /* Empty classes have padding which can be hidden
-                 inside an (empty) base of the class. This must not
-                 be touched as it might overlay things. When the
-                 gcc core learns about empty classes, we can treat it
-                 like other classes. */
-              && !(is_empty_class (DECL_CONTEXT (fn))
-                   && TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn))))
+      else if (TREE_CODE (arg) == TARGET_EXPR
+              || (TYPE_HAS_TRIVIAL_INIT_REF (DECL_CONTEXT (fn))
+                  && !move_fn_p (fn)))
        {
-         tree address;
          tree to = stabilize_reference
-           (build_indirect_ref (TREE_VALUE (args), 0));
-
-         val = build (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
-         address = build_unary_op (ADDR_EXPR, val, 0);
-         /* Avoid a warning about this expression, if the address is
-            never used.  */
-         TREE_USED (address) = 1;
-         return address;
+           (cp_build_indirect_ref (TREE_VALUE (args), 0, complain));
+
+         val = build2 (INIT_EXPR, DECL_CONTEXT (fn), to, arg);
+         return val;
        }
     }
   else if (DECL_OVERLOADED_OPERATOR_P (fn) == NOP_EXPR
@@ -4341,96 +5479,138 @@ build_over_call (cand, args, flags)
           && TYPE_HAS_TRIVIAL_ASSIGN_REF (DECL_CONTEXT (fn)))
     {
       tree to = stabilize_reference
-       (build_indirect_ref (TREE_VALUE (converted_args), 0));
+       (cp_build_indirect_ref (argarray[0], 0, complain));
+      tree type = TREE_TYPE (to);
+      tree as_base = CLASSTYPE_AS_BASE (type);
 
-      arg = build_indirect_ref (TREE_VALUE (TREE_CHAIN (converted_args)), 0);
-      if (is_empty_class (TREE_TYPE (to)))
+      arg = argarray[1];
+      if (tree_int_cst_equal (TYPE_SIZE (type), TYPE_SIZE (as_base)))
        {
-         TREE_USED (arg) = 1;
-
-         val = build (COMPOUND_EXPR, DECL_CONTEXT (fn), arg, to);
-         /* Even though the assignment may not actually result in any
-            code being generated, we do not want to warn about the
-            assignment having no effect.  That would be confusing to
-            users who may be performing the assignment as part of a
-            generic algorithm, for example.
-            
-            Ideally, the notions of having side-effects and of being
-            useless would be orthogonal.  */
-         TREE_SIDE_EFFECTS (val) = 1;
-         TREE_NO_UNUSED_WARNING (val) = 1;
+         arg = cp_build_indirect_ref (arg, 0, complain);
+         val = build2 (MODIFY_EXPR, TREE_TYPE (to), to, arg);
        }
       else
-       val = build (MODIFY_EXPR, TREE_TYPE (to), to, arg);
+       {
+         /* We must only copy the non-tail padding parts.
+            Use __builtin_memcpy for the bitwise copy.
+            FIXME fix 22488 so we can go back to using MODIFY_EXPR
+            instead of an explicit call to memcpy.  */
+       
+         tree arg0, arg1, arg2, t;
+         tree test = NULL_TREE;
+
+         arg2 = TYPE_SIZE_UNIT (as_base);
+         arg1 = arg;
+         arg0 = cp_build_unary_op (ADDR_EXPR, to, 0, complain);
+
+         if (!(optimize && flag_tree_ter))
+           {
+             /* When TER is off get_pointer_alignment returns 0, so a call
+                to __builtin_memcpy is expanded as a call to memcpy, which
+                is invalid with identical args.  When TER is on it is
+                expanded as a block move, which should be safe.  */
+             arg0 = save_expr (arg0);
+             arg1 = save_expr (arg1);
+             test = build2 (EQ_EXPR, boolean_type_node, arg0, arg1);
+           }
+         t = implicit_built_in_decls[BUILT_IN_MEMCPY];
+         t = build_call_n (t, 3, arg0, arg1, arg2);
+
+         t = convert (TREE_TYPE (arg0), t);
+         if (test)
+           t = build3 (COND_EXPR, TREE_TYPE (t), test, arg0, t);
+         val = cp_build_indirect_ref (t, 0, complain);
+       }
+
       return val;
     }
 
-  mark_used (fn);
+  if (!already_used)
+    mark_used (fn);
 
   if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0)
     {
-      tree t, *p = &TREE_VALUE (converted_args);
-      tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (*p)),
-                               DECL_VIRTUAL_CONTEXT (fn),
+      tree t;
+      tree binfo = lookup_base (TREE_TYPE (TREE_TYPE (argarray[0])),
+                               DECL_CONTEXT (fn),
                                ba_any, NULL);
-      my_friendly_assert (binfo && binfo != error_mark_node, 20010730);
-      
-      *p = build_base_path (PLUS_EXPR, *p, binfo, 1);
-      if (TREE_SIDE_EFFECTS (*p))
-       *p = save_expr (*p);
+      gcc_assert (binfo && binfo != error_mark_node);
+
+      /* Warn about deprecated virtual functions now, since we're about
+        to throw away the decl.  */
+      if (TREE_DEPRECATED (fn))
+       warn_deprecated_use (fn);
+
+      argarray[0] = build_base_path (PLUS_EXPR, argarray[0], binfo, 1);
+      if (TREE_SIDE_EFFECTS (argarray[0]))
+       argarray[0] = save_expr (argarray[0]);
       t = build_pointer_type (TREE_TYPE (fn));
       if (DECL_CONTEXT (fn) && TYPE_JAVA_INTERFACE (DECL_CONTEXT (fn)))
-       fn = build_java_interface_fn_ref (fn, *p);
+       fn = build_java_interface_fn_ref (fn, argarray[0]);
       else
-       fn = build_vfn_ref (build_indirect_ref (*p, 0), DECL_VINDEX (fn));
+       fn = build_vfn_ref (argarray[0], DECL_VINDEX (fn));
       TREE_TYPE (fn) = t;
     }
-  else if (DECL_INLINE (fn))
-    fn = inline_conversion (fn);
   else
     fn = build_addr_func (fn);
 
-  /* Recognize certain built-in functions so we can make tree-codes
-     other than CALL_EXPR.  We do this when it enables fold-const.c
-     to do something useful.  */
+  return build_cxx_call (fn, nargs, argarray);
+}
 
-  if (TREE_CODE (fn) == ADDR_EXPR
-      && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
-      && DECL_BUILT_IN (TREE_OPERAND (fn, 0)))
-    {
-      tree exp;
-      exp = expand_tree_builtin (TREE_OPERAND (fn, 0), args, converted_args);
-      if (exp)
-       return exp;
-    }
+/* Build and return a call to FN, using NARGS arguments in ARGARRAY.
+   This function performs no overload resolution, conversion, or other
+   high-level operations.  */
+
+tree
+build_cxx_call (tree fn, int nargs, tree *argarray)
+{
+  tree fndecl;
+
+  fn = build_call_a (fn, nargs, argarray);
+
+  /* If this call might throw an exception, note that fact.  */
+  fndecl = get_callee_fndecl (fn);
+  if ((!fndecl || !TREE_NOTHROW (fndecl))
+      && at_function_scope_p ()
+      && cfun)
+    cp_function_chain->can_throw = 1;
+
+  /* Check that arguments to builtin functions match the expectations.  */
+  if (fndecl
+      && DECL_BUILT_IN (fndecl)
+      && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
+      && !check_builtin_function_arguments (fndecl, nargs, argarray))
+    return error_mark_node;
+
+  /* Some built-in function calls will be evaluated at compile-time in
+     fold ().  */
+  fn = fold_if_not_in_template (fn);
 
-  /* Some built-in function calls will be evaluated at
-     compile-time in fold ().  */
-  fn = fold (build_call (fn, converted_args));
   if (VOID_TYPE_P (TREE_TYPE (fn)))
     return fn;
+
   fn = require_complete_type (fn);
   if (fn == error_mark_node)
     return error_mark_node;
-  if (IS_AGGR_TYPE (TREE_TYPE (fn)))
+
+  if (MAYBE_CLASS_TYPE_P (TREE_TYPE (fn)))
     fn = build_cplus_new (TREE_TYPE (fn), fn);
   return convert_from_reference (fn);
 }
 
-static tree java_iface_lookup_fn;
+static GTY(()) tree java_iface_lookup_fn;
 
 /* Make an expression which yields the address of the Java interface
    method FN.  This is achieved by generating a call to libjava's
    _Jv_LookupInterfaceMethodIdx().  */
 
 static tree
-build_java_interface_fn_ref (fn, instance)
-    tree fn, instance;
+build_java_interface_fn_ref (tree fn, tree instance)
 {
-  tree lookup_args, lookup_fn, method, idx;
+  tree lookup_fn, method, idx;
   tree klass_ref, iface, iface_ref;
   int i;
-  
+
   if (!java_iface_lookup_fn)
     {
       tree endlink = build_void_list_node ();
@@ -4438,59 +5618,59 @@ build_java_interface_fn_ref (fn, instance)
                          tree_cons (NULL_TREE, ptr_type_node,
                                     tree_cons (NULL_TREE, java_int_type_node,
                                                endlink)));
-      java_iface_lookup_fn 
-       = builtin_function ("_Jv_LookupInterfaceMethodIdx",
-                           build_function_type (ptr_type_node, t),
-                           0, NOT_BUILT_IN, NULL);
-      ggc_add_tree_root (&java_iface_lookup_fn, 1);
+      java_iface_lookup_fn
+       = add_builtin_function ("_Jv_LookupInterfaceMethodIdx",
+                               build_function_type (ptr_type_node, t),
+                               0, NOT_BUILT_IN, NULL, NULL_TREE);
     }
 
-  /* Look up the pointer to the runtime java.lang.Class object for `instance'. 
-     This is the first entry in the vtable. */
-  klass_ref = build_vtbl_ref (build_indirect_ref (instance, 0), 
+  /* Look up the pointer to the runtime java.lang.Class object for `instance'.
+     This is the first entry in the vtable.  */
+  klass_ref = build_vtbl_ref (cp_build_indirect_ref (instance, 0, 
+                                                     tf_warning_or_error),
                              integer_zero_node);
 
-  /* Get the java.lang.Class pointer for the interface being called. */
+  /* Get the java.lang.Class pointer for the interface being called.  */
   iface = DECL_CONTEXT (fn);
-  iface_ref = lookup_field (iface, get_identifier ("class$"), 0, 0);
+  iface_ref = lookup_field (iface, get_identifier ("class$"), 0, false);
   if (!iface_ref || TREE_CODE (iface_ref) != VAR_DECL
       || DECL_CONTEXT (iface_ref) != iface)
     {
-      error ("could not find class$ field in java interface type `%T'", 
+      error ("could not find class$ field in java interface type %qT",
                iface);
       return error_mark_node;
     }
-  iface_ref = build1 (ADDR_EXPR, build_pointer_type (iface), iface_ref);
-  
-  /* Determine the itable index of FN. */
+  iface_ref = build_address (iface_ref);
+  iface_ref = convert (build_pointer_type (iface), iface_ref);
+
+  /* Determine the itable index of FN.  */
   i = 1;
   for (method = TYPE_METHODS (iface); method; method = TREE_CHAIN (method))
     {
       if (!DECL_VIRTUAL_P (method))
-        continue;
+       continue;
       if (fn == method)
-        break;
+       break;
       i++;
     }
-  idx = build_int_2 (i, 0);
+  idx = build_int_cst (NULL_TREE, i);
 
-  lookup_args = tree_cons (NULL_TREE, klass_ref, 
-                          tree_cons (NULL_TREE, iface_ref,
-                                     build_tree_list (NULL_TREE, idx)));
-  lookup_fn = build1 (ADDR_EXPR, 
+  lookup_fn = build1 (ADDR_EXPR,
                      build_pointer_type (TREE_TYPE (java_iface_lookup_fn)),
                      java_iface_lookup_fn);
-  return build (CALL_EXPR, ptr_type_node, lookup_fn, lookup_args, NULL_TREE);
+  return build_call_nary (ptr_type_node, lookup_fn,
+                         3, klass_ref, iface_ref, idx);
 }
 
 /* Returns the value to use for the in-charge parameter when making a
-   call to a function with the indicated NAME.  */
+   call to a function with the indicated NAME.
+
+   FIXME:Can't we find a neater way to do this mapping?  */
 
 tree
-in_charge_arg_for_name (name)
-     tree name;
+in_charge_arg_for_name (tree name)
 {
 if (name == base_ctor_identifier
+ if (name == base_ctor_identifier
       || name == base_dtor_identifier)
     return integer_zero_node;
   else if (name == complete_ctor_identifier)
@@ -4502,290 +5682,508 @@ in_charge_arg_for_name (name)
 
   /* This function should only be called with one of the names listed
      above.  */
-  abort ();
+  gcc_unreachable ();
   return NULL_TREE;
 }
 
-static tree
-build_new_method_call (instance, name, args, basetype_path, flags)
-     tree instance, name, args, basetype_path;
-     int flags;
-{
-  struct z_candidate *candidates = 0, *cand;
-  tree explicit_targs = NULL_TREE;
-  tree basetype, mem_args = NULL_TREE, fns, instance_ptr;
-  tree pretty_name;
-  tree user_args;
-  tree templates = NULL_TREE;
-  tree call;
-  int template_only = 0;
+/* Build a call to a constructor, destructor, or an assignment
+   operator for INSTANCE, an expression with class type.  NAME
+   indicates the special member function to call; ARGS are the
+   arguments.  BINFO indicates the base of INSTANCE that is to be
+   passed as the `this' parameter to the member function called.
 
-  if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
-    {
-      explicit_targs = TREE_OPERAND (name, 1);
-      name = TREE_OPERAND (name, 0);
-      if (DECL_P (name))
-       name = DECL_NAME (name);
-      else
-       {
-         if (TREE_CODE (name) == COMPONENT_REF)
-           name = TREE_OPERAND (name, 1);
-         if (TREE_CODE (name) == OVERLOAD)
-           name = DECL_NAME (OVL_CURRENT (name));
-       }
+   FLAGS are the LOOKUP_* flags to use when processing the call.
 
-      template_only = 1;
+   If NAME indicates a complete object constructor, INSTANCE may be
+   NULL_TREE.  In this case, the caller will call build_cplus_new to
+   store the newly constructed object into a VAR_DECL.  */
+
+tree
+build_special_member_call (tree instance, tree name, tree args,
+                          tree binfo, int flags, tsubst_flags_t complain)
+{
+  tree fns;
+  /* The type of the subobject to be constructed or destroyed.  */
+  tree class_type;
+
+  gcc_assert (name == complete_ctor_identifier
+             || name == base_ctor_identifier
+             || name == complete_dtor_identifier
+             || name == base_dtor_identifier
+             || name == deleting_dtor_identifier
+             || name == ansi_assopname (NOP_EXPR));
+  if (TYPE_P (binfo))
+    {
+      /* Resolve the name.  */
+      if (!complete_type_or_else (binfo, NULL_TREE))
+       return error_mark_node;
+
+      binfo = TYPE_BINFO (binfo);
     }
 
-  user_args = args;
-  args = resolve_args (args);
+  gcc_assert (binfo != NULL_TREE);
 
-  if (args == error_mark_node)
-    return error_mark_node;
+  class_type = BINFO_TYPE (binfo);
 
-  if (instance == NULL_TREE)
-    basetype = BINFO_TYPE (basetype_path);
+  /* Handle the special case where INSTANCE is NULL_TREE.  */
+  if (name == complete_ctor_identifier && !instance)
+    {
+      instance = build_int_cst (build_pointer_type (class_type), 0);
+      instance = build1 (INDIRECT_REF, class_type, instance);
+    }
   else
     {
-      if (TREE_CODE (instance) == OFFSET_REF)
-       instance = resolve_offset_ref (instance);
-      if (TREE_CODE (TREE_TYPE (instance)) == REFERENCE_TYPE)
-       instance = convert_from_reference (instance);
-      basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
+      if (name == complete_dtor_identifier
+         || name == base_dtor_identifier
+         || name == deleting_dtor_identifier)
+       gcc_assert (args == NULL_TREE);
 
-      /* XXX this should be handled before we get here.  */
-      if (! IS_AGGR_TYPE (basetype))
+      /* Convert to the base class, if necessary.  */
+      if (!same_type_ignoring_top_level_qualifiers_p
+         (TREE_TYPE (instance), BINFO_TYPE (binfo)))
        {
-         if ((flags & LOOKUP_COMPLAIN) && basetype != error_mark_node)
-           error ("request for member `%D' in `%E', which is of non-aggregate type `%T'",
-                     name, instance, basetype);
-
-         return error_mark_node;
+         if (name != ansi_assopname (NOP_EXPR))
+           /* For constructors and destructors, either the base is
+              non-virtual, or it is virtual but we are doing the
+              conversion from a constructor or destructor for the
+              complete object.  In either case, we can convert
+              statically.  */
+           instance = convert_to_base_statically (instance, binfo);
+         else
+           /* However, for assignment operators, we must convert
+              dynamically if the base is virtual.  */
+           instance = build_base_path (PLUS_EXPR, instance,
+                                       binfo, /*nonnull=*/1);
        }
     }
 
-  if (basetype_path == NULL_TREE)
-    basetype_path = TYPE_BINFO (basetype);
+  gcc_assert (instance != NULL_TREE);
+
+  fns = lookup_fnfields (binfo, name, 1);
 
-  if (instance)
+  /* When making a call to a constructor or destructor for a subobject
+     that uses virtual base classes, pass down a pointer to a VTT for
+     the subobject.  */
+  if ((name == base_ctor_identifier
+       || name == base_dtor_identifier)
+      && CLASSTYPE_VBASECLASSES (class_type))
     {
-      instance_ptr = build_this (instance);
+      tree vtt;
+      tree sub_vtt;
+
+      /* If the current function is a complete object constructor
+        or destructor, then we fetch the VTT directly.
+        Otherwise, we look it up using the VTT we were given.  */
+      vtt = TREE_CHAIN (CLASSTYPE_VTABLES (current_class_type));
+      vtt = decay_conversion (vtt);
+      vtt = build3 (COND_EXPR, TREE_TYPE (vtt),
+                   build2 (EQ_EXPR, boolean_type_node,
+                           current_in_charge_parm, integer_zero_node),
+                   current_vtt_parm,
+                   vtt);
+      gcc_assert (BINFO_SUBVTT_INDEX (binfo));
+      sub_vtt = build2 (POINTER_PLUS_EXPR, TREE_TYPE (vtt), vtt,
+                       BINFO_SUBVTT_INDEX (binfo));
+
+      args = tree_cons (NULL_TREE, sub_vtt, args);
+    }
+
+  return build_new_method_call (instance, fns, args,
+                               TYPE_BINFO (BINFO_TYPE (binfo)),
+                               flags, /*fn=*/NULL,
+                               complain);
+}
+
+/* Return the NAME, as a C string.  The NAME indicates a function that
+   is a member of TYPE.  *FREE_P is set to true if the caller must
+   free the memory returned.
 
-      if (! template_only)
+   Rather than go through all of this, we should simply set the names
+   of constructors and destructors appropriately, and dispense with
+   ctor_identifier, dtor_identifier, etc.  */
+
+static char *
+name_as_c_string (tree name, tree type, bool *free_p)
+{
+  char *pretty_name;
+
+  /* Assume that we will not allocate memory.  */
+  *free_p = false;
+  /* Constructors and destructors are special.  */
+  if (IDENTIFIER_CTOR_OR_DTOR_P (name))
+    {
+      pretty_name
+       = CONST_CAST (char *, IDENTIFIER_POINTER (constructor_name (type)));
+      /* For a destructor, add the '~'.  */
+      if (name == complete_dtor_identifier
+         || name == base_dtor_identifier
+         || name == deleting_dtor_identifier)
        {
-         /* XXX this should be handled before we get here.  */
-         fns = build_field_call (basetype_path, instance_ptr, name, args);
-         if (fns)
-           return fns;
+         pretty_name = concat ("~", pretty_name, NULL);
+         /* Remember that we need to free the memory allocated.  */
+         *free_p = true;
        }
     }
+  else if (IDENTIFIER_TYPENAME_P (name))
+    {
+      pretty_name = concat ("operator ",
+                           type_as_string (TREE_TYPE (name),
+                                           TFF_PLAIN_IDENTIFIER),
+                           NULL);
+      /* Remember that we need to free the memory allocated.  */
+      *free_p = true;
+    }
   else
+    pretty_name = CONST_CAST (char *, IDENTIFIER_POINTER (name));
+
+  return pretty_name;
+}
+
+/* Build a call to "INSTANCE.FN (ARGS)".  If FN_P is non-NULL, it will
+   be set, upon return, to the function called.  */
+
+tree
+build_new_method_call (tree instance, tree fns, tree args,
+                      tree conversion_path, int flags,
+                      tree *fn_p, tsubst_flags_t complain)
+{
+  struct z_candidate *candidates = 0, *cand;
+  tree explicit_targs = NULL_TREE;
+  tree basetype = NULL_TREE;
+  tree access_binfo;
+  tree optype;
+  tree mem_args = NULL_TREE, instance_ptr;
+  tree name;
+  tree user_args;
+  tree call;
+  tree fn;
+  tree class_type;
+  int template_only = 0;
+  bool any_viable_p;
+  tree orig_instance;
+  tree orig_fns;
+  tree orig_args;
+  void *p;
+
+  gcc_assert (instance != NULL_TREE);
+
+  /* We don't know what function we're going to call, yet.  */
+  if (fn_p)
+    *fn_p = NULL_TREE;
+
+  if (error_operand_p (instance)
+      || error_operand_p (fns)
+      || args == error_mark_node)
+    return error_mark_node;
+
+  if (!BASELINK_P (fns))
+    {
+      if (complain & tf_error)
+       error ("call to non-function %qD", fns);
+      return error_mark_node;
+    }
+
+  orig_instance = instance;
+  orig_fns = fns;
+  orig_args = args;
+
+  /* Dismantle the baselink to collect all the information we need.  */
+  if (!conversion_path)
+    conversion_path = BASELINK_BINFO (fns);
+  access_binfo = BASELINK_ACCESS_BINFO (fns);
+  optype = BASELINK_OPTYPE (fns);
+  fns = BASELINK_FUNCTIONS (fns);
+  if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
+    {
+      explicit_targs = TREE_OPERAND (fns, 1);
+      fns = TREE_OPERAND (fns, 0);
+      template_only = 1;
+    }
+  gcc_assert (TREE_CODE (fns) == FUNCTION_DECL
+             || TREE_CODE (fns) == TEMPLATE_DECL
+             || TREE_CODE (fns) == OVERLOAD);
+  fn = get_first_fn (fns);
+  name = DECL_NAME (fn);
+
+  basetype = TYPE_MAIN_VARIANT (TREE_TYPE (instance));
+  gcc_assert (CLASS_TYPE_P (basetype));
+
+  if (processing_template_decl)
+    {
+      instance = build_non_dependent_expr (instance);
+      args = build_non_dependent_args (orig_args);
+    }
+
+  /* The USER_ARGS are the arguments we will display to users if an
+     error occurs.  The USER_ARGS should not include any
+     compiler-generated arguments.  The "this" pointer hasn't been
+     added yet.  However, we must remove the VTT pointer if this is a
+     call to a base-class constructor or destructor.  */
+  user_args = args;
+  if (IDENTIFIER_CTOR_OR_DTOR_P (name))
+    {
+      /* Callers should explicitly indicate whether they want to construct
+        the complete object or just the part without virtual bases.  */
+      gcc_assert (name != ctor_identifier);
+      /* Similarly for destructors.  */
+      gcc_assert (name != dtor_identifier);
+      /* Remove the VTT pointer, if present.  */
+      if ((name == base_ctor_identifier || name == base_dtor_identifier)
+         && CLASSTYPE_VBASECLASSES (basetype))
+       user_args = TREE_CHAIN (user_args);
+    }
+
+  /* Process the argument list.  */
+  args = resolve_args (args);
+  if (args == error_mark_node)
+    return error_mark_node;
+
+  instance_ptr = build_this (instance);
+
+  /* It's OK to call destructors and constructors on cv-qualified objects.
+     Therefore, convert the INSTANCE_PTR to the unqualified type, if
+     necessary.  */
+  if (DECL_DESTRUCTOR_P (fn)
+      || DECL_CONSTRUCTOR_P (fn))
+    {
+      tree type = build_pointer_type (basetype);
+      if (!same_type_p (type, TREE_TYPE (instance_ptr)))
+       instance_ptr = build_nop (type, instance_ptr);
+    }
+  if (DECL_DESTRUCTOR_P (fn))
+    name = complete_dtor_identifier;
+
+  /* If CONSTRUCTOR_IS_DIRECT_INIT is set, this was a T{ } form
+     initializer, not T({ }).  If the type doesn't have a list ctor,
+     break apart the list into separate ctor args.  */
+  if (DECL_CONSTRUCTOR_P (fn) && args
+      && BRACE_ENCLOSED_INITIALIZER_P (TREE_VALUE (args))
+      && CONSTRUCTOR_IS_DIRECT_INIT (TREE_VALUE (args))
+      && !TYPE_HAS_LIST_CTOR (basetype))
     {
-      instance_ptr = build_int_2 (0, 0);
-      TREE_TYPE (instance_ptr) = build_pointer_type (basetype);
+      gcc_assert (TREE_CHAIN (args) == NULL_TREE);
+      args = ctor_to_list (TREE_VALUE (args));
     }
 
-  /* Callers should explicitly indicate whether they want to construct
-     the complete object or just the part without virtual bases.  */
-  my_friendly_assert (name != ctor_identifier, 20000408);
-  /* Similarly for destructors.  */
-  my_friendly_assert (name != dtor_identifier, 20000408);
+  class_type = (conversion_path ? BINFO_TYPE (conversion_path) : NULL_TREE);
+  mem_args = tree_cons (NULL_TREE, instance_ptr, args);
 
-  if (IDENTIFIER_CTOR_OR_DTOR_P (name))
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
+  for (fn = fns; fn; fn = OVL_NEXT (fn))
     {
-      int constructor_p;
+      tree t = OVL_CURRENT (fn);
+      tree this_arglist;
 
-      constructor_p = (name == complete_ctor_identifier
-                      || name == base_ctor_identifier);
-      pretty_name = (constructor_p 
-                    ? constructor_name (basetype) : dtor_identifier);
+      /* We can end up here for copy-init of same or base class.  */
+      if ((flags & LOOKUP_ONLYCONVERTING)
+         && DECL_NONCONVERTING_P (t))
+       continue;
 
-      /* If we're a call to a constructor or destructor for a
-        subobject that uses virtual base classes, then we need to
-        pass down a pointer to a VTT for the subobject.  */
-      if ((name == base_ctor_identifier
-          || name == base_dtor_identifier)
-         && TYPE_USES_VIRTUAL_BASECLASSES (basetype))
+      if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
+       this_arglist = mem_args;
+      else
+       this_arglist = args;
+
+      if (TREE_CODE (t) == TEMPLATE_DECL)
+       /* A member template.  */
+       add_template_candidate (&candidates, t,
+                               class_type,
+                               explicit_targs,
+                               this_arglist, optype,
+                               access_binfo,
+                               conversion_path,
+                               flags,
+                               DEDUCE_CALL);
+      else if (! template_only)
+       add_function_candidate (&candidates, t,
+                               class_type,
+                               this_arglist,
+                               access_binfo,
+                               conversion_path,
+                               flags);
+    }
+
+  candidates = splice_viable (candidates, pedantic, &any_viable_p);
+  if (!any_viable_p)
+    {
+      if (complain & tf_error)
        {
-         tree vtt;
-         tree sub_vtt;
-         tree basebinfo = basetype_path;
-
-         /* If the current function is a complete object constructor
-            or destructor, then we fetch the VTT directly.
-            Otherwise, we look it up using the VTT we were given.  */
-         vtt = IDENTIFIER_GLOBAL_VALUE (get_vtt_name (current_class_type));
-         vtt = decay_conversion (vtt);
-         vtt = build (COND_EXPR, TREE_TYPE (vtt),
-                      build (EQ_EXPR, boolean_type_node,
-                             current_in_charge_parm, integer_zero_node),
-                      current_vtt_parm,
-                      vtt);
-         if (TREE_VIA_VIRTUAL (basebinfo))
-           basebinfo = binfo_for_vbase (basetype, current_class_type);
-         my_friendly_assert (BINFO_SUBVTT_INDEX (basebinfo), 20010110);
-         sub_vtt = build (PLUS_EXPR, TREE_TYPE (vtt), vtt,
-                          BINFO_SUBVTT_INDEX (basebinfo));
-
-         args = tree_cons (NULL_TREE, sub_vtt, args);
+         if (!COMPLETE_TYPE_P (basetype))
+           cxx_incomplete_type_error (instance_ptr, basetype);
+         else
+           {
+             char *pretty_name;
+             bool free_p;
+
+             pretty_name = name_as_c_string (name, basetype, &free_p);
+             error ("no matching function for call to %<%T::%s(%A)%#V%>",
+                    basetype, pretty_name, user_args,
+                    TREE_TYPE (TREE_TYPE (instance_ptr)));
+             if (free_p)
+               free (pretty_name);
+           }
+         print_z_candidates (candidates);
        }
+      call = error_mark_node;
     }
   else
-    pretty_name = name;
-
-  fns = lookup_fnfields (basetype_path, name, 1);
-
-  if (fns == error_mark_node)
-    return error_mark_node;
-  if (fns)
     {
-      tree base = BINFO_TYPE (TREE_PURPOSE (fns));
-      tree fn = TREE_VALUE (fns);
-      mem_args = tree_cons (NULL_TREE, instance_ptr, args);
-      for (; fn; fn = OVL_NEXT (fn))
+      cand = tourney (candidates);
+      if (cand == 0)
        {
-         tree t = OVL_CURRENT (fn);
-         tree this_arglist;
-
-         /* We can end up here for copy-init of same or base class.  */
-         if ((flags & LOOKUP_ONLYCONVERTING)
-             && DECL_NONCONVERTING_P (t))
-           continue;
-
-         if (DECL_NONSTATIC_MEMBER_FUNCTION_P (t))
-           this_arglist = mem_args;
-         else
-           this_arglist = args;
+         char *pretty_name;
+         bool free_p;
 
-         if (TREE_CODE (t) == TEMPLATE_DECL)
+         if (complain & tf_error)
            {
-             /* A member template. */
-             templates = tree_cons (NULL_TREE, t, templates);
-             candidates = 
-               add_template_candidate (candidates, t, base, explicit_targs,
-                                       this_arglist,
-                                       TREE_TYPE (name), flags, DEDUCE_CALL); 
+             pretty_name = name_as_c_string (name, basetype, &free_p);
+             error ("call of overloaded %<%s(%A)%> is ambiguous", pretty_name,
+                    user_args);
+             print_z_candidates (candidates);
+             if (free_p)
+               free (pretty_name);
            }
-         else if (! template_only)
-           candidates = add_function_candidate (candidates, t, base,
-                                                this_arglist, flags);
-
-         if (candidates)
-           candidates->basetype_path = basetype_path;
+         call = error_mark_node;
        }
-    }
-
-  if (! any_viable (candidates))
-    {
-      /* XXX will LOOKUP_SPECULATIVELY be needed when this is done?  */
-      if (flags & LOOKUP_SPECULATIVELY)
-       return NULL_TREE;
-      if (!COMPLETE_TYPE_P (basetype))
-       incomplete_type_error (instance_ptr, basetype);
       else
-       error ("no matching function for call to `%T::%D(%A)%#V'",
-              basetype, pretty_name, user_args,
-              TREE_TYPE (TREE_TYPE (instance_ptr)));
-      print_z_candidates (candidates);
-      return error_mark_node;
+       {
+         fn = cand->fn;
+
+         if (!(flags & LOOKUP_NONVIRTUAL)
+             && DECL_PURE_VIRTUAL_P (fn)
+             && instance == current_class_ref
+             && (DECL_CONSTRUCTOR_P (current_function_decl)
+                 || DECL_DESTRUCTOR_P (current_function_decl))
+             && (complain & tf_warning))
+           /* This is not an error, it is runtime undefined
+              behavior.  */
+           warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
+                     "abstract virtual %q#D called from constructor"
+                     : "abstract virtual %q#D called from destructor"),
+                    fn);
+
+         if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
+             && is_dummy_object (instance_ptr))
+           {
+             if (complain & tf_error)
+               error ("cannot call member function %qD without object",
+                      fn);
+             call = error_mark_node;
+           }
+         else
+           {
+             if (DECL_VINDEX (fn) && ! (flags & LOOKUP_NONVIRTUAL)
+                 && resolves_to_fixed_type_p (instance, 0))
+               flags |= LOOKUP_NONVIRTUAL;
+             /* Now we know what function is being called.  */
+             if (fn_p)
+               *fn_p = fn;
+             /* Build the actual CALL_EXPR.  */
+             call = build_over_call (cand, flags, complain);
+             /* In an expression of the form `a->f()' where `f' turns
+                out to be a static member function, `a' is
+                none-the-less evaluated.  */
+             if (TREE_CODE (TREE_TYPE (fn)) != METHOD_TYPE
+                 && !is_dummy_object (instance_ptr)
+                 && TREE_SIDE_EFFECTS (instance_ptr))
+               call = build2 (COMPOUND_EXPR, TREE_TYPE (call),
+                              instance_ptr, call);
+             else if (call != error_mark_node
+                      && DECL_DESTRUCTOR_P (cand->fn)
+                      && !VOID_TYPE_P (TREE_TYPE (call)))
+               /* An explicit call of the form "x->~X()" has type
+                  "void".  However, on platforms where destructors
+                  return "this" (i.e., those where
+                  targetm.cxx.cdtor_returns_this is true), such calls
+                  will appear to have a return value of pointer type
+                  to the low-level call machinery.  We do not want to
+                  change the low-level machinery, since we want to be
+                  able to optimize "delete f()" on such platforms as
+                  "operator delete(~X(f()))" (rather than generating
+                  "t = f(), ~X(t), operator delete (t)").  */
+               call = build_nop (void_type_node, call);
+           }
+       }
     }
-  candidates = splice_viable (candidates);
-  cand = tourney (candidates);
 
-  if (cand == 0)
+  if (processing_template_decl && call != error_mark_node)
     {
-      error ("call of overloaded `%D(%A)' is ambiguous", pretty_name,
-               user_args);
-      print_z_candidates (candidates);
-      return error_mark_node;
-    }
+      bool cast_to_void = false;
 
-  if (DECL_PURE_VIRTUAL_P (cand->fn)
-      && instance == current_class_ref
-      && (DECL_CONSTRUCTOR_P (current_function_decl)
-         || DECL_DESTRUCTOR_P (current_function_decl))
-      && ! (flags & LOOKUP_NONVIRTUAL)
-      && value_member (cand->fn, CLASSTYPE_PURE_VIRTUALS (basetype)))
-    error ((DECL_CONSTRUCTOR_P (current_function_decl) ? 
-              "abstract virtual `%#D' called from constructor"
-              : "abstract virtual `%#D' called from destructor"),
-             cand->fn);
-  if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE
-      && is_dummy_object (instance_ptr))
-    {
-      error ("cannot call member function `%D' without object", cand->fn);
-      return error_mark_node;
+      if (TREE_CODE (call) == COMPOUND_EXPR)
+       call = TREE_OPERAND (call, 1);
+      else if (TREE_CODE (call) == NOP_EXPR)
+       {
+         cast_to_void = true;
+         call = TREE_OPERAND (call, 0);
+       }
+      if (TREE_CODE (call) == INDIRECT_REF)
+       call = TREE_OPERAND (call, 0);
+      call = (build_min_non_dep_call_list
+             (call,
+              build_min (COMPONENT_REF, TREE_TYPE (CALL_EXPR_FN (call)),
+                         orig_instance, orig_fns, NULL_TREE),
+              orig_args));
+      call = convert_from_reference (call);
+      if (cast_to_void)
+       call = build_nop (void_type_node, call);
     }
 
-  if (DECL_VINDEX (cand->fn) && ! (flags & LOOKUP_NONVIRTUAL)
-      && resolves_to_fixed_type_p (instance, 0))
-    flags |= LOOKUP_NONVIRTUAL;
-
-  if (TREE_CODE (TREE_TYPE (cand->fn)) == METHOD_TYPE)
-    call = build_over_call (cand, mem_args, flags);
-  else
-    {
-      call = build_over_call (cand, args, flags);
-      /* Do evaluate the object parameter in a call to a static member
-        function.  */
-      if (TREE_SIDE_EFFECTS (instance))
-       call = build (COMPOUND_EXPR, TREE_TYPE (call), instance, call);
-    }
+ /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
 
   return call;
 }
 
-/* Returns non-zero iff standard conversion sequence ICS1 is a proper
+/* Returns true iff standard conversion sequence ICS1 is a proper
    subsequence of ICS2.  */
 
-static int
-is_subseq (ics1, ics2)
-     tree ics1, ics2;
+static bool
+is_subseq (conversion *ics1, conversion *ics2)
 {
   /* We can assume that a conversion of the same code
      between the same types indicates a subsequence since we only get
      here if the types we are converting from are the same.  */
 
-  while (TREE_CODE (ics1) == RVALUE_CONV
-        || TREE_CODE (ics1) == LVALUE_CONV)
-    ics1 = TREE_OPERAND (ics1, 0);
+  while (ics1->kind == ck_rvalue
+        || ics1->kind == ck_lvalue)
+    ics1 = ics1->u.next;
 
   while (1)
     {
-      while (TREE_CODE (ics2) == RVALUE_CONV
-         || TREE_CODE (ics2) == LVALUE_CONV)
-       ics2 = TREE_OPERAND (ics2, 0);
+      while (ics2->kind == ck_rvalue
+            || ics2->kind == ck_lvalue)
+       ics2 = ics2->u.next;
 
-      if (TREE_CODE (ics2) == USER_CONV
-         || TREE_CODE (ics2) == AMBIG_CONV
-         || TREE_CODE (ics2) == IDENTITY_CONV)
+      if (ics2->kind == ck_user
+         || ics2->kind == ck_ambig
+         || ics2->kind == ck_identity)
        /* At this point, ICS1 cannot be a proper subsequence of
           ICS2.  We can get a USER_CONV when we are comparing the
           second standard conversion sequence of two user conversion
           sequences.  */
-       return 0;
+       return false;
 
-      ics2 = TREE_OPERAND (ics2, 0);
+      ics2 = ics2->u.next;
 
-      if (TREE_CODE (ics2) == TREE_CODE (ics1)
-         && same_type_p (TREE_TYPE (ics2), TREE_TYPE (ics1))
-         && same_type_p (TREE_TYPE (TREE_OPERAND (ics2, 0)),
-                            TREE_TYPE (TREE_OPERAND (ics1, 0))))
-       return 1;
+      if (ics2->kind == ics1->kind
+         && same_type_p (ics2->type, ics1->type)
+         && same_type_p (ics2->u.next->type,
+                         ics1->u.next->type))
+       return true;
     }
 }
 
-/* Returns non-zero iff DERIVED is derived from BASE.  The inputs may
+/* Returns nonzero iff DERIVED is derived from BASE.  The inputs may
    be any _TYPE nodes.  */
 
-int
-is_properly_derived_from (derived, base)
-     tree derived;
-     tree base;
+bool
+is_properly_derived_from (tree derived, tree base)
 {
-  if (!IS_AGGR_TYPE_CODE (TREE_CODE (derived))
-      || !IS_AGGR_TYPE_CODE (TREE_CODE (base)))
-    return 0;
+  if (!CLASS_TYPE_P (derived) || !CLASS_TYPE_P (base))
+    return false;
 
   /* We only allow proper derivation here.  The DERIVED_FROM_P macro
      considers every class derived from itself.  */
@@ -4800,56 +6198,55 @@ is_properly_derived_from (derived, base)
    modify it accordingly.  */
 
 static void
-maybe_handle_implicit_object (ics)
-     tree* ics;
+maybe_handle_implicit_object (conversion **ics)
 {
-  if (ICS_THIS_FLAG (*ics))
+  if ((*ics)->this_p)
     {
       /* [over.match.funcs]
-        
+
         For non-static member functions, the type of the
         implicit object parameter is "reference to cv X"
         where X is the class of which the function is a
         member and cv is the cv-qualification on the member
         function declaration.  */
-      tree t = *ics;
+      conversion *t = *ics;
       tree reference_type;
 
       /* The `this' parameter is a pointer to a class type.  Make the
-        implict conversion talk about a reference to that same class
+        implicit conversion talk about a reference to that same class
         type.  */
-      reference_type = TREE_TYPE (TREE_TYPE (*ics));
+      reference_type = TREE_TYPE (t->type);
       reference_type = build_reference_type (reference_type);
 
-      if (TREE_CODE (t) == QUAL_CONV)
-       t = TREE_OPERAND (t, 0);
-      if (TREE_CODE (t) == PTR_CONV)
-       t = TREE_OPERAND (t, 0);
-      t = build1 (IDENTITY_CONV, TREE_TYPE (TREE_TYPE (t)), NULL_TREE);
-      t = direct_reference_binding (reference_type, t); 
+      if (t->kind == ck_qual)
+       t = t->u.next;
+      if (t->kind == ck_ptr)
+       t = t->u.next;
+      t = build_identity_conv (TREE_TYPE (t->type), NULL_TREE);
+      t = direct_reference_binding (reference_type, t);
+      t->this_p = 1;
+      t->rvaluedness_matches_p = 0;
       *ics = t;
     }
 }
 
 /* If *ICS is a REF_BIND set *ICS to the remainder of the conversion,
-   and return the type to which the reference refers.  Otherwise,
-   leave *ICS unchanged and return NULL_TREE.  */
+   and return the initial reference binding conversion. Otherwise,
+   leave *ICS unchanged and return NULL.  */
 
-static tree
-maybe_handle_ref_bind (ics)
-     tree* ics;
+static conversion *
+maybe_handle_ref_bind (conversion **ics)
 {
-  if (TREE_CODE (*ics) == REF_BIND)
+  if ((*ics)->kind == ck_ref_bind)
     {
-      tree old_ics = *ics;
-      tree type = TREE_TYPE (TREE_TYPE (old_ics));
-      *ics = TREE_OPERAND (old_ics, 0);
-      ICS_USER_FLAG (*ics) = ICS_USER_FLAG (old_ics);
-      ICS_BAD_FLAG (*ics) = ICS_BAD_FLAG (old_ics);
-      return type;
+      conversion *old_ics = *ics;
+      *ics = old_ics->u.next;
+      (*ics)->user_conv_p = old_ics->user_conv_p;
+      (*ics)->bad_p = old_ics->bad_p;
+      return old_ics;
     }
 
-  return NULL_TREE;
+  return NULL;
 }
 
 /* Compare two implicit conversion sequences according to the rules set out in
@@ -4860,8 +6257,7 @@ maybe_handle_ref_bind (ics)
       0: ics1 and ics2 are indistinguishable */
 
 static int
-compare_ics (ics1, ics2)
-     tree ics1, ics2;
+compare_ics (conversion *ics1, conversion *ics2)
 {
   tree from_type1;
   tree from_type2;
@@ -4871,21 +6267,29 @@ compare_ics (ics1, ics2)
   tree deref_from_type2 = NULL_TREE;
   tree deref_to_type1 = NULL_TREE;
   tree deref_to_type2 = NULL_TREE;
-  int rank1, rank2;
+  conversion_rank rank1, rank2;
 
-  /* REF_BINDING is non-zero if the result of the conversion sequence
-     is a reference type.   In that case TARGET_TYPE is the
-     type referred to by the reference.  */
-  tree target_type1;
-  tree target_type2;
+  /* REF_BINDING is nonzero if the result of the conversion sequence
+     is a reference type.   In that case REF_CONV is the reference
+     binding conversion. */
+  conversion *ref_conv1;
+  conversion *ref_conv2;
 
   /* Handle implicit object parameters.  */
   maybe_handle_implicit_object (&ics1);
   maybe_handle_implicit_object (&ics2);
 
   /* Handle reference parameters.  */
-  target_type1 = maybe_handle_ref_bind (&ics1);
-  target_type2 = maybe_handle_ref_bind (&ics2);
+  ref_conv1 = maybe_handle_ref_bind (&ics1);
+  ref_conv2 = maybe_handle_ref_bind (&ics2);
+
+  /* List-initialization sequence L1 is a better conversion sequence than
+     list-initialization sequence L2 if L1 converts to
+     std::initializer_list<X> for some X and L2 does not.  */
+  if (ics1->kind == ck_list && ics2->kind != ck_list)
+    return 1;
+  if (ics2->kind == ck_list && ics1->kind != ck_list)
+    return -1;
 
   /* [over.ics.rank]
 
@@ -4895,35 +6299,36 @@ compare_ics (ics1, ics2)
      --a standard conversion sequence (_over.ics.scs_) is a better
        conversion sequence than a user-defined conversion sequence
        or an ellipsis conversion sequence, and
-     
+
      --a user-defined conversion sequence (_over.ics.user_) is a
        better conversion sequence than an ellipsis conversion sequence
        (_over.ics.ellipsis_).  */
-  rank1 = ICS_RANK (ics1);
-  rank2 = ICS_RANK (ics2);
-  
+  rank1 = CONVERSION_RANK (ics1);
+  rank2 = CONVERSION_RANK (ics2);
+
   if (rank1 > rank2)
     return -1;
   else if (rank1 < rank2)
     return 1;
 
-  if (rank1 == BAD_RANK)
+  if (rank1 == cr_bad)
     {
       /* XXX Isn't this an extension? */
       /* Both ICS are bad.  We try to make a decision based on what
-        would have happenned if they'd been good.  */
-      if (ICS_USER_FLAG (ics1) > ICS_USER_FLAG (ics2)
-         || ICS_STD_RANK (ics1) > ICS_STD_RANK (ics2))
+        would have happened if they'd been good.  */
+      if (ics1->user_conv_p > ics2->user_conv_p
+         || ics1->rank  > ics2->rank)
        return -1;
-      else if (ICS_USER_FLAG (ics1) < ICS_USER_FLAG (ics2)
-              || ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
+      else if (ics1->user_conv_p < ics2->user_conv_p
+              || ics1->rank < ics2->rank)
        return 1;
 
       /* We couldn't make up our minds; try to figure it out below.  */
     }
 
-  if (ICS_ELLIPSIS_FLAG (ics1))
-    /* Both conversions are ellipsis conversions.  */
+  if (ics1->ellipsis_p || ics1->kind == ck_list)
+    /* Both conversions are ellipsis conversions or both are building a
+       std::initializer_list.  */
     return 0;
 
   /* User-defined  conversion sequence U1 is a better conversion sequence
@@ -4932,51 +6337,59 @@ compare_ics (ics1, ics2)
      ond standard conversion sequence of U1 is  better  than  the  second
      standard conversion sequence of U2.  */
 
-  if (ICS_USER_FLAG (ics1))
+  if (ics1->user_conv_p)
     {
-      tree t1, t2;
+      conversion *t1;
+      conversion *t2;
 
-      for (t1 = ics1; TREE_CODE (t1) != USER_CONV; t1 = TREE_OPERAND (t1, 0))
-       if (TREE_CODE (t1) == AMBIG_CONV)
+      for (t1 = ics1; t1->kind != ck_user; t1 = t1->u.next)
+       if (t1->kind == ck_ambig || t1->kind == ck_aggr)
          return 0;
-      for (t2 = ics2; TREE_CODE (t2) != USER_CONV; t2 = TREE_OPERAND (t2, 0))
-       if (TREE_CODE (t2) == AMBIG_CONV)
+      for (t2 = ics2; t2->kind != ck_user; t2 = t2->u.next)
+       if (t2->kind == ck_ambig || t2->kind == ck_aggr)
          return 0;
 
-      if (USER_CONV_FN (t1) != USER_CONV_FN (t2))
+      if (t1->cand->fn != t2->cand->fn)
        return 0;
 
       /* We can just fall through here, after setting up
         FROM_TYPE1 and FROM_TYPE2.  */
-      from_type1 = TREE_TYPE (t1);
-      from_type2 = TREE_TYPE (t2);
+      from_type1 = t1->type;
+      from_type2 = t2->type;
     }
   else
     {
-      /* We're dealing with two standard conversion sequences. 
+      conversion *t1;
+      conversion *t2;
+
+      /* We're dealing with two standard conversion sequences.
 
         [over.ics.rank]
-        
+
         Standard conversion sequence S1 is a better conversion
         sequence than standard conversion sequence S2 if
-     
+
         --S1 is a proper subsequence of S2 (comparing the conversion
           sequences in the canonical form defined by _over.ics.scs_,
           excluding any Lvalue Transformation; the identity
           conversion sequence is considered to be a subsequence of
           any non-identity conversion sequence */
-      
-      from_type1 = ics1;
-      while (TREE_CODE (from_type1) != IDENTITY_CONV)
-       from_type1 = TREE_OPERAND (from_type1, 0);
-      from_type1 = TREE_TYPE (from_type1);
-      
-      from_type2 = ics2;
-      while (TREE_CODE (from_type2) != IDENTITY_CONV)
-       from_type2 = TREE_OPERAND (from_type2, 0);
-      from_type2 = TREE_TYPE (from_type2);
+
+      t1 = ics1;
+      while (t1->kind != ck_identity)
+       t1 = t1->u.next;
+      from_type1 = t1->type;
+
+      t2 = ics2;
+      while (t2->kind != ck_identity)
+       t2 = t2->u.next;
+      from_type2 = t2->type;
     }
 
+  /* One sequence can only be a subsequence of the other if they start with
+     the same type.  They can start with different types when comparing the
+     second standard conversion sequence in two user-defined conversion
+     sequences.  */
   if (same_type_p (from_type1, from_type2))
     {
       if (is_subseq (ics1, ics2))
@@ -4984,10 +6397,6 @@ compare_ics (ics1, ics2)
       if (is_subseq (ics2, ics1))
        return -1;
     }
-  /* Otherwise, one sequence cannot be a subsequence of the other; they
-     don't start with the same type.  This can happen when comparing the
-     second standard conversion sequence in two user-defined conversion
-     sequences.  */
 
   /* [over.ics.rank]
 
@@ -5005,17 +6414,32 @@ compare_ics (ics1, ics2)
 
     --A conversion that is not a conversion of a pointer, or pointer
       to member, to bool is better than another conversion that is such
-      a conversion.  
+      a conversion.
 
     The ICS_STD_RANK automatically handles the pointer-to-bool rule,
     so that we do not have to check it explicitly.  */
-  if (ICS_STD_RANK (ics1) < ICS_STD_RANK (ics2))
+  if (ics1->rank < ics2->rank)
     return 1;
-  else if (ICS_STD_RANK (ics2) < ICS_STD_RANK (ics1))
+  else if (ics2->rank < ics1->rank)
     return -1;
 
-  to_type1 = TREE_TYPE (ics1);
-  to_type2 = TREE_TYPE (ics2);
+  to_type1 = ics1->type;
+  to_type2 = ics2->type;
+
+  /* A conversion from scalar arithmetic type to complex is worse than a
+     conversion between scalar arithmetic types.  */
+  if (same_type_p (from_type1, from_type2)
+      && ARITHMETIC_TYPE_P (from_type1)
+      && ARITHMETIC_TYPE_P (to_type1)
+      && ARITHMETIC_TYPE_P (to_type2)
+      && ((TREE_CODE (to_type1) == COMPLEX_TYPE)
+         != (TREE_CODE (to_type2) == COMPLEX_TYPE)))
+    {
+      if (TREE_CODE (to_type1) == COMPLEX_TYPE)
+       return -1;
+      else
+       return 1;
+    }
 
   if (TYPE_PTR_P (from_type1)
       && TYPE_PTR_P (from_type2)
@@ -5031,35 +6455,27 @@ compare_ics (ics1, ics2)
      for pointers A*, except opposite: if B is derived from A then
      A::* converts to B::*, not vice versa.  For that reason, we
      switch the from_ and to_ variables here.  */
-  else if (TYPE_PTRMEM_P (from_type1)
-          && TYPE_PTRMEM_P (from_type2)
-          && TYPE_PTRMEM_P (to_type1)
-          && TYPE_PTRMEM_P (to_type2))
-    {
-      deref_to_type1 = TYPE_OFFSET_BASETYPE (TREE_TYPE (from_type1));
-      deref_to_type2 = TYPE_OFFSET_BASETYPE (TREE_TYPE (from_type2));
-      deref_from_type1 = TYPE_OFFSET_BASETYPE (TREE_TYPE (to_type1));
-      deref_from_type2 = TYPE_OFFSET_BASETYPE (TREE_TYPE (to_type2));
-    }
-  else if (TYPE_PTRMEMFUNC_P (from_type1)
-          && TYPE_PTRMEMFUNC_P (from_type2)
-          && TYPE_PTRMEMFUNC_P (to_type1)
-          && TYPE_PTRMEMFUNC_P (to_type2))
+  else if ((TYPE_PTRMEM_P (from_type1) && TYPE_PTRMEM_P (from_type2)
+           && TYPE_PTRMEM_P (to_type1) && TYPE_PTRMEM_P (to_type2))
+          || (TYPE_PTRMEMFUNC_P (from_type1)
+              && TYPE_PTRMEMFUNC_P (from_type2)
+              && TYPE_PTRMEMFUNC_P (to_type1)
+              && TYPE_PTRMEMFUNC_P (to_type2)))
     {
-      deref_to_type1 = TYPE_PTRMEMFUNC_OBJECT_TYPE (from_type1);
-      deref_to_type2 = TYPE_PTRMEMFUNC_OBJECT_TYPE (from_type2);
-      deref_from_type1 = TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type1);
-      deref_from_type2 = TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type2);
+      deref_to_type1 = TYPE_PTRMEM_CLASS_TYPE (from_type1);
+      deref_to_type2 = TYPE_PTRMEM_CLASS_TYPE (from_type2);
+      deref_from_type1 = TYPE_PTRMEM_CLASS_TYPE (to_type1);
+      deref_from_type2 = TYPE_PTRMEM_CLASS_TYPE (to_type2);
     }
 
   if (deref_from_type1 != NULL_TREE
-      && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type1))
-      && IS_AGGR_TYPE_CODE (TREE_CODE (deref_from_type2)))
+      && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type1))
+      && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_from_type2)))
     {
-      /* This was one of the pointer or pointer-like conversions.  
+      /* This was one of the pointer or pointer-like conversions.
 
         [over.ics.rank]
-        
+
         --If class B is derived directly or indirectly from class A,
           conversion of B* to A* is better than conversion of B* to
           void*, and conversion of A* to void* is better than
@@ -5091,17 +6507,17 @@ compare_ics (ics1, ics2)
                return -1;
            }
        }
-      else if (IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type1))
-              && IS_AGGR_TYPE_CODE (TREE_CODE (deref_to_type2)))
+      else if (RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type1))
+              && RECORD_OR_UNION_CODE_P (TREE_CODE (deref_to_type2)))
        {
          /* [over.ics.rank]
 
             --If class B is derived directly or indirectly from class A
               and class C is derived directly or indirectly from B,
-            
+
             --conversion of C* to B* is better than conversion of C* to
-              A*, 
-            
+              A*,
+
             --conversion of B* to A* is better than conversion of C* to
               A*  */
          if (same_type_p (deref_from_type1, deref_from_type2))
@@ -5130,7 +6546,7 @@ compare_ics (ics1, ics2)
       tree from = non_reference (from_type1);
 
       /* [over.ics.rank]
-        
+
         --binding of an expression of type C to a reference of type
           B& is better than binding an expression of type C to a
           reference of type A&
@@ -5154,9 +6570,9 @@ compare_ics (ics1, ics2)
 
         --binding of an expression of type B to a reference of type
           A& is better than binding an expression of type C to a
-          reference of type A&, 
+          reference of type A&,
 
-        --onversion of B to A is better than conversion of C to A  */
+        --conversion of B to A is better than conversion of C to A  */
       if (is_properly_derived_from (from_type1, to)
          && is_properly_derived_from (from_type2, to))
        {
@@ -5173,22 +6589,45 @@ compare_ics (ics1, ics2)
        similar  types  T1 and T2 (_conv.qual_), respectively, and the cv-
        qualification signature of type T1 is a proper subset of  the  cv-
        qualification signature of type T2  */
-  if (TREE_CODE (ics1) == QUAL_CONV 
-      && TREE_CODE (ics2) == QUAL_CONV
+  if (ics1->kind == ck_qual
+      && ics2->kind == ck_qual
       && same_type_p (from_type1, from_type2))
-    return comp_cv_qual_signature (to_type1, to_type2);
+    {
+      int result = comp_cv_qual_signature (to_type1, to_type2);
+      if (result != 0)
+       return result;
+    }
 
   /* [over.ics.rank]
-     
+
+     --S1 and S2 are reference bindings (_dcl.init.ref_) and neither refers
+     to an implicit object parameter, and either S1 binds an lvalue reference
+     to an lvalue and S2 binds an rvalue reference or S1 binds an rvalue
+     reference to an rvalue and S2 binds an lvalue reference
+     (C++0x draft standard, 13.3.3.2)
+
      --S1 and S2 are reference bindings (_dcl.init.ref_), and the
      types to which the references refer are the same type except for
      top-level cv-qualifiers, and the type to which the reference
      initialized by S2 refers is more cv-qualified than the type to
      which the reference initialized by S1 refers */
-      
-  if (target_type1 && target_type2
-      && same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
-    return comp_cv_qualification (target_type2, target_type1);
+
+  if (ref_conv1 && ref_conv2)
+    {
+      if (!ref_conv1->this_p && !ref_conv2->this_p
+         && (TYPE_REF_IS_RVALUE (ref_conv1->type)
+             != TYPE_REF_IS_RVALUE (ref_conv2->type)))
+       {
+         if (ref_conv1->rvaluedness_matches_p)
+           return 1;
+         if (ref_conv2->rvaluedness_matches_p)
+           return -1;
+       }
+
+      if (same_type_ignoring_top_level_qualifiers_p (to_type1, to_type2))
+       return comp_cv_qualification (TREE_TYPE (ref_conv2->type),
+                                     TREE_TYPE (ref_conv1->type));
+    }
 
   /* Neither conversion sequence is better than the other.  */
   return 0;
@@ -5197,17 +6636,16 @@ compare_ics (ics1, ics2)
 /* The source type for this standard conversion sequence.  */
 
 static tree
-source_type (t)
-     tree t;
+source_type (conversion *t)
 {
-  for (;; t = TREE_OPERAND (t, 0))
+  for (;; t = t->u.next)
     {
-      if (TREE_CODE (t) == USER_CONV
-         || TREE_CODE (t) == AMBIG_CONV
-         || TREE_CODE (t) == IDENTITY_CONV)
-       return TREE_TYPE (t);
+      if (t->kind == ck_user
+         || t->kind == ck_ambig
+         || t->kind == ck_identity)
+       return t->type;
     }
-  abort ();
+  gcc_unreachable ();
 }
 
 /* Note a warning about preferring WINNER to LOSER.  We do this by storing
@@ -5215,27 +6653,13 @@ source_type (t)
    is actually used.  */
 
 static void
-add_warning (winner, loser)
-     struct z_candidate *winner, *loser;
-{
-  winner->warnings = tree_cons (NULL_TREE,
-                               build_ptr_wrapper (loser),
-                               winner->warnings);
-}
-
-/* Returns true iff functions are equivalent. Equivalent functions are
-   not '==' only if one is a function-local extern function or if
-   both are extern "C".  */
-
-static inline int
-equal_functions (fn1, fn2)
-     tree fn1;
-     tree fn2;
+add_warning (struct z_candidate *winner, struct z_candidate *loser)
 {
-  if (DECL_LOCAL_FUNCTION_P (fn1) || DECL_LOCAL_FUNCTION_P (fn2)
-      || DECL_EXTERN_C_FUNCTION_P (fn1))
-    return decls_match (fn1, fn2);
-  return fn1 == fn2;
+  candidate_warning *cw = (candidate_warning *)
+    conversion_obstack_alloc (sizeof (candidate_warning));
+  cw->loser = loser;
+  cw->next = winner->warnings;
+  winner->warnings = cw;
 }
 
 /* Compare two candidates for overloading as described in
@@ -5246,12 +6670,12 @@ equal_functions (fn1, fn2)
       0: cand1 and cand2 are indistinguishable */
 
 static int
-joust (cand1, cand2, warn)
-     struct z_candidate *cand1, *cand2;
-     int warn;
+joust (struct z_candidate *cand1, struct z_candidate *cand2, bool warn)
 {
   int winner = 0;
-  int i, off1 = 0, off2 = 0, len;
+  int off1 = 0, off2 = 0;
+  size_t i;
+  size_t len;
 
   /* Candidates that involve bad conversions are always worse than those
      that don't.  */
@@ -5263,7 +6687,7 @@ joust (cand1, cand2, warn)
   /* If we have two pseudo-candidates for conversions to the same type,
      or two candidates for the same function, arbitrarily pick one.  */
   if (cand1->fn == cand2->fn
-      && (TYPE_P (cand1->fn) || DECL_P (cand1->fn)))
+      && (IS_TYPE_OR_DECL_P (cand1->fn)))
     return 1;
 
   /* a viable function F1
@@ -5278,57 +6702,59 @@ joust (cand1, cand2, warn)
      the implicit object parameter of the non-static function.  The
      standard says to pretend that the static function has an object
      parm, but that won't work with operator overloading.  */
-  len = TREE_VEC_LENGTH (cand1->convs);
-  if (len != TREE_VEC_LENGTH (cand2->convs))
+  len = cand1->num_convs;
+  if (len != cand2->num_convs)
     {
-      if (DECL_STATIC_FUNCTION_P (cand1->fn)
-         && ! DECL_STATIC_FUNCTION_P (cand2->fn))
+      int static_1 = DECL_STATIC_FUNCTION_P (cand1->fn);
+      int static_2 = DECL_STATIC_FUNCTION_P (cand2->fn);
+
+      gcc_assert (static_1 != static_2);
+
+      if (static_1)
        off2 = 1;
-      else if (! DECL_STATIC_FUNCTION_P (cand1->fn)
-              && DECL_STATIC_FUNCTION_P (cand2->fn))
+      else
        {
          off1 = 1;
          --len;
        }
-      else
-       abort ();
     }
 
   for (i = 0; i < len; ++i)
     {
-      tree t1 = TREE_VEC_ELT (cand1->convs, i+off1);
-      tree t2 = TREE_VEC_ELT (cand2->convs, i+off2);
+      conversion *t1 = cand1->convs[i + off1];
+      conversion *t2 = cand2->convs[i + off2];
       int comp = compare_ics (t1, t2);
 
       if (comp != 0)
        {
          if (warn_sign_promo
-             && ICS_RANK (t1) + ICS_RANK (t2) == STD_RANK + PROMO_RANK
-             && TREE_CODE (t1) == STD_CONV
-             && TREE_CODE (t2) == STD_CONV
-             && TREE_CODE (TREE_TYPE (t1)) == INTEGER_TYPE
-             && TREE_CODE (TREE_TYPE (t2)) == INTEGER_TYPE
-             && (TYPE_PRECISION (TREE_TYPE (t1))
-                 == TYPE_PRECISION (TREE_TYPE (t2)))
-             && (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (t1, 0)))
-                 || (TREE_CODE (TREE_TYPE (TREE_OPERAND (t1, 0)))
+             && (CONVERSION_RANK (t1) + CONVERSION_RANK (t2)
+                 == cr_std + cr_promotion)
+             && t1->kind == ck_std
+             && t2->kind == ck_std
+             && TREE_CODE (t1->type) == INTEGER_TYPE
+             && TREE_CODE (t2->type) == INTEGER_TYPE
+             && (TYPE_PRECISION (t1->type)
+                 == TYPE_PRECISION (t2->type))
+             && (TYPE_UNSIGNED (t1->u.next->type)
+                 || (TREE_CODE (t1->u.next->type)
                      == ENUMERAL_TYPE)))
            {
-             tree type = TREE_TYPE (TREE_OPERAND (t1, 0));
+             tree type = t1->u.next->type;
              tree type1, type2;
              struct z_candidate *w, *l;
              if (comp > 0)
-               type1 = TREE_TYPE (t1), type2 = TREE_TYPE (t2),
+               type1 = t1->type, type2 = t2->type,
                  w = cand1, l = cand2;
              else
-               type1 = TREE_TYPE (t2), type2 = TREE_TYPE (t1),
+               type1 = t2->type, type2 = t1->type,
                  w = cand2, l = cand1;
 
              if (warn)
                {
-                 warning ("passing `%T' chooses `%T' over `%T'",
-                             type, type1, type2);
-                 warning ("  in call to `%D'", w->fn);
+                 warning (OPT_Wsign_promo, "passing %qT chooses %qT over %qT",
+                          type, type1, type2);
+                 warning (OPT_Wsign_promo, "  in call to %qD", w->fn);
                }
              else
                add_warning (w, l);
@@ -5346,45 +6772,54 @@ joust (cand1, cand2, warn)
   /* warn about confusing overload resolution for user-defined conversions,
      either between a constructor and a conversion op, or between two
      conversion ops.  */
-  if (winner && cand1->second_conv
-      && ((DECL_CONSTRUCTOR_P (cand1->fn)
-          != DECL_CONSTRUCTOR_P (cand2->fn))
-         /* Don't warn if the two conv ops convert to the same type...  */
-         || (! DECL_CONSTRUCTOR_P (cand1->fn)
-             && ! same_type_p (TREE_TYPE (TREE_TYPE (cand1->fn)),
-                               TREE_TYPE (TREE_TYPE (cand2->fn))))))
-    {
-      int comp = compare_ics (cand1->second_conv, cand2->second_conv);
-      if (comp != winner)
+  if (winner && warn_conversion && cand1->second_conv
+      && (!DECL_CONSTRUCTOR_P (cand1->fn) || !DECL_CONSTRUCTOR_P (cand2->fn))
+      && winner != compare_ics (cand1->second_conv, cand2->second_conv))
+    {
+      struct z_candidate *w, *l;
+      bool give_warning = false;
+
+      if (winner == 1)
+       w = cand1, l = cand2;
+      else
+       w = cand2, l = cand1;
+
+      /* We don't want to complain about `X::operator T1 ()'
+        beating `X::operator T2 () const', when T2 is a no less
+        cv-qualified version of T1.  */
+      if (DECL_CONTEXT (w->fn) == DECL_CONTEXT (l->fn)
+         && !DECL_CONSTRUCTOR_P (w->fn) && !DECL_CONSTRUCTOR_P (l->fn))
        {
-         struct z_candidate *w, *l;
-         tree convn;
-         if (winner == 1)
-           w = cand1, l = cand2;
-         else
-           w = cand2, l = cand1;
-         if (DECL_CONTEXT (cand1->fn) == DECL_CONTEXT (cand2->fn)
-             && ! DECL_CONSTRUCTOR_P (cand1->fn)
-             && ! DECL_CONSTRUCTOR_P (cand2->fn)
-             && (convn = standard_conversion
-                 (TREE_TYPE (TREE_TYPE (l->fn)),
-                  TREE_TYPE (TREE_TYPE (w->fn)), NULL_TREE))
-             && TREE_CODE (convn) == QUAL_CONV)
-           /* Don't complain about `operator char *()' beating
-              `operator const char *() const'.  */;
-         else if (warn)
+         tree t = TREE_TYPE (TREE_TYPE (l->fn));
+         tree f = TREE_TYPE (TREE_TYPE (w->fn));
+
+         if (TREE_CODE (t) == TREE_CODE (f) && POINTER_TYPE_P (t))
            {
-             tree source = source_type (TREE_VEC_ELT (w->convs, 0));
-             if (! DECL_CONSTRUCTOR_P (w->fn))
-               source = TREE_TYPE (source);
-             warning ("choosing `%D' over `%D'", w->fn, l->fn);
-             warning ("  for conversion from `%T' to `%T'",
-                         source, TREE_TYPE (w->second_conv));
-             warning ("  because conversion sequence for the argument is better");
+             t = TREE_TYPE (t);
+             f = TREE_TYPE (f);
            }
-         else
-           add_warning (w, l);
+         if (!comp_ptr_ttypes (t, f))
+           give_warning = true;
        }
+      else
+       give_warning = true;
+
+      if (!give_warning)
+       /*NOP*/;
+      else if (warn)
+       {
+         tree source = source_type (w->convs[0]);
+         if (! DECL_CONSTRUCTOR_P (w->fn))
+           source = TREE_TYPE (source);
+         if (warning (OPT_Wconversion, "choosing %qD over %qD", w->fn, l->fn)
+             && warning (OPT_Wconversion, "  for conversion from %qT to %qT",
+                         source, w->second_conv->type)) 
+           {
+             inform (input_location, "  because conversion sequence for the argument is better");
+           }
+       }
+      else
+       add_warning (w, l);
     }
 
   if (winner)
@@ -5393,36 +6828,29 @@ joust (cand1, cand2, warn)
   /* or, if not that,
      F1 is a non-template function and F2 is a template function
      specialization.  */
-         
-  if (! cand1->template && cand2->template)
+
+  if (!cand1->template_decl && cand2->template_decl)
     return 1;
-  else if (cand1->template && ! cand2->template)
+  else if (cand1->template_decl && !cand2->template_decl)
     return -1;
-  
+
   /* or, if not that,
      F1 and F2 are template functions and the function template for F1 is
      more specialized than the template for F2 according to the partial
      ordering rules.  */
-  
-  if (cand1->template && cand2->template)
-    {
-      winner = more_specialized
-        (TI_TEMPLATE (cand1->template), TI_TEMPLATE (cand2->template),
-         DEDUCE_ORDER,
-         /* Tell the deduction code how many real function arguments
-           we saw, not counting the implicit 'this' argument.  But,
-           add_function_candidate() suppresses the "this" argument
-           for constructors.
-
-           [temp.func.order]: The presence of unused ellipsis and default
+
+  if (cand1->template_decl && cand2->template_decl)
+    {
+      winner = more_specialized_fn
+       (TI_TEMPLATE (cand1->template_decl),
+        TI_TEMPLATE (cand2->template_decl),
+        /* [temp.func.order]: The presence of unused ellipsis and default
            arguments has no effect on the partial ordering of function
-           templates.  */
-         TREE_VEC_LENGTH (cand1->convs)
-        - (DECL_NONSTATIC_MEMBER_FUNCTION_P (cand1->fn)
-           - DECL_CONSTRUCTOR_P (cand1->fn)));
-      /* HERE */
+           templates.   add_function_candidate() will not have
+           counted the "this" argument for constructors.  */
+        cand1->num_convs + DECL_CONSTRUCTOR_P (cand1->fn));
       if (winner)
-        return winner;
+       return winner;
     }
 
   /* or, if not that,
@@ -5437,28 +6865,28 @@ joust (cand1, cand2, warn)
     {
       winner = compare_ics (cand1->second_conv, cand2->second_conv);
       if (winner)
-        return winner;
+       return winner;
     }
-  
+
   /* Check whether we can discard a builtin candidate, either because we
      have two identical ones or matching builtin and non-builtin candidates.
 
      (Pedantically in the latter case the builtin which matched the user
      function should not be added to the overload set, but we spot it here.
-     
+
      [over.match.oper]
      ... the builtin candidates include ...
      - do not have the same parameter type list as any non-template
        non-member candidate.  */
-                            
+
   if (TREE_CODE (cand1->fn) == IDENTIFIER_NODE
       || TREE_CODE (cand2->fn) == IDENTIFIER_NODE)
     {
       for (i = 0; i < len; ++i)
-       if (!same_type_p (TREE_TYPE (TREE_VEC_ELT (cand1->convs, i)),
-                         TREE_TYPE (TREE_VEC_ELT (cand2->convs, i))))
+       if (!same_type_p (cand1->convs[i]->type,
+                         cand2->convs[i]->type))
          break;
-      if (i == TREE_VEC_LENGTH (cand1->convs))
+      if (i == cand1->num_convs)
        {
          if (cand1->fn == cand2->fn)
            /* Two built-in candidates; arbitrarily pick one.  */
@@ -5472,11 +6900,56 @@ joust (cand1, cand2, warn)
        }
     }
 
-  /* If the two functions are the same (this can happen with declarations
-     in multiple scopes and arg-dependent lookup), arbitrarily choose one.  */
+  /* If the two function declarations represent the same function (this can
+     happen with declarations in multiple scopes and arg-dependent lookup),
+     arbitrarily choose one.  But first make sure the default args we're
+     using match.  */
   if (DECL_P (cand1->fn) && DECL_P (cand2->fn)
       && equal_functions (cand1->fn, cand2->fn))
-    return 1;
+    {
+      tree parms1 = TYPE_ARG_TYPES (TREE_TYPE (cand1->fn));
+      tree parms2 = TYPE_ARG_TYPES (TREE_TYPE (cand2->fn));
+
+      gcc_assert (!DECL_CONSTRUCTOR_P (cand1->fn));
+
+      for (i = 0; i < len; ++i)
+       {
+         /* Don't crash if the fn is variadic.  */
+         if (!parms1)
+           break;
+         parms1 = TREE_CHAIN (parms1);
+         parms2 = TREE_CHAIN (parms2);
+       }
+
+      if (off1)
+       parms1 = TREE_CHAIN (parms1);
+      else if (off2)
+       parms2 = TREE_CHAIN (parms2);
+
+      for (; parms1; ++i)
+       {
+         if (!cp_tree_equal (TREE_PURPOSE (parms1),
+                             TREE_PURPOSE (parms2)))
+           {
+             if (warn)
+               {
+                 permerror (input_location, "default argument mismatch in "
+                            "overload resolution");
+                 inform (input_location,
+                         " candidate 1: %q+#F", cand1->fn);
+                 inform (input_location,
+                         " candidate 2: %q+#F", cand2->fn);
+               }
+             else
+               add_warning (cand1, cand2);
+             break;
+           }
+         parms1 = TREE_CHAIN (parms1);
+         parms2 = TREE_CHAIN (parms2);
+       }
+
+      return 1;
+    }
 
 tweak:
 
@@ -5484,33 +6957,38 @@ tweak:
      worst conversion for the other, take the first.  */
   if (!pedantic)
     {
-      int rank1 = IDENTITY_RANK, rank2 = IDENTITY_RANK;
+      conversion_rank rank1 = cr_identity, rank2 = cr_identity;
       struct z_candidate *w = 0, *l = 0;
 
       for (i = 0; i < len; ++i)
        {
-         if (ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1)) > rank1)
-           rank1 = ICS_RANK (TREE_VEC_ELT (cand1->convs, i+off1));
-         if (ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2)) > rank2)
-           rank2 = ICS_RANK (TREE_VEC_ELT (cand2->convs, i+off2));
+         if (CONVERSION_RANK (cand1->convs[i+off1]) > rank1)
+           rank1 = CONVERSION_RANK (cand1->convs[i+off1]);
+         if (CONVERSION_RANK (cand2->convs[i + off2]) > rank2)
+           rank2 = CONVERSION_RANK (cand2->convs[i + off2]);
        }
       if (rank1 < rank2)
        winner = 1, w = cand1, l = cand2;
       if (rank1 > rank2)
        winner = -1, w = cand2, l = cand1;
       if (winner)
-        {
+       {
          if (warn)
-           pedwarn ("ISO C++ says that `%D' and `%D' are ambiguous \
-even though the worst conversion for the former is better than the worst \
-conversion for the latter", w->fn, l->fn);
+           {
+             pedwarn (input_location, 0,
+             "ISO C++ says that these are ambiguous, even "
+             "though the worst conversion for the first is better than "
+             "the worst conversion for the second:");
+             print_z_candidate (_("candidate 1:"), w);
+             print_z_candidate (_("candidate 2:"), l);
+           }
          else
            add_warning (w, l);
-          return winner;
-        }
+         return winner;
+       }
     }
 
-  my_friendly_assert (!winner, 20010121);
+  gcc_assert (!winner);
   return 0;
 }
 
@@ -5520,8 +6998,7 @@ conversion for the latter", w->fn, l->fn);
    algorithm.  */
 
 static struct z_candidate *
-tourney (candidates)
-     struct z_candidate *candidates;
+tourney (struct z_candidate *candidates)
 {
   struct z_candidate *champ = candidates, *challenger;
   int fate;
@@ -5541,7 +7018,7 @@ tourney (candidates)
            {
              champ = challenger->next;
              if (champ == 0)
-               return 0;
+               return NULL;
              champ_compared_to_predecessor = 0;
            }
          else
@@ -5557,46 +7034,66 @@ tourney (candidates)
   /* Make sure the champ is better than all the candidates it hasn't yet
      been compared to.  */
 
-  for (challenger = candidates; 
-       challenger != champ 
+  for (challenger = candidates;
+       challenger != champ
         && !(champ_compared_to_predecessor && challenger->next == champ);
        challenger = challenger->next)
     {
       fate = joust (champ, challenger, 0);
       if (fate != 1)
-       return 0;
+       return NULL;
     }
 
   return champ;
 }
 
-/* Returns non-zero if things of type FROM can be converted to TO.  */
+/* Returns nonzero if things of type FROM can be converted to TO.  */
 
-int
-can_convert (to, from)
-     tree to, from;
+bool
+can_convert (tree to, tree from)
 {
-  return can_convert_arg (to, from, NULL_TREE);
+  return can_convert_arg (to, from, NULL_TREE, LOOKUP_NORMAL);
 }
 
-/* Returns non-zero if ARG (of type FROM) can be converted to TO.  */
+/* Returns nonzero if ARG (of type FROM) can be converted to TO.  */
 
-int
-can_convert_arg (to, from, arg)
-     tree to, from, arg;
+bool
+can_convert_arg (tree to, tree from, tree arg, int flags)
 {
-  tree t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
-  return (t && ! ICS_BAD_FLAG (t));
+  conversion *t;
+  void *p;
+  bool ok_p;
+
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
+  t  = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
+                           flags);
+  ok_p = (t && !t->bad_p);
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return ok_p;
 }
 
 /* Like can_convert_arg, but allows dubious conversions as well.  */
 
-int
-can_convert_arg_bad (to, from, arg)
-     tree to, from, arg;
+bool
+can_convert_arg_bad (tree to, tree from, tree arg)
 {
-  tree t = implicit_conversion (to, from, arg, LOOKUP_NORMAL);
-  return !!t;
+  conversion *t;
+  void *p;
+
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+  /* Try to perform the conversion.  */
+  t  = implicit_conversion (to, from, arg, /*c_cast_p=*/false,
+                           LOOKUP_NORMAL);
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return t != NULL;
 }
 
 /* Convert EXPR to TYPE.  Return the converted expression.
@@ -5606,42 +7103,369 @@ can_convert_arg_bad (to, from, arg)
    doing a bad conversion, convert_like will complain.  */
 
 tree
-perform_implicit_conversion (type, expr)
-     tree type;
-     tree expr;
+perform_implicit_conversion (tree type, tree expr, tsubst_flags_t complain)
 {
-  tree conv;
-  
-  if (expr == error_mark_node)
+  conversion *conv;
+  void *p;
+
+  if (error_operand_p (expr))
     return error_mark_node;
+
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
   conv = implicit_conversion (type, TREE_TYPE (expr), expr,
+                             /*c_cast_p=*/false,
                              LOOKUP_NORMAL);
   if (!conv)
     {
-      error ("could not convert `%E' to `%T'", expr, type);
-      return error_mark_node;
+      if (complain & tf_error)
+       error ("could not convert %qE to %qT", expr, type);
+      expr = error_mark_node;
+    }
+  else if (processing_template_decl)
+    {
+      /* In a template, we are only concerned about determining the
+        type of non-dependent expressions, so we do not have to
+        perform the actual conversion.  */
+      if (TREE_TYPE (expr) != type)
+       expr = build_nop (type, expr);
+    }
+  else
+    expr = convert_like (conv, expr, complain);
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return expr;
+}
+
+/* Convert EXPR to TYPE (as a direct-initialization) if that is
+   permitted.  If the conversion is valid, the converted expression is
+   returned.  Otherwise, NULL_TREE is returned, except in the case
+   that TYPE is a class type; in that case, an error is issued.  If
+   C_CAST_P is true, then this direction initialization is taking
+   place as part of a static_cast being attempted as part of a C-style
+   cast.  */
+
+tree
+perform_direct_initialization_if_possible (tree type,
+                                          tree expr,
+                                          bool c_cast_p,
+                                           tsubst_flags_t complain)
+{
+  conversion *conv;
+  void *p;
+
+  if (type == error_mark_node || error_operand_p (expr))
+    return error_mark_node;
+  /* [dcl.init]
+
+     If the destination type is a (possibly cv-qualified) class type:
+
+     -- If the initialization is direct-initialization ...,
+     constructors are considered. ... If no constructor applies, or
+     the overload resolution is ambiguous, the initialization is
+     ill-formed.  */
+  if (CLASS_TYPE_P (type))
+    {
+      expr = build_special_member_call (NULL_TREE, complete_ctor_identifier,
+                                       build_tree_list (NULL_TREE, expr),
+                                       type, LOOKUP_NORMAL, complain);
+      return build_cplus_new (type, expr);
+    }
+
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
+  conv = implicit_conversion (type, TREE_TYPE (expr), expr,
+                             c_cast_p,
+                             LOOKUP_NORMAL);
+  if (!conv || conv->bad_p)
+    expr = NULL_TREE;
+  else
+    expr = convert_like_real (conv, expr, NULL_TREE, 0, 0,
+                             /*issue_conversion_warnings=*/false,
+                             c_cast_p,
+                             tf_warning_or_error);
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return expr;
+}
+
+/* DECL is a VAR_DECL whose type is a REFERENCE_TYPE.  The reference
+   is being bound to a temporary.  Create and return a new VAR_DECL
+   with the indicated TYPE; this variable will store the value to
+   which the reference is bound.  */
+
+tree
+make_temporary_var_for_ref_to_temp (tree decl, tree type)
+{
+  tree var;
+
+  /* Create the variable.  */
+  var = create_temporary_var (type);
+
+  /* Register the variable.  */
+  if (TREE_STATIC (decl))
+    {
+      /* Namespace-scope or local static; give it a mangled name.  */
+      tree name;
+
+      TREE_STATIC (var) = 1;
+      name = mangle_ref_init_variable (decl);
+      DECL_NAME (var) = name;
+      SET_DECL_ASSEMBLER_NAME (var, name);
+      var = pushdecl_top_level (var);
+    }
+  else
+    /* Create a new cleanup level if necessary.  */
+    maybe_push_cleanup_level (type);
+
+  return var;
+}
+
+/* EXPR is the initializer for a variable DECL of reference or
+   std::initializer_list type.  Create, push and return a new VAR_DECL
+   for the initializer so that it will live as long as DECL.  Any
+   cleanup for the new variable is returned through CLEANUP, and the
+   code to initialize the new variable is returned through INITP.  */
+
+tree
+set_up_extended_ref_temp (tree decl, tree expr, tree *cleanup, tree *initp)
+{
+  tree init;
+  tree type;
+  tree var;
+
+  /* Create the temporary variable.  */
+  type = TREE_TYPE (expr);
+  var = make_temporary_var_for_ref_to_temp (decl, type);
+  layout_decl (var, 0);
+  /* If the rvalue is the result of a function call it will be
+     a TARGET_EXPR.  If it is some other construct (such as a
+     member access expression where the underlying object is
+     itself the result of a function call), turn it into a
+     TARGET_EXPR here.  It is important that EXPR be a
+     TARGET_EXPR below since otherwise the INIT_EXPR will
+     attempt to make a bitwise copy of EXPR to initialize
+     VAR.  */
+  if (TREE_CODE (expr) != TARGET_EXPR)
+    expr = get_target_expr (expr);
+  /* Create the INIT_EXPR that will initialize the temporary
+     variable.  */
+  init = build2 (INIT_EXPR, type, var, expr);
+  if (at_function_scope_p ())
+    {
+      add_decl_expr (var);
+
+      if (TREE_STATIC (var))
+       init = add_stmt_to_compound (init, register_dtor_fn (var));
+      else
+       *cleanup = cxx_maybe_build_cleanup (var);
+
+      /* We must be careful to destroy the temporary only
+        after its initialization has taken place.  If the
+        initialization throws an exception, then the
+        destructor should not be run.  We cannot simply
+        transform INIT into something like:
+
+        (INIT, ({ CLEANUP_STMT; }))
+
+        because emit_local_var always treats the
+        initializer as a full-expression.  Thus, the
+        destructor would run too early; it would run at the
+        end of initializing the reference variable, rather
+        than at the end of the block enclosing the
+        reference variable.
+
+        The solution is to pass back a cleanup expression
+        which the caller is responsible for attaching to
+        the statement tree.  */
+    }
+  else
+    {
+      rest_of_decl_compilation (var, /*toplev=*/1, at_eof);
+      if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
+       static_aggregates = tree_cons (NULL_TREE, var,
+                                      static_aggregates);
     }
 
-  return convert_like (conv, expr);
+  *initp = init;
+  return var;
 }
 
 /* Convert EXPR to the indicated reference TYPE, in a way suitable for
-   initializing a variable of that TYPE.  Return the converted
-   expression.  */
+   initializing a variable of that TYPE.  If DECL is non-NULL, it is
+   the VAR_DECL being initialized with the EXPR.  (In that case, the
+   type of DECL will be TYPE.)  If DECL is non-NULL, then CLEANUP must
+   also be non-NULL, and with *CLEANUP initialized to NULL.  Upon
+   return, if *CLEANUP is no longer NULL, it will be an expression
+   that should be pushed as a cleanup after the returned expression
+   is used to initialize DECL.
+
+   Return the converted expression.  */
 
 tree
-initialize_reference (type, expr)
-     tree type;
-     tree expr;
+initialize_reference (tree type, tree expr, tree decl, tree *cleanup)
 {
-  tree conv;
+  conversion *conv;
+  void *p;
+
+  if (type == error_mark_node || error_operand_p (expr))
+    return error_mark_node;
 
-  conv = reference_binding (type, TREE_TYPE (expr), expr, LOOKUP_NORMAL);
-  if (!conv || ICS_BAD_FLAG (conv))
+  /* Get the high-water mark for the CONVERSION_OBSTACK.  */
+  p = conversion_obstack_alloc (0);
+
+  conv = reference_binding (type, TREE_TYPE (expr), expr, /*c_cast_p=*/false,
+                           LOOKUP_NORMAL);
+  if (!conv || conv->bad_p)
     {
-      error ("could not convert `%E' to `%T'", expr, type);
+      if (!(TYPE_QUALS (TREE_TYPE (type)) & TYPE_QUAL_CONST)
+         && !TYPE_REF_IS_RVALUE (type)
+         && !real_lvalue_p (expr))
+       error ("invalid initialization of non-const reference of "
+              "type %qT from a temporary of type %qT",
+              type, TREE_TYPE (expr));
+      else
+       error ("invalid initialization of reference of type "
+              "%qT from expression of type %qT", type,
+              TREE_TYPE (expr));
       return error_mark_node;
     }
 
-  return convert_like (conv, expr);
+  /* If DECL is non-NULL, then this special rule applies:
+
+       [class.temporary]
+
+       The temporary to which the reference is bound or the temporary
+       that is the complete object to which the reference is bound
+       persists for the lifetime of the reference.
+
+       The temporaries created during the evaluation of the expression
+       initializing the reference, except the temporary to which the
+       reference is bound, are destroyed at the end of the
+       full-expression in which they are created.
+
+     In that case, we store the converted expression into a new
+     VAR_DECL in a new scope.
+
+     However, we want to be careful not to create temporaries when
+     they are not required.  For example, given:
+
+       struct B {};
+       struct D : public B {};
+       D f();
+       const B& b = f();
+
+     there is no need to copy the return value from "f"; we can just
+     extend its lifetime.  Similarly, given:
+
+       struct S {};
+       struct T { operator S(); };
+       T t;
+       const S& s = t;
+
+    we can extend the lifetime of the return value of the conversion
+    operator.  */
+  gcc_assert (conv->kind == ck_ref_bind);
+  if (decl)
+    {
+      tree var;
+      tree base_conv_type;
+
+      /* Skip over the REF_BIND.  */
+      conv = conv->u.next;
+      /* If the next conversion is a BASE_CONV, skip that too -- but
+        remember that the conversion was required.  */
+      if (conv->kind == ck_base)
+       {
+         base_conv_type = conv->type;
+         conv = conv->u.next;
+       }
+      else
+       base_conv_type = NULL_TREE;
+      /* Perform the remainder of the conversion.  */
+      expr = convert_like_real (conv, expr,
+                               /*fn=*/NULL_TREE, /*argnum=*/0,
+                               /*inner=*/-1,
+                               /*issue_conversion_warnings=*/true,
+                               /*c_cast_p=*/false,
+                               tf_warning_or_error);
+      if (error_operand_p (expr))
+       expr = error_mark_node;
+      else
+       {
+         if (!lvalue_or_rvalue_with_address_p (expr))
+           {
+             tree init;
+             var = set_up_extended_ref_temp (decl, expr, cleanup, &init);
+             /* Use its address to initialize the reference variable.  */
+             expr = build_address (var);
+             if (base_conv_type)
+               expr = convert_to_base (expr,
+                                       build_pointer_type (base_conv_type),
+                                       /*check_access=*/true,
+                                       /*nonnull=*/true);
+             expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), init, expr);
+           }
+         else
+           /* Take the address of EXPR.  */
+           expr = cp_build_unary_op (ADDR_EXPR, expr, 0, tf_warning_or_error);
+         /* If a BASE_CONV was required, perform it now.  */
+         if (base_conv_type)
+           expr = (perform_implicit_conversion
+                   (build_pointer_type (base_conv_type), expr,
+                    tf_warning_or_error));
+         expr = build_nop (type, expr);
+       }
+    }
+  else
+    /* Perform the conversion.  */
+    expr = convert_like (conv, expr, tf_warning_or_error);
+
+  /* Free all the conversions we allocated.  */
+  obstack_free (&conversion_obstack, p);
+
+  return expr;
+}
+
+/* Returns true iff TYPE is some variant of std::initializer_list.  */
+
+bool
+is_std_init_list (tree type)
+{
+  return (CLASS_TYPE_P (type)
+         && CP_TYPE_CONTEXT (type) == std_node
+         && strcmp (TYPE_NAME_STRING (type), "initializer_list") == 0);
+}
+
+/* Returns true iff DECL is a list constructor: i.e. a constructor which
+   will accept an argument list of a single std::initializer_list<T>.  */
+
+bool
+is_list_ctor (tree decl)
+{
+  tree args = FUNCTION_FIRST_USER_PARMTYPE (decl);
+  tree arg;
+
+  if (!args || args == void_list_node)
+    return false;
+
+  arg = non_reference (TREE_VALUE (args));
+  if (!is_std_init_list (arg))
+    return false;
+
+  args = TREE_CHAIN (args);
+
+  if (args && args != void_list_node && !TREE_PURPOSE (args))
+    /* There are more non-defaulted parms.  */
+    return false;
+
+  return true;
 }
+
+#include "gt-cp-call.h"