OSDN Git Service

PR c++/48909
[pf3gnuchains/gcc-fork.git] / gcc / cp / init.c
1 /* Handle initialization things in C++.
2    Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4    2011 Free Software Foundation, Inc.
5    Contributed by Michael Tiemann (tiemann@cygnus.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
22
23 /* High-level class interface.  */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "tree.h"
30 #include "cp-tree.h"
31 #include "flags.h"
32 #include "output.h"
33 #include "target.h"
34
35 static bool begin_init_stmts (tree *, tree *);
36 static tree finish_init_stmts (bool, tree, tree);
37 static void construct_virtual_base (tree, tree);
38 static void expand_aggr_init_1 (tree, tree, tree, tree, int, tsubst_flags_t);
39 static void expand_default_init (tree, tree, tree, tree, int, tsubst_flags_t);
40 static void perform_member_init (tree, tree);
41 static tree build_builtin_delete_call (tree);
42 static int member_init_ok_or_else (tree, tree, tree);
43 static void expand_virtual_init (tree, tree);
44 static tree sort_mem_initializers (tree, tree);
45 static tree initializing_context (tree);
46 static void expand_cleanup_for_base (tree, tree);
47 static tree dfs_initialize_vtbl_ptrs (tree, void *);
48 static tree build_field_list (tree, tree, int *);
49 static tree build_vtbl_address (tree);
50 static int diagnose_uninitialized_cst_or_ref_member_1 (tree, tree, bool, bool);
51
52 /* We are about to generate some complex initialization code.
53    Conceptually, it is all a single expression.  However, we may want
54    to include conditionals, loops, and other such statement-level
55    constructs.  Therefore, we build the initialization code inside a
56    statement-expression.  This function starts such an expression.
57    STMT_EXPR_P and COMPOUND_STMT_P are filled in by this function;
58    pass them back to finish_init_stmts when the expression is
59    complete.  */
60
61 static bool
62 begin_init_stmts (tree *stmt_expr_p, tree *compound_stmt_p)
63 {
64   bool is_global = !building_stmt_tree ();
65
66   *stmt_expr_p = begin_stmt_expr ();
67   *compound_stmt_p = begin_compound_stmt (BCS_NO_SCOPE);
68
69   return is_global;
70 }
71
72 /* Finish out the statement-expression begun by the previous call to
73    begin_init_stmts.  Returns the statement-expression itself.  */
74
75 static tree
76 finish_init_stmts (bool is_global, tree stmt_expr, tree compound_stmt)
77 {
78   finish_compound_stmt (compound_stmt);
79
80   stmt_expr = finish_stmt_expr (stmt_expr, true);
81
82   gcc_assert (!building_stmt_tree () == is_global);
83
84   return stmt_expr;
85 }
86
87 /* Constructors */
88
89 /* Called from initialize_vtbl_ptrs via dfs_walk.  BINFO is the base
90    which we want to initialize the vtable pointer for, DATA is
91    TREE_LIST whose TREE_VALUE is the this ptr expression.  */
92
93 static tree
94 dfs_initialize_vtbl_ptrs (tree binfo, void *data)
95 {
96   if (!TYPE_CONTAINS_VPTR_P (BINFO_TYPE (binfo)))
97     return dfs_skip_bases;
98
99   if (!BINFO_PRIMARY_P (binfo) || BINFO_VIRTUAL_P (binfo))
100     {
101       tree base_ptr = TREE_VALUE ((tree) data);
102
103       base_ptr = build_base_path (PLUS_EXPR, base_ptr, binfo, /*nonnull=*/1);
104
105       expand_virtual_init (binfo, base_ptr);
106     }
107
108   return NULL_TREE;
109 }
110
111 /* Initialize all the vtable pointers in the object pointed to by
112    ADDR.  */
113
114 void
115 initialize_vtbl_ptrs (tree addr)
116 {
117   tree list;
118   tree type;
119
120   type = TREE_TYPE (TREE_TYPE (addr));
121   list = build_tree_list (type, addr);
122
123   /* Walk through the hierarchy, initializing the vptr in each base
124      class.  We do these in pre-order because we can't find the virtual
125      bases for a class until we've initialized the vtbl for that
126      class.  */
127   dfs_walk_once (TYPE_BINFO (type), dfs_initialize_vtbl_ptrs, NULL, list);
128 }
129
130 /* Return an expression for the zero-initialization of an object with
131    type T.  This expression will either be a constant (in the case
132    that T is a scalar), or a CONSTRUCTOR (in the case that T is an
133    aggregate), or NULL (in the case that T does not require
134    initialization).  In either case, the value can be used as
135    DECL_INITIAL for a decl of the indicated TYPE; it is a valid static
136    initializer. If NELTS is non-NULL, and TYPE is an ARRAY_TYPE, NELTS
137    is the number of elements in the array.  If STATIC_STORAGE_P is
138    TRUE, initializers are only generated for entities for which
139    zero-initialization does not simply mean filling the storage with
140    zero bytes.  FIELD_SIZE, if non-NULL, is the bit size of the field,
141    subfields with bit positions at or above that bit size shouldn't
142    be added.  */
143
144 static tree
145 build_zero_init_1 (tree type, tree nelts, bool static_storage_p,
146                    tree field_size)
147 {
148   tree init = NULL_TREE;
149
150   /* [dcl.init]
151
152      To zero-initialize an object of type T means:
153
154      -- if T is a scalar type, the storage is set to the value of zero
155         converted to T.
156
157      -- if T is a non-union class type, the storage for each nonstatic
158         data member and each base-class subobject is zero-initialized.
159
160      -- if T is a union type, the storage for its first data member is
161         zero-initialized.
162
163      -- if T is an array type, the storage for each element is
164         zero-initialized.
165
166      -- if T is a reference type, no initialization is performed.  */
167
168   gcc_assert (nelts == NULL_TREE || TREE_CODE (nelts) == INTEGER_CST);
169
170   if (type == error_mark_node)
171     ;
172   else if (static_storage_p && zero_init_p (type))
173     /* In order to save space, we do not explicitly build initializers
174        for items that do not need them.  GCC's semantics are that
175        items with static storage duration that are not otherwise
176        initialized are initialized to zero.  */
177     ;
178   else if (SCALAR_TYPE_P (type))
179     init = convert (type, integer_zero_node);
180   else if (CLASS_TYPE_P (type))
181     {
182       tree field;
183       VEC(constructor_elt,gc) *v = NULL;
184
185       /* Iterate over the fields, building initializations.  */
186       for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
187         {
188           if (TREE_CODE (field) != FIELD_DECL)
189             continue;
190
191           /* Don't add virtual bases for base classes if they are beyond
192              the size of the current field, that means it is present
193              somewhere else in the object.  */
194           if (field_size)
195             {
196               tree bitpos = bit_position (field);
197               if (TREE_CODE (bitpos) == INTEGER_CST
198                   && !tree_int_cst_lt (bitpos, field_size))
199                 continue;
200             }
201
202           /* Note that for class types there will be FIELD_DECLs
203              corresponding to base classes as well.  Thus, iterating
204              over TYPE_FIELDs will result in correct initialization of
205              all of the subobjects.  */
206           if (!static_storage_p || !zero_init_p (TREE_TYPE (field)))
207             {
208               tree new_field_size
209                 = (DECL_FIELD_IS_BASE (field)
210                    && DECL_SIZE (field)
211                    && TREE_CODE (DECL_SIZE (field)) == INTEGER_CST)
212                   ? DECL_SIZE (field) : NULL_TREE;
213               tree value = build_zero_init_1 (TREE_TYPE (field),
214                                               /*nelts=*/NULL_TREE,
215                                               static_storage_p,
216                                               new_field_size);
217               if (value)
218                 CONSTRUCTOR_APPEND_ELT(v, field, value);
219             }
220
221           /* For unions, only the first field is initialized.  */
222           if (TREE_CODE (type) == UNION_TYPE)
223             break;
224         }
225
226       /* Build a constructor to contain the initializations.  */
227       init = build_constructor (type, v);
228     }
229   else if (TREE_CODE (type) == ARRAY_TYPE)
230     {
231       tree max_index;
232       VEC(constructor_elt,gc) *v = NULL;
233
234       /* Iterate over the array elements, building initializations.  */
235       if (nelts)
236         max_index = fold_build2_loc (input_location,
237                                  MINUS_EXPR, TREE_TYPE (nelts),
238                                  nelts, integer_one_node);
239       else
240         max_index = array_type_nelts (type);
241
242       /* If we have an error_mark here, we should just return error mark
243          as we don't know the size of the array yet.  */
244       if (max_index == error_mark_node)
245         return error_mark_node;
246       gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
247
248       /* A zero-sized array, which is accepted as an extension, will
249          have an upper bound of -1.  */
250       if (!tree_int_cst_equal (max_index, integer_minus_one_node))
251         {
252           constructor_elt *ce;
253
254           v = VEC_alloc (constructor_elt, gc, 1);
255           ce = VEC_quick_push (constructor_elt, v, NULL);
256
257           /* If this is a one element array, we just use a regular init.  */
258           if (tree_int_cst_equal (size_zero_node, max_index))
259             ce->index = size_zero_node;
260           else
261             ce->index = build2 (RANGE_EXPR, sizetype, size_zero_node,
262                                 max_index);
263
264           ce->value = build_zero_init_1 (TREE_TYPE (type),
265                                          /*nelts=*/NULL_TREE,
266                                          static_storage_p, NULL_TREE);
267         }
268
269       /* Build a constructor to contain the initializations.  */
270       init = build_constructor (type, v);
271     }
272   else if (TREE_CODE (type) == VECTOR_TYPE)
273     init = build_zero_cst (type);
274   else
275     gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
276
277   /* In all cases, the initializer is a constant.  */
278   if (init)
279     TREE_CONSTANT (init) = 1;
280
281   return init;
282 }
283
284 /* Return an expression for the zero-initialization of an object with
285    type T.  This expression will either be a constant (in the case
286    that T is a scalar), or a CONSTRUCTOR (in the case that T is an
287    aggregate), or NULL (in the case that T does not require
288    initialization).  In either case, the value can be used as
289    DECL_INITIAL for a decl of the indicated TYPE; it is a valid static
290    initializer. If NELTS is non-NULL, and TYPE is an ARRAY_TYPE, NELTS
291    is the number of elements in the array.  If STATIC_STORAGE_P is
292    TRUE, initializers are only generated for entities for which
293    zero-initialization does not simply mean filling the storage with
294    zero bytes.  */
295
296 tree
297 build_zero_init (tree type, tree nelts, bool static_storage_p)
298 {
299   return build_zero_init_1 (type, nelts, static_storage_p, NULL_TREE);
300 }
301
302 /* Return a suitable initializer for value-initializing an object of type
303    TYPE, as described in [dcl.init].  */
304
305 tree
306 build_value_init (tree type, tsubst_flags_t complain)
307 {
308   /* [dcl.init]
309
310      To value-initialize an object of type T means:
311
312      - if T is a class type (clause 9) with a user-provided constructor
313        (12.1), then the default constructor for T is called (and the
314        initialization is ill-formed if T has no accessible default
315        constructor);
316
317      - if T is a non-union class type without a user-provided constructor,
318        then every non-static data member and base-class component of T is
319        value-initialized;92)
320
321      - if T is an array type, then each element is value-initialized;
322
323      - otherwise, the object is zero-initialized.
324
325      A program that calls for default-initialization or
326      value-initialization of an entity of reference type is ill-formed.
327
328      92) Value-initialization for such a class object may be implemented by
329      zero-initializing the object and then calling the default
330      constructor.  */
331
332   /* The AGGR_INIT_EXPR tweaking below breaks in templates.  */
333   gcc_assert (!processing_template_decl);
334
335   if (CLASS_TYPE_P (type))
336     {
337       if (type_has_user_provided_constructor (type))
338         return build_aggr_init_expr
339           (type,
340            build_special_member_call (NULL_TREE, complete_ctor_identifier,
341                                       NULL, type, LOOKUP_NORMAL,
342                                       complain),
343            complain);
344       else if (TYPE_NEEDS_CONSTRUCTING (type))
345         {
346           /* This is a class that needs constructing, but doesn't have
347              a user-provided constructor.  So we need to zero-initialize
348              the object and then call the implicitly defined ctor.
349              This will be handled in simplify_aggr_init_expr.  */
350           tree ctor = build_special_member_call
351             (NULL_TREE, complete_ctor_identifier,
352              NULL, type, LOOKUP_NORMAL, complain);
353           if (ctor != error_mark_node)
354             {
355               ctor = build_aggr_init_expr (type, ctor, complain);
356               AGGR_INIT_ZERO_FIRST (ctor) = 1;
357             }
358           return ctor;
359         }
360     }
361   return build_value_init_noctor (type, complain);
362 }
363
364 /* Like build_value_init, but don't call the constructor for TYPE.  Used
365    for base initializers.  */
366
367 tree
368 build_value_init_noctor (tree type, tsubst_flags_t complain)
369 {
370   /* FIXME the class and array cases should just use digest_init once it is
371      SFINAE-enabled.  */
372   if (CLASS_TYPE_P (type))
373     {
374       gcc_assert (!TYPE_NEEDS_CONSTRUCTING (type));
375         
376       if (TREE_CODE (type) != UNION_TYPE)
377         {
378           tree field;
379           VEC(constructor_elt,gc) *v = NULL;
380
381           /* Iterate over the fields, building initializations.  */
382           for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
383             {
384               tree ftype, value;
385
386               if (TREE_CODE (field) != FIELD_DECL)
387                 continue;
388
389               ftype = TREE_TYPE (field);
390
391               /* We could skip vfields and fields of types with
392                  user-defined constructors, but I think that won't improve
393                  performance at all; it should be simpler in general just
394                  to zero out the entire object than try to only zero the
395                  bits that actually need it.  */
396
397               /* Note that for class types there will be FIELD_DECLs
398                  corresponding to base classes as well.  Thus, iterating
399                  over TYPE_FIELDs will result in correct initialization of
400                  all of the subobjects.  */
401               value = build_value_init (ftype, complain);
402
403               if (value == error_mark_node)
404                 return error_mark_node;
405
406               if (value)
407                 CONSTRUCTOR_APPEND_ELT(v, field, value);
408             }
409
410           /* Build a constructor to contain the zero- initializations.  */
411           return build_constructor (type, v);
412         }
413     }
414   else if (TREE_CODE (type) == ARRAY_TYPE)
415     {
416       VEC(constructor_elt,gc) *v = NULL;
417
418       /* Iterate over the array elements, building initializations.  */
419       tree max_index = array_type_nelts (type);
420
421       /* If we have an error_mark here, we should just return error mark
422          as we don't know the size of the array yet.  */
423       if (max_index == error_mark_node)
424         {
425           if (complain & tf_error)
426             error ("cannot value-initialize array of unknown bound %qT",
427                    type);
428           return error_mark_node;
429         }
430       gcc_assert (TREE_CODE (max_index) == INTEGER_CST);
431
432       /* A zero-sized array, which is accepted as an extension, will
433          have an upper bound of -1.  */
434       if (!tree_int_cst_equal (max_index, integer_minus_one_node))
435         {
436           constructor_elt *ce;
437
438           v = VEC_alloc (constructor_elt, gc, 1);
439           ce = VEC_quick_push (constructor_elt, v, NULL);
440
441           /* If this is a one element array, we just use a regular init.  */
442           if (tree_int_cst_equal (size_zero_node, max_index))
443             ce->index = size_zero_node;
444           else
445             ce->index = build2 (RANGE_EXPR, sizetype, size_zero_node,
446                                 max_index);
447
448           ce->value = build_value_init (TREE_TYPE (type), complain);
449
450           if (ce->value == error_mark_node)
451             return error_mark_node;
452
453           /* We shouldn't have gotten here for anything that would need
454              non-trivial initialization, and gimplify_init_ctor_preeval
455              would need to be fixed to allow it.  */
456           gcc_assert (TREE_CODE (ce->value) != TARGET_EXPR
457                       && TREE_CODE (ce->value) != AGGR_INIT_EXPR);
458         }
459
460       /* Build a constructor to contain the initializations.  */
461       return build_constructor (type, v);
462     }
463   else if (TREE_CODE (type) == FUNCTION_TYPE)
464     {
465       if (complain & tf_error)
466         error ("value-initialization of function type %qT", type);
467       return error_mark_node;
468     }
469   else if (TREE_CODE (type) == REFERENCE_TYPE)
470     {
471       if (complain & tf_error)
472         error ("value-initialization of reference type %qT", type);
473       return error_mark_node;
474     }
475
476   return build_zero_init (type, NULL_TREE, /*static_storage_p=*/false);
477 }
478
479 /* Initialize MEMBER, a FIELD_DECL, with INIT, a TREE_LIST of
480    arguments.  If TREE_LIST is void_type_node, an empty initializer
481    list was given; if NULL_TREE no initializer was given.  */
482
483 static void
484 perform_member_init (tree member, tree init)
485 {
486   tree decl;
487   tree type = TREE_TYPE (member);
488
489   /* Effective C++ rule 12 requires that all data members be
490      initialized.  */
491   if (warn_ecpp && init == NULL_TREE && TREE_CODE (type) != ARRAY_TYPE)
492     warning_at (DECL_SOURCE_LOCATION (current_function_decl), OPT_Weffc__,
493                 "%qD should be initialized in the member initialization list",
494                 member);
495
496   /* Get an lvalue for the data member.  */
497   decl = build_class_member_access_expr (current_class_ref, member,
498                                          /*access_path=*/NULL_TREE,
499                                          /*preserve_reference=*/true,
500                                          tf_warning_or_error);
501   if (decl == error_mark_node)
502     return;
503
504   if (init == void_type_node)
505     {
506       /* mem() means value-initialization.  */
507       if (TREE_CODE (type) == ARRAY_TYPE)
508         {
509           init = build_vec_init_expr (type, init, tf_warning_or_error);
510           init = build2 (INIT_EXPR, type, decl, init);
511           finish_expr_stmt (init);
512         }
513       else
514         {
515           tree value = build_value_init (type, tf_warning_or_error);
516           if (value == error_mark_node)
517             return;
518           init = build2 (INIT_EXPR, type, decl, value);
519           finish_expr_stmt (init);
520         }
521     }
522   /* Deal with this here, as we will get confused if we try to call the
523      assignment op for an anonymous union.  This can happen in a
524      synthesized copy constructor.  */
525   else if (ANON_AGGR_TYPE_P (type))
526     {
527       if (init)
528         {
529           init = build2 (INIT_EXPR, type, decl, TREE_VALUE (init));
530           finish_expr_stmt (init);
531         }
532     }
533   else if (TYPE_NEEDS_CONSTRUCTING (type))
534     {
535       if (TREE_CODE (type) == ARRAY_TYPE)
536         {
537           if (init)
538             {
539               gcc_assert (TREE_CHAIN (init) == NULL_TREE);
540               init = TREE_VALUE (init);
541             }
542           if (init == NULL_TREE
543               || same_type_ignoring_top_level_qualifiers_p (type,
544                                                             TREE_TYPE (init)))
545             {
546               init = build_vec_init_expr (type, init, tf_warning_or_error);
547               init = build2 (INIT_EXPR, type, decl, init);
548               finish_expr_stmt (init);
549             }
550           else
551             error ("invalid initializer for array member %q#D", member);
552         }
553       else
554         {
555           int flags = LOOKUP_NORMAL;
556           if (DECL_DEFAULTED_FN (current_function_decl))
557             flags |= LOOKUP_DEFAULTED;
558           if (CP_TYPE_CONST_P (type)
559               && init == NULL_TREE
560               && !type_has_user_provided_default_constructor (type))
561             /* TYPE_NEEDS_CONSTRUCTING can be set just because we have a
562                vtable; still give this diagnostic.  */
563             permerror (DECL_SOURCE_LOCATION (current_function_decl),
564                        "uninitialized member %qD with %<const%> type %qT",
565                        member, type);
566           finish_expr_stmt (build_aggr_init (decl, init, flags,
567                                              tf_warning_or_error));
568         }
569     }
570   else
571     {
572       if (init == NULL_TREE)
573         {
574           tree core_type;
575           /* member traversal: note it leaves init NULL */
576           if (TREE_CODE (type) == REFERENCE_TYPE)
577             permerror (DECL_SOURCE_LOCATION (current_function_decl),
578                        "uninitialized reference member %qD",
579                        member);
580           else if (CP_TYPE_CONST_P (type))
581             permerror (DECL_SOURCE_LOCATION (current_function_decl),
582                        "uninitialized member %qD with %<const%> type %qT",
583                        member, type);
584
585           core_type = strip_array_types (type);
586
587           if (DECL_DECLARED_CONSTEXPR_P (current_function_decl)
588               && !type_has_constexpr_default_constructor (core_type))
589             {
590               if (!DECL_TEMPLATE_INSTANTIATION (current_function_decl))
591                 error ("uninitialized member %qD in %<constexpr%> constructor",
592                        member);
593               DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
594             }
595
596           if (CLASS_TYPE_P (core_type)
597               && (CLASSTYPE_READONLY_FIELDS_NEED_INIT (core_type)
598                   || CLASSTYPE_REF_FIELDS_NEED_INIT (core_type)))
599             diagnose_uninitialized_cst_or_ref_member (core_type,
600                                                       /*using_new=*/false,
601                                                       /*complain=*/true);
602         }
603       else if (TREE_CODE (init) == TREE_LIST)
604         /* There was an explicit member initialization.  Do some work
605            in that case.  */
606         init = build_x_compound_expr_from_list (init, ELK_MEM_INIT,
607                                                 tf_warning_or_error);
608
609       if (init)
610         finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init,
611                                                 tf_warning_or_error));
612     }
613
614   if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
615     {
616       tree expr;
617
618       expr = build_class_member_access_expr (current_class_ref, member,
619                                              /*access_path=*/NULL_TREE,
620                                              /*preserve_reference=*/false,
621                                              tf_warning_or_error);
622       expr = build_delete (type, expr, sfk_complete_destructor,
623                            LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0,
624                            tf_warning_or_error);
625
626       if (expr != error_mark_node)
627         finish_eh_cleanup (expr);
628     }
629 }
630
631 /* Returns a TREE_LIST containing (as the TREE_PURPOSE of each node) all
632    the FIELD_DECLs on the TYPE_FIELDS list for T, in reverse order.  */
633
634 static tree
635 build_field_list (tree t, tree list, int *uses_unions_p)
636 {
637   tree fields;
638
639   *uses_unions_p = 0;
640
641   /* Note whether or not T is a union.  */
642   if (TREE_CODE (t) == UNION_TYPE)
643     *uses_unions_p = 1;
644
645   for (fields = TYPE_FIELDS (t); fields; fields = DECL_CHAIN (fields))
646     {
647       tree fieldtype;
648
649       /* Skip CONST_DECLs for enumeration constants and so forth.  */
650       if (TREE_CODE (fields) != FIELD_DECL || DECL_ARTIFICIAL (fields))
651         continue;
652
653       fieldtype = TREE_TYPE (fields);
654       /* Keep track of whether or not any fields are unions.  */
655       if (TREE_CODE (fieldtype) == UNION_TYPE)
656         *uses_unions_p = 1;
657
658       /* For an anonymous struct or union, we must recursively
659          consider the fields of the anonymous type.  They can be
660          directly initialized from the constructor.  */
661       if (ANON_AGGR_TYPE_P (fieldtype))
662         {
663           /* Add this field itself.  Synthesized copy constructors
664              initialize the entire aggregate.  */
665           list = tree_cons (fields, NULL_TREE, list);
666           /* And now add the fields in the anonymous aggregate.  */
667           list = build_field_list (fieldtype, list, uses_unions_p);
668         }
669       /* Add this field.  */
670       else if (DECL_NAME (fields))
671         list = tree_cons (fields, NULL_TREE, list);
672     }
673
674   return list;
675 }
676
677 /* The MEM_INITS are a TREE_LIST.  The TREE_PURPOSE of each list gives
678    a FIELD_DECL or BINFO in T that needs initialization.  The
679    TREE_VALUE gives the initializer, or list of initializer arguments.
680
681    Return a TREE_LIST containing all of the initializations required
682    for T, in the order in which they should be performed.  The output
683    list has the same format as the input.  */
684
685 static tree
686 sort_mem_initializers (tree t, tree mem_inits)
687 {
688   tree init;
689   tree base, binfo, base_binfo;
690   tree sorted_inits;
691   tree next_subobject;
692   VEC(tree,gc) *vbases;
693   int i;
694   int uses_unions_p;
695
696   /* Build up a list of initializations.  The TREE_PURPOSE of entry
697      will be the subobject (a FIELD_DECL or BINFO) to initialize.  The
698      TREE_VALUE will be the constructor arguments, or NULL if no
699      explicit initialization was provided.  */
700   sorted_inits = NULL_TREE;
701
702   /* Process the virtual bases.  */
703   for (vbases = CLASSTYPE_VBASECLASSES (t), i = 0;
704        VEC_iterate (tree, vbases, i, base); i++)
705     sorted_inits = tree_cons (base, NULL_TREE, sorted_inits);
706
707   /* Process the direct bases.  */
708   for (binfo = TYPE_BINFO (t), i = 0;
709        BINFO_BASE_ITERATE (binfo, i, base_binfo); ++i)
710     if (!BINFO_VIRTUAL_P (base_binfo))
711       sorted_inits = tree_cons (base_binfo, NULL_TREE, sorted_inits);
712
713   /* Process the non-static data members.  */
714   sorted_inits = build_field_list (t, sorted_inits, &uses_unions_p);
715   /* Reverse the entire list of initializations, so that they are in
716      the order that they will actually be performed.  */
717   sorted_inits = nreverse (sorted_inits);
718
719   /* If the user presented the initializers in an order different from
720      that in which they will actually occur, we issue a warning.  Keep
721      track of the next subobject which can be explicitly initialized
722      without issuing a warning.  */
723   next_subobject = sorted_inits;
724
725   /* Go through the explicit initializers, filling in TREE_PURPOSE in
726      the SORTED_INITS.  */
727   for (init = mem_inits; init; init = TREE_CHAIN (init))
728     {
729       tree subobject;
730       tree subobject_init;
731
732       subobject = TREE_PURPOSE (init);
733
734       /* If the explicit initializers are in sorted order, then
735          SUBOBJECT will be NEXT_SUBOBJECT, or something following
736          it.  */
737       for (subobject_init = next_subobject;
738            subobject_init;
739            subobject_init = TREE_CHAIN (subobject_init))
740         if (TREE_PURPOSE (subobject_init) == subobject)
741           break;
742
743       /* Issue a warning if the explicit initializer order does not
744          match that which will actually occur.
745          ??? Are all these on the correct lines?  */
746       if (warn_reorder && !subobject_init)
747         {
748           if (TREE_CODE (TREE_PURPOSE (next_subobject)) == FIELD_DECL)
749             warning (OPT_Wreorder, "%q+D will be initialized after",
750                      TREE_PURPOSE (next_subobject));
751           else
752             warning (OPT_Wreorder, "base %qT will be initialized after",
753                      TREE_PURPOSE (next_subobject));
754           if (TREE_CODE (subobject) == FIELD_DECL)
755             warning (OPT_Wreorder, "  %q+#D", subobject);
756           else
757             warning (OPT_Wreorder, "  base %qT", subobject);
758           warning_at (DECL_SOURCE_LOCATION (current_function_decl),
759                       OPT_Wreorder, "  when initialized here");
760         }
761
762       /* Look again, from the beginning of the list.  */
763       if (!subobject_init)
764         {
765           subobject_init = sorted_inits;
766           while (TREE_PURPOSE (subobject_init) != subobject)
767             subobject_init = TREE_CHAIN (subobject_init);
768         }
769
770       /* It is invalid to initialize the same subobject more than
771          once.  */
772       if (TREE_VALUE (subobject_init))
773         {
774           if (TREE_CODE (subobject) == FIELD_DECL)
775             error_at (DECL_SOURCE_LOCATION (current_function_decl),
776                       "multiple initializations given for %qD",
777                       subobject);
778           else
779             error_at (DECL_SOURCE_LOCATION (current_function_decl),
780                       "multiple initializations given for base %qT",
781                       subobject);
782         }
783
784       /* Record the initialization.  */
785       TREE_VALUE (subobject_init) = TREE_VALUE (init);
786       next_subobject = subobject_init;
787     }
788
789   /* [class.base.init]
790
791      If a ctor-initializer specifies more than one mem-initializer for
792      multiple members of the same union (including members of
793      anonymous unions), the ctor-initializer is ill-formed.
794
795      Here we also splice out uninitialized union members.  */
796   if (uses_unions_p)
797     {
798       tree last_field = NULL_TREE;
799       tree *p;
800       for (p = &sorted_inits; *p; )
801         {
802           tree field;
803           tree ctx;
804           int done;
805
806           init = *p;
807
808           field = TREE_PURPOSE (init);
809
810           /* Skip base classes.  */
811           if (TREE_CODE (field) != FIELD_DECL)
812             goto next;
813
814           /* If this is an anonymous union with no explicit initializer,
815              splice it out.  */
816           if (!TREE_VALUE (init) && ANON_UNION_TYPE_P (TREE_TYPE (field)))
817             goto splice;
818
819           /* See if this field is a member of a union, or a member of a
820              structure contained in a union, etc.  */
821           for (ctx = DECL_CONTEXT (field);
822                !same_type_p (ctx, t);
823                ctx = TYPE_CONTEXT (ctx))
824             if (TREE_CODE (ctx) == UNION_TYPE)
825               break;
826           /* If this field is not a member of a union, skip it.  */
827           if (TREE_CODE (ctx) != UNION_TYPE)
828             goto next;
829
830           /* If this union member has no explicit initializer, splice
831              it out.  */
832           if (!TREE_VALUE (init))
833             goto splice;
834
835           /* It's only an error if we have two initializers for the same
836              union type.  */
837           if (!last_field)
838             {
839               last_field = field;
840               goto next;
841             }
842
843           /* See if LAST_FIELD and the field initialized by INIT are
844              members of the same union.  If so, there's a problem,
845              unless they're actually members of the same structure
846              which is itself a member of a union.  For example, given:
847
848                union { struct { int i; int j; }; };
849
850              initializing both `i' and `j' makes sense.  */
851           ctx = DECL_CONTEXT (field);
852           done = 0;
853           do
854             {
855               tree last_ctx;
856
857               last_ctx = DECL_CONTEXT (last_field);
858               while (1)
859                 {
860                   if (same_type_p (last_ctx, ctx))
861                     {
862                       if (TREE_CODE (ctx) == UNION_TYPE)
863                         error_at (DECL_SOURCE_LOCATION (current_function_decl),
864                                   "initializations for multiple members of %qT",
865                                   last_ctx);
866                       done = 1;
867                       break;
868                     }
869
870                   if (same_type_p (last_ctx, t))
871                     break;
872
873                   last_ctx = TYPE_CONTEXT (last_ctx);
874                 }
875
876               /* If we've reached the outermost class, then we're
877                  done.  */
878               if (same_type_p (ctx, t))
879                 break;
880
881               ctx = TYPE_CONTEXT (ctx);
882             }
883           while (!done);
884
885           last_field = field;
886
887         next:
888           p = &TREE_CHAIN (*p);
889           continue;
890         splice:
891           *p = TREE_CHAIN (*p);
892           continue;
893         }
894     }
895
896   return sorted_inits;
897 }
898
899 /* Initialize all bases and members of CURRENT_CLASS_TYPE.  MEM_INITS
900    is a TREE_LIST giving the explicit mem-initializer-list for the
901    constructor.  The TREE_PURPOSE of each entry is a subobject (a
902    FIELD_DECL or a BINFO) of the CURRENT_CLASS_TYPE.  The TREE_VALUE
903    is a TREE_LIST giving the arguments to the constructor or
904    void_type_node for an empty list of arguments.  */
905
906 void
907 emit_mem_initializers (tree mem_inits)
908 {
909   int flags = LOOKUP_NORMAL;
910
911   /* We will already have issued an error message about the fact that
912      the type is incomplete.  */
913   if (!COMPLETE_TYPE_P (current_class_type))
914     return;
915
916   if (DECL_DEFAULTED_FN (current_function_decl))
917     flags |= LOOKUP_DEFAULTED;
918
919   /* Sort the mem-initializers into the order in which the
920      initializations should be performed.  */
921   mem_inits = sort_mem_initializers (current_class_type, mem_inits);
922
923   in_base_initializer = 1;
924
925   /* Initialize base classes.  */
926   while (mem_inits
927          && TREE_CODE (TREE_PURPOSE (mem_inits)) != FIELD_DECL)
928     {
929       tree subobject = TREE_PURPOSE (mem_inits);
930       tree arguments = TREE_VALUE (mem_inits);
931
932       if (arguments == NULL_TREE)
933         {
934           /* If these initializations are taking place in a copy constructor,
935              the base class should probably be explicitly initialized if there
936              is a user-defined constructor in the base class (other than the
937              default constructor, which will be called anyway).  */
938           if (extra_warnings
939               && DECL_COPY_CONSTRUCTOR_P (current_function_decl)
940               && type_has_user_nondefault_constructor (BINFO_TYPE (subobject)))
941             warning_at (DECL_SOURCE_LOCATION (current_function_decl),
942                         OPT_Wextra, "base class %q#T should be explicitly "
943                         "initialized in the copy constructor",
944                         BINFO_TYPE (subobject));
945
946           if (DECL_DECLARED_CONSTEXPR_P (current_function_decl)
947               && !(type_has_constexpr_default_constructor
948                    (BINFO_TYPE (subobject))))
949             {
950               if (!DECL_TEMPLATE_INSTANTIATION (current_function_decl))
951                 error ("uninitialized base %qT in %<constexpr%> constructor",
952                        BINFO_TYPE (subobject));
953               DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
954             }
955         }
956
957       /* Initialize the base.  */
958       if (BINFO_VIRTUAL_P (subobject))
959         construct_virtual_base (subobject, arguments);
960       else
961         {
962           tree base_addr;
963
964           base_addr = build_base_path (PLUS_EXPR, current_class_ptr,
965                                        subobject, 1);
966           expand_aggr_init_1 (subobject, NULL_TREE,
967                               cp_build_indirect_ref (base_addr, RO_NULL,
968                                                      tf_warning_or_error),
969                               arguments,
970                               flags,
971                               tf_warning_or_error);
972           expand_cleanup_for_base (subobject, NULL_TREE);
973         }
974
975       mem_inits = TREE_CHAIN (mem_inits);
976     }
977   in_base_initializer = 0;
978
979   /* Initialize the vptrs.  */
980   initialize_vtbl_ptrs (current_class_ptr);
981
982   /* Initialize the data members.  */
983   while (mem_inits)
984     {
985       perform_member_init (TREE_PURPOSE (mem_inits),
986                            TREE_VALUE (mem_inits));
987       mem_inits = TREE_CHAIN (mem_inits);
988     }
989 }
990
991 /* Returns the address of the vtable (i.e., the value that should be
992    assigned to the vptr) for BINFO.  */
993
994 static tree
995 build_vtbl_address (tree binfo)
996 {
997   tree binfo_for = binfo;
998   tree vtbl;
999
1000   if (BINFO_VPTR_INDEX (binfo) && BINFO_VIRTUAL_P (binfo))
1001     /* If this is a virtual primary base, then the vtable we want to store
1002        is that for the base this is being used as the primary base of.  We
1003        can't simply skip the initialization, because we may be expanding the
1004        inits of a subobject constructor where the virtual base layout
1005        can be different.  */
1006     while (BINFO_PRIMARY_P (binfo_for))
1007       binfo_for = BINFO_INHERITANCE_CHAIN (binfo_for);
1008
1009   /* Figure out what vtable BINFO's vtable is based on, and mark it as
1010      used.  */
1011   vtbl = get_vtbl_decl_for_binfo (binfo_for);
1012   TREE_USED (vtbl) = 1;
1013
1014   /* Now compute the address to use when initializing the vptr.  */
1015   vtbl = unshare_expr (BINFO_VTABLE (binfo_for));
1016   if (TREE_CODE (vtbl) == VAR_DECL)
1017     vtbl = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (vtbl)), vtbl);
1018
1019   return vtbl;
1020 }
1021
1022 /* This code sets up the virtual function tables appropriate for
1023    the pointer DECL.  It is a one-ply initialization.
1024
1025    BINFO is the exact type that DECL is supposed to be.  In
1026    multiple inheritance, this might mean "C's A" if C : A, B.  */
1027
1028 static void
1029 expand_virtual_init (tree binfo, tree decl)
1030 {
1031   tree vtbl, vtbl_ptr;
1032   tree vtt_index;
1033
1034   /* Compute the initializer for vptr.  */
1035   vtbl = build_vtbl_address (binfo);
1036
1037   /* We may get this vptr from a VTT, if this is a subobject
1038      constructor or subobject destructor.  */
1039   vtt_index = BINFO_VPTR_INDEX (binfo);
1040   if (vtt_index)
1041     {
1042       tree vtbl2;
1043       tree vtt_parm;
1044
1045       /* Compute the value to use, when there's a VTT.  */
1046       vtt_parm = current_vtt_parm;
1047       vtbl2 = build2 (POINTER_PLUS_EXPR,
1048                       TREE_TYPE (vtt_parm),
1049                       vtt_parm,
1050                       vtt_index);
1051       vtbl2 = cp_build_indirect_ref (vtbl2, RO_NULL, tf_warning_or_error);
1052       vtbl2 = convert (TREE_TYPE (vtbl), vtbl2);
1053
1054       /* The actual initializer is the VTT value only in the subobject
1055          constructor.  In maybe_clone_body we'll substitute NULL for
1056          the vtt_parm in the case of the non-subobject constructor.  */
1057       vtbl = build3 (COND_EXPR,
1058                      TREE_TYPE (vtbl),
1059                      build2 (EQ_EXPR, boolean_type_node,
1060                              current_in_charge_parm, integer_zero_node),
1061                      vtbl2,
1062                      vtbl);
1063     }
1064
1065   /* Compute the location of the vtpr.  */
1066   vtbl_ptr = build_vfield_ref (cp_build_indirect_ref (decl, RO_NULL, 
1067                                                       tf_warning_or_error),
1068                                TREE_TYPE (binfo));
1069   gcc_assert (vtbl_ptr != error_mark_node);
1070
1071   /* Assign the vtable to the vptr.  */
1072   vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl, 0);
1073   finish_expr_stmt (cp_build_modify_expr (vtbl_ptr, NOP_EXPR, vtbl,
1074                                           tf_warning_or_error));
1075 }
1076
1077 /* If an exception is thrown in a constructor, those base classes already
1078    constructed must be destroyed.  This function creates the cleanup
1079    for BINFO, which has just been constructed.  If FLAG is non-NULL,
1080    it is a DECL which is nonzero when this base needs to be
1081    destroyed.  */
1082
1083 static void
1084 expand_cleanup_for_base (tree binfo, tree flag)
1085 {
1086   tree expr;
1087
1088   if (TYPE_HAS_TRIVIAL_DESTRUCTOR (BINFO_TYPE (binfo)))
1089     return;
1090
1091   /* Call the destructor.  */
1092   expr = build_special_member_call (current_class_ref,
1093                                     base_dtor_identifier,
1094                                     NULL,
1095                                     binfo,
1096                                     LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
1097                                     tf_warning_or_error);
1098   if (flag)
1099     expr = fold_build3_loc (input_location,
1100                         COND_EXPR, void_type_node,
1101                         c_common_truthvalue_conversion (input_location, flag),
1102                         expr, integer_zero_node);
1103
1104   finish_eh_cleanup (expr);
1105 }
1106
1107 /* Construct the virtual base-class VBASE passing the ARGUMENTS to its
1108    constructor.  */
1109
1110 static void
1111 construct_virtual_base (tree vbase, tree arguments)
1112 {
1113   tree inner_if_stmt;
1114   tree exp;
1115   tree flag;
1116
1117   /* If there are virtual base classes with destructors, we need to
1118      emit cleanups to destroy them if an exception is thrown during
1119      the construction process.  These exception regions (i.e., the
1120      period during which the cleanups must occur) begin from the time
1121      the construction is complete to the end of the function.  If we
1122      create a conditional block in which to initialize the
1123      base-classes, then the cleanup region for the virtual base begins
1124      inside a block, and ends outside of that block.  This situation
1125      confuses the sjlj exception-handling code.  Therefore, we do not
1126      create a single conditional block, but one for each
1127      initialization.  (That way the cleanup regions always begin
1128      in the outer block.)  We trust the back end to figure out
1129      that the FLAG will not change across initializations, and
1130      avoid doing multiple tests.  */
1131   flag = DECL_CHAIN (DECL_ARGUMENTS (current_function_decl));
1132   inner_if_stmt = begin_if_stmt ();
1133   finish_if_stmt_cond (flag, inner_if_stmt);
1134
1135   /* Compute the location of the virtual base.  If we're
1136      constructing virtual bases, then we must be the most derived
1137      class.  Therefore, we don't have to look up the virtual base;
1138      we already know where it is.  */
1139   exp = convert_to_base_statically (current_class_ref, vbase);
1140
1141   expand_aggr_init_1 (vbase, current_class_ref, exp, arguments,
1142                       LOOKUP_COMPLAIN, tf_warning_or_error);
1143   finish_then_clause (inner_if_stmt);
1144   finish_if_stmt (inner_if_stmt);
1145
1146   expand_cleanup_for_base (vbase, flag);
1147 }
1148
1149 /* Find the context in which this FIELD can be initialized.  */
1150
1151 static tree
1152 initializing_context (tree field)
1153 {
1154   tree t = DECL_CONTEXT (field);
1155
1156   /* Anonymous union members can be initialized in the first enclosing
1157      non-anonymous union context.  */
1158   while (t && ANON_AGGR_TYPE_P (t))
1159     t = TYPE_CONTEXT (t);
1160   return t;
1161 }
1162
1163 /* Function to give error message if member initialization specification
1164    is erroneous.  FIELD is the member we decided to initialize.
1165    TYPE is the type for which the initialization is being performed.
1166    FIELD must be a member of TYPE.
1167
1168    MEMBER_NAME is the name of the member.  */
1169
1170 static int
1171 member_init_ok_or_else (tree field, tree type, tree member_name)
1172 {
1173   if (field == error_mark_node)
1174     return 0;
1175   if (!field)
1176     {
1177       error ("class %qT does not have any field named %qD", type,
1178              member_name);
1179       return 0;
1180     }
1181   if (TREE_CODE (field) == VAR_DECL)
1182     {
1183       error ("%q#D is a static data member; it can only be "
1184              "initialized at its definition",
1185              field);
1186       return 0;
1187     }
1188   if (TREE_CODE (field) != FIELD_DECL)
1189     {
1190       error ("%q#D is not a non-static data member of %qT",
1191              field, type);
1192       return 0;
1193     }
1194   if (initializing_context (field) != type)
1195     {
1196       error ("class %qT does not have any field named %qD", type,
1197                 member_name);
1198       return 0;
1199     }
1200
1201   return 1;
1202 }
1203
1204 /* NAME is a FIELD_DECL, an IDENTIFIER_NODE which names a field, or it
1205    is a _TYPE node or TYPE_DECL which names a base for that type.
1206    Check the validity of NAME, and return either the base _TYPE, base
1207    binfo, or the FIELD_DECL of the member.  If NAME is invalid, return
1208    NULL_TREE and issue a diagnostic.
1209
1210    An old style unnamed direct single base construction is permitted,
1211    where NAME is NULL.  */
1212
1213 tree
1214 expand_member_init (tree name)
1215 {
1216   tree basetype;
1217   tree field;
1218
1219   if (!current_class_ref)
1220     return NULL_TREE;
1221
1222   if (!name)
1223     {
1224       /* This is an obsolete unnamed base class initializer.  The
1225          parser will already have warned about its use.  */
1226       switch (BINFO_N_BASE_BINFOS (TYPE_BINFO (current_class_type)))
1227         {
1228         case 0:
1229           error ("unnamed initializer for %qT, which has no base classes",
1230                  current_class_type);
1231           return NULL_TREE;
1232         case 1:
1233           basetype = BINFO_TYPE
1234             (BINFO_BASE_BINFO (TYPE_BINFO (current_class_type), 0));
1235           break;
1236         default:
1237           error ("unnamed initializer for %qT, which uses multiple inheritance",
1238                  current_class_type);
1239           return NULL_TREE;
1240       }
1241     }
1242   else if (TYPE_P (name))
1243     {
1244       basetype = TYPE_MAIN_VARIANT (name);
1245       name = TYPE_NAME (name);
1246     }
1247   else if (TREE_CODE (name) == TYPE_DECL)
1248     basetype = TYPE_MAIN_VARIANT (TREE_TYPE (name));
1249   else
1250     basetype = NULL_TREE;
1251
1252   if (basetype)
1253     {
1254       tree class_binfo;
1255       tree direct_binfo;
1256       tree virtual_binfo;
1257       int i;
1258
1259       if (current_template_parms)
1260         return basetype;
1261
1262       class_binfo = TYPE_BINFO (current_class_type);
1263       direct_binfo = NULL_TREE;
1264       virtual_binfo = NULL_TREE;
1265
1266       /* Look for a direct base.  */
1267       for (i = 0; BINFO_BASE_ITERATE (class_binfo, i, direct_binfo); ++i)
1268         if (SAME_BINFO_TYPE_P (BINFO_TYPE (direct_binfo), basetype))
1269           break;
1270
1271       /* Look for a virtual base -- unless the direct base is itself
1272          virtual.  */
1273       if (!direct_binfo || !BINFO_VIRTUAL_P (direct_binfo))
1274         virtual_binfo = binfo_for_vbase (basetype, current_class_type);
1275
1276       /* [class.base.init]
1277
1278          If a mem-initializer-id is ambiguous because it designates
1279          both a direct non-virtual base class and an inherited virtual
1280          base class, the mem-initializer is ill-formed.  */
1281       if (direct_binfo && virtual_binfo)
1282         {
1283           error ("%qD is both a direct base and an indirect virtual base",
1284                  basetype);
1285           return NULL_TREE;
1286         }
1287
1288       if (!direct_binfo && !virtual_binfo)
1289         {
1290           if (CLASSTYPE_VBASECLASSES (current_class_type))
1291             error ("type %qT is not a direct or virtual base of %qT",
1292                    basetype, current_class_type);
1293           else
1294             error ("type %qT is not a direct base of %qT",
1295                    basetype, current_class_type);
1296           return NULL_TREE;
1297         }
1298
1299       return direct_binfo ? direct_binfo : virtual_binfo;
1300     }
1301   else
1302     {
1303       if (TREE_CODE (name) == IDENTIFIER_NODE)
1304         field = lookup_field (current_class_type, name, 1, false);
1305       else
1306         field = name;
1307
1308       if (member_init_ok_or_else (field, current_class_type, name))
1309         return field;
1310     }
1311
1312   return NULL_TREE;
1313 }
1314
1315 /* This is like `expand_member_init', only it stores one aggregate
1316    value into another.
1317
1318    INIT comes in two flavors: it is either a value which
1319    is to be stored in EXP, or it is a parameter list
1320    to go to a constructor, which will operate on EXP.
1321    If INIT is not a parameter list for a constructor, then set
1322    LOOKUP_ONLYCONVERTING.
1323    If FLAGS is LOOKUP_ONLYCONVERTING then it is the = init form of
1324    the initializer, if FLAGS is 0, then it is the (init) form.
1325    If `init' is a CONSTRUCTOR, then we emit a warning message,
1326    explaining that such initializations are invalid.
1327
1328    If INIT resolves to a CALL_EXPR which happens to return
1329    something of the type we are looking for, then we know
1330    that we can safely use that call to perform the
1331    initialization.
1332
1333    The virtual function table pointer cannot be set up here, because
1334    we do not really know its type.
1335
1336    This never calls operator=().
1337
1338    When initializing, nothing is CONST.
1339
1340    A default copy constructor may have to be used to perform the
1341    initialization.
1342
1343    A constructor or a conversion operator may have to be used to
1344    perform the initialization, but not both, as it would be ambiguous.  */
1345
1346 tree
1347 build_aggr_init (tree exp, tree init, int flags, tsubst_flags_t complain)
1348 {
1349   tree stmt_expr;
1350   tree compound_stmt;
1351   int destroy_temps;
1352   tree type = TREE_TYPE (exp);
1353   int was_const = TREE_READONLY (exp);
1354   int was_volatile = TREE_THIS_VOLATILE (exp);
1355   int is_global;
1356
1357   if (init == error_mark_node)
1358     return error_mark_node;
1359
1360   TREE_READONLY (exp) = 0;
1361   TREE_THIS_VOLATILE (exp) = 0;
1362
1363   if (init && TREE_CODE (init) != TREE_LIST
1364       && !(BRACE_ENCLOSED_INITIALIZER_P (init)
1365            && CONSTRUCTOR_IS_DIRECT_INIT (init)))
1366     flags |= LOOKUP_ONLYCONVERTING;
1367
1368   if (TREE_CODE (type) == ARRAY_TYPE)
1369     {
1370       tree itype;
1371
1372       /* An array may not be initialized use the parenthesized
1373          initialization form -- unless the initializer is "()".  */
1374       if (init && TREE_CODE (init) == TREE_LIST)
1375         {
1376           if (complain & tf_error)
1377             error ("bad array initializer");
1378           return error_mark_node;
1379         }
1380       /* Must arrange to initialize each element of EXP
1381          from elements of INIT.  */
1382       itype = init ? TREE_TYPE (init) : NULL_TREE;
1383       if (cv_qualified_p (type))
1384         TREE_TYPE (exp) = cv_unqualified (type);
1385       if (itype && cv_qualified_p (itype))
1386         TREE_TYPE (init) = cv_unqualified (itype);
1387       stmt_expr = build_vec_init (exp, NULL_TREE, init,
1388                                   /*explicit_value_init_p=*/false,
1389                                   itype && same_type_p (TREE_TYPE (init),
1390                                                         TREE_TYPE (exp)),
1391                                   complain);
1392       TREE_READONLY (exp) = was_const;
1393       TREE_THIS_VOLATILE (exp) = was_volatile;
1394       TREE_TYPE (exp) = type;
1395       if (init)
1396         TREE_TYPE (init) = itype;
1397       return stmt_expr;
1398     }
1399
1400   if (TREE_CODE (exp) == VAR_DECL || TREE_CODE (exp) == PARM_DECL)
1401     /* Just know that we've seen something for this node.  */
1402     TREE_USED (exp) = 1;
1403
1404   is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
1405   destroy_temps = stmts_are_full_exprs_p ();
1406   current_stmt_tree ()->stmts_are_full_exprs_p = 0;
1407   expand_aggr_init_1 (TYPE_BINFO (type), exp, exp,
1408                       init, LOOKUP_NORMAL|flags, complain);
1409   stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
1410   current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
1411   TREE_READONLY (exp) = was_const;
1412   TREE_THIS_VOLATILE (exp) = was_volatile;
1413
1414   return stmt_expr;
1415 }
1416
1417 static void
1418 expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
1419                      tsubst_flags_t complain)
1420 {
1421   tree type = TREE_TYPE (exp);
1422   tree ctor_name;
1423
1424   /* It fails because there may not be a constructor which takes
1425      its own type as the first (or only parameter), but which does
1426      take other types via a conversion.  So, if the thing initializing
1427      the expression is a unit element of type X, first try X(X&),
1428      followed by initialization by X.  If neither of these work
1429      out, then look hard.  */
1430   tree rval;
1431   VEC(tree,gc) *parms;
1432
1433   if (init && BRACE_ENCLOSED_INITIALIZER_P (init)
1434       && CP_AGGREGATE_TYPE_P (type))
1435     {
1436       /* A brace-enclosed initializer for an aggregate.  In C++0x this can
1437          happen for direct-initialization, too.  */
1438       init = digest_init (type, init);
1439       init = build2 (INIT_EXPR, TREE_TYPE (exp), exp, init);
1440       TREE_SIDE_EFFECTS (init) = 1;
1441       finish_expr_stmt (init);
1442       return;
1443     }
1444
1445   if (init && TREE_CODE (init) != TREE_LIST
1446       && (flags & LOOKUP_ONLYCONVERTING))
1447     {
1448       /* Base subobjects should only get direct-initialization.  */
1449       gcc_assert (true_exp == exp);
1450
1451       if (flags & DIRECT_BIND)
1452         /* Do nothing.  We hit this in two cases:  Reference initialization,
1453            where we aren't initializing a real variable, so we don't want
1454            to run a new constructor; and catching an exception, where we
1455            have already built up the constructor call so we could wrap it
1456            in an exception region.  */;
1457       else
1458         init = ocp_convert (type, init, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
1459
1460       if (TREE_CODE (init) == MUST_NOT_THROW_EXPR)
1461         /* We need to protect the initialization of a catch parm with a
1462            call to terminate(), which shows up as a MUST_NOT_THROW_EXPR
1463            around the TARGET_EXPR for the copy constructor.  See
1464            initialize_handler_parm.  */
1465         {
1466           TREE_OPERAND (init, 0) = build2 (INIT_EXPR, TREE_TYPE (exp), exp,
1467                                            TREE_OPERAND (init, 0));
1468           TREE_TYPE (init) = void_type_node;
1469         }
1470       else
1471         init = build2 (INIT_EXPR, TREE_TYPE (exp), exp, init);
1472       TREE_SIDE_EFFECTS (init) = 1;
1473       finish_expr_stmt (init);
1474       return;
1475     }
1476
1477   if (init == NULL_TREE)
1478     parms = NULL;
1479   else if (TREE_CODE (init) == TREE_LIST && !TREE_TYPE (init))
1480     {
1481       parms = make_tree_vector ();
1482       for (; init != NULL_TREE; init = TREE_CHAIN (init))
1483         VEC_safe_push (tree, gc, parms, TREE_VALUE (init));
1484     }
1485   else
1486     parms = make_tree_vector_single (init);
1487
1488   if (true_exp == exp)
1489     ctor_name = complete_ctor_identifier;
1490   else
1491     ctor_name = base_ctor_identifier;
1492
1493   rval = build_special_member_call (exp, ctor_name, &parms, binfo, flags,
1494                                     complain);
1495
1496   if (parms != NULL)
1497     release_tree_vector (parms);
1498
1499   if (exp == true_exp && TREE_CODE (rval) == CALL_EXPR)
1500     {
1501       tree fn = get_callee_fndecl (rval);
1502       if (fn && DECL_DECLARED_CONSTEXPR_P (fn))
1503         {
1504           tree e = maybe_constant_value (rval);
1505           if (TREE_CONSTANT (e))
1506             rval = build2 (INIT_EXPR, type, exp, e);
1507         }
1508     }
1509
1510   /* FIXME put back convert_to_void?  */
1511   if (TREE_SIDE_EFFECTS (rval))
1512     finish_expr_stmt (rval);
1513 }
1514
1515 /* This function is responsible for initializing EXP with INIT
1516    (if any).
1517
1518    BINFO is the binfo of the type for who we are performing the
1519    initialization.  For example, if W is a virtual base class of A and B,
1520    and C : A, B.
1521    If we are initializing B, then W must contain B's W vtable, whereas
1522    were we initializing C, W must contain C's W vtable.
1523
1524    TRUE_EXP is nonzero if it is the true expression being initialized.
1525    In this case, it may be EXP, or may just contain EXP.  The reason we
1526    need this is because if EXP is a base element of TRUE_EXP, we
1527    don't necessarily know by looking at EXP where its virtual
1528    baseclass fields should really be pointing.  But we do know
1529    from TRUE_EXP.  In constructors, we don't know anything about
1530    the value being initialized.
1531
1532    FLAGS is just passed to `build_new_method_call'.  See that function
1533    for its description.  */
1534
1535 static void
1536 expand_aggr_init_1 (tree binfo, tree true_exp, tree exp, tree init, int flags,
1537                     tsubst_flags_t complain)
1538 {
1539   tree type = TREE_TYPE (exp);
1540
1541   gcc_assert (init != error_mark_node && type != error_mark_node);
1542   gcc_assert (building_stmt_tree ());
1543
1544   /* Use a function returning the desired type to initialize EXP for us.
1545      If the function is a constructor, and its first argument is
1546      NULL_TREE, know that it was meant for us--just slide exp on
1547      in and expand the constructor.  Constructors now come
1548      as TARGET_EXPRs.  */
1549
1550   if (init && TREE_CODE (exp) == VAR_DECL
1551       && COMPOUND_LITERAL_P (init))
1552     {
1553       /* If store_init_value returns NULL_TREE, the INIT has been
1554          recorded as the DECL_INITIAL for EXP.  That means there's
1555          nothing more we have to do.  */
1556       init = store_init_value (exp, init, flags);
1557       if (init)
1558         finish_expr_stmt (init);
1559       return;
1560     }
1561
1562   /* If an explicit -- but empty -- initializer list was present,
1563      that's value-initialization.  */
1564   if (init == void_type_node)
1565     {
1566       /* If there's a user-provided constructor, we just call that.  */
1567       if (type_has_user_provided_constructor (type))
1568         /* Fall through.  */;
1569       /* If there isn't, but we still need to call the constructor,
1570          zero out the object first.  */
1571       else if (TYPE_NEEDS_CONSTRUCTING (type))
1572         {
1573           init = build_zero_init (type, NULL_TREE, /*static_storage_p=*/false);
1574           init = build2 (INIT_EXPR, type, exp, init);
1575           finish_expr_stmt (init);
1576           /* And then call the constructor.  */
1577         }
1578       /* If we don't need to mess with the constructor at all,
1579          then just zero out the object and we're done.  */
1580       else
1581         {
1582           init = build2 (INIT_EXPR, type, exp,
1583                          build_value_init_noctor (type, complain));
1584           finish_expr_stmt (init);
1585           return;
1586         }
1587       init = NULL_TREE;
1588     }
1589
1590   /* We know that expand_default_init can handle everything we want
1591      at this point.  */
1592   expand_default_init (binfo, true_exp, exp, init, flags, complain);
1593 }
1594
1595 /* Report an error if TYPE is not a user-defined, class type.  If
1596    OR_ELSE is nonzero, give an error message.  */
1597
1598 int
1599 is_class_type (tree type, int or_else)
1600 {
1601   if (type == error_mark_node)
1602     return 0;
1603
1604   if (! CLASS_TYPE_P (type))
1605     {
1606       if (or_else)
1607         error ("%qT is not a class type", type);
1608       return 0;
1609     }
1610   return 1;
1611 }
1612
1613 tree
1614 get_type_value (tree name)
1615 {
1616   if (name == error_mark_node)
1617     return NULL_TREE;
1618
1619   if (IDENTIFIER_HAS_TYPE_VALUE (name))
1620     return IDENTIFIER_TYPE_VALUE (name);
1621   else
1622     return NULL_TREE;
1623 }
1624
1625 /* Build a reference to a member of an aggregate.  This is not a C++
1626    `&', but really something which can have its address taken, and
1627    then act as a pointer to member, for example TYPE :: FIELD can have
1628    its address taken by saying & TYPE :: FIELD.  ADDRESS_P is true if
1629    this expression is the operand of "&".
1630
1631    @@ Prints out lousy diagnostics for operator <typename>
1632    @@ fields.
1633
1634    @@ This function should be rewritten and placed in search.c.  */
1635
1636 tree
1637 build_offset_ref (tree type, tree member, bool address_p)
1638 {
1639   tree decl;
1640   tree basebinfo = NULL_TREE;
1641
1642   /* class templates can come in as TEMPLATE_DECLs here.  */
1643   if (TREE_CODE (member) == TEMPLATE_DECL)
1644     return member;
1645
1646   if (dependent_scope_p (type) || type_dependent_expression_p (member))
1647     return build_qualified_name (NULL_TREE, type, member,
1648                                   /*template_p=*/false);
1649
1650   gcc_assert (TYPE_P (type));
1651   if (! is_class_type (type, 1))
1652     return error_mark_node;
1653
1654   gcc_assert (DECL_P (member) || BASELINK_P (member));
1655   /* Callers should call mark_used before this point.  */
1656   gcc_assert (!DECL_P (member) || TREE_USED (member));
1657
1658   type = TYPE_MAIN_VARIANT (type);
1659   if (!COMPLETE_OR_OPEN_TYPE_P (complete_type (type)))
1660     {
1661       error ("incomplete type %qT does not have member %qD", type, member);
1662       return error_mark_node;
1663     }
1664
1665   /* Entities other than non-static members need no further
1666      processing.  */
1667   if (TREE_CODE (member) == TYPE_DECL)
1668     return member;
1669   if (TREE_CODE (member) == VAR_DECL || TREE_CODE (member) == CONST_DECL)
1670     return convert_from_reference (member);
1671
1672   if (TREE_CODE (member) == FIELD_DECL && DECL_C_BIT_FIELD (member))
1673     {
1674       error ("invalid pointer to bit-field %qD", member);
1675       return error_mark_node;
1676     }
1677
1678   /* Set up BASEBINFO for member lookup.  */
1679   decl = maybe_dummy_object (type, &basebinfo);
1680
1681   /* A lot of this logic is now handled in lookup_member.  */
1682   if (BASELINK_P (member))
1683     {
1684       /* Go from the TREE_BASELINK to the member function info.  */
1685       tree t = BASELINK_FUNCTIONS (member);
1686
1687       if (TREE_CODE (t) != TEMPLATE_ID_EXPR && !really_overloaded_fn (t))
1688         {
1689           /* Get rid of a potential OVERLOAD around it.  */
1690           t = OVL_CURRENT (t);
1691
1692           /* Unique functions are handled easily.  */
1693
1694           /* For non-static member of base class, we need a special rule
1695              for access checking [class.protected]:
1696
1697                If the access is to form a pointer to member, the
1698                nested-name-specifier shall name the derived class
1699                (or any class derived from that class).  */
1700           if (address_p && DECL_P (t)
1701               && DECL_NONSTATIC_MEMBER_P (t))
1702             perform_or_defer_access_check (TYPE_BINFO (type), t, t);
1703           else
1704             perform_or_defer_access_check (basebinfo, t, t);
1705
1706           if (DECL_STATIC_FUNCTION_P (t))
1707             return t;
1708           member = t;
1709         }
1710       else
1711         TREE_TYPE (member) = unknown_type_node;
1712     }
1713   else if (address_p && TREE_CODE (member) == FIELD_DECL)
1714     /* We need additional test besides the one in
1715        check_accessibility_of_qualified_id in case it is
1716        a pointer to non-static member.  */
1717     perform_or_defer_access_check (TYPE_BINFO (type), member, member);
1718
1719   if (!address_p)
1720     {
1721       /* If MEMBER is non-static, then the program has fallen afoul of
1722          [expr.prim]:
1723
1724            An id-expression that denotes a nonstatic data member or
1725            nonstatic member function of a class can only be used:
1726
1727            -- as part of a class member access (_expr.ref_) in which the
1728            object-expression refers to the member's class or a class
1729            derived from that class, or
1730
1731            -- to form a pointer to member (_expr.unary.op_), or
1732
1733            -- in the body of a nonstatic member function of that class or
1734            of a class derived from that class (_class.mfct.nonstatic_), or
1735
1736            -- in a mem-initializer for a constructor for that class or for
1737            a class derived from that class (_class.base.init_).  */
1738       if (DECL_NONSTATIC_MEMBER_FUNCTION_P (member))
1739         {
1740           /* Build a representation of the qualified name suitable
1741              for use as the operand to "&" -- even though the "&" is
1742              not actually present.  */
1743           member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
1744           /* In Microsoft mode, treat a non-static member function as if
1745              it were a pointer-to-member.  */
1746           if (flag_ms_extensions)
1747             {
1748               PTRMEM_OK_P (member) = 1;
1749               return cp_build_addr_expr (member, tf_warning_or_error);
1750             }
1751           error ("invalid use of non-static member function %qD",
1752                  TREE_OPERAND (member, 1));
1753           return error_mark_node;
1754         }
1755       else if (TREE_CODE (member) == FIELD_DECL)
1756         {
1757           error ("invalid use of non-static data member %qD", member);
1758           return error_mark_node;
1759         }
1760       return member;
1761     }
1762
1763   member = build2 (OFFSET_REF, TREE_TYPE (member), decl, member);
1764   PTRMEM_OK_P (member) = 1;
1765   return member;
1766 }
1767
1768 /* If DECL is a scalar enumeration constant or variable with a
1769    constant initializer, return the initializer (or, its initializers,
1770    recursively); otherwise, return DECL.  If INTEGRAL_P, the
1771    initializer is only returned if DECL is an integral
1772    constant-expression.  */
1773
1774 static tree
1775 constant_value_1 (tree decl, bool integral_p)
1776 {
1777   while (TREE_CODE (decl) == CONST_DECL
1778          || (integral_p
1779              ? decl_constant_var_p (decl)
1780              : (TREE_CODE (decl) == VAR_DECL
1781                 && CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (decl)))))
1782     {
1783       tree init;
1784       /* If DECL is a static data member in a template
1785          specialization, we must instantiate it here.  The
1786          initializer for the static data member is not processed
1787          until needed; we need it now.  */
1788       mark_used (decl);
1789       mark_rvalue_use (decl);
1790       init = DECL_INITIAL (decl);
1791       if (init == error_mark_node)
1792         {
1793           if (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl))
1794             /* Treat the error as a constant to avoid cascading errors on
1795                excessively recursive template instantiation (c++/9335).  */
1796             return init;
1797           else
1798             return decl;
1799         }
1800       /* Initializers in templates are generally expanded during
1801          instantiation, so before that for const int i(2)
1802          INIT is a TREE_LIST with the actual initializer as
1803          TREE_VALUE.  */
1804       if (processing_template_decl
1805           && init
1806           && TREE_CODE (init) == TREE_LIST
1807           && TREE_CHAIN (init) == NULL_TREE)
1808         init = TREE_VALUE (init);
1809       if (!init
1810           || !TREE_TYPE (init)
1811           || !TREE_CONSTANT (init)
1812           || (!integral_p
1813               /* Do not return an aggregate constant (of which
1814                  string literals are a special case), as we do not
1815                  want to make inadvertent copies of such entities,
1816                  and we must be sure that their addresses are the
1817                  same everywhere.  */
1818               && (TREE_CODE (init) == CONSTRUCTOR
1819                   || TREE_CODE (init) == STRING_CST)))
1820         break;
1821       decl = unshare_expr (init);
1822     }
1823   return decl;
1824 }
1825
1826 /* If DECL is a CONST_DECL, or a constant VAR_DECL initialized by
1827    constant of integral or enumeration type, then return that value.
1828    These are those variables permitted in constant expressions by
1829    [5.19/1].  */
1830
1831 tree
1832 integral_constant_value (tree decl)
1833 {
1834   return constant_value_1 (decl, /*integral_p=*/true);
1835 }
1836
1837 /* A more relaxed version of integral_constant_value, used by the
1838    common C/C++ code and by the C++ front end for optimization
1839    purposes.  */
1840
1841 tree
1842 decl_constant_value (tree decl)
1843 {
1844   return constant_value_1 (decl,
1845                            /*integral_p=*/processing_template_decl);
1846 }
1847 \f
1848 /* Common subroutines of build_new and build_vec_delete.  */
1849
1850 /* Call the global __builtin_delete to delete ADDR.  */
1851
1852 static tree
1853 build_builtin_delete_call (tree addr)
1854 {
1855   mark_used (global_delete_fndecl);
1856   return build_call_n (global_delete_fndecl, 1, addr);
1857 }
1858 \f
1859 /* Build and return a NEW_EXPR.  If NELTS is non-NULL, TYPE[NELTS] is
1860    the type of the object being allocated; otherwise, it's just TYPE.
1861    INIT is the initializer, if any.  USE_GLOBAL_NEW is true if the
1862    user explicitly wrote "::operator new".  PLACEMENT, if non-NULL, is
1863    a vector of arguments to be provided as arguments to a placement
1864    new operator.  This routine performs no semantic checks; it just
1865    creates and returns a NEW_EXPR.  */
1866
1867 static tree
1868 build_raw_new_expr (VEC(tree,gc) *placement, tree type, tree nelts,
1869                     VEC(tree,gc) *init, int use_global_new)
1870 {
1871   tree init_list;
1872   tree new_expr;
1873
1874   /* If INIT is NULL, the we want to store NULL_TREE in the NEW_EXPR.
1875      If INIT is not NULL, then we want to store VOID_ZERO_NODE.  This
1876      permits us to distinguish the case of a missing initializer "new
1877      int" from an empty initializer "new int()".  */
1878   if (init == NULL)
1879     init_list = NULL_TREE;
1880   else if (VEC_empty (tree, init))
1881     init_list = void_zero_node;
1882   else
1883     init_list = build_tree_list_vec (init);
1884
1885   new_expr = build4 (NEW_EXPR, build_pointer_type (type),
1886                      build_tree_list_vec (placement), type, nelts,
1887                      init_list);
1888   NEW_EXPR_USE_GLOBAL (new_expr) = use_global_new;
1889   TREE_SIDE_EFFECTS (new_expr) = 1;
1890
1891   return new_expr;
1892 }
1893
1894 /* Diagnose uninitialized const members or reference members of type
1895    TYPE. USING_NEW is used to disambiguate the diagnostic between a
1896    new expression without a new-initializer and a declaration. Returns
1897    the error count. */
1898
1899 static int
1900 diagnose_uninitialized_cst_or_ref_member_1 (tree type, tree origin,
1901                                             bool using_new, bool complain)
1902 {
1903   tree field;
1904   int error_count = 0;
1905
1906   if (type_has_user_provided_constructor (type))
1907     return 0;
1908
1909   for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
1910     {
1911       tree field_type;
1912
1913       if (TREE_CODE (field) != FIELD_DECL)
1914         continue;
1915
1916       field_type = strip_array_types (TREE_TYPE (field));
1917
1918       if (TREE_CODE (field_type) == REFERENCE_TYPE)
1919         {
1920           ++ error_count;
1921           if (complain)
1922             {
1923               if (using_new)
1924                 error ("uninitialized reference member in %q#T "
1925                        "using %<new%> without new-initializer", origin);
1926               else
1927                 error ("uninitialized reference member in %q#T", origin);
1928               inform (DECL_SOURCE_LOCATION (field),
1929                       "%qD should be initialized", field);
1930             }
1931         }
1932
1933       if (CP_TYPE_CONST_P (field_type))
1934         {
1935           ++ error_count;
1936           if (complain)
1937             {
1938               if (using_new)
1939                 error ("uninitialized const member in %q#T "
1940                        "using %<new%> without new-initializer", origin);
1941               else
1942                 error ("uninitialized const member in %q#T", origin);
1943               inform (DECL_SOURCE_LOCATION (field),
1944                       "%qD should be initialized", field);
1945             }
1946         }
1947
1948       if (CLASS_TYPE_P (field_type))
1949         error_count
1950           += diagnose_uninitialized_cst_or_ref_member_1 (field_type, origin,
1951                                                          using_new, complain);
1952     }
1953   return error_count;
1954 }
1955
1956 int
1957 diagnose_uninitialized_cst_or_ref_member (tree type, bool using_new, bool complain)
1958 {
1959   return diagnose_uninitialized_cst_or_ref_member_1 (type, type, using_new, complain);
1960 }
1961
1962 /* Generate code for a new-expression, including calling the "operator
1963    new" function, initializing the object, and, if an exception occurs
1964    during construction, cleaning up.  The arguments are as for
1965    build_raw_new_expr.  This may change PLACEMENT and INIT.  */
1966
1967 static tree
1968 build_new_1 (VEC(tree,gc) **placement, tree type, tree nelts,
1969              VEC(tree,gc) **init, bool globally_qualified_p,
1970              tsubst_flags_t complain)
1971 {
1972   tree size, rval;
1973   /* True iff this is a call to "operator new[]" instead of just
1974      "operator new".  */
1975   bool array_p = false;
1976   /* If ARRAY_P is true, the element type of the array.  This is never
1977      an ARRAY_TYPE; for something like "new int[3][4]", the
1978      ELT_TYPE is "int".  If ARRAY_P is false, this is the same type as
1979      TYPE.  */
1980   tree elt_type;
1981   /* The type of the new-expression.  (This type is always a pointer
1982      type.)  */
1983   tree pointer_type;
1984   tree non_const_pointer_type;
1985   tree outer_nelts = NULL_TREE;
1986   tree alloc_call, alloc_expr;
1987   /* The address returned by the call to "operator new".  This node is
1988      a VAR_DECL and is therefore reusable.  */
1989   tree alloc_node;
1990   tree alloc_fn;
1991   tree cookie_expr, init_expr;
1992   int nothrow, check_new;
1993   int use_java_new = 0;
1994   /* If non-NULL, the number of extra bytes to allocate at the
1995      beginning of the storage allocated for an array-new expression in
1996      order to store the number of elements.  */
1997   tree cookie_size = NULL_TREE;
1998   tree placement_first;
1999   tree placement_expr = NULL_TREE;
2000   /* True if the function we are calling is a placement allocation
2001      function.  */
2002   bool placement_allocation_fn_p;
2003   /* True if the storage must be initialized, either by a constructor
2004      or due to an explicit new-initializer.  */
2005   bool is_initialized;
2006   /* The address of the thing allocated, not including any cookie.  In
2007      particular, if an array cookie is in use, DATA_ADDR is the
2008      address of the first array element.  This node is a VAR_DECL, and
2009      is therefore reusable.  */
2010   tree data_addr;
2011   tree init_preeval_expr = NULL_TREE;
2012
2013   if (nelts)
2014     {
2015       outer_nelts = nelts;
2016       array_p = true;
2017     }
2018   else if (TREE_CODE (type) == ARRAY_TYPE)
2019     {
2020       array_p = true;
2021       nelts = array_type_nelts_top (type);
2022       outer_nelts = nelts;
2023       type = TREE_TYPE (type);
2024     }
2025
2026   /* If our base type is an array, then make sure we know how many elements
2027      it has.  */
2028   for (elt_type = type;
2029        TREE_CODE (elt_type) == ARRAY_TYPE;
2030        elt_type = TREE_TYPE (elt_type))
2031     nelts = cp_build_binary_op (input_location,
2032                                 MULT_EXPR, nelts,
2033                                 array_type_nelts_top (elt_type),
2034                                 complain);
2035
2036   if (TREE_CODE (elt_type) == VOID_TYPE)
2037     {
2038       if (complain & tf_error)
2039         error ("invalid type %<void%> for new");
2040       return error_mark_node;
2041     }
2042
2043   if (abstract_virtuals_error_sfinae (NULL_TREE, elt_type, complain))
2044     return error_mark_node;
2045
2046   is_initialized = (TYPE_NEEDS_CONSTRUCTING (elt_type) || *init != NULL);
2047
2048   if (*init == NULL)
2049     {
2050       bool maybe_uninitialized_error = false;
2051       /* A program that calls for default-initialization [...] of an
2052          entity of reference type is ill-formed. */
2053       if (CLASSTYPE_REF_FIELDS_NEED_INIT (elt_type))
2054         maybe_uninitialized_error = true;
2055
2056       /* A new-expression that creates an object of type T initializes
2057          that object as follows:
2058       - If the new-initializer is omitted:
2059         -- If T is a (possibly cv-qualified) non-POD class type
2060            (or array thereof), the object is default-initialized (8.5).
2061            [...]
2062         -- Otherwise, the object created has indeterminate
2063            value. If T is a const-qualified type, or a (possibly
2064            cv-qualified) POD class type (or array thereof)
2065            containing (directly or indirectly) a member of
2066            const-qualified type, the program is ill-formed; */
2067
2068       if (CLASSTYPE_READONLY_FIELDS_NEED_INIT (elt_type))
2069         maybe_uninitialized_error = true;
2070
2071       if (maybe_uninitialized_error
2072           && diagnose_uninitialized_cst_or_ref_member (elt_type,
2073                                                        /*using_new=*/true,
2074                                                        complain & tf_error))
2075         return error_mark_node;
2076     }
2077
2078   if (CP_TYPE_CONST_P (elt_type) && *init == NULL
2079       && !type_has_user_provided_default_constructor (elt_type))
2080     {
2081       if (complain & tf_error)
2082         error ("uninitialized const in %<new%> of %q#T", elt_type);
2083       return error_mark_node;
2084     }
2085
2086   size = size_in_bytes (elt_type);
2087   if (array_p)
2088     size = size_binop (MULT_EXPR, size, convert (sizetype, nelts));
2089
2090   alloc_fn = NULL_TREE;
2091
2092   /* If PLACEMENT is a single simple pointer type not passed by
2093      reference, prepare to capture it in a temporary variable.  Do
2094      this now, since PLACEMENT will change in the calls below.  */
2095   placement_first = NULL_TREE;
2096   if (VEC_length (tree, *placement) == 1
2097       && (TREE_CODE (TREE_TYPE (VEC_index (tree, *placement, 0)))
2098           == POINTER_TYPE))
2099     placement_first = VEC_index (tree, *placement, 0);
2100
2101   /* Allocate the object.  */
2102   if (VEC_empty (tree, *placement) && TYPE_FOR_JAVA (elt_type))
2103     {
2104       tree class_addr;
2105       tree class_decl = build_java_class_ref (elt_type);
2106       static const char alloc_name[] = "_Jv_AllocObject";
2107
2108       if (class_decl == error_mark_node)
2109         return error_mark_node;
2110
2111       use_java_new = 1;
2112       if (!get_global_value_if_present (get_identifier (alloc_name),
2113                                         &alloc_fn))
2114         {
2115           if (complain & tf_error)
2116             error ("call to Java constructor with %qs undefined", alloc_name);
2117           return error_mark_node;
2118         }
2119       else if (really_overloaded_fn (alloc_fn))
2120         {
2121           if (complain & tf_error)
2122             error ("%qD should never be overloaded", alloc_fn);
2123           return error_mark_node;
2124         }
2125       alloc_fn = OVL_CURRENT (alloc_fn);
2126       class_addr = build1 (ADDR_EXPR, jclass_node, class_decl);
2127       alloc_call = cp_build_function_call_nary (alloc_fn, complain,
2128                                                 class_addr, NULL_TREE);
2129     }
2130   else if (TYPE_FOR_JAVA (elt_type) && MAYBE_CLASS_TYPE_P (elt_type))
2131     {
2132       error ("Java class %q#T object allocated using placement new", elt_type);
2133       return error_mark_node;
2134     }
2135   else
2136     {
2137       tree fnname;
2138       tree fns;
2139
2140       fnname = ansi_opname (array_p ? VEC_NEW_EXPR : NEW_EXPR);
2141
2142       if (!globally_qualified_p
2143           && CLASS_TYPE_P (elt_type)
2144           && (array_p
2145               ? TYPE_HAS_ARRAY_NEW_OPERATOR (elt_type)
2146               : TYPE_HAS_NEW_OPERATOR (elt_type)))
2147         {
2148           /* Use a class-specific operator new.  */
2149           /* If a cookie is required, add some extra space.  */
2150           if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
2151             {
2152               cookie_size = targetm.cxx.get_cookie_size (elt_type);
2153               size = size_binop (PLUS_EXPR, size, cookie_size);
2154             }
2155           /* Create the argument list.  */
2156           VEC_safe_insert (tree, gc, *placement, 0, size);
2157           /* Do name-lookup to find the appropriate operator.  */
2158           fns = lookup_fnfields (elt_type, fnname, /*protect=*/2);
2159           if (fns == NULL_TREE)
2160             {
2161               if (complain & tf_error)
2162                 error ("no suitable %qD found in class %qT", fnname, elt_type);
2163               return error_mark_node;
2164             }
2165           if (TREE_CODE (fns) == TREE_LIST)
2166             {
2167               if (complain & tf_error)
2168                 {
2169                   error ("request for member %qD is ambiguous", fnname);
2170                   print_candidates (fns);
2171                 }
2172               return error_mark_node;
2173             }
2174           alloc_call = build_new_method_call (build_dummy_object (elt_type),
2175                                               fns, placement,
2176                                               /*conversion_path=*/NULL_TREE,
2177                                               LOOKUP_NORMAL,
2178                                               &alloc_fn,
2179                                               complain);
2180         }
2181       else
2182         {
2183           /* Use a global operator new.  */
2184           /* See if a cookie might be required.  */
2185           if (array_p && TYPE_VEC_NEW_USES_COOKIE (elt_type))
2186             cookie_size = targetm.cxx.get_cookie_size (elt_type);
2187           else
2188             cookie_size = NULL_TREE;
2189
2190           alloc_call = build_operator_new_call (fnname, placement,
2191                                                 &size, &cookie_size,
2192                                                 &alloc_fn);
2193         }
2194     }
2195
2196   if (alloc_call == error_mark_node)
2197     return error_mark_node;
2198
2199   gcc_assert (alloc_fn != NULL_TREE);
2200
2201   /* If we found a simple case of PLACEMENT_EXPR above, then copy it
2202      into a temporary variable.  */
2203   if (!processing_template_decl
2204       && placement_first != NULL_TREE
2205       && TREE_CODE (alloc_call) == CALL_EXPR
2206       && call_expr_nargs (alloc_call) == 2
2207       && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 0))) == INTEGER_TYPE
2208       && TREE_CODE (TREE_TYPE (CALL_EXPR_ARG (alloc_call, 1))) == POINTER_TYPE)
2209     {
2210       tree placement_arg = CALL_EXPR_ARG (alloc_call, 1);
2211
2212       if (INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg)))
2213           || VOID_TYPE_P (TREE_TYPE (TREE_TYPE (placement_arg))))
2214         {
2215           placement_expr = get_target_expr (placement_first);
2216           CALL_EXPR_ARG (alloc_call, 1)
2217             = convert (TREE_TYPE (placement_arg), placement_expr);
2218         }
2219     }
2220
2221   /* In the simple case, we can stop now.  */
2222   pointer_type = build_pointer_type (type);
2223   if (!cookie_size && !is_initialized)
2224     return build_nop (pointer_type, alloc_call);
2225
2226   /* Store the result of the allocation call in a variable so that we can
2227      use it more than once.  */
2228   alloc_expr = get_target_expr (alloc_call);
2229   alloc_node = TARGET_EXPR_SLOT (alloc_expr);
2230
2231   /* Strip any COMPOUND_EXPRs from ALLOC_CALL.  */
2232   while (TREE_CODE (alloc_call) == COMPOUND_EXPR)
2233     alloc_call = TREE_OPERAND (alloc_call, 1);
2234
2235   /* Now, check to see if this function is actually a placement
2236      allocation function.  This can happen even when PLACEMENT is NULL
2237      because we might have something like:
2238
2239        struct S { void* operator new (size_t, int i = 0); };
2240
2241      A call to `new S' will get this allocation function, even though
2242      there is no explicit placement argument.  If there is more than
2243      one argument, or there are variable arguments, then this is a
2244      placement allocation function.  */
2245   placement_allocation_fn_p
2246     = (type_num_arguments (TREE_TYPE (alloc_fn)) > 1
2247        || varargs_function_p (alloc_fn));
2248
2249   /* Preevaluate the placement args so that we don't reevaluate them for a
2250      placement delete.  */
2251   if (placement_allocation_fn_p)
2252     {
2253       tree inits;
2254       stabilize_call (alloc_call, &inits);
2255       if (inits)
2256         alloc_expr = build2 (COMPOUND_EXPR, TREE_TYPE (alloc_expr), inits,
2257                              alloc_expr);
2258     }
2259
2260   /*        unless an allocation function is declared with an empty  excep-
2261      tion-specification  (_except.spec_),  throw(), it indicates failure to
2262      allocate storage by throwing a bad_alloc exception  (clause  _except_,
2263      _lib.bad.alloc_); it returns a non-null pointer otherwise If the allo-
2264      cation function is declared  with  an  empty  exception-specification,
2265      throw(), it returns null to indicate failure to allocate storage and a
2266      non-null pointer otherwise.
2267
2268      So check for a null exception spec on the op new we just called.  */
2269
2270   nothrow = TYPE_NOTHROW_P (TREE_TYPE (alloc_fn));
2271   check_new = (flag_check_new || nothrow) && ! use_java_new;
2272
2273   if (cookie_size)
2274     {
2275       tree cookie;
2276       tree cookie_ptr;
2277       tree size_ptr_type;
2278
2279       /* Adjust so we're pointing to the start of the object.  */
2280       data_addr = build2 (POINTER_PLUS_EXPR, TREE_TYPE (alloc_node),
2281                           alloc_node, cookie_size);
2282
2283       /* Store the number of bytes allocated so that we can know how
2284          many elements to destroy later.  We use the last sizeof
2285          (size_t) bytes to store the number of elements.  */
2286       cookie_ptr = size_binop (MINUS_EXPR, cookie_size, size_in_bytes (sizetype));
2287       cookie_ptr = fold_build2_loc (input_location,
2288                                 POINTER_PLUS_EXPR, TREE_TYPE (alloc_node),
2289                                 alloc_node, cookie_ptr);
2290       size_ptr_type = build_pointer_type (sizetype);
2291       cookie_ptr = fold_convert (size_ptr_type, cookie_ptr);
2292       cookie = cp_build_indirect_ref (cookie_ptr, RO_NULL, complain);
2293
2294       cookie_expr = build2 (MODIFY_EXPR, sizetype, cookie, nelts);
2295
2296       if (targetm.cxx.cookie_has_size ())
2297         {
2298           /* Also store the element size.  */
2299           cookie_ptr = build2 (POINTER_PLUS_EXPR, size_ptr_type, cookie_ptr,
2300                                fold_build1_loc (input_location,
2301                                             NEGATE_EXPR, sizetype,
2302                                             size_in_bytes (sizetype)));
2303
2304           cookie = cp_build_indirect_ref (cookie_ptr, RO_NULL, complain);
2305           cookie = build2 (MODIFY_EXPR, sizetype, cookie,
2306                            size_in_bytes (elt_type));
2307           cookie_expr = build2 (COMPOUND_EXPR, TREE_TYPE (cookie_expr),
2308                                 cookie, cookie_expr);
2309         }
2310     }
2311   else
2312     {
2313       cookie_expr = NULL_TREE;
2314       data_addr = alloc_node;
2315     }
2316
2317   /* Now use a pointer to the type we've actually allocated.  */
2318
2319   /* But we want to operate on a non-const version to start with,
2320      since we'll be modifying the elements.  */
2321   non_const_pointer_type = build_pointer_type
2322     (cp_build_qualified_type (type, cp_type_quals (type) & ~TYPE_QUAL_CONST));
2323
2324   data_addr = fold_convert (non_const_pointer_type, data_addr);
2325   /* Any further uses of alloc_node will want this type, too.  */
2326   alloc_node = fold_convert (non_const_pointer_type, alloc_node);
2327
2328   /* Now initialize the allocated object.  Note that we preevaluate the
2329      initialization expression, apart from the actual constructor call or
2330      assignment--we do this because we want to delay the allocation as long
2331      as possible in order to minimize the size of the exception region for
2332      placement delete.  */
2333   if (is_initialized)
2334     {
2335       bool stable;
2336       bool explicit_value_init_p = false;
2337
2338       if (*init != NULL && VEC_empty (tree, *init))
2339         {
2340           *init = NULL;
2341           explicit_value_init_p = true;
2342         }
2343
2344       if (processing_template_decl && explicit_value_init_p)
2345         {
2346           /* build_value_init doesn't work in templates, and we don't need
2347              the initializer anyway since we're going to throw it away and
2348              rebuild it at instantiation time, so just build up a single
2349              constructor call to get any appropriate diagnostics.  */
2350           init_expr = cp_build_indirect_ref (data_addr, RO_NULL, complain);
2351           if (TYPE_NEEDS_CONSTRUCTING (elt_type))
2352             init_expr = build_special_member_call (init_expr,
2353                                                    complete_ctor_identifier,
2354                                                    init, elt_type,
2355                                                    LOOKUP_NORMAL,
2356                                                    complain);
2357           stable = stabilize_init (init_expr, &init_preeval_expr);
2358         }
2359       else if (array_p)
2360         {
2361           tree vecinit = NULL_TREE;
2362           if (*init && VEC_length (tree, *init) == 1
2363               && BRACE_ENCLOSED_INITIALIZER_P (VEC_index (tree, *init, 0))
2364               && CONSTRUCTOR_IS_DIRECT_INIT (VEC_index (tree, *init, 0)))
2365             {
2366               tree arraytype, domain;
2367               vecinit = VEC_index (tree, *init, 0);
2368               if (TREE_CONSTANT (nelts))
2369                 domain = compute_array_index_type (NULL_TREE, nelts, complain);
2370               else
2371                 {
2372                   domain = NULL_TREE;
2373                   if (CONSTRUCTOR_NELTS (vecinit) > 0)
2374                     warning (0, "non-constant array size in new, unable to "
2375                              "verify length of initializer-list");
2376                 }
2377               arraytype = build_cplus_array_type (type, domain);
2378               vecinit = digest_init (arraytype, vecinit);
2379             }
2380           else if (*init)
2381             {
2382               if (complain & tf_error)
2383                 permerror (input_location, "ISO C++ forbids initialization in array new");
2384               else
2385                 return error_mark_node;
2386               vecinit = build_tree_list_vec (*init);
2387             }
2388           init_expr
2389             = build_vec_init (data_addr,
2390                               cp_build_binary_op (input_location,
2391                                                   MINUS_EXPR, outer_nelts,
2392                                                   integer_one_node,
2393                                                   complain),
2394                               vecinit,
2395                               explicit_value_init_p,
2396                               /*from_array=*/0,
2397                               complain);
2398
2399           /* An array initialization is stable because the initialization
2400              of each element is a full-expression, so the temporaries don't
2401              leak out.  */
2402           stable = true;
2403         }
2404       else
2405         {
2406           init_expr = cp_build_indirect_ref (data_addr, RO_NULL, complain);
2407
2408           if (TYPE_NEEDS_CONSTRUCTING (type) && !explicit_value_init_p)
2409             {
2410               init_expr = build_special_member_call (init_expr,
2411                                                      complete_ctor_identifier,
2412                                                      init, elt_type,
2413                                                      LOOKUP_NORMAL,
2414                                                      complain);
2415             }
2416           else if (explicit_value_init_p)
2417             {
2418               /* Something like `new int()'.  */
2419               tree val = build_value_init (type, complain);
2420               if (val == error_mark_node)
2421                 return error_mark_node;
2422               init_expr = build2 (INIT_EXPR, type, init_expr, val);
2423             }
2424           else
2425             {
2426               tree ie;
2427
2428               /* We are processing something like `new int (10)', which
2429                  means allocate an int, and initialize it with 10.  */
2430
2431               ie = build_x_compound_expr_from_vec (*init, "new initializer");
2432               init_expr = cp_build_modify_expr (init_expr, INIT_EXPR, ie,
2433                                                 complain);
2434             }
2435           stable = stabilize_init (init_expr, &init_preeval_expr);
2436         }
2437
2438       if (init_expr == error_mark_node)
2439         return error_mark_node;
2440
2441       /* If any part of the object initialization terminates by throwing an
2442          exception and a suitable deallocation function can be found, the
2443          deallocation function is called to free the memory in which the
2444          object was being constructed, after which the exception continues
2445          to propagate in the context of the new-expression. If no
2446          unambiguous matching deallocation function can be found,
2447          propagating the exception does not cause the object's memory to be
2448          freed.  */
2449       if (flag_exceptions && ! use_java_new)
2450         {
2451           enum tree_code dcode = array_p ? VEC_DELETE_EXPR : DELETE_EXPR;
2452           tree cleanup;
2453
2454           /* The Standard is unclear here, but the right thing to do
2455              is to use the same method for finding deallocation
2456              functions that we use for finding allocation functions.  */
2457           cleanup = (build_op_delete_call
2458                      (dcode,
2459                       alloc_node,
2460                       size,
2461                       globally_qualified_p,
2462                       placement_allocation_fn_p ? alloc_call : NULL_TREE,
2463                       alloc_fn));
2464
2465           if (!cleanup)
2466             /* We're done.  */;
2467           else if (stable)
2468             /* This is much simpler if we were able to preevaluate all of
2469                the arguments to the constructor call.  */
2470             {
2471               /* CLEANUP is compiler-generated, so no diagnostics.  */
2472               TREE_NO_WARNING (cleanup) = true;
2473               init_expr = build2 (TRY_CATCH_EXPR, void_type_node,
2474                                   init_expr, cleanup);
2475               /* Likewise, this try-catch is compiler-generated.  */
2476               TREE_NO_WARNING (init_expr) = true;
2477             }
2478           else
2479             /* Ack!  First we allocate the memory.  Then we set our sentry
2480                variable to true, and expand a cleanup that deletes the
2481                memory if sentry is true.  Then we run the constructor, and
2482                finally clear the sentry.
2483
2484                We need to do this because we allocate the space first, so
2485                if there are any temporaries with cleanups in the
2486                constructor args and we weren't able to preevaluate them, we
2487                need this EH region to extend until end of full-expression
2488                to preserve nesting.  */
2489             {
2490               tree end, sentry, begin;
2491
2492               begin = get_target_expr (boolean_true_node);
2493               CLEANUP_EH_ONLY (begin) = 1;
2494
2495               sentry = TARGET_EXPR_SLOT (begin);
2496
2497               /* CLEANUP is compiler-generated, so no diagnostics.  */
2498               TREE_NO_WARNING (cleanup) = true;
2499
2500               TARGET_EXPR_CLEANUP (begin)
2501                 = build3 (COND_EXPR, void_type_node, sentry,
2502                           cleanup, void_zero_node);
2503
2504               end = build2 (MODIFY_EXPR, TREE_TYPE (sentry),
2505                             sentry, boolean_false_node);
2506
2507               init_expr
2508                 = build2 (COMPOUND_EXPR, void_type_node, begin,
2509                           build2 (COMPOUND_EXPR, void_type_node, init_expr,
2510                                   end));
2511               /* Likewise, this is compiler-generated.  */
2512               TREE_NO_WARNING (init_expr) = true;
2513             }
2514         }
2515     }
2516   else
2517     init_expr = NULL_TREE;
2518
2519   /* Now build up the return value in reverse order.  */
2520
2521   rval = data_addr;
2522
2523   if (init_expr)
2524     rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_expr, rval);
2525   if (cookie_expr)
2526     rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), cookie_expr, rval);
2527
2528   if (rval == data_addr)
2529     /* If we don't have an initializer or a cookie, strip the TARGET_EXPR
2530        and return the call (which doesn't need to be adjusted).  */
2531     rval = TARGET_EXPR_INITIAL (alloc_expr);
2532   else
2533     {
2534       if (check_new)
2535         {
2536           tree ifexp = cp_build_binary_op (input_location,
2537                                            NE_EXPR, alloc_node,
2538                                            integer_zero_node,
2539                                            complain);
2540           rval = build_conditional_expr (ifexp, rval, alloc_node, 
2541                                          complain);
2542         }
2543
2544       /* Perform the allocation before anything else, so that ALLOC_NODE
2545          has been initialized before we start using it.  */
2546       rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), alloc_expr, rval);
2547     }
2548
2549   if (init_preeval_expr)
2550     rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), init_preeval_expr, rval);
2551
2552   /* A new-expression is never an lvalue.  */
2553   gcc_assert (!lvalue_p (rval));
2554
2555   return convert (pointer_type, rval);
2556 }
2557
2558 /* Generate a representation for a C++ "new" expression.  *PLACEMENT
2559    is a vector of placement-new arguments (or NULL if none).  If NELTS
2560    is NULL, TYPE is the type of the storage to be allocated.  If NELTS
2561    is not NULL, then this is an array-new allocation; TYPE is the type
2562    of the elements in the array and NELTS is the number of elements in
2563    the array.  *INIT, if non-NULL, is the initializer for the new
2564    object, or an empty vector to indicate an initializer of "()".  If
2565    USE_GLOBAL_NEW is true, then the user explicitly wrote "::new"
2566    rather than just "new".  This may change PLACEMENT and INIT.  */
2567
2568 tree
2569 build_new (VEC(tree,gc) **placement, tree type, tree nelts,
2570            VEC(tree,gc) **init, int use_global_new, tsubst_flags_t complain)
2571 {
2572   tree rval;
2573   VEC(tree,gc) *orig_placement = NULL;
2574   tree orig_nelts = NULL_TREE;
2575   VEC(tree,gc) *orig_init = NULL;
2576
2577   if (type == error_mark_node)
2578     return error_mark_node;
2579
2580   if (nelts == NULL_TREE && VEC_length (tree, *init) == 1)
2581     {
2582       tree auto_node = type_uses_auto (type);
2583       if (auto_node)
2584         {
2585           tree d_init = VEC_index (tree, *init, 0);
2586           d_init = resolve_nondeduced_context (d_init);
2587           if (describable_type (d_init))
2588             type = do_auto_deduction (type, d_init, auto_node);
2589         }
2590     }
2591
2592   if (processing_template_decl)
2593     {
2594       if (dependent_type_p (type)
2595           || any_type_dependent_arguments_p (*placement)
2596           || (nelts && type_dependent_expression_p (nelts))
2597           || any_type_dependent_arguments_p (*init))
2598         return build_raw_new_expr (*placement, type, nelts, *init,
2599                                    use_global_new);
2600
2601       orig_placement = make_tree_vector_copy (*placement);
2602       orig_nelts = nelts;
2603       orig_init = make_tree_vector_copy (*init);
2604
2605       make_args_non_dependent (*placement);
2606       if (nelts)
2607         nelts = build_non_dependent_expr (nelts);
2608       make_args_non_dependent (*init);
2609     }
2610
2611   if (nelts)
2612     {
2613       if (!build_expr_type_conversion (WANT_INT | WANT_ENUM, nelts, false))
2614         {
2615           if (complain & tf_error)
2616             permerror (input_location, "size in array new must have integral type");
2617           else
2618             return error_mark_node;
2619         }
2620       nelts = mark_rvalue_use (nelts);
2621       nelts = cp_save_expr (cp_convert (sizetype, nelts));
2622     }
2623
2624   /* ``A reference cannot be created by the new operator.  A reference
2625      is not an object (8.2.2, 8.4.3), so a pointer to it could not be
2626      returned by new.'' ARM 5.3.3 */
2627   if (TREE_CODE (type) == REFERENCE_TYPE)
2628     {
2629       if (complain & tf_error)
2630         error ("new cannot be applied to a reference type");
2631       else
2632         return error_mark_node;
2633       type = TREE_TYPE (type);
2634     }
2635
2636   if (TREE_CODE (type) == FUNCTION_TYPE)
2637     {
2638       if (complain & tf_error)
2639         error ("new cannot be applied to a function type");
2640       return error_mark_node;
2641     }
2642
2643   /* The type allocated must be complete.  If the new-type-id was
2644      "T[N]" then we are just checking that "T" is complete here, but
2645      that is equivalent, since the value of "N" doesn't matter.  */
2646   if (!complete_type_or_maybe_complain (type, NULL_TREE, complain))
2647     return error_mark_node;
2648
2649   rval = build_new_1 (placement, type, nelts, init, use_global_new, complain);
2650   if (rval == error_mark_node)
2651     return error_mark_node;
2652
2653   if (processing_template_decl)
2654     {
2655       tree ret = build_raw_new_expr (orig_placement, type, orig_nelts,
2656                                      orig_init, use_global_new);
2657       release_tree_vector (orig_placement);
2658       release_tree_vector (orig_init);
2659       return ret;
2660     }
2661
2662   /* Wrap it in a NOP_EXPR so warn_if_unused_value doesn't complain.  */
2663   rval = build1 (NOP_EXPR, TREE_TYPE (rval), rval);
2664   TREE_NO_WARNING (rval) = 1;
2665
2666   return rval;
2667 }
2668
2669 /* Given a Java class, return a decl for the corresponding java.lang.Class.  */
2670
2671 tree
2672 build_java_class_ref (tree type)
2673 {
2674   tree name = NULL_TREE, class_decl;
2675   static tree CL_suffix = NULL_TREE;
2676   if (CL_suffix == NULL_TREE)
2677     CL_suffix = get_identifier("class$");
2678   if (jclass_node == NULL_TREE)
2679     {
2680       jclass_node = IDENTIFIER_GLOBAL_VALUE (get_identifier ("jclass"));
2681       if (jclass_node == NULL_TREE)
2682         {
2683           error ("call to Java constructor, while %<jclass%> undefined");
2684           return error_mark_node;
2685         }
2686       jclass_node = TREE_TYPE (jclass_node);
2687     }
2688
2689   /* Mangle the class$ field.  */
2690   {
2691     tree field;
2692     for (field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
2693       if (DECL_NAME (field) == CL_suffix)
2694         {
2695           mangle_decl (field);
2696           name = DECL_ASSEMBLER_NAME (field);
2697           break;
2698         }
2699     if (!field)
2700       {
2701         error ("can%'t find %<class$%> in %qT", type);
2702         return error_mark_node;
2703       }
2704   }
2705
2706   class_decl = IDENTIFIER_GLOBAL_VALUE (name);
2707   if (class_decl == NULL_TREE)
2708     {
2709       class_decl = build_decl (input_location,
2710                                VAR_DECL, name, TREE_TYPE (jclass_node));
2711       TREE_STATIC (class_decl) = 1;
2712       DECL_EXTERNAL (class_decl) = 1;
2713       TREE_PUBLIC (class_decl) = 1;
2714       DECL_ARTIFICIAL (class_decl) = 1;
2715       DECL_IGNORED_P (class_decl) = 1;
2716       pushdecl_top_level (class_decl);
2717       make_decl_rtl (class_decl);
2718     }
2719   return class_decl;
2720 }
2721 \f
2722 static tree
2723 build_vec_delete_1 (tree base, tree maxindex, tree type,
2724                     special_function_kind auto_delete_vec,
2725                     int use_global_delete, tsubst_flags_t complain)
2726 {
2727   tree virtual_size;
2728   tree ptype = build_pointer_type (type = complete_type (type));
2729   tree size_exp = size_in_bytes (type);
2730
2731   /* Temporary variables used by the loop.  */
2732   tree tbase, tbase_init;
2733
2734   /* This is the body of the loop that implements the deletion of a
2735      single element, and moves temp variables to next elements.  */
2736   tree body;
2737
2738   /* This is the LOOP_EXPR that governs the deletion of the elements.  */
2739   tree loop = 0;
2740
2741   /* This is the thing that governs what to do after the loop has run.  */
2742   tree deallocate_expr = 0;
2743
2744   /* This is the BIND_EXPR which holds the outermost iterator of the
2745      loop.  It is convenient to set this variable up and test it before
2746      executing any other code in the loop.
2747      This is also the containing expression returned by this function.  */
2748   tree controller = NULL_TREE;
2749   tree tmp;
2750
2751   /* We should only have 1-D arrays here.  */
2752   gcc_assert (TREE_CODE (type) != ARRAY_TYPE);
2753
2754   if (base == error_mark_node || maxindex == error_mark_node)
2755     return error_mark_node;
2756
2757   if (! MAYBE_CLASS_TYPE_P (type) || TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
2758     goto no_destructor;
2759
2760   /* The below is short by the cookie size.  */
2761   virtual_size = size_binop (MULT_EXPR, size_exp,
2762                              convert (sizetype, maxindex));
2763
2764   tbase = create_temporary_var (ptype);
2765   tbase_init = cp_build_modify_expr (tbase, NOP_EXPR,
2766                                      fold_build2_loc (input_location,
2767                                                   POINTER_PLUS_EXPR, ptype,
2768                                                   fold_convert (ptype, base),
2769                                                   virtual_size),
2770                                      complain);
2771   if (tbase_init == error_mark_node)
2772     return error_mark_node;
2773   controller = build3 (BIND_EXPR, void_type_node, tbase,
2774                        NULL_TREE, NULL_TREE);
2775   TREE_SIDE_EFFECTS (controller) = 1;
2776
2777   body = build1 (EXIT_EXPR, void_type_node,
2778                  build2 (EQ_EXPR, boolean_type_node, tbase,
2779                          fold_convert (ptype, base)));
2780   tmp = fold_build1_loc (input_location, NEGATE_EXPR, sizetype, size_exp);
2781   tmp = build2 (POINTER_PLUS_EXPR, ptype, tbase, tmp);
2782   tmp = cp_build_modify_expr (tbase, NOP_EXPR, tmp, complain);
2783   if (tmp == error_mark_node)
2784     return error_mark_node;
2785   body = build_compound_expr (input_location, body, tmp);
2786   tmp = build_delete (ptype, tbase, sfk_complete_destructor,
2787                       LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1,
2788                       complain);
2789   if (tmp == error_mark_node)
2790     return error_mark_node;
2791   body = build_compound_expr (input_location, body, tmp);
2792
2793   loop = build1 (LOOP_EXPR, void_type_node, body);
2794   loop = build_compound_expr (input_location, tbase_init, loop);
2795
2796  no_destructor:
2797   /* Delete the storage if appropriate.  */
2798   if (auto_delete_vec == sfk_deleting_destructor)
2799     {
2800       tree base_tbd;
2801
2802       /* The below is short by the cookie size.  */
2803       virtual_size = size_binop (MULT_EXPR, size_exp,
2804                                  convert (sizetype, maxindex));
2805
2806       if (! TYPE_VEC_NEW_USES_COOKIE (type))
2807         /* no header */
2808         base_tbd = base;
2809       else
2810         {
2811           tree cookie_size;
2812
2813           cookie_size = targetm.cxx.get_cookie_size (type);
2814           base_tbd = cp_build_binary_op (input_location,
2815                                          MINUS_EXPR,
2816                                          cp_convert (string_type_node,
2817                                                      base),
2818                                          cookie_size,
2819                                          complain);
2820           if (base_tbd == error_mark_node)
2821             return error_mark_node;
2822           base_tbd = cp_convert (ptype, base_tbd);
2823           /* True size with header.  */
2824           virtual_size = size_binop (PLUS_EXPR, virtual_size, cookie_size);
2825         }
2826
2827       deallocate_expr = build_op_delete_call (VEC_DELETE_EXPR,
2828                                               base_tbd, virtual_size,
2829                                               use_global_delete & 1,
2830                                               /*placement=*/NULL_TREE,
2831                                               /*alloc_fn=*/NULL_TREE);
2832     }
2833
2834   body = loop;
2835   if (!deallocate_expr)
2836     ;
2837   else if (!body)
2838     body = deallocate_expr;
2839   else
2840     body = build_compound_expr (input_location, body, deallocate_expr);
2841
2842   if (!body)
2843     body = integer_zero_node;
2844
2845   /* Outermost wrapper: If pointer is null, punt.  */
2846   body = fold_build3_loc (input_location, COND_EXPR, void_type_node,
2847                       fold_build2_loc (input_location,
2848                                    NE_EXPR, boolean_type_node, base,
2849                                    convert (TREE_TYPE (base),
2850                                             integer_zero_node)),
2851                       body, integer_zero_node);
2852   body = build1 (NOP_EXPR, void_type_node, body);
2853
2854   if (controller)
2855     {
2856       TREE_OPERAND (controller, 1) = body;
2857       body = controller;
2858     }
2859
2860   if (TREE_CODE (base) == SAVE_EXPR)
2861     /* Pre-evaluate the SAVE_EXPR outside of the BIND_EXPR.  */
2862     body = build2 (COMPOUND_EXPR, void_type_node, base, body);
2863
2864   return convert_to_void (body, ICV_CAST, complain);
2865 }
2866
2867 /* Create an unnamed variable of the indicated TYPE.  */
2868
2869 tree
2870 create_temporary_var (tree type)
2871 {
2872   tree decl;
2873
2874   decl = build_decl (input_location,
2875                      VAR_DECL, NULL_TREE, type);
2876   TREE_USED (decl) = 1;
2877   DECL_ARTIFICIAL (decl) = 1;
2878   DECL_IGNORED_P (decl) = 1;
2879   DECL_CONTEXT (decl) = current_function_decl;
2880
2881   return decl;
2882 }
2883
2884 /* Create a new temporary variable of the indicated TYPE, initialized
2885    to INIT.
2886
2887    It is not entered into current_binding_level, because that breaks
2888    things when it comes time to do final cleanups (which take place
2889    "outside" the binding contour of the function).  */
2890
2891 tree
2892 get_temp_regvar (tree type, tree init)
2893 {
2894   tree decl;
2895
2896   decl = create_temporary_var (type);
2897   add_decl_expr (decl);
2898
2899   finish_expr_stmt (cp_build_modify_expr (decl, INIT_EXPR, init, 
2900                                           tf_warning_or_error));
2901
2902   return decl;
2903 }
2904
2905 /* `build_vec_init' returns tree structure that performs
2906    initialization of a vector of aggregate types.
2907
2908    BASE is a reference to the vector, of ARRAY_TYPE, or a pointer
2909      to the first element, of POINTER_TYPE.
2910    MAXINDEX is the maximum index of the array (one less than the
2911      number of elements).  It is only used if BASE is a pointer or
2912      TYPE_DOMAIN (TREE_TYPE (BASE)) == NULL_TREE.
2913
2914    INIT is the (possibly NULL) initializer.
2915
2916    If EXPLICIT_VALUE_INIT_P is true, then INIT must be NULL.  All
2917    elements in the array are value-initialized.
2918
2919    FROM_ARRAY is 0 if we should init everything with INIT
2920    (i.e., every element initialized from INIT).
2921    FROM_ARRAY is 1 if we should index into INIT in parallel
2922    with initialization of DECL.
2923    FROM_ARRAY is 2 if we should index into INIT in parallel,
2924    but use assignment instead of initialization.  */
2925
2926 tree
2927 build_vec_init (tree base, tree maxindex, tree init,
2928                 bool explicit_value_init_p,
2929                 int from_array, tsubst_flags_t complain)
2930 {
2931   tree rval;
2932   tree base2 = NULL_TREE;
2933   tree itype = NULL_TREE;
2934   tree iterator;
2935   /* The type of BASE.  */
2936   tree atype = TREE_TYPE (base);
2937   /* The type of an element in the array.  */
2938   tree type = TREE_TYPE (atype);
2939   /* The element type reached after removing all outer array
2940      types.  */
2941   tree inner_elt_type;
2942   /* The type of a pointer to an element in the array.  */
2943   tree ptype;
2944   tree stmt_expr;
2945   tree compound_stmt;
2946   int destroy_temps;
2947   tree try_block = NULL_TREE;
2948   int num_initialized_elts = 0;
2949   bool is_global;
2950   tree const_init = NULL_TREE;
2951   tree obase = base;
2952   bool xvalue = false;
2953   bool errors = false;
2954
2955   if (TREE_CODE (atype) == ARRAY_TYPE && TYPE_DOMAIN (atype))
2956     maxindex = array_type_nelts (atype);
2957
2958   if (maxindex == NULL_TREE || maxindex == error_mark_node)
2959     return error_mark_node;
2960
2961   if (explicit_value_init_p)
2962     gcc_assert (!init);
2963
2964   inner_elt_type = strip_array_types (type);
2965
2966   /* Look through the TARGET_EXPR around a compound literal.  */
2967   if (init && TREE_CODE (init) == TARGET_EXPR
2968       && TREE_CODE (TARGET_EXPR_INITIAL (init)) == CONSTRUCTOR
2969       && from_array != 2)
2970     init = TARGET_EXPR_INITIAL (init);
2971
2972   if (init
2973       && TREE_CODE (atype) == ARRAY_TYPE
2974       && (from_array == 2
2975           ? (!CLASS_TYPE_P (inner_elt_type)
2976              || !TYPE_HAS_COMPLEX_COPY_ASSIGN (inner_elt_type))
2977           : !TYPE_NEEDS_CONSTRUCTING (type))
2978       && ((TREE_CODE (init) == CONSTRUCTOR
2979            /* Don't do this if the CONSTRUCTOR might contain something
2980               that might throw and require us to clean up.  */
2981            && (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init))
2982                || ! TYPE_HAS_NONTRIVIAL_DESTRUCTOR (inner_elt_type)))
2983           || from_array))
2984     {
2985       /* Do non-default initialization of trivial arrays resulting from
2986          brace-enclosed initializers.  In this case, digest_init and
2987          store_constructor will handle the semantics for us.  */
2988
2989       stmt_expr = build2 (INIT_EXPR, atype, base, init);
2990       return stmt_expr;
2991     }
2992
2993   maxindex = cp_convert (ptrdiff_type_node, maxindex);
2994   if (TREE_CODE (atype) == ARRAY_TYPE)
2995     {
2996       ptype = build_pointer_type (type);
2997       base = cp_convert (ptype, decay_conversion (base));
2998     }
2999   else
3000     ptype = atype;
3001
3002   /* The code we are generating looks like:
3003      ({
3004        T* t1 = (T*) base;
3005        T* rval = t1;
3006        ptrdiff_t iterator = maxindex;
3007        try {
3008          for (; iterator != -1; --iterator) {
3009            ... initialize *t1 ...
3010            ++t1;
3011          }
3012        } catch (...) {
3013          ... destroy elements that were constructed ...
3014        }
3015        rval;
3016      })
3017
3018      We can omit the try and catch blocks if we know that the
3019      initialization will never throw an exception, or if the array
3020      elements do not have destructors.  We can omit the loop completely if
3021      the elements of the array do not have constructors.
3022
3023      We actually wrap the entire body of the above in a STMT_EXPR, for
3024      tidiness.
3025
3026      When copying from array to another, when the array elements have
3027      only trivial copy constructors, we should use __builtin_memcpy
3028      rather than generating a loop.  That way, we could take advantage
3029      of whatever cleverness the back end has for dealing with copies
3030      of blocks of memory.  */
3031
3032   is_global = begin_init_stmts (&stmt_expr, &compound_stmt);
3033   destroy_temps = stmts_are_full_exprs_p ();
3034   current_stmt_tree ()->stmts_are_full_exprs_p = 0;
3035   rval = get_temp_regvar (ptype, base);
3036   base = get_temp_regvar (ptype, rval);
3037   iterator = get_temp_regvar (ptrdiff_type_node, maxindex);
3038
3039   /* If initializing one array from another, initialize element by
3040      element.  We rely upon the below calls to do the argument
3041      checking.  Evaluate the initializer before entering the try block.  */
3042   if (from_array && init && TREE_CODE (init) != CONSTRUCTOR)
3043     {
3044       if (lvalue_kind (init) & clk_rvalueref)
3045         xvalue = true;
3046       base2 = decay_conversion (init);
3047       itype = TREE_TYPE (base2);
3048       base2 = get_temp_regvar (itype, base2);
3049       itype = TREE_TYPE (itype);
3050     }
3051
3052   /* Protect the entire array initialization so that we can destroy
3053      the partially constructed array if an exception is thrown.
3054      But don't do this if we're assigning.  */
3055   if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
3056       && from_array != 2)
3057     {
3058       try_block = begin_try_block ();
3059     }
3060
3061   /* Maybe pull out constant value when from_array? */
3062
3063   if (init != NULL_TREE && TREE_CODE (init) == CONSTRUCTOR)
3064     {
3065       /* Do non-default initialization of non-trivial arrays resulting from
3066          brace-enclosed initializers.  */
3067       unsigned HOST_WIDE_INT idx;
3068       tree field, elt;
3069       /* Should we try to create a constant initializer?  */
3070       bool try_const = (literal_type_p (inner_elt_type)
3071                         || TYPE_HAS_CONSTEXPR_CTOR (inner_elt_type));
3072       bool saw_non_const = false;
3073       bool saw_const = false;
3074       /* If we're initializing a static array, we want to do static
3075          initialization of any elements with constant initializers even if
3076          some are non-constant.  */
3077       bool do_static_init = (DECL_P (obase) && TREE_STATIC (obase));
3078       VEC(constructor_elt,gc) *new_vec;
3079       from_array = 0;
3080
3081       if (try_const)
3082         new_vec = VEC_alloc (constructor_elt, gc, CONSTRUCTOR_NELTS (init));
3083       else
3084         new_vec = NULL;
3085
3086       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, field, elt)
3087         {
3088           tree baseref = build1 (INDIRECT_REF, type, base);
3089           tree one_init;
3090
3091           num_initialized_elts++;
3092
3093           current_stmt_tree ()->stmts_are_full_exprs_p = 1;
3094           if (MAYBE_CLASS_TYPE_P (type) || TREE_CODE (type) == ARRAY_TYPE)
3095             one_init = build_aggr_init (baseref, elt, 0, complain);
3096           else
3097             one_init = cp_build_modify_expr (baseref, NOP_EXPR,
3098                                              elt, complain);
3099           if (one_init == error_mark_node)
3100             errors = true;
3101           if (try_const)
3102             {
3103               tree e = one_init;
3104               if (TREE_CODE (e) == EXPR_STMT)
3105                 e = TREE_OPERAND (e, 0);
3106               if (TREE_CODE (e) == CONVERT_EXPR
3107                   && VOID_TYPE_P (TREE_TYPE (e)))
3108                 e = TREE_OPERAND (e, 0);
3109               e = maybe_constant_init (e);
3110               if (reduced_constant_expression_p (e))
3111                 {
3112                   CONSTRUCTOR_APPEND_ELT (new_vec, field, e);
3113                   if (do_static_init)
3114                     one_init = NULL_TREE;
3115                   else
3116                     one_init = build2 (INIT_EXPR, type, baseref, e);
3117                   saw_const = true;
3118                 }
3119               else
3120                 {
3121                   if (do_static_init)
3122                     CONSTRUCTOR_APPEND_ELT (new_vec, field,
3123                                             build_zero_init (TREE_TYPE (e),
3124                                                              NULL_TREE, true));
3125                   saw_non_const = true;
3126                 }
3127             }
3128
3129           if (one_init)
3130             finish_expr_stmt (one_init);
3131           current_stmt_tree ()->stmts_are_full_exprs_p = 0;
3132
3133           one_init = cp_build_unary_op (PREINCREMENT_EXPR, base, 0, complain);
3134           if (one_init == error_mark_node)
3135             errors = true;
3136           else
3137             finish_expr_stmt (one_init);
3138
3139           one_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
3140                                         complain);
3141           if (one_init == error_mark_node)
3142             errors = true;
3143           else
3144             finish_expr_stmt (one_init);
3145         }
3146
3147       if (try_const)
3148         {
3149           if (!saw_non_const)
3150             const_init = build_constructor (atype, new_vec);
3151           else if (do_static_init && saw_const)
3152             DECL_INITIAL (obase) = build_constructor (atype, new_vec);
3153           else
3154             VEC_free (constructor_elt, gc, new_vec);
3155         }
3156
3157       /* Clear out INIT so that we don't get confused below.  */
3158       init = NULL_TREE;
3159     }
3160   else if (from_array)
3161     {
3162       if (init)
3163         /* OK, we set base2 above.  */;
3164       else if (TYPE_LANG_SPECIFIC (type)
3165                && TYPE_NEEDS_CONSTRUCTING (type)
3166                && ! TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
3167         {
3168           if (complain & tf_error)
3169             error ("initializer ends prematurely");
3170           errors = true;
3171         }
3172     }
3173
3174   /* Now, default-initialize any remaining elements.  We don't need to
3175      do that if a) the type does not need constructing, or b) we've
3176      already initialized all the elements.
3177
3178      We do need to keep going if we're copying an array.  */
3179
3180   if (from_array
3181       || ((TYPE_NEEDS_CONSTRUCTING (type) || explicit_value_init_p)
3182           && ! (host_integerp (maxindex, 0)
3183                 && (num_initialized_elts
3184                     == tree_low_cst (maxindex, 0) + 1))))
3185     {
3186       /* If the ITERATOR is equal to -1, then we don't have to loop;
3187          we've already initialized all the elements.  */
3188       tree for_stmt;
3189       tree elt_init;
3190       tree to;
3191
3192       for_stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
3193       finish_for_init_stmt (for_stmt);
3194       finish_for_cond (build2 (NE_EXPR, boolean_type_node, iterator,
3195                                build_int_cst (TREE_TYPE (iterator), -1)),
3196                        for_stmt);
3197       elt_init = cp_build_unary_op (PREDECREMENT_EXPR, iterator, 0,
3198                                     complain);
3199       if (elt_init == error_mark_node)
3200         errors = true;
3201       finish_for_expr (elt_init, for_stmt);
3202
3203       to = build1 (INDIRECT_REF, type, base);
3204
3205       if (from_array)
3206         {
3207           tree from;
3208
3209           if (base2)
3210             {
3211               from = build1 (INDIRECT_REF, itype, base2);
3212               if (xvalue)
3213                 from = move (from);
3214             }
3215           else
3216             from = NULL_TREE;
3217
3218           if (from_array == 2)
3219             elt_init = cp_build_modify_expr (to, NOP_EXPR, from, 
3220                                              complain);
3221           else if (TYPE_NEEDS_CONSTRUCTING (type))
3222             elt_init = build_aggr_init (to, from, 0, complain);
3223           else if (from)
3224             elt_init = cp_build_modify_expr (to, NOP_EXPR, from,
3225                                              complain);
3226           else
3227             gcc_unreachable ();
3228         }
3229       else if (TREE_CODE (type) == ARRAY_TYPE)
3230         {
3231           if (init != 0)
3232             sorry
3233               ("cannot initialize multi-dimensional array with initializer");
3234           elt_init = build_vec_init (build1 (INDIRECT_REF, type, base),
3235                                      0, 0,
3236                                      explicit_value_init_p,
3237                                      0, complain);
3238         }
3239       else if (explicit_value_init_p)
3240         {
3241           elt_init = build_value_init (type, complain);
3242           if (elt_init != error_mark_node)
3243             elt_init = build2 (INIT_EXPR, type, to, elt_init);
3244         }
3245       else
3246         {
3247           gcc_assert (TYPE_NEEDS_CONSTRUCTING (type));
3248           elt_init = build_aggr_init (to, init, 0, complain);
3249         }
3250
3251       if (elt_init == error_mark_node)
3252         errors = true;
3253
3254       current_stmt_tree ()->stmts_are_full_exprs_p = 1;
3255       finish_expr_stmt (elt_init);
3256       current_stmt_tree ()->stmts_are_full_exprs_p = 0;
3257
3258       finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base, 0,
3259                                            complain));
3260       if (base2)
3261         finish_expr_stmt (cp_build_unary_op (PREINCREMENT_EXPR, base2, 0,
3262                                              complain));
3263
3264       finish_for_stmt (for_stmt);
3265     }
3266
3267   /* Make sure to cleanup any partially constructed elements.  */
3268   if (flag_exceptions && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
3269       && from_array != 2)
3270     {
3271       tree e;
3272       tree m = cp_build_binary_op (input_location,
3273                                    MINUS_EXPR, maxindex, iterator,
3274                                    complain);
3275
3276       /* Flatten multi-dimensional array since build_vec_delete only
3277          expects one-dimensional array.  */
3278       if (TREE_CODE (type) == ARRAY_TYPE)
3279         m = cp_build_binary_op (input_location,
3280                                 MULT_EXPR, m,
3281                                 array_type_nelts_total (type),
3282                                 complain);
3283
3284       finish_cleanup_try_block (try_block);
3285       e = build_vec_delete_1 (rval, m,
3286                               inner_elt_type, sfk_complete_destructor,
3287                               /*use_global_delete=*/0, complain);
3288       if (e == error_mark_node)
3289         errors = true;
3290       finish_cleanup (e, try_block);
3291     }
3292
3293   /* The value of the array initialization is the array itself, RVAL
3294      is a pointer to the first element.  */
3295   finish_stmt_expr_expr (rval, stmt_expr);
3296
3297   stmt_expr = finish_init_stmts (is_global, stmt_expr, compound_stmt);
3298
3299   /* Now make the result have the correct type.  */
3300   if (TREE_CODE (atype) == ARRAY_TYPE)
3301     {
3302       atype = build_pointer_type (atype);
3303       stmt_expr = build1 (NOP_EXPR, atype, stmt_expr);
3304       stmt_expr = cp_build_indirect_ref (stmt_expr, RO_NULL, complain);
3305       TREE_NO_WARNING (stmt_expr) = 1;
3306     }
3307
3308   current_stmt_tree ()->stmts_are_full_exprs_p = destroy_temps;
3309
3310   if (const_init)
3311     return build2 (INIT_EXPR, atype, obase, const_init);
3312   if (errors)
3313     return error_mark_node;
3314   return stmt_expr;
3315 }
3316
3317 /* Call the DTOR_KIND destructor for EXP.  FLAGS are as for
3318    build_delete.  */
3319
3320 static tree
3321 build_dtor_call (tree exp, special_function_kind dtor_kind, int flags,
3322                  tsubst_flags_t complain)
3323 {
3324   tree name;
3325   tree fn;
3326   switch (dtor_kind)
3327     {
3328     case sfk_complete_destructor:
3329       name = complete_dtor_identifier;
3330       break;
3331
3332     case sfk_base_destructor:
3333       name = base_dtor_identifier;
3334       break;
3335
3336     case sfk_deleting_destructor:
3337       name = deleting_dtor_identifier;
3338       break;
3339
3340     default:
3341       gcc_unreachable ();
3342     }
3343   fn = lookup_fnfields (TREE_TYPE (exp), name, /*protect=*/2);
3344   return build_new_method_call (exp, fn,
3345                                 /*args=*/NULL,
3346                                 /*conversion_path=*/NULL_TREE,
3347                                 flags,
3348                                 /*fn_p=*/NULL,
3349                                 complain);
3350 }
3351
3352 /* Generate a call to a destructor. TYPE is the type to cast ADDR to.
3353    ADDR is an expression which yields the store to be destroyed.
3354    AUTO_DELETE is the name of the destructor to call, i.e., either
3355    sfk_complete_destructor, sfk_base_destructor, or
3356    sfk_deleting_destructor.
3357
3358    FLAGS is the logical disjunction of zero or more LOOKUP_
3359    flags.  See cp-tree.h for more info.  */
3360
3361 tree
3362 build_delete (tree type, tree addr, special_function_kind auto_delete,
3363               int flags, int use_global_delete, tsubst_flags_t complain)
3364 {
3365   tree expr;
3366
3367   if (addr == error_mark_node)
3368     return error_mark_node;
3369
3370   /* Can happen when CURRENT_EXCEPTION_OBJECT gets its type
3371      set to `error_mark_node' before it gets properly cleaned up.  */
3372   if (type == error_mark_node)
3373     return error_mark_node;
3374
3375   type = TYPE_MAIN_VARIANT (type);
3376
3377   addr = mark_rvalue_use (addr);
3378
3379   if (TREE_CODE (type) == POINTER_TYPE)
3380     {
3381       bool complete_p = true;
3382
3383       type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
3384       if (TREE_CODE (type) == ARRAY_TYPE)
3385         goto handle_array;
3386
3387       /* We don't want to warn about delete of void*, only other
3388           incomplete types.  Deleting other incomplete types
3389           invokes undefined behavior, but it is not ill-formed, so
3390           compile to something that would even do The Right Thing
3391           (TM) should the type have a trivial dtor and no delete
3392           operator.  */
3393       if (!VOID_TYPE_P (type))
3394         {
3395           complete_type (type);
3396           if (!COMPLETE_TYPE_P (type))
3397             {
3398               if ((complain & tf_warning)
3399                   && warning (0, "possible problem detected in invocation of "
3400                               "delete operator:"))
3401                 {
3402                   cxx_incomplete_type_diagnostic (addr, type, DK_WARNING);
3403                   inform (input_location, "neither the destructor nor the class-specific "
3404                           "operator delete will be called, even if they are "
3405                           "declared when the class is defined");
3406                 }
3407               complete_p = false;
3408             }
3409         }
3410       if (VOID_TYPE_P (type) || !complete_p || !MAYBE_CLASS_TYPE_P (type))
3411         /* Call the builtin operator delete.  */
3412         return build_builtin_delete_call (addr);
3413       if (TREE_SIDE_EFFECTS (addr))
3414         addr = save_expr (addr);
3415
3416       /* Throw away const and volatile on target type of addr.  */
3417       addr = convert_force (build_pointer_type (type), addr, 0);
3418     }
3419   else if (TREE_CODE (type) == ARRAY_TYPE)
3420     {
3421     handle_array:
3422
3423       if (TYPE_DOMAIN (type) == NULL_TREE)
3424         {
3425           if (complain & tf_error)
3426             error ("unknown array size in delete");
3427           return error_mark_node;
3428         }
3429       return build_vec_delete (addr, array_type_nelts (type),
3430                                auto_delete, use_global_delete, complain);
3431     }
3432   else
3433     {
3434       /* Don't check PROTECT here; leave that decision to the
3435          destructor.  If the destructor is accessible, call it,
3436          else report error.  */
3437       addr = cp_build_addr_expr (addr, complain);
3438       if (addr == error_mark_node)
3439         return error_mark_node;
3440       if (TREE_SIDE_EFFECTS (addr))
3441         addr = save_expr (addr);
3442
3443       addr = convert_force (build_pointer_type (type), addr, 0);
3444     }
3445
3446   gcc_assert (MAYBE_CLASS_TYPE_P (type));
3447
3448   if (TYPE_HAS_TRIVIAL_DESTRUCTOR (type))
3449     {
3450       if (auto_delete != sfk_deleting_destructor)
3451         return void_zero_node;
3452
3453       return build_op_delete_call (DELETE_EXPR, addr,
3454                                    cxx_sizeof_nowarn (type),
3455                                    use_global_delete,
3456                                    /*placement=*/NULL_TREE,
3457                                    /*alloc_fn=*/NULL_TREE);
3458     }
3459   else
3460     {
3461       tree head = NULL_TREE;
3462       tree do_delete = NULL_TREE;
3463       tree ifexp;
3464
3465       if (CLASSTYPE_LAZY_DESTRUCTOR (type))
3466         lazily_declare_fn (sfk_destructor, type);
3467
3468       /* For `::delete x', we must not use the deleting destructor
3469          since then we would not be sure to get the global `operator
3470          delete'.  */
3471       if (use_global_delete && auto_delete == sfk_deleting_destructor)
3472         {
3473           /* We will use ADDR multiple times so we must save it.  */
3474           addr = save_expr (addr);
3475           head = get_target_expr (build_headof (addr));
3476           /* Delete the object.  */
3477           do_delete = build_builtin_delete_call (head);
3478           /* Otherwise, treat this like a complete object destructor
3479              call.  */
3480           auto_delete = sfk_complete_destructor;
3481         }
3482       /* If the destructor is non-virtual, there is no deleting
3483          variant.  Instead, we must explicitly call the appropriate
3484          `operator delete' here.  */
3485       else if (!DECL_VIRTUAL_P (CLASSTYPE_DESTRUCTORS (type))
3486                && auto_delete == sfk_deleting_destructor)
3487         {
3488           /* We will use ADDR multiple times so we must save it.  */
3489           addr = save_expr (addr);
3490           /* Build the call.  */
3491           do_delete = build_op_delete_call (DELETE_EXPR,
3492                                             addr,
3493                                             cxx_sizeof_nowarn (type),
3494                                             /*global_p=*/false,
3495                                             /*placement=*/NULL_TREE,
3496                                             /*alloc_fn=*/NULL_TREE);
3497           /* Call the complete object destructor.  */
3498           auto_delete = sfk_complete_destructor;
3499         }
3500       else if (auto_delete == sfk_deleting_destructor
3501                && TYPE_GETS_REG_DELETE (type))
3502         {
3503           /* Make sure we have access to the member op delete, even though
3504              we'll actually be calling it from the destructor.  */
3505           build_op_delete_call (DELETE_EXPR, addr, cxx_sizeof_nowarn (type),
3506                                 /*global_p=*/false,
3507                                 /*placement=*/NULL_TREE,
3508                                 /*alloc_fn=*/NULL_TREE);
3509         }
3510
3511       expr = build_dtor_call (cp_build_indirect_ref (addr, RO_NULL, complain),
3512                               auto_delete, flags, complain);
3513       if (expr == error_mark_node)
3514         return error_mark_node;
3515       if (do_delete)
3516         expr = build2 (COMPOUND_EXPR, void_type_node, expr, do_delete);
3517
3518       /* We need to calculate this before the dtor changes the vptr.  */
3519       if (head)
3520         expr = build2 (COMPOUND_EXPR, void_type_node, head, expr);
3521
3522       if (flags & LOOKUP_DESTRUCTOR)
3523         /* Explicit destructor call; don't check for null pointer.  */
3524         ifexp = integer_one_node;
3525       else
3526         {
3527           /* Handle deleting a null pointer.  */
3528           ifexp = fold (cp_build_binary_op (input_location,
3529                                             NE_EXPR, addr, integer_zero_node,
3530                                             complain));
3531           if (ifexp == error_mark_node)
3532             return error_mark_node;
3533         }
3534
3535       if (ifexp != integer_one_node)
3536         expr = build3 (COND_EXPR, void_type_node,
3537                        ifexp, expr, void_zero_node);
3538
3539       return expr;
3540     }
3541 }
3542
3543 /* At the beginning of a destructor, push cleanups that will call the
3544    destructors for our base classes and members.
3545
3546    Called from begin_destructor_body.  */
3547
3548 void
3549 push_base_cleanups (void)
3550 {
3551   tree binfo, base_binfo;
3552   int i;
3553   tree member;
3554   tree expr;
3555   VEC(tree,gc) *vbases;
3556
3557   /* Run destructors for all virtual baseclasses.  */
3558   if (CLASSTYPE_VBASECLASSES (current_class_type))
3559     {
3560       tree cond = (condition_conversion
3561                    (build2 (BIT_AND_EXPR, integer_type_node,
3562                             current_in_charge_parm,
3563                             integer_two_node)));
3564
3565       /* The CLASSTYPE_VBASECLASSES vector is in initialization
3566          order, which is also the right order for pushing cleanups.  */
3567       for (vbases = CLASSTYPE_VBASECLASSES (current_class_type), i = 0;
3568            VEC_iterate (tree, vbases, i, base_binfo); i++)
3569         {
3570           if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo)))
3571             {
3572               expr = build_special_member_call (current_class_ref,
3573                                                 base_dtor_identifier,
3574                                                 NULL,
3575                                                 base_binfo,
3576                                                 (LOOKUP_NORMAL
3577                                                  | LOOKUP_NONVIRTUAL),
3578                                                 tf_warning_or_error);
3579               expr = build3 (COND_EXPR, void_type_node, cond,
3580                              expr, void_zero_node);
3581               finish_decl_cleanup (NULL_TREE, expr);
3582             }
3583         }
3584     }
3585
3586   /* Take care of the remaining baseclasses.  */
3587   for (binfo = TYPE_BINFO (current_class_type), i = 0;
3588        BINFO_BASE_ITERATE (binfo, i, base_binfo); i++)
3589     {
3590       if (TYPE_HAS_TRIVIAL_DESTRUCTOR (BINFO_TYPE (base_binfo))
3591           || BINFO_VIRTUAL_P (base_binfo))
3592         continue;
3593
3594       expr = build_special_member_call (current_class_ref,
3595                                         base_dtor_identifier,
3596                                         NULL, base_binfo,
3597                                         LOOKUP_NORMAL | LOOKUP_NONVIRTUAL,
3598                                         tf_warning_or_error);
3599       finish_decl_cleanup (NULL_TREE, expr);
3600     }
3601
3602   /* Don't automatically destroy union members.  */
3603   if (TREE_CODE (current_class_type) == UNION_TYPE)
3604     return;
3605
3606   for (member = TYPE_FIELDS (current_class_type); member;
3607        member = DECL_CHAIN (member))
3608     {
3609       tree this_type = TREE_TYPE (member);
3610       if (this_type == error_mark_node
3611           || TREE_CODE (member) != FIELD_DECL
3612           || DECL_ARTIFICIAL (member))
3613         continue;
3614       if (ANON_UNION_TYPE_P (this_type))
3615         continue;
3616       if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (this_type))
3617         {
3618           tree this_member = (build_class_member_access_expr
3619                               (current_class_ref, member,
3620                                /*access_path=*/NULL_TREE,
3621                                /*preserve_reference=*/false,
3622                                tf_warning_or_error));
3623           expr = build_delete (this_type, this_member,
3624                                sfk_complete_destructor,
3625                                LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR|LOOKUP_NORMAL,
3626                                0, tf_warning_or_error);
3627           finish_decl_cleanup (NULL_TREE, expr);
3628         }
3629     }
3630 }
3631
3632 /* Build a C++ vector delete expression.
3633    MAXINDEX is the number of elements to be deleted.
3634    ELT_SIZE is the nominal size of each element in the vector.
3635    BASE is the expression that should yield the store to be deleted.
3636    This function expands (or synthesizes) these calls itself.
3637    AUTO_DELETE_VEC says whether the container (vector) should be deallocated.
3638
3639    This also calls delete for virtual baseclasses of elements of the vector.
3640
3641    Update: MAXINDEX is no longer needed.  The size can be extracted from the
3642    start of the vector for pointers, and from the type for arrays.  We still
3643    use MAXINDEX for arrays because it happens to already have one of the
3644    values we'd have to extract.  (We could use MAXINDEX with pointers to
3645    confirm the size, and trap if the numbers differ; not clear that it'd
3646    be worth bothering.)  */
3647
3648 tree
3649 build_vec_delete (tree base, tree maxindex,
3650                   special_function_kind auto_delete_vec,
3651                   int use_global_delete, tsubst_flags_t complain)
3652 {
3653   tree type;
3654   tree rval;
3655   tree base_init = NULL_TREE;
3656
3657   type = TREE_TYPE (base);
3658
3659   if (TREE_CODE (type) == POINTER_TYPE)
3660     {
3661       /* Step back one from start of vector, and read dimension.  */
3662       tree cookie_addr;
3663       tree size_ptr_type = build_pointer_type (sizetype);
3664
3665       if (TREE_SIDE_EFFECTS (base))
3666         {
3667           base_init = get_target_expr (base);
3668           base = TARGET_EXPR_SLOT (base_init);
3669         }
3670       type = strip_array_types (TREE_TYPE (type));
3671       cookie_addr = fold_build1_loc (input_location, NEGATE_EXPR,
3672                                  sizetype, TYPE_SIZE_UNIT (sizetype));
3673       cookie_addr = build2 (POINTER_PLUS_EXPR,
3674                             size_ptr_type,
3675                             fold_convert (size_ptr_type, base),
3676                             cookie_addr);
3677       maxindex = cp_build_indirect_ref (cookie_addr, RO_NULL, complain);
3678     }
3679   else if (TREE_CODE (type) == ARRAY_TYPE)
3680     {
3681       /* Get the total number of things in the array, maxindex is a
3682          bad name.  */
3683       maxindex = array_type_nelts_total (type);
3684       type = strip_array_types (type);
3685       base = cp_build_addr_expr (base, complain);
3686       if (base == error_mark_node)
3687         return error_mark_node;
3688       if (TREE_SIDE_EFFECTS (base))
3689         {
3690           base_init = get_target_expr (base);
3691           base = TARGET_EXPR_SLOT (base_init);
3692         }
3693     }
3694   else
3695     {
3696       if (base != error_mark_node && !(complain & tf_error))
3697         error ("type to vector delete is neither pointer or array type");
3698       return error_mark_node;
3699     }
3700
3701   rval = build_vec_delete_1 (base, maxindex, type, auto_delete_vec,
3702                              use_global_delete, complain);
3703   if (base_init && rval != error_mark_node)
3704     rval = build2 (COMPOUND_EXPR, TREE_TYPE (rval), base_init, rval);
3705
3706   return rval;
3707 }