Class template argument deduction in new-expression
[gcc.git] / gcc / cp / init.c
index 57a640683519d4d93e9c1338a8009492a15f2564..191fe13e31039947d1d5d660eef0b9c0d8d9ba94 100644 (file)
@@ -1,5 +1,5 @@
 /* Handle initialization things in C++.
-   Copyright (C) 1987-2015 Free Software Foundation, Inc.
+   Copyright (C) 1987-2017 Free Software Foundation, Inc.
    Contributed by Michael Tiemann (tiemann@cygnus.com)
 
 This file is part of GCC.
@@ -23,16 +23,13 @@ along with GCC; see the file COPYING3.  If not see
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
-#include "tm.h"
-#include "alias.h"
-#include "tree.h"
+#include "target.h"
+#include "cp-tree.h"
 #include "stringpool.h"
 #include "varasm.h"
-#include "cp-tree.h"
-#include "flags.h"
-#include "target.h"
 #include "gimplify.h"
 #include "c-family/c-ubsan.h"
+#include "intl.h"
 
 static bool begin_init_stmts (tree *, tree *);
 static tree finish_init_stmts (bool, tree, tree);
@@ -179,9 +176,9 @@ build_zero_init_1 (tree type, tree nelts, bool static_storage_p,
        initialized are initialized to zero.  */
     ;
   else if (TYPE_PTR_OR_PTRMEM_P (type))
-    init = convert (type, nullptr_node);
+    init = fold (convert (type, nullptr_node));
   else if (SCALAR_TYPE_P (type))
-    init = convert (type, integer_zero_node);
+    init = fold (convert (type, integer_zero_node));
   else if (RECORD_OR_UNION_CODE_P (TREE_CODE (type)))
     {
       tree field;
@@ -588,15 +585,47 @@ get_nsdmi (tree member, bool in_ctor)
        }
       /* Strip redundant TARGET_EXPR so we don't need to remap it, and
         so the aggregate init code below will see a CONSTRUCTOR.  */
-      if (init && SIMPLE_TARGET_EXPR_P (init))
+      bool simple_target = (init && SIMPLE_TARGET_EXPR_P (init));
+      if (simple_target)
        init = TARGET_EXPR_INITIAL (init);
       init = break_out_target_exprs (init);
+      if (simple_target && TREE_CODE (init) != CONSTRUCTOR)
+       /* Now put it back so C++17 copy elision works.  */
+       init = get_target_expr (init);
     }
   current_class_ptr = save_ccp;
   current_class_ref = save_ccr;
   return init;
 }
 
+/* Diagnose the flexible array MEMBER if its INITializer is non-null
+   and return true if so.  Otherwise return false.  */
+
+bool
+maybe_reject_flexarray_init (tree member, tree init)
+{
+  tree type = TREE_TYPE (member);
+
+  if (!init
+      || TREE_CODE (type) != ARRAY_TYPE
+      || TYPE_DOMAIN (type))
+    return false;
+
+  /* Point at the flexible array member declaration if it's initialized
+     in-class, and at the ctor if it's initialized in a ctor member
+     initializer list.  */
+  location_t loc;
+  if (DECL_INITIAL (member) == init
+      || !current_function_decl
+      || DECL_DEFAULTED_FN (current_function_decl))
+    loc = DECL_SOURCE_LOCATION (member);
+  else
+    loc = DECL_SOURCE_LOCATION (current_function_decl);
+
+  error_at (loc, "initializer for flexible array member %q#D", member);
+  return true;
+}
+
 /* Initialize MEMBER, a FIELD_DECL, with INIT, a TREE_LIST of
    arguments.  If TREE_LIST is void_type_node, an empty initializer
    list was given; if NULL_TREE no initializer was given.  */
@@ -722,10 +751,18 @@ perform_member_init (tree member, tree init)
        {
          if (init)
            {
-             if (TREE_CHAIN (init))
+             /* Check to make sure the member initializer is valid and
+                something like a CONSTRUCTOR in: T a[] = { 1, 2 } and
+                if it isn't, return early to avoid triggering another
+                error below.  */
+             if (maybe_reject_flexarray_init (member, init))
+               return;
+
+             if (TREE_CODE (init) != TREE_LIST || TREE_CHAIN (init))
                init = error_mark_node;
              else
                init = TREE_VALUE (init);
+
              if (BRACE_ENCLOSED_INITIALIZER_P (init))
                init = digest_init (type, init, tf_warning_or_error);
            }
@@ -733,9 +770,14 @@ perform_member_init (tree member, tree init)
              || same_type_ignoring_top_level_qualifiers_p (type,
                                                            TREE_TYPE (init)))
            {
-             init = build_vec_init_expr (type, init, tf_warning_or_error);
-             init = build2 (INIT_EXPR, type, decl, init);
-             finish_expr_stmt (init);
+             if (TYPE_DOMAIN (type) && TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
+               {
+                 /* Initialize the array only if it's not a flexible
+                    array member (i.e., if it has an upper bound).  */
+                 init = build_vec_init_expr (type, init, tf_warning_or_error);
+                 init = build2 (INIT_EXPR, type, decl, init);
+                 finish_expr_stmt (init);
+               }
            }
          else
            error ("invalid initializer for array member %q#D", member);
@@ -796,8 +838,10 @@ perform_member_init (tree member, tree init)
        init = build_x_compound_expr_from_list (init, ELK_MEM_INIT,
                                                tf_warning_or_error);
 
-      if (init)
-       finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init,
+      /* Reject a member initializer for a flexible array member.  */
+      if (init && !maybe_reject_flexarray_init (member, init))
+       finish_expr_stmt (cp_build_modify_expr (input_location, decl,
+                                               INIT_EXPR, init,
                                                tf_warning_or_error));
     }
 
@@ -823,13 +867,13 @@ perform_member_init (tree member, tree init)
    the FIELD_DECLs on the TYPE_FIELDS list for T, in reverse order.  */
 
 static tree
-build_field_list (tree t, tree list, int *uses_unions_p)
+build_field_list (tree t, tree list, int *uses_unions_or_anon_p)
 {
   tree fields;
 
   /* Note whether or not T is a union.  */
   if (TREE_CODE (t) == UNION_TYPE)
-    *uses_unions_p = 1;
+    *uses_unions_or_anon_p = 1;
 
   for (fields = TYPE_FIELDS (t); fields; fields = DECL_CHAIN (fields))
     {
@@ -840,9 +884,6 @@ build_field_list (tree t, tree list, int *uses_unions_p)
        continue;
 
       fieldtype = TREE_TYPE (fields);
-      /* Keep track of whether or not any fields are unions.  */
-      if (TREE_CODE (fieldtype) == UNION_TYPE)
-       *uses_unions_p = 1;
 
       /* For an anonymous struct or union, we must recursively
         consider the fields of the anonymous type.  They can be
@@ -853,7 +894,8 @@ build_field_list (tree t, tree list, int *uses_unions_p)
             initialize the entire aggregate.  */
          list = tree_cons (fields, NULL_TREE, list);
          /* And now add the fields in the anonymous aggregate.  */
-         list = build_field_list (fieldtype, list, uses_unions_p);
+         list = build_field_list (fieldtype, list, uses_unions_or_anon_p);
+         *uses_unions_or_anon_p = 1;
        }
       /* Add this field.  */
       else if (DECL_NAME (fields))
@@ -863,6 +905,18 @@ build_field_list (tree t, tree list, int *uses_unions_p)
   return list;
 }
 
+/* Return the innermost aggregate scope for FIELD, whether that is
+   the enclosing class or an anonymous aggregate within it.  */
+
+static tree
+innermost_aggr_scope (tree field)
+{
+  if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
+    return TREE_TYPE (field);
+  else
+    return DECL_CONTEXT (field);
+}
+
 /* The MEM_INITS are a TREE_LIST.  The TREE_PURPOSE of each list gives
    a FIELD_DECL or BINFO in T that needs initialization.  The
    TREE_VALUE gives the initializer, or list of initializer arguments.
@@ -880,7 +934,7 @@ sort_mem_initializers (tree t, tree mem_inits)
   tree next_subobject;
   vec<tree, va_gc> *vbases;
   int i;
-  int uses_unions_p = 0;
+  int uses_unions_or_anon_p = 0;
 
   /* Build up a list of initializations.  The TREE_PURPOSE of entry
      will be the subobject (a FIELD_DECL or BINFO) to initialize.  The
@@ -900,7 +954,7 @@ sort_mem_initializers (tree t, tree mem_inits)
       sorted_inits = tree_cons (base_binfo, NULL_TREE, sorted_inits);
 
   /* Process the non-static data members.  */
-  sorted_inits = build_field_list (t, sorted_inits, &uses_unions_p);
+  sorted_inits = build_field_list (t, sorted_inits, &uses_unions_or_anon_p);
   /* Reverse the entire list of initializations, so that they are in
      the order that they will actually be performed.  */
   sorted_inits = nreverse (sorted_inits);
@@ -984,7 +1038,7 @@ sort_mem_initializers (tree t, tree mem_inits)
      anonymous unions), the ctor-initializer is ill-formed.
 
      Here we also splice out uninitialized union members.  */
-  if (uses_unions_p)
+  if (uses_unions_or_anon_p)
     {
       tree *last_p = NULL;
       tree *p;
@@ -1001,21 +1055,18 @@ sort_mem_initializers (tree t, tree mem_inits)
          if (TREE_CODE (field) != FIELD_DECL)
            goto next;
 
-         /* If this is an anonymous union with no explicit initializer,
+         /* If this is an anonymous aggregate with no explicit initializer,
             splice it out.  */
-         if (!TREE_VALUE (init) && ANON_UNION_TYPE_P (TREE_TYPE (field)))
+         if (!TREE_VALUE (init) && ANON_AGGR_TYPE_P (TREE_TYPE (field)))
            goto splice;
 
          /* See if this field is a member of a union, or a member of a
             structure contained in a union, etc.  */
-         for (ctx = DECL_CONTEXT (field);
-              !same_type_p (ctx, t);
-              ctx = TYPE_CONTEXT (ctx))
-           if (TREE_CODE (ctx) == UNION_TYPE
-               || !ANON_AGGR_TYPE_P (ctx))
-             break;
+         ctx = innermost_aggr_scope (field);
+
          /* If this field is not a member of a union, skip it.  */
-         if (TREE_CODE (ctx) != UNION_TYPE)
+         if (TREE_CODE (ctx) != UNION_TYPE
+             && !ANON_AGGR_TYPE_P (ctx))
            goto next;
 
          /* If this union member has no explicit initializer and no NSDMI,
@@ -1034,17 +1085,19 @@ sort_mem_initializers (tree t, tree mem_inits)
            }
 
          /* See if LAST_FIELD and the field initialized by INIT are
-            members of the same union.  If so, there's a problem,
-            unless they're actually members of the same structure
+            members of the same union (or the union itself). If so, there's
+            a problem, unless they're actually members of the same structure
             which is itself a member of a union.  For example, given:
 
               union { struct { int i; int j; }; };
 
             initializing both `i' and `j' makes sense.  */
-         ctx = common_enclosing_class (DECL_CONTEXT (field),
-                                       DECL_CONTEXT (TREE_PURPOSE (*last_p)));
+         ctx = common_enclosing_class
+           (innermost_aggr_scope (field),
+            innermost_aggr_scope (TREE_PURPOSE (*last_p)));
 
-         if (ctx && TREE_CODE (ctx) == UNION_TYPE)
+         if (ctx && (TREE_CODE (ctx) == UNION_TYPE
+                     || ctx == TREE_TYPE (TREE_PURPOSE (*last_p))))
            {
              /* A mem-initializer hides an NSDMI.  */
              if (TREE_VALUE (init) && !TREE_VALUE (*last_p))
@@ -1102,7 +1155,7 @@ emit_mem_initializers (tree mem_inits)
     }
 
   if (DECL_DEFAULTED_FN (current_function_decl)
-      && ! DECL_INHERITED_CTOR_BASE (current_function_decl))
+      && ! DECL_INHERITED_CTOR (current_function_decl))
     flags |= LOOKUP_DEFAULTED;
 
   /* Sort the mem-initializers into the order in which the
@@ -1123,6 +1176,13 @@ emit_mem_initializers (tree mem_inits)
       if (arguments == error_mark_node)
        continue;
 
+      /* Suppress access control when calling the inherited ctor.  */
+      bool inherited_base = (DECL_INHERITED_CTOR (current_function_decl)
+                            && flag_new_inheriting_ctors
+                            && arguments);
+      if (inherited_base)
+       push_deferring_access_checks (dk_deferred);
+
       if (arguments == NULL_TREE)
        {
          /* If these initializations are taking place in a copy constructor,
@@ -1139,9 +1199,7 @@ emit_mem_initializers (tree mem_inits)
        }
 
       /* Initialize the base.  */
-      if (BINFO_VIRTUAL_P (subobject))
-       construct_virtual_base (subobject, arguments);
-      else
+      if (!BINFO_VIRTUAL_P (subobject))
        {
          tree base_addr;
 
@@ -1155,6 +1213,19 @@ emit_mem_initializers (tree mem_inits)
                               tf_warning_or_error);
          expand_cleanup_for_base (subobject, NULL_TREE);
        }
+      else if (!ABSTRACT_CLASS_TYPE_P (current_class_type))
+       /* C++14 DR1658 Means we do not have to construct vbases of
+          abstract classes.  */
+       construct_virtual_base (subobject, arguments);
+      else
+       /* When not constructing vbases of abstract classes, at least mark
+          the arguments expressions as read to avoid
+          -Wunused-but-set-parameter false positives.  */
+       for (tree arg = arguments; arg; arg = TREE_CHAIN (arg))
+         mark_exp_read (TREE_VALUE (arg));
+
+      if (inherited_base)
+       pop_deferring_access_checks ();
     }
   in_base_initializer = 0;
 
@@ -1233,12 +1304,7 @@ expand_virtual_init (tree binfo, tree decl)
       /* The actual initializer is the VTT value only in the subobject
         constructor.  In maybe_clone_body we'll substitute NULL for
         the vtt_parm in the case of the non-subobject constructor.  */
-      vtbl = build3 (COND_EXPR,
-                    TREE_TYPE (vtbl),
-                    build2 (EQ_EXPR, boolean_type_node,
-                            current_in_charge_parm, integer_zero_node),
-                    vtbl2,
-                    vtbl);
+      vtbl = build_if_in_charge (vtbl, vtbl2);
     }
 
   /* Compute the location of the vtpr.  */
@@ -1249,8 +1315,8 @@ expand_virtual_init (tree binfo, tree decl)
 
   /* Assign the vtable to the vptr.  */
   vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl, 0, tf_warning_or_error);
-  finish_expr_stmt (cp_build_modify_expr (vtbl_ptr, NOP_EXPR, vtbl,
-                                         tf_warning_or_error));
+  finish_expr_stmt (cp_build_modify_expr (input_location, vtbl_ptr, NOP_EXPR,
+                                         vtbl, tf_warning_or_error));
 }
 
 /* If an exception is thrown in a constructor, those base classes already
@@ -1544,36 +1610,47 @@ build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
   TREE_READONLY (exp) = 0;
   TREE_THIS_VOLATILE (exp) = 0;
 
-  if (init && init != void_type_node
-      && TREE_CODE (init) != TREE_LIST
-      && !(TREE_CODE (init) == TARGET_EXPR
-          && TARGET_EXPR_DIRECT_INIT_P (init))
-      && !DIRECT_LIST_INIT_P (init))
-    flags |= LOOKUP_ONLYCONVERTING;
-
   if (TREE_CODE (type) == ARRAY_TYPE)
     {
-      tree itype;
+      tree itype = init ? TREE_TYPE (init) : NULL_TREE;
+      int from_array = 0;
 
-      /* An array may not be initialized use the parenthesized
-        initialization form -- unless the initializer is "()".  */
-      if (init && TREE_CODE (init) == TREE_LIST)
+      if (VAR_P (exp) && DECL_DECOMPOSITION_P (exp))
        {
-          if (complain & tf_error)
-            error ("bad array initializer");
-         return error_mark_node;
+         from_array = 1;
+         if (init && DECL_P (init)
+             && !(flags & LOOKUP_ONLYCONVERTING))
+           {
+             /* Wrap the initializer in a CONSTRUCTOR so that build_vec_init
+                recognizes it as direct-initialization.  */
+             init = build_constructor_single (init_list_type_node,
+                                              NULL_TREE, init);
+             CONSTRUCTOR_IS_DIRECT_INIT (init) = true;
+           }
        }
-      /* Must arrange to initialize each element of EXP
-        from elements of INIT.  */
-      itype = init ? TREE_TYPE (init) : NULL_TREE;
-      if (cv_qualified_p (type))
-       TREE_TYPE (exp) = cv_unqualified (type);
-      if (itype && cv_qualified_p (itype))
-       TREE_TYPE (init) = cv_unqualified (itype);
+      else
+       {
+         /* An array may not be initialized use the parenthesized
+            initialization form -- unless the initializer is "()".  */
+         if (init && TREE_CODE (init) == TREE_LIST)
+           {
+             if (complain & tf_error)
+               error ("bad array initializer");
+             return error_mark_node;
+           }
+         /* Must arrange to initialize each element of EXP
+            from elements of INIT.  */
+         if (cv_qualified_p (type))
+           TREE_TYPE (exp) = cv_unqualified (type);
+         if (itype && cv_qualified_p (itype))
+           TREE_TYPE (init) = cv_unqualified (itype);
+         from_array = (itype && same_type_p (TREE_TYPE (init),
+                                             TREE_TYPE (exp)));
+       }
+
       stmt_expr = build_vec_init (exp, NULL_TREE, init,
                                  /*explicit_value_init_p=*/false,
-                                 itype && same_type_p (TREE_TYPE (init),
-                                                       TREE_TYPE (exp)),
+                                 from_array,
                                   complain);
       TREE_READONLY (exp) = was_const;
       TREE_THIS_VOLATILE (exp) = was_volatile;
@@ -1584,6 +1661,13 @@ build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
       return stmt_expr;
     }
 
+  if (init && init != void_type_node
+      && TREE_CODE (init) != TREE_LIST
+      && !(TREE_CODE (init) == TARGET_EXPR
+          && TARGET_EXPR_DIRECT_INIT_P (init))
+      && !DIRECT_LIST_INIT_P (init))
+    flags |= LOOKUP_ONLYCONVERTING;
+
   if ((VAR_P (exp) || TREE_CODE (exp) == PARM_DECL)
       && !lookup_attribute ("warn_unused", TYPE_ATTRIBUTES (type)))
     /* Just know that we've seen something for this node.  */
@@ -1626,16 +1710,17 @@ expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
       gcc_checking_assert ((flags & LOOKUP_ONLYCONVERTING) == 0
                           && TREE_CHAIN (init) == NULL_TREE);
       init = TREE_VALUE (init);
+      /* Only call reshape_init if it has not been called earlier
+        by the callers.  */
+      if (BRACE_ENCLOSED_INITIALIZER_P (init) && CP_AGGREGATE_TYPE_P (type))
+       init = reshape_init (type, init, complain);
     }
 
   if (init && BRACE_ENCLOSED_INITIALIZER_P (init)
       && CP_AGGREGATE_TYPE_P (type))
     /* A brace-enclosed initializer for an aggregate.  In C++0x this can
        happen for direct-initialization, too.  */
-    {
-      init = reshape_init (type, init, complain);
-      init = digest_init (type, init, complain);
-    }
+    init = digest_init (type, init, complain);
 
   /* A CONSTRUCTOR of the target's type is a previously digested
      initializer, whether that happened just above or in
@@ -1730,11 +1815,7 @@ expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
                                        &parms, binfo, flags,
                                        complain);
       base = fold_build_cleanup_point_expr (void_type_node, base);
-      rval = build3 (COND_EXPR, void_type_node,
-                    build2 (EQ_EXPR, boolean_type_node,
-                            current_in_charge_parm, integer_zero_node),
-                    base,
-                    complete);
+      rval = build_if_in_charge (complete, base);
     }
    else
     {
@@ -1744,7 +1825,7 @@ expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
        ctor_name = base_ctor_identifier;
       rval = build_special_member_call (exp, ctor_name, &parms, binfo, flags,
                                        complain);
-  }
+    }
 
   if (parms != NULL)
     release_tree_vector (parms);
@@ -1814,6 +1895,19 @@ expand_aggr_init_1 (tree binfo, tree true_exp, tree exp, tree init, int flags,
       return;
     }
 
+  /* List-initialization from {} becomes value-initialization for non-aggregate
+     classes with default constructors.  Handle this here when we're
+     initializing a base, so protected access works.  */
+  if (exp != true_exp && init && TREE_CODE (init) == TREE_LIST)
+    {
+      tree elt = TREE_VALUE (init);
+      if (DIRECT_LIST_INIT_P (elt)
+         && CONSTRUCTOR_ELTS (elt) == 0
+         && CLASSTYPE_NON_AGGREGATE (type)
+         && TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
+       init = void_type_node;
+    }
+
   /* If an explicit -- but empty -- initializer list was present,
      that's value-initialization.  */
   if (init == void_type_node)
@@ -1955,14 +2049,16 @@ build_offset_ref (tree type, tree member, bool address_p,
               If the access is to form a pointer to member, the
               nested-name-specifier shall name the derived class
               (or any class derived from that class).  */
+         bool ok;
          if (address_p && DECL_P (t)
              && DECL_NONSTATIC_MEMBER_P (t))
-           perform_or_defer_access_check (TYPE_BINFO (type), t, t,
-                                          complain);
+           ok = perform_or_defer_access_check (TYPE_BINFO (type), t, t,
+                                               complain);
          else
-           perform_or_defer_access_check (basebinfo, t, t,
-                                          complain);
-
+           ok = perform_or_defer_access_check (basebinfo, t, t,
+                                               complain);
+         if (!ok)
+           return error_mark_node;
          if (DECL_STATIC_FUNCTION_P (t))
            return t;
          member = t;
@@ -1971,11 +2067,14 @@ build_offset_ref (tree type, tree member, bool address_p,
        TREE_TYPE (member) = unknown_type_node;
     }
   else if (address_p && TREE_CODE (member) == FIELD_DECL)
-    /* We need additional test besides the one in
-       check_accessibility_of_qualified_id in case it is
-       a pointer to non-static member.  */
-    perform_or_defer_access_check (TYPE_BINFO (type), member, member,
-                                  complain);
+    {
+      /* We need additional test besides the one in
+        check_accessibility_of_qualified_id in case it is
+        a pointer to non-static member.  */
+      if (!perform_or_defer_access_check (TYPE_BINFO (type), member, member,
+                                         complain))
+       return error_mark_node;
+    }
 
   if (!address_p)
     {
@@ -2039,10 +2138,9 @@ static tree
 constant_value_1 (tree decl, bool strict_p, bool return_aggregate_cst_ok_p)
 {
   while (TREE_CODE (decl) == CONST_DECL
-        || (strict_p
-            ? decl_constant_var_p (decl)
-            : (VAR_P (decl)
-               && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (decl)))))
+        || decl_constant_var_p (decl)
+        || (!strict_p && VAR_P (decl)
+            && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (decl))))
     {
       tree init;
       /* If DECL is a static data member in a template
@@ -2070,6 +2168,13 @@ constant_value_1 (tree decl, bool strict_p, bool return_aggregate_cst_ok_p)
          && TREE_CODE (init) == TREE_LIST
          && TREE_CHAIN (init) == NULL_TREE)
        init = TREE_VALUE (init);
+      /* Instantiate a non-dependent initializer for user variables.  We
+        mustn't do this for the temporary for an array compound literal;
+        trying to instatiate the initializer will keep creating new
+        temporaries until we crash.  Probably it's not useful to do it for
+        other artificial variables, either.  */
+      if (!DECL_ARTIFICIAL (decl))
+       init = instantiate_non_dependent_or_null (init);
       if (!init
          || !TREE_TYPE (init)
          || !TREE_CONSTANT (init)
@@ -2083,6 +2188,11 @@ constant_value_1 (tree decl, bool strict_p, bool return_aggregate_cst_ok_p)
              && (TREE_CODE (init) == CONSTRUCTOR
                  || TREE_CODE (init) == STRING_CST)))
        break;
+      /* Don't return a CONSTRUCTOR for a variable with partial run-time
+        initialization, since it doesn't represent the entire value.  */
+      if (TREE_CODE (init) == CONSTRUCTOR
+         && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
+       break;
       decl = unshare_expr (init);
     }
   return decl;
@@ -2268,10 +2378,311 @@ throw_bad_array_new_length (void)
   return build_cxx_call (fn, 0, NULL, tf_warning_or_error);
 }
 
+/* Attempt to find the initializer for field T in the initializer INIT,
+   when non-null.  Returns the initializer when successful and NULL
+   otherwise.  */
+static tree
+find_field_init (tree t, tree init)
+{
+  if (!init)
+    return NULL_TREE;
+
+  unsigned HOST_WIDE_INT idx;
+  tree field, elt;
+
+  /* Iterate over all top-level initializer elements.  */
+  FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, field, elt)
+    {
+      /* If the member T is found, return it.  */
+      if (field == t)
+       return elt;
+
+      /* Otherwise continue and/or recurse into nested initializers.  */
+      if (TREE_CODE (elt) == CONSTRUCTOR
+         && (init = find_field_init (t, elt)))
+       return init;
+    }
+  return NULL_TREE;
+}
+
+/* Attempt to verify that the argument, OPER, of a placement new expression
+   refers to an object sufficiently large for an object of TYPE or an array
+   of NELTS of such objects when NELTS is non-null, and issue a warning when
+   it does not.  SIZE specifies the size needed to construct the object or
+   array and captures the result of NELTS * sizeof (TYPE). (SIZE could be
+   greater when the array under construction requires a cookie to store
+   NELTS.  GCC's placement new expression stores the cookie when invoking
+   a user-defined placement new operator function but not the default one.
+   Placement new expressions with user-defined placement new operator are
+   not diagnosed since we don't know how they use the buffer (this could
+   be a future extension).  */
+static void
+warn_placement_new_too_small (tree type, tree nelts, tree size, tree oper)
+{
+  location_t loc = EXPR_LOC_OR_LOC (oper, input_location);
+
+  /* The number of bytes to add to or subtract from the size of the provided
+     buffer based on an offset into an array or an array element reference.
+     Although intermediate results may be negative (as in a[3] - 2) the final
+     result cannot be.  */
+  HOST_WIDE_INT adjust = 0;
+  /* True when the size of the entire destination object should be used
+     to compute the possibly optimistic estimate of the available space.  */
+  bool use_obj_size = false;
+  /* True when the reference to the destination buffer is an ADDR_EXPR.  */
+  bool addr_expr = false;
+
+  STRIP_NOPS (oper);
+
+  /* Using a function argument or a (non-array) variable as an argument
+     to placement new is not checked since it's unknown what it might
+     point to.  */
+  if (TREE_CODE (oper) == PARM_DECL
+      || VAR_P (oper)
+      || TREE_CODE (oper) == COMPONENT_REF)
+    return;
+
+  /* Evaluate any constant expressions.  */
+  size = fold_non_dependent_expr (size);
+
+  /* Handle the common case of array + offset expression when the offset
+     is a constant.  */
+  if (TREE_CODE (oper) == POINTER_PLUS_EXPR)
+    {
+      /* If the offset is comple-time constant, use it to compute a more
+        accurate estimate of the size of the buffer.  Since the operand
+        of POINTER_PLUS_EXPR is represented as an unsigned type, convert
+        it to signed first.
+        Otherwise, use the size of the entire array as an optimistic
+        estimate (this may lead to false negatives).  */
+      tree adj = TREE_OPERAND (oper, 1);
+      if (CONSTANT_CLASS_P (adj))
+       adjust += tree_to_shwi (convert (ssizetype, adj));
+      else
+       use_obj_size = true;
+
+      oper = TREE_OPERAND (oper, 0);
+
+      STRIP_NOPS (oper);
+    }
+
+  if (TREE_CODE (oper) == TARGET_EXPR)
+    oper = TREE_OPERAND (oper, 1);
+  else if (TREE_CODE (oper) == ADDR_EXPR)
+    {
+      addr_expr = true;
+      oper = TREE_OPERAND (oper, 0);
+    }
+
+  STRIP_NOPS (oper);
+
+  if (TREE_CODE (oper) == ARRAY_REF
+      && (addr_expr || TREE_CODE (TREE_TYPE (oper)) == ARRAY_TYPE))
+    {
+      /* Similar to the offset computed above, see if the array index
+        is a compile-time constant.  If so, and unless the offset was
+        not a compile-time constant, use the index to determine the
+        size of the buffer.  Otherwise, use the entire array as
+        an optimistic estimate of the size.  */
+      const_tree adj = TREE_OPERAND (oper, 1);
+      if (!use_obj_size && CONSTANT_CLASS_P (adj))
+       adjust += tree_to_shwi (adj);
+      else
+       {
+         use_obj_size = true;
+         adjust = 0;
+       }
+
+      oper = TREE_OPERAND (oper, 0);
+    }
+
+  /* Refers to the declared object that constains the subobject referenced
+     by OPER.  When the object is initialized, makes it possible to determine
+     the actual size of a flexible array member used as the buffer passed
+     as OPER to placement new.  */
+  tree var_decl = NULL_TREE;
+  /* True when operand is a COMPONENT_REF, to distinguish flexible array
+     members from arrays of unspecified size.  */
+  bool compref = TREE_CODE (oper) == COMPONENT_REF;
+
+  /* Descend into a struct or union to find the member whose address
+     is being used as the argument.  */
+  if (TREE_CODE (oper) == COMPONENT_REF)
+    {
+      tree op0 = oper;
+      while (TREE_CODE (op0 = TREE_OPERAND (op0, 0)) == COMPONENT_REF);
+      if (VAR_P (op0))
+       var_decl = op0;
+      oper = TREE_OPERAND (oper, 1);
+    }
+
+  if ((addr_expr || !POINTER_TYPE_P (TREE_TYPE (oper)))
+      && (VAR_P (oper)
+         || TREE_CODE (oper) == FIELD_DECL
+         || TREE_CODE (oper) == PARM_DECL))
+    {
+      /* A possibly optimistic estimate of the number of bytes available
+        in the destination buffer.  */
+      unsigned HOST_WIDE_INT bytes_avail = 0;
+      /* True when the estimate above is in fact the exact size
+        of the destination buffer rather than an estimate.  */
+      bool exact_size = true;
+
+      /* Treat members of unions and members of structs uniformly, even
+        though the size of a member of a union may be viewed as extending
+        to the end of the union itself (it is by __builtin_object_size).  */
+      if ((VAR_P (oper) || use_obj_size)
+         && DECL_SIZE_UNIT (oper)
+         && tree_fits_uhwi_p (DECL_SIZE_UNIT (oper)))
+       {
+         /* Use the size of the entire array object when the expression
+            refers to a variable or its size depends on an expression
+            that's not a compile-time constant.  */
+         bytes_avail = tree_to_uhwi (DECL_SIZE_UNIT (oper));
+         exact_size = !use_obj_size;
+       }
+      else if (TYPE_SIZE_UNIT (TREE_TYPE (oper))
+              && tree_fits_uhwi_p (TYPE_SIZE_UNIT (TREE_TYPE (oper))))
+       {
+         /* Use the size of the type of the destination buffer object
+            as the optimistic estimate of the available space in it.  */
+         bytes_avail = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (oper)));
+       }
+      else if (var_decl)
+       {
+         /* Constructing into a buffer provided by the flexible array
+            member of a declared object (which is permitted as a G++
+            extension).  If the array member has been initialized,
+            determine its size from the initializer.  Otherwise,
+            the array size is zero.  */
+         bytes_avail = 0;
+
+         if (tree init = find_field_init (oper, DECL_INITIAL (var_decl)))
+           bytes_avail = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (init)));
+       }
+      else
+       {
+         /* Bail if neither the size of the object nor its type is known.  */
+         return;
+       }
+
+      tree_code oper_code = TREE_CODE (TREE_TYPE (oper));
+
+      if (compref && oper_code == ARRAY_TYPE)
+       {
+         /* Avoid diagnosing flexible array members (which are accepted
+            as an extension and diagnosed with -Wpedantic) and zero-length
+            arrays (also an extension).
+            Overflowing construction in one-element arrays is diagnosed
+            only at level 2.  */
+         if (bytes_avail == 0 && !var_decl)
+           return;
+
+         tree nelts = array_type_nelts_top (TREE_TYPE (oper));
+         tree nelts_cst = maybe_constant_value (nelts);
+         if (TREE_CODE (nelts_cst) == INTEGER_CST
+             && integer_onep (nelts_cst)
+             && !var_decl
+             && warn_placement_new < 2)
+           return;
+       }
+
+      /* The size of the buffer can only be adjusted down but not up.  */
+      gcc_checking_assert (0 <= adjust);
+
+      /* Reduce the size of the buffer by the adjustment computed above
+        from the offset and/or the index into the array.  */
+      if (bytes_avail < static_cast<unsigned HOST_WIDE_INT>(adjust))
+       bytes_avail = 0;
+      else
+       bytes_avail -= adjust;
+
+      /* The minimum amount of space needed for the allocation.  This
+        is an optimistic estimate that makes it possible to detect
+        placement new invocation for some undersize buffers but not
+        others.  */
+      unsigned HOST_WIDE_INT bytes_need;
+
+      if (CONSTANT_CLASS_P (size))
+       bytes_need = tree_to_uhwi (size);
+      else if (nelts && CONSTANT_CLASS_P (nelts))
+         bytes_need = tree_to_uhwi (nelts)
+           * tree_to_uhwi (TYPE_SIZE_UNIT (type));
+      else if (tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
+       bytes_need = tree_to_uhwi (TYPE_SIZE_UNIT (type));
+      else
+       {
+         /* The type is a VLA.  */
+         return;
+       }
+
+      if (bytes_avail < bytes_need)
+       {
+         if (nelts)
+           if (CONSTANT_CLASS_P (nelts))
+             warning_at (loc, OPT_Wplacement_new_,
+                         exact_size ?
+                         "placement new constructing an object of type "
+                         "%<%T [%wu]%> and size %qwu in a region of type %qT "
+                         "and size %qwi"
+                         : "placement new constructing an object of type "
+                         "%<%T [%wu]%> and size %qwu in a region of type %qT "
+                         "and size at most %qwu",
+                         type, tree_to_uhwi (nelts), bytes_need,
+                         TREE_TYPE (oper),
+                         bytes_avail);
+           else
+             warning_at (loc, OPT_Wplacement_new_,
+                         exact_size ?
+                         "placement new constructing an array of objects "
+                         "of type %qT and size %qwu in a region of type %qT "
+                         "and size %qwi"
+                         : "placement new constructing an array of objects "
+                         "of type %qT and size %qwu in a region of type %qT "
+                         "and size at most %qwu",
+                         type, bytes_need, TREE_TYPE (oper),
+                         bytes_avail);
+         else
+           warning_at (loc, OPT_Wplacement_new_,
+                       exact_size ?
+                       "placement new constructing an object of type %qT "
+                       "and size %qwu in a region of type %qT and size %qwi"
+                       : "placement new constructing an object of type %qT "
+                       "and size %qwu in a region of type %qT and size "
+                       "at most %qwu",
+                       type, bytes_need, TREE_TYPE (oper),
+                       bytes_avail);
+       }
+    }
+}
+
+/* True if alignof(T) > __STDCPP_DEFAULT_NEW_ALIGNMENT__.  */
+
+bool
+type_has_new_extended_alignment (tree t)
+{
+  return (aligned_new_threshold
+         && TYPE_ALIGN_UNIT (t) > (unsigned)aligned_new_threshold);
+}
+
+/* Return the alignment we expect malloc to guarantee.  This should just be
+   MALLOC_ABI_ALIGNMENT, but that macro defaults to only BITS_PER_WORD for some
+   reason, so don't let the threshold be smaller than max_align_t_align.  */
+
+unsigned
+malloc_alignment ()
+{
+  return MAX (max_align_t_align(), MALLOC_ABI_ALIGNMENT);
+}
+
 /* Generate code for a new-expression, including calling the "operator
    new" function, initializing the object, and, if an exception occurs
    during construction, cleaning up.  The arguments are as for
-   build_raw_new_expr.  This may change PLACEMENT and INIT.  */
+   build_raw_new_expr.  This may change PLACEMENT and INIT.
+   TYPE is the type of the object being constructed, possibly an array
+   of NELTS elements when NELTS is non-null (in "new T[NELTS]", T may
+   be an array of the form U[inner], with the whole expression being
+   "new U[NELTS][inner]").  */
 
 static tree
 build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
@@ -2291,13 +2702,16 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
      type.)  */
   tree pointer_type;
   tree non_const_pointer_type;
+  /* The most significant array bound in int[OUTER_NELTS][inner].  */
   tree outer_nelts = NULL_TREE;
-  /* For arrays, a bounds checks on the NELTS parameter. */
+  /* For arrays with a non-constant number of elements, a bounds checks
+     on the NELTS parameter to avoid integer overflow at runtime. */
   tree outer_nelts_check = NULL_TREE;
   bool outer_nelts_from_type = false;
+  /* Number of the "inner" elements in "new T[OUTER_NELTS][inner]".  */
   offset_int inner_nelts_count = 1;
   tree alloc_call, alloc_expr;
-  /* Size of the inner array elements. */
+  /* Size of the inner array elements (those with constant dimensions). */
   offset_int inner_size;
   /* The address returned by the call to "operator new".  This node is
      a VAR_DECL and is therefore reusable.  */
@@ -2305,7 +2719,6 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
   tree alloc_fn;
   tree cookie_expr, init_expr;
   int nothrow, check_new;
-  int use_java_new = 0;
   /* If non-NULL, the number of extra bytes to allocate at the
      beginning of the storage allocated for an array-new expression in
      order to store the number of elements.  */
@@ -2343,6 +2756,11 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
       outer_nelts_from_type = true;
     }
 
+  /* Lots of logic below. depends on whether we have a constant number of
+     elements, so go ahead and fold it now.  */
+  if (outer_nelts)
+    outer_nelts = maybe_constant_value (outer_nelts);
+
   /* If our base type is an array, then make sure we know how many elements
      it has.  */
   for (elt_type = type;
@@ -2393,19 +2811,16 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
   /* Warn if we performed the (T[N]) to T[N] transformation and N is
      variable.  */
   if (outer_nelts_from_type
-      && !TREE_CONSTANT (maybe_constant_value (outer_nelts)))
+      && !TREE_CONSTANT (outer_nelts))
     {
       if (complain & tf_warning_or_error)
        {
-         const char *msg;
-         if (typedef_variant_p (orig_type))
-           msg = ("non-constant array new length must be specified "
-                  "directly, not by typedef");
-         else
-           msg = ("non-constant array new length must be specified "
-                  "without parentheses around the type-id");
-         pedwarn (EXPR_LOC_OR_LOC (outer_nelts, input_location),
-                  OPT_Wvla, msg);
+         pedwarn (EXPR_LOC_OR_LOC (outer_nelts, input_location), OPT_Wvla,
+                  typedef_variant_p (orig_type)
+                  ? G_("non-constant array new length must be specified "
+                       "directly, not by typedef")
+                  : G_("non-constant array new length must be specified "
+                       "without parentheses around the type-id"));
        }
       else
        return error_mark_node;
@@ -2491,22 +2906,46 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
        }
 
       max_outer_nelts = wi::udiv_trunc (max_size, inner_size);
-      /* Only keep the top-most seven bits, to simplify encoding the
-        constant in the instruction stream.  */
-      {
-       unsigned shift = (max_outer_nelts.get_precision ()) - 7
-         - wi::clz (max_outer_nelts);
-       max_outer_nelts = wi::lshift (wi::lrshift (max_outer_nelts, shift),
-                                     shift);
-      }
       max_outer_nelts_tree = wide_int_to_tree (sizetype, max_outer_nelts);
 
-      size = size_binop (MULT_EXPR, size, convert (sizetype, nelts));
-      outer_nelts_check = fold_build2 (LE_EXPR, boolean_type_node,
-                                      outer_nelts,
-                                      max_outer_nelts_tree);
+      size = size_binop (MULT_EXPR, size, fold_convert (sizetype, nelts));
+
+      if (INTEGER_CST == TREE_CODE (outer_nelts))
+       {
+         if (tree_int_cst_lt (max_outer_nelts_tree, outer_nelts))
+           {
+             /* When the array size is constant, check it at compile time
+                to make sure it doesn't exceed the implementation-defined
+                maximum, as required by C++ 14 (in C++ 11 this requirement
+                isn't explicitly stated but it's enforced anyway -- see
+                grokdeclarator in cp/decl.c).  */
+             if (complain & tf_error)
+               error ("size of array is too large");
+             return error_mark_node;
+           }
+       }
+      else
+       {
+         /* When a runtime check is necessary because the array size
+            isn't constant, keep only the top-most seven bits (starting
+            with the most significant non-zero bit) of the maximum size
+            to compare the array size against, to simplify encoding the
+            constant maximum size in the instruction stream.  */
+
+         unsigned shift = (max_outer_nelts.get_precision ()) - 7
+           - wi::clz (max_outer_nelts);
+         max_outer_nelts = (max_outer_nelts >> shift) << shift;
+
+          outer_nelts_check = fold_build2 (LE_EXPR, boolean_type_node,
+                                          outer_nelts,
+                                          max_outer_nelts_tree);
+       }
     }
 
+  tree align_arg = NULL_TREE;
+  if (type_has_new_extended_alignment (elt_type))
+    align_arg = build_int_cst (align_type_node, TYPE_ALIGN_UNIT (elt_type));
+
   alloc_fn = NULL_TREE;
 
   /* If PLACEMENT is a single simple pointer type not passed by
@@ -2517,123 +2956,100 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
       && (TYPE_PTR_P (TREE_TYPE ((**placement)[0]))))
     placement_first = (**placement)[0];
 
+  bool member_new_p = false;
+
   /* Allocate the object.  */
-  if (vec_safe_is_empty (*placement) && TYPE_FOR_JAVA (elt_type))
-    {
-      tree class_addr;
-      tree class_decl;
-      static const char alloc_name[] = "_Jv_AllocObject";
+  tree fnname;
+  tree fns;
 
-      if (!MAYBE_CLASS_TYPE_P (elt_type))
-       {
-         error ("%qT isn%'t a valid Java class type", elt_type);
-         return error_mark_node;
-       }
+  fnname = cp_operator_id (array_p ? VEC_NEW_EXPR : NEW_EXPR);
 
-      class_decl = build_java_class_ref (elt_type);
-      if (class_decl == error_mark_node)
-       return error_mark_node;
+  member_new_p = !globally_qualified_p
+                && CLASS_TYPE_P (elt_type)
+                && (array_p
+                    ? TYPE_HAS_ARRAY_NEW_OPERATOR (elt_type)
+                    : TYPE_HAS_NEW_OPERATOR (elt_type));
 
-      use_java_new = 1;
-      if (!get_global_value_if_present (get_identifier (alloc_name),
-                                       &alloc_fn))
+  if (member_new_p)
+    {
+      /* Use a class-specific operator new.  */
+      /* If a cookie is required, add some extra space.  */
+      if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
+       size = size_binop (PLUS_EXPR, size, cookie_size);
+      else
        {
-          if (complain & tf_error)
-            error ("call to Java constructor with %qs undefined", alloc_name);
+         cookie_size = NULL_TREE;
+         /* No size arithmetic necessary, so the size check is
+            not needed. */
+         if (outer_nelts_check != NULL && inner_size == 1)
+           outer_nelts_check = NULL_TREE;
+       }
+      /* Perform the overflow check.  */
+      tree errval = TYPE_MAX_VALUE (sizetype);
+      if (cxx_dialect >= cxx11 && flag_exceptions)
+       errval = throw_bad_array_new_length ();
+      if (outer_nelts_check != NULL_TREE)
+       size = fold_build3 (COND_EXPR, sizetype, outer_nelts_check,
+                           size, errval);
+      /* Create the argument list.  */
+      vec_safe_insert (*placement, 0, size);
+      /* Do name-lookup to find the appropriate operator.  */
+      fns = lookup_fnfields (elt_type, fnname, /*protect=*/2);
+      if (fns == NULL_TREE)
+       {
+         if (complain & tf_error)
+           error ("no suitable %qD found in class %qT", fnname, elt_type);
          return error_mark_node;
        }
-      else if (really_overloaded_fn (alloc_fn))
+      if (TREE_CODE (fns) == TREE_LIST)
        {
-          if (complain & tf_error)
-            error ("%qD should never be overloaded", alloc_fn);
+         if (complain & tf_error)
+           {
+             error ("request for member %qD is ambiguous", fnname);
+             print_candidates (fns);
+           }
          return error_mark_node;
        }
-      alloc_fn = OVL_CURRENT (alloc_fn);
-      class_addr = build1 (ADDR_EXPR, jclass_node, class_decl);
-      alloc_call = cp_build_function_call_nary (alloc_fn, complain,
-                                               class_addr, NULL_TREE);
-    }
-  else if (TYPE_FOR_JAVA (elt_type) && MAYBE_CLASS_TYPE_P (elt_type))
-    {
-      error ("Java class %q#T object allocated using placement new", elt_type);
-      return error_mark_node;
+      tree dummy = build_dummy_object (elt_type);
+      alloc_call = NULL_TREE;
+      if (align_arg)
+       {
+         vec<tree, va_gc> *align_args
+           = vec_copy_and_insert (*placement, align_arg, 1);
+         alloc_call
+           = build_new_method_call (dummy, fns, &align_args,
+                                    /*conversion_path=*/NULL_TREE,
+                                    LOOKUP_NORMAL, &alloc_fn, tf_none);
+         /* If no matching function is found and the allocated object type
+            has new-extended alignment, the alignment argument is removed
+            from the argument list, and overload resolution is performed
+            again.  */
+         if (alloc_call == error_mark_node)
+           alloc_call = NULL_TREE;
+       }
+      if (!alloc_call)
+       alloc_call = build_new_method_call (dummy, fns, placement,
+                                           /*conversion_path=*/NULL_TREE,
+                                           LOOKUP_NORMAL,
+                                           &alloc_fn, complain);
     }
   else
     {
-      tree fnname;
-      tree fns;
-
-      fnname = ansi_opname (array_p ? VEC_NEW_EXPR : NEW_EXPR);
-
-      if (!globally_qualified_p
-         && CLASS_TYPE_P (elt_type)
-         && (array_p
-             ? TYPE_HAS_ARRAY_NEW_OPERATOR (elt_type)
-             : TYPE_HAS_NEW_OPERATOR (elt_type)))
+      /* Use a global operator new.  */
+      /* See if a cookie might be required.  */
+      if (!(array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type)))
        {
-         /* Use a class-specific operator new.  */
-         /* If a cookie is required, add some extra space.  */
-         if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
-           size = size_binop (PLUS_EXPR, size, cookie_size);
-         else
-           {
-             cookie_size = NULL_TREE;
-             /* No size arithmetic necessary, so the size check is
-                not needed. */
-             if (outer_nelts_check != NULL && inner_size == 1)
-               outer_nelts_check = NULL_TREE;
-           }
-         /* Perform the overflow check.  */
-         tree errval = TYPE_MAX_VALUE (sizetype);
-         if (cxx_dialect >= cxx11 && flag_exceptions)
-           errval = throw_bad_array_new_length ();
-         if (outer_nelts_check != NULL_TREE)
-            size = fold_build3 (COND_EXPR, sizetype, outer_nelts_check,
-                                size, errval);
-         /* Create the argument list.  */
-         vec_safe_insert (*placement, 0, size);
-         /* Do name-lookup to find the appropriate operator.  */
-         fns = lookup_fnfields (elt_type, fnname, /*protect=*/2);
-         if (fns == NULL_TREE)
-           {
-              if (complain & tf_error)
-                error ("no suitable %qD found in class %qT", fnname, elt_type);
-             return error_mark_node;
-           }
-         if (TREE_CODE (fns) == TREE_LIST)
-           {
-              if (complain & tf_error)
-                {
-                  error ("request for member %qD is ambiguous", fnname);
-                  print_candidates (fns);
-                }
-             return error_mark_node;
-           }
-         alloc_call = build_new_method_call (build_dummy_object (elt_type),
-                                             fns, placement,
-                                             /*conversion_path=*/NULL_TREE,
-                                             LOOKUP_NORMAL,
-                                             &alloc_fn,
-                                             complain);
+         cookie_size = NULL_TREE;
+         /* No size arithmetic necessary, so the size check is
+            not needed. */
+         if (outer_nelts_check != NULL && inner_size == 1)
+           outer_nelts_check = NULL_TREE;
        }
-      else
-       {
-         /* Use a global operator new.  */
-         /* See if a cookie might be required.  */
-         if (!(array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type)))
-           {
-             cookie_size = NULL_TREE;
-             /* No size arithmetic necessary, so the size check is
-                not needed. */
-             if (outer_nelts_check != NULL && inner_size == 1)
-               outer_nelts_check = NULL_TREE;
-           }
 
-         alloc_call = build_operator_new_call (fnname, placement,
-                                               &size, &cookie_size,
-                                               outer_nelts_check,
-                                               &alloc_fn, complain);
-       }
+      alloc_call = build_operator_new_call (fnname, placement,
+                                           &size, &cookie_size,
+                                           align_arg, outer_nelts_check,
+                                           &alloc_fn, complain);
     }
 
   if (alloc_call == error_mark_node)
@@ -2641,23 +3057,63 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
 
   gcc_assert (alloc_fn != NULL_TREE);
 
+  /* Now, check to see if this function is actually a placement
+     allocation function.  This can happen even when PLACEMENT is NULL
+     because we might have something like:
+
+       struct S { void* operator new (size_t, int i = 0); };
+
+     A call to `new S' will get this allocation function, even though
+     there is no explicit placement argument.  If there is more than
+     one argument, or there are variable arguments, then this is a
+     placement allocation function.  */
+  placement_allocation_fn_p
+    = (type_num_arguments (TREE_TYPE (alloc_fn)) > 1
+       || varargs_function_p (alloc_fn));
+
+  if (warn_aligned_new
+      && !placement_allocation_fn_p
+      && TYPE_ALIGN (elt_type) > malloc_alignment ()
+      && (warn_aligned_new > 1
+         || CP_DECL_CONTEXT (alloc_fn) == global_namespace)
+      && !aligned_allocation_fn_p (alloc_fn))
+    {
+      warning (OPT_Waligned_new_, "%<new%> of type %qT with extended "
+              "alignment %d", elt_type, TYPE_ALIGN_UNIT (elt_type));
+      inform (input_location, "uses %qD, which does not have an alignment "
+             "parameter", alloc_fn);
+      if (!aligned_new_threshold)
+       inform (input_location, "use %<-faligned-new%> to enable C++17 "
+                               "over-aligned new support");
+    }
+
   /* If we found a simple case of PLACEMENT_EXPR above, then copy it
      into a temporary variable.  */
   if (!processing_template_decl
-      && placement_first != NULL_TREE
       && TREE_CODE (alloc_call) == CALL_EXPR
       && call_expr_nargs (alloc_call) == 2
       && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 0))) == INTEGER_TYPE
       && TYPE_PTR_P (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1))))
     {
-      tree placement_arg = CALL_EXPR_ARG (alloc_call, 1);
+      tree placement = CALL_EXPR_ARG (alloc_call, 1);
 
-      if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg)))
-         || VOID_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg))))
+      if (placement_first != NULL_TREE
+         && (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (TREE_TYPE (placement)))
+             || VOID_TYPE_P (TREE_TYPE (TREE_TYPE (placement)))))
        {
          placement_expr = get_target_expr (placement_first);
          CALL_EXPR_ARG (alloc_call, 1)
-           = convert (TREE_TYPE (placement_arg), placement_expr);
+           = fold_convert (TREE_TYPE (placement), placement_expr);
+       }
+
+      if (!member_new_p
+         && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1)))))
+       {
+         /* Attempt to make the warning point at the operator new argument.  */
+         if (placement_first)
+           placement = placement_first;
+
+         warn_placement_new_too_small (orig_type, nelts, size, placement);
        }
     }
 
@@ -2675,20 +3131,6 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
   while (TREE_CODE (alloc_call) == COMPOUND_EXPR)
     alloc_call = TREE_OPERAND (alloc_call, 1);
 
-  /* Now, check to see if this function is actually a placement
-     allocation function.  This can happen even when PLACEMENT is NULL
-     because we might have something like:
-
-       struct S { void* operator new (size_t, int i = 0); };
-
-     A call to `new S' will get this allocation function, even though
-     there is no explicit placement argument.  If there is more than
-     one argument, or there are variable arguments, then this is a
-     placement allocation function.  */
-  placement_allocation_fn_p
-    = (type_num_arguments (TREE_TYPE (alloc_fn)) > 1
-       || varargs_function_p (alloc_fn));
-
   /* Preevaluate the placement args so that we don't reevaluate them for a
      placement delete.  */
   if (placement_allocation_fn_p)
@@ -2711,7 +3153,7 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
      So check for a null exception spec on the op new we just called.  */
 
   nothrow = TYPE_NOTHROW_P (TREE_TYPE (alloc_fn));
-  check_new = (flag_check_new || nothrow) && ! use_java_new;
+  check_new = (flag_check_new || nothrow);
 
   if (cookie_size)
     {
@@ -2858,8 +3300,10 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
            }
          else if (explicit_value_init_p)
            {
-             /* Something like `new int()'.  */
-             tree val = build_value_init (type, complain);
+             /* Something like `new int()'.  NO_CLEANUP is needed so
+                we don't try and build a (possibly ill-formed)
+                destructor.  */
+             tree val = build_value_init (type, complain | tf_no_cleanup);
              if (val == error_mark_node)
                return error_mark_node;
              init_expr = build2 (INIT_EXPR, type, init_expr, val);
@@ -2873,10 +3317,22 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
 
              ie = build_x_compound_expr_from_vec (*init, "new initializer",
                                                   complain);
-             init_expr = cp_build_modify_expr (init_expr, INIT_EXPR, ie,
-                                               complain);
+             init_expr = cp_build_modify_expr (input_location, init_expr,
+                                               INIT_EXPR, ie, complain);
            }
-         stable = stabilize_init (init_expr, &init_preeval_expr);
+         /* If the initializer uses C++14 aggregate NSDMI that refer to the
+            object being initialized, replace them now and don't try to
+            preevaluate.  */
+         bool had_placeholder = false;
+         if (cxx_dialect >= cxx14
+             && !processing_template_decl
+             && TREE_CODE (init_expr) == INIT_EXPR)
+           TREE_OPERAND (init_expr, 1)
+             = replace_placeholders (TREE_OPERAND (init_expr, 1),
+                                     TREE_OPERAND (init_expr, 0),
+                                     &had_placeholder);
+         stable = (!had_placeholder
+                   && stabilize_init (init_expr, &init_preeval_expr));
        }
 
       if (init_expr == error_mark_node)
@@ -2890,7 +3346,7 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
         unambiguous matching deallocation function can be found,
         propagating the exception does not cause the object's memory to be
         freed.  */
-      if (flag_exceptions && ! use_java_new)
+      if (flag_exceptions)
        {
          enum tree_code dcode = array_p ? VEC_DELETE_EXPR : DELETE_EXPR;
          tree cleanup;
@@ -2995,7 +3451,7 @@ build_new_1 (vec<tree, va_gc> **placement, tree type, tree nelts,
     rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_preeval_expr, rval);
 
   /* A new-expression is never an lvalue.  */
-  gcc_assert (!lvalue_p (rval));
+  gcc_assert (!obvalue_p (rval));
 
   return convert (pointer_type, rval);
 }
@@ -3022,15 +3478,19 @@ build_new (vec<tree, va_gc> **placement, tree type, tree nelts,
   if (type == error_mark_node)
     return error_mark_node;
 
-  if (nelts == NULL_TREE && vec_safe_length (*init) == 1
+  if (nelts == NULL_TREE
       /* Don't do auto deduction where it might affect mangling.  */
       && (!processing_template_decl || at_function_scope_p ()))
     {
       tree auto_node = type_uses_auto (type);
       if (auto_node)
        {
-         tree d_init = (**init)[0];
-         d_init = resolve_nondeduced_context (d_init);
+         tree d_init = NULL_TREE;
+         if (vec_safe_length (*init) == 1)
+           {
+             d_init = (**init)[0];
+             d_init = resolve_nondeduced_context (d_init, complain);
+           }
          type = do_auto_deduction (type, d_init, auto_node);
        }
     }
@@ -3048,7 +3508,17 @@ build_new (vec<tree, va_gc> **placement, tree type, tree nelts,
       orig_placement = make_tree_vector_copy (*placement);
       orig_nelts = nelts;
       if (*init)
-       orig_init = make_tree_vector_copy (*init);
+       {
+         orig_init = make_tree_vector_copy (*init);
+         /* Also copy any CONSTRUCTORs in *init, since reshape_init and
+            digest_init clobber them in place.  */
+         for (unsigned i = 0; i < orig_init->length(); ++i)
+           {
+             tree e = (**init)[i];
+             if (TREE_CODE (e) == CONSTRUCTOR)
+               (**init)[i] = copy_node (e);
+           }
+       }
 
       make_args_non_dependent (*placement);
       if (nelts)
@@ -3065,6 +3535,24 @@ build_new (vec<tree, va_gc> **placement, tree type, tree nelts,
           else
             return error_mark_node;
         }
+
+      /* Try to determine the constant value only for the purposes
+        of the diagnostic below but continue to use the original
+        value and handle const folding later.  */
+      const_tree cst_nelts = maybe_constant_value (nelts);
+
+      /* The expression in a noptr-new-declarator is erroneous if it's of
+        non-class type and its value before converting to std::size_t is
+        less than zero. ... If the expression is a constant expression,
+        the program is ill-fomed.  */
+      if (INTEGER_CST == TREE_CODE (cst_nelts)
+         && tree_int_cst_sgn (cst_nelts) == -1)
+       {
+         if (complain & tf_error)
+           error ("size of array is negative");
+         return error_mark_node;
+       }
+
       nelts = mark_rvalue_use (nelts);
       nelts = cp_save_expr (cp_convert (sizetype, nelts, complain));
     }
@@ -3113,59 +3601,6 @@ build_new (vec<tree, va_gc> **placement, tree type, tree nelts,
 
   return rval;
 }
-
-/* Given a Java class, return a decl for the corresponding java.lang.Class.  */
-
-tree
-build_java_class_ref (tree type)
-{
-  tree name = NULL_TREE, class_decl;
-  static tree CL_suffix = NULL_TREE;
-  if (CL_suffix == NULL_TREE)
-    CL_suffix = get_identifier("class$");
-  if (jclass_node == NULL_TREE)
-    {
-      jclass_node = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
-      if (jclass_node == NULL_TREE)
-       {
-         error ("call to Java constructor, while %<jclass%> undefined");
-         return error_mark_node;
-       }
-      jclass_node = TREE_TYPE (jclass_node);
-    }
-
-  /* Mangle the class$ field.  */
-  {
-    tree field;
-    for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
-      if (DECL_NAME (field) == CL_suffix)
-       {
-         mangle_decl (field);
-         name = DECL_ASSEMBLER_NAME (field);
-         break;
-       }
-    if (!field)
-      {
-       error ("can%'t find %<class$%> in %qT", type);
-       return error_mark_node;
-      }
-  }
-
-  class_decl = IDENTIFIER_GLOBAL_VALUE (name);
-  if (class_decl == NULL_TREE)
-    {
-      class_decl = build_decl (input_location,
-                              VAR_DECL, name, TREE_TYPE (jclass_node));
-      TREE_STATIC (class_decl) = 1;
-      DECL_EXTERNAL (class_decl) = 1;
-      TREE_PUBLIC (class_decl) = 1;
-      DECL_ARTIFICIAL (class_decl) = 1;
-      DECL_IGNORED_P (class_decl) = 1;
-      pushdecl_top_level (class_decl);
-      make_decl_rtl (class_decl);
-    }
-  return class_decl;
-}
 \f
 static tree
 build_vec_delete_1 (tree base, tree maxindex, tree type,
@@ -3239,11 +3674,11 @@ build_vec_delete_1 (tree base, tree maxindex, tree type,
 
   /* The below is short by the cookie size.  */
   virtual_size = size_binop (MULT_EXPR, size_exp,
-                            convert (sizetype, maxindex));
+                            fold_convert (sizetype, maxindex));
 
   tbase = create_temporary_var (ptype);
   tbase_init
-    = cp_build_modify_expr (tbase, NOP_EXPR,
+    = cp_build_modify_expr (input_location, tbase, NOP_EXPR,
                            fold_build_pointer_plus_loc (input_location,
                                                         fold_convert (ptype,
                                                                       base),
@@ -3260,7 +3695,7 @@ build_vec_delete_1 (tree base, tree maxindex, tree type,
                         fold_convert (ptype, base)));
   tmp = fold_build1_loc (input_location, NEGATE_EXPR, sizetype, size_exp);
   tmp = fold_build_pointer_plus (tbase, tmp);
-  tmp = cp_build_modify_expr (tbase, NOP_EXPR, tmp, complain);
+  tmp = cp_build_modify_expr (input_location, tbase, NOP_EXPR, tmp, complain);
   if (tmp == error_mark_node)
     return error_mark_node;
   body = build_compound_expr (input_location, body, tmp);
@@ -3282,7 +3717,7 @@ build_vec_delete_1 (tree base, tree maxindex, tree type,
 
       /* The below is short by the cookie size.  */
       virtual_size = size_binop (MULT_EXPR, size_exp,
-                                convert (sizetype, maxindex));
+                                fold_convert (sizetype, maxindex));
 
       if (! TYPE_VEC_NEW_USES_COOKIE (type))
        /* no header */
@@ -3319,18 +3754,22 @@ build_vec_delete_1 (tree base, tree maxindex, tree type,
   else if (!body)
     body = deallocate_expr;
   else
-    body = build_compound_expr (input_location, body, deallocate_expr);
+    /* The delete operator mist be called, even if a destructor
+       throws.  */
+    body = build2 (TRY_FINALLY_EXPR, void_type_node, body, deallocate_expr);
 
   if (!body)
     body = integer_zero_node;
 
   /* Outermost wrapper: If pointer is null, punt.  */
-  body = fold_build3_loc (input_location, COND_EXPR, void_type_node,
-                     fold_build2_loc (input_location,
-                                  NE_EXPR, boolean_type_node, base,
-                                  convert (TREE_TYPE (base),
-                                           nullptr_node)),
-                     body, integer_zero_node);
+  tree cond = build2_loc (input_location, NE_EXPR, boolean_type_node, base,
+                         fold_convert (TREE_TYPE (base), nullptr_node));
+  /* This is a compiler generated comparison, don't emit
+     e.g. -Wnonnull-compare warning for it.  */
+  TREE_NO_WARNING (cond) = 1;
+  body = build3_loc (input_location, COND_EXPR, void_type_node,
+                    cond, body, integer_zero_node);
+  COND_EXPR_IS_VEC_DELETE (body) = true;
   body = build1 (NOP_EXPR, void_type_node, body);
 
   if (controller)
@@ -3378,8 +3817,8 @@ get_temp_regvar (tree type, tree init)
   decl = create_temporary_var (type);
   add_decl_expr (decl);
 
-  finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init, 
-                                         tf_warning_or_error));
+  finish_expr_stmt (cp_build_modify_expr (input_location, decl, INIT_EXPR,
+                                         init, tf_warning_or_error));
 
   return decl;
 }
@@ -3391,7 +3830,7 @@ static bool
 vec_copy_assign_is_trivial (tree inner_elt_type, tree init)
 {
   tree fromtype = inner_elt_type;
-  if (real_lvalue_p (init))
+  if (lvalue_p (init))
     fromtype = cp_build_reference_type (fromtype, /*rval*/false);
   return is_trivially_xible (MODIFY_EXPR, inner_elt_type, fromtype);
 }
@@ -3451,6 +3890,7 @@ build_vec_init (tree base, tree maxindex, tree init,
   if (maxindex == NULL_TREE || maxindex == error_mark_node)
     return error_mark_node;
 
+  maxindex = maybe_constant_value (maxindex);
   if (explicit_value_init_p)
     gcc_assert (!init);
 
@@ -3462,6 +3902,18 @@ build_vec_init (tree base, tree maxindex, tree init,
       && from_array != 2)
     init = TARGET_EXPR_INITIAL (init);
 
+  bool direct_init = false;
+  if (from_array && init && BRACE_ENCLOSED_INITIALIZER_P (init)
+      && CONSTRUCTOR_NELTS (init) == 1)
+    {
+      tree elt = CONSTRUCTOR_ELT (init, 0)->value;
+      if (TREE_CODE (TREE_TYPE (elt)) == ARRAY_TYPE)
+       {
+         direct_init = DIRECT_LIST_INIT_P (init);
+         init = elt;
+       }
+    }
+
   /* If we have a braced-init-list, make sure that the array
      is big enough for all the initializers.  */
   bool length_check = (init && TREE_CODE (init) == CONSTRUCTOR
@@ -3492,6 +3944,8 @@ build_vec_init (tree base, tree maxindex, tree init,
     }
 
   maxindex = cp_convert (ptrdiff_type_node, maxindex, complain);
+  maxindex = fold_simple (maxindex);
+
   if (TREE_CODE (atype) == ARRAY_TYPE)
     {
       ptype = build_pointer_type (type);
@@ -3640,8 +4094,8 @@ build_vec_init (tree base, tree maxindex, tree init,
          else if (MAYBE_CLASS_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
            one_init = build_aggr_init (baseref, elt, 0, complain);
          else
-           one_init = cp_build_modify_expr (baseref, NOP_EXPR,
-                                            elt, complain);
+           one_init = cp_build_modify_expr (input_location, baseref,
+                                            NOP_EXPR, elt, complain);
          if (one_init == error_mark_node)
            errors = true;
          if (try_const)
@@ -3672,13 +4126,14 @@ build_vec_init (tree base, tree maxindex, tree init,
            finish_expr_stmt (one_init);
          current_stmt_tree ()->stmts_are_full_exprs_p = 0;
 
-         one_init = cp_build_unary_op (PREINCREMENT_EXPR, base, 0, complain);
+         one_init = cp_build_unary_op (PREINCREMENT_EXPR, base, false,
+                                       complain);
          if (one_init == error_mark_node)
            errors = true;
          else
            finish_expr_stmt (one_init);
 
-         one_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
+         one_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, false,
                                        complain);
          if (one_init == error_mark_node)
            errors = true;
@@ -3720,18 +4175,18 @@ build_vec_init (tree base, tree maxindex, tree init,
                && (num_initialized_elts
                    == tree_to_shwi (maxindex) + 1))))
     {
-      /* If the ITERATOR is equal to -1, then we don't have to loop;
+      /* If the ITERATOR is lesser or equal to -1, then we don't have to loop;
         we've already initialized all the elements.  */
       tree for_stmt;
       tree elt_init;
       tree to;
 
       for_stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
-      finish_for_init_stmt (for_stmt);
-      finish_for_cond (build2 (NE_EXPR, boolean_type_node, iterator,
+      finish_init_stmt (for_stmt);
+      finish_for_cond (build2 (GT_EXPR, boolean_type_node, iterator,
                               build_int_cst (TREE_TYPE (iterator), -1)),
                       for_stmt, false);
-      elt_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
+      elt_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, false,
                                    complain);
       if (elt_init == error_mark_node)
        errors = true;
@@ -3763,17 +4218,19 @@ build_vec_init (tree base, tree maxindex, tree init,
              from = build1 (INDIRECT_REF, itype, base2);
              if (xvalue)
                from = move (from);
+             if (direct_init)
+               from = build_tree_list (NULL_TREE, from);
            }
          else
            from = NULL_TREE;
 
          if (from_array == 2)
-           elt_init = cp_build_modify_expr (to, NOP_EXPR, from, 
-                                            complain);
+           elt_init = cp_build_modify_expr (input_location, to, NOP_EXPR,
+                                            from, complain);
          else if (type_build_ctor_call (type))
            elt_init = build_aggr_init (to, from, 0, complain);
          else if (from)
-           elt_init = cp_build_modify_expr (to, NOP_EXPR, from,
+           elt_init = cp_build_modify_expr (input_location, to, NOP_EXPR, from,
                                             complain);
          else
            gcc_unreachable ();
@@ -3848,10 +4305,10 @@ build_vec_init (tree base, tree maxindex, tree init,
        finish_expr_stmt (elt_init);
       current_stmt_tree ()->stmts_are_full_exprs_p = 0;
 
-      finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, 0,
+      finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, false,
                                            complain));
       if (base2)
-       finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base2, 0,
+       finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base2, false,
                                              complain));
 
       finish_for_stmt (for_stmt);
@@ -4035,12 +4492,12 @@ build_delete (tree otype, tree addr, special_function_kind auto_delete,
                    warning (OPT_Wdelete_non_virtual_dtor,
                             "deleting object of abstract class type %qT"
                             " which has non-virtual destructor"
-                            " will cause undefined behaviour", type);
+                            " will cause undefined behavior", type);
                  else
                    warning (OPT_Wdelete_non_virtual_dtor,
                             "deleting object of polymorphic class type %qT"
                             " which has non-virtual destructor"
-                            " might cause undefined behaviour", type);
+                            " might cause undefined behavior", type);
                }
            }
        }
@@ -4151,7 +4608,13 @@ build_delete (tree otype, tree addr, special_function_kind auto_delete,
       if (expr == error_mark_node)
        return error_mark_node;
       if (do_delete)
-       expr = build2 (COMPOUND_EXPR, void_type_node, expr, do_delete);
+       /* The delete operator must be called, regardless of whether
+          the destructor throws.
+
+          [expr.delete]/7 The deallocation function is called
+          regardless of whether the destructor for the object or some
+          element of the array throws an exception.  */
+       expr = build2 (TRY_FINALLY_EXPR, void_type_node, expr, do_delete);
 
       /* We need to calculate this before the dtor changes the vptr.  */
       if (head)
@@ -4163,11 +4626,15 @@ build_delete (tree otype, tree addr, special_function_kind auto_delete,
       else
        {
          /* Handle deleting a null pointer.  */
-         ifexp = fold (cp_build_binary_op (input_location,
-                                           NE_EXPR, addr, nullptr_node,
-                                           complain));
+         warning_sentinel s (warn_address);
+         ifexp = cp_build_binary_op (input_location, NE_EXPR, addr,
+                                     nullptr_node, complain);
          if (ifexp == error_mark_node)
            return error_mark_node;
+         /* This is a compiler generated comparison, don't emit
+            e.g. -Wnonnull-compare warning for it.  */
+         else if (TREE_CODE (ifexp) == NE_EXPR)
+           TREE_NO_WARNING (ifexp) = 1;
        }
 
       if (ifexp != integer_one_node)
@@ -4192,7 +4659,8 @@ push_base_cleanups (void)
   vec<tree, va_gc> *vbases;
 
   /* Run destructors for all virtual baseclasses.  */
-  if (CLASSTYPE_VBASECLASSES (current_class_type))
+  if (!ABSTRACT_CLASS_TYPE_P (current_class_type)
+      && CLASSTYPE_VBASECLASSES (current_class_type))
     {
       tree cond = (condition_conversion
                   (build2 (BIT_AND_EXPR, integer_type_node,