OSDN Git Service

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