OSDN Git Service

* init.c (build_member_call): Handle template-id expressions
[pf3gnuchains/gcc-fork.git] / gcc / cp / init.c
1 /* Handle initialization things in C++.
2    Copyright (C) 1987, 89, 92-98, 1999 Free Software Foundation, Inc.
3    Contributed by Michael Tiemann (tiemann@cygnus.com)
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* High-level class interface.  */
23
24 #include "config.h"
25 #include "system.h"
26 #include "tree.h"
27 #include "rtl.h"
28 #include "cp-tree.h"
29 #include "flags.h"
30 #include "output.h"
31 #include "except.h"
32 #include "expr.h"
33 #include "toplev.h"
34
35 extern void compiler_error ();
36
37 /* In C++, structures with well-defined constructors are initialized by
38    those constructors, unasked.  CURRENT_BASE_INIT_LIST
39    holds a list of stmts for a BASE_INIT term in the grammar.
40    This list has one element for each base class which must be
41    initialized.  The list elements are [basename, init], with
42    type basetype.  This allows the possibly anachronistic form
43    (assuming d : a, b, c) "d (int a) : c(a+5), b (a-4), a (a+3)"
44    where each successive term can be handed down the constructor
45    line.  Perhaps this was not intended.  */
46 tree current_base_init_list, current_member_init_list;
47
48 static void expand_aggr_vbase_init_1 PROTO((tree, tree, tree, tree));
49 static void expand_aggr_vbase_init PROTO((tree, tree, tree, tree));
50 static void expand_aggr_init_1 PROTO((tree, tree, tree, tree, int));
51 static void expand_default_init PROTO((tree, tree, tree, tree, int));
52 static tree build_vec_delete_1 PROTO((tree, tree, tree, tree, tree,
53                                       int));
54 static void perform_member_init PROTO((tree, tree, tree, int));
55 static void sort_base_init PROTO((tree, tree *, tree *));
56 static tree build_builtin_delete_call PROTO((tree));
57 static int member_init_ok_or_else PROTO((tree, tree, char *));
58 static void expand_virtual_init PROTO((tree, tree));
59 static tree sort_member_init PROTO((tree));
60 static tree build_partial_cleanup_for PROTO((tree));
61 static tree initializing_context PROTO((tree));
62 static void expand_vec_init_try_block PROTO((tree));
63 static void expand_vec_init_catch_clause PROTO((tree, tree, tree, tree));
64
65 /* Cache the identifier nodes for the magic field of a new cookie.  */
66 static tree nc_nelts_field_id;
67
68 static tree minus_one;
69
70 /* Set up local variable for this file.  MUST BE CALLED AFTER
71    INIT_DECL_PROCESSING.  */
72
73 static tree BI_header_type, BI_header_size;
74
75 void init_init_processing ()
76 {
77   tree fields[1];
78
79   minus_one = build_int_2 (-1, -1);
80
81   /* Define the structure that holds header information for
82      arrays allocated via operator new.  */
83   BI_header_type = make_lang_type (RECORD_TYPE);
84   nc_nelts_field_id = get_identifier ("nelts");
85   fields[0] = build_lang_field_decl (FIELD_DECL, nc_nelts_field_id, sizetype);
86   finish_builtin_type (BI_header_type, "__new_cookie", fields,
87                        0, double_type_node);
88   BI_header_size = size_in_bytes (BI_header_type);
89 }
90
91 /* Subroutine of emit_base_init.  For BINFO, initialize all the
92    virtual function table pointers, except those that come from
93    virtual base classes.  Initialize binfo's vtable pointer, if
94    INIT_SELF is true.  CAN_ELIDE is true when we know that all virtual
95    function table pointers in all bases have been initialized already,
96    probably because their constructors have just be run.  ADDR is the
97    pointer to the object whos vtables we are going to initialize.
98
99    REAL_BINFO is usually the same as BINFO, except when addr is not of
100    pointer to the type of the real derived type that we want to
101    initialize for.  This is the case when addr is a pointer to a sub
102    object of a complete object, and we only want to do part of the
103    complete object's initialization of vtable pointers.  This is done
104    for all virtual table pointers in virtual base classes.  REAL_BINFO
105    is used to find the BINFO_VTABLE that we initialize with.  BINFO is
106    used for conversions of addr to subobjects.
107
108    BINFO_TYPE (real_binfo) must be BINFO_TYPE (binfo).
109
110    Relies upon binfo being inside TYPE_BINFO (TREE_TYPE (TREE_TYPE
111    (addr))).  */
112
113 void
114 expand_direct_vtbls_init (real_binfo, binfo, init_self, can_elide, addr)
115      tree real_binfo, binfo, addr;
116      int init_self, can_elide;
117 {
118   tree real_binfos = BINFO_BASETYPES (real_binfo);
119   tree binfos = BINFO_BASETYPES (binfo);
120   int i, n_baselinks = real_binfos ? TREE_VEC_LENGTH (real_binfos) : 0;
121
122   for (i = 0; i < n_baselinks; i++)
123     {
124       tree real_base_binfo = TREE_VEC_ELT (real_binfos, i);
125       tree base_binfo = TREE_VEC_ELT (binfos, i);
126       int is_not_base_vtable
127         = i != CLASSTYPE_VFIELD_PARENT (BINFO_TYPE (real_binfo));
128       if (! TREE_VIA_VIRTUAL (real_base_binfo))
129         expand_direct_vtbls_init (real_base_binfo, base_binfo,
130                                   is_not_base_vtable, can_elide, addr);
131     }
132 #if 0
133   /* Before turning this on, make sure it is correct.  */
134   if (can_elide && ! BINFO_MODIFIED (binfo))
135     return;
136 #endif
137   /* Should we use something besides CLASSTYPE_VFIELDS? */
138   if (init_self && CLASSTYPE_VFIELDS (BINFO_TYPE (real_binfo)))
139     {
140       tree base_ptr = convert_pointer_to_real (binfo, addr);
141       expand_virtual_init (real_binfo, base_ptr);
142     }
143 }
144 \f
145 /* 348 - 351 */
146 /* Subroutine of emit_base_init.  */
147
148 static void
149 perform_member_init (member, name, init, explicit)
150      tree member, name, init;
151      int explicit;
152 {
153   tree decl;
154   tree type = TREE_TYPE (member);
155
156   expand_start_target_temps ();
157
158   if (TYPE_NEEDS_CONSTRUCTING (type)
159       || (init && TYPE_HAS_CONSTRUCTOR (type)))
160     {
161       /* Since `init' is already a TREE_LIST on the current_member_init_list,
162          only build it into one if we aren't already a list.  */
163       if (init != NULL_TREE && TREE_CODE (init) != TREE_LIST)
164         init = build_expr_list (NULL_TREE, init);
165
166       decl = build_component_ref (current_class_ref, name, NULL_TREE, explicit);
167
168       if (explicit
169           && TREE_CODE (type) == ARRAY_TYPE
170           && init != NULL_TREE
171           && TREE_CHAIN (init) == NULL_TREE
172           && TREE_CODE (TREE_TYPE (TREE_VALUE (init))) == ARRAY_TYPE)
173         {
174           /* Initialization of one array from another.  */
175           expand_vec_init (TREE_OPERAND (decl, 1), decl,
176                            array_type_nelts (type), TREE_VALUE (init), 1);
177         }
178       else
179         expand_aggr_init (decl, init, 0);
180     }
181   else
182     {
183       if (init == NULL_TREE)
184         {
185           if (explicit)
186             {
187               /* default-initialization.  */
188               if (AGGREGATE_TYPE_P (type))
189                 init = build (CONSTRUCTOR, type, NULL_TREE, NULL_TREE);
190               else if (TREE_CODE (type) == REFERENCE_TYPE)
191                 {
192                   cp_error ("default-initialization of `%#D', which has reference type",
193                             member);
194                   init = error_mark_node;
195                 }
196               else
197                 init = integer_zero_node;
198             }
199           /* member traversal: note it leaves init NULL */
200           else if (TREE_CODE (TREE_TYPE (member)) == REFERENCE_TYPE)
201             cp_pedwarn ("uninitialized reference member `%D'", member);
202         }
203       else if (TREE_CODE (init) == TREE_LIST)
204         {
205           /* There was an explicit member initialization.  Do some
206              work in that case.  */
207           if (TREE_CHAIN (init))
208             {
209               warning ("initializer list treated as compound expression");
210               init = build_compound_expr (init);
211             }
212           else
213             init = TREE_VALUE (init);
214         }
215
216       /* We only build this with a null init if we got it from the
217          current_member_init_list.  */
218       if (init || explicit)
219         {
220           decl = build_component_ref (current_class_ref, name, NULL_TREE,
221                                       explicit);
222           expand_expr_stmt (build_modify_expr (decl, INIT_EXPR, init));
223         }
224     }
225
226   expand_end_target_temps ();
227   free_temp_slots ();
228
229   if (TYPE_NEEDS_DESTRUCTOR (type))
230     {
231       tree expr;
232
233       /* All cleanups must be on the function_obstack.  */
234       push_obstacks_nochange ();
235       resume_temporary_allocation ();
236
237       expr = build_component_ref (current_class_ref, name, NULL_TREE,
238                                   explicit);
239       expr = build_delete (type, expr, integer_zero_node,
240                            LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
241
242       if (expr != error_mark_node)
243         add_partial_entry (expr);
244
245       pop_obstacks ();
246     }
247 }
248
249 extern int warn_reorder;
250
251 /* Subroutine of emit_member_init.  */
252
253 static tree
254 sort_member_init (t)
255      tree t;
256 {
257   tree x, member, name, field;
258   tree init_list = NULL_TREE;
259   int last_pos = 0;
260   tree last_field = NULL_TREE;
261
262   for (member = TYPE_FIELDS (t); member ; member = TREE_CHAIN (member))
263     {
264       int pos;
265
266       /* member could be, for example, a CONST_DECL for an enumerated
267          tag; we don't want to try to initialize that, since it already
268          has a value.  */
269       if (TREE_CODE (member) != FIELD_DECL || !DECL_NAME (member))
270         continue;
271
272       for (x = current_member_init_list, pos = 0; x; x = TREE_CHAIN (x), ++pos)
273         {
274           /* If we cleared this out, then pay no attention to it.  */
275           if (TREE_PURPOSE (x) == NULL_TREE)
276             continue;
277           name = TREE_PURPOSE (x);
278
279 #if 0
280           /* This happens in templates, since the IDENTIFIER is replaced
281              with the COMPONENT_REF in tsubst_expr.  */
282           field = (TREE_CODE (name) == COMPONENT_REF
283                    ? TREE_OPERAND (name, 1) : IDENTIFIER_CLASS_VALUE (name));
284 #else
285           /* Let's find out when this happens.  */
286           my_friendly_assert (TREE_CODE (name) != COMPONENT_REF, 348);
287           field = IDENTIFIER_CLASS_VALUE (name);
288 #endif
289
290           /* If one member shadows another, get the outermost one.  */
291           if (TREE_CODE (field) == TREE_LIST)
292             field = TREE_VALUE (field);
293
294           if (field == member)
295             {
296               if (warn_reorder)
297                 {
298                   if (pos < last_pos)
299                     {
300                       cp_warning_at ("member initializers for `%#D'", last_field);
301                       cp_warning_at ("  and `%#D'", field);
302                       warning ("  will be re-ordered to match declaration order");
303                     }
304                   last_pos = pos;
305                   last_field = field;
306                 }
307
308               /* Make sure we won't try to work on this init again.  */
309               TREE_PURPOSE (x) = NULL_TREE;
310               x = build_tree_list (name, TREE_VALUE (x));
311               goto got_it;
312             }
313         }
314
315       /* If we didn't find MEMBER in the list, create a dummy entry
316          so the two lists (INIT_LIST and the list of members) will be
317          symmetrical.  */
318       x = build_tree_list (NULL_TREE, NULL_TREE);
319     got_it:
320       init_list = chainon (init_list, x); 
321     }
322
323   /* Initializers for base members go at the end.  */
324   for (x = current_member_init_list ; x ; x = TREE_CHAIN (x))
325     {
326       name = TREE_PURPOSE (x);
327       if (name)
328         {
329           if (purpose_member (name, init_list))
330             {
331               cp_error ("multiple initializations given for member `%D'",
332                         IDENTIFIER_CLASS_VALUE (name));
333               continue;
334             }
335               
336           init_list = chainon (init_list,
337                                build_tree_list (name, TREE_VALUE (x)));
338           TREE_PURPOSE (x) = NULL_TREE;
339         }
340     }
341
342   return init_list;
343 }
344
345 static void
346 sort_base_init (t, rbase_ptr, vbase_ptr)
347      tree t, *rbase_ptr, *vbase_ptr;
348 {
349   tree binfos = BINFO_BASETYPES (TYPE_BINFO (t));
350   int n_baseclasses = binfos ? TREE_VEC_LENGTH (binfos) : 0;
351
352   int i;
353   tree x;
354   tree last;
355
356   /* For warn_reorder.  */
357   int last_pos = 0;
358   tree last_base = NULL_TREE;
359
360   tree rbases = NULL_TREE;
361   tree vbases = NULL_TREE;
362
363   /* First walk through and splice out vbase and invalid initializers.
364      Also replace names with binfos.  */
365
366   last = tree_cons (NULL_TREE, NULL_TREE, current_base_init_list);
367   for (x = TREE_CHAIN (last); x; x = TREE_CHAIN (x))
368     {
369       tree basetype = TREE_PURPOSE (x);
370       tree binfo = NULL_TREE;
371
372       if (basetype == NULL_TREE)
373         {
374           /* Initializer for single base class.  Must not
375              use multiple inheritance or this is ambiguous.  */
376           switch (n_baseclasses)
377             {
378             case 0:
379               cp_error ("`%T' does not have a base class to initialize",
380                         current_class_type);
381               return;
382             case 1:
383               break;
384             default:
385               cp_error ("unnamed initializer ambiguous for `%T' which uses multiple inheritance",
386                         current_class_type);
387               return;
388             }
389           binfo = TREE_VEC_ELT (binfos, 0);
390         }
391       else if (is_aggr_type (basetype, 1))
392         {
393           binfo = binfo_or_else (basetype, t);
394           if (binfo == NULL_TREE)
395             continue;
396
397           /* Virtual base classes are special cases.  Their initializers
398              are recorded with this constructor, and they are used when
399              this constructor is the top-level constructor called.  */
400           if (TREE_VIA_VIRTUAL (binfo))
401             {
402               tree v = CLASSTYPE_VBASECLASSES (t);
403               while (BINFO_TYPE (v) != BINFO_TYPE (binfo))
404                 v = TREE_CHAIN (v);
405
406               vbases = tree_cons (v, TREE_VALUE (x), vbases);
407               continue;
408             }
409           else
410             {
411               /* Otherwise, if it is not an immediate base class, complain.  */
412               for (i = n_baseclasses-1; i >= 0; i--)
413                 if (BINFO_TYPE (binfo) == BINFO_TYPE (TREE_VEC_ELT (binfos, i)))
414                   break;
415               if (i < 0)
416                 {
417                   cp_error ("`%T' is not an immediate base class of `%T'",
418                             basetype, current_class_type);
419                   continue;
420                 }
421             }
422         }
423       else
424         my_friendly_abort (365);
425
426       TREE_PURPOSE (x) = binfo;
427       TREE_CHAIN (last) = x;
428       last = x;
429     }
430   TREE_CHAIN (last) = NULL_TREE;
431
432   /* Now walk through our regular bases and make sure they're initialized.  */
433
434   for (i = 0; i < n_baseclasses; ++i)
435     {
436       tree base_binfo = TREE_VEC_ELT (binfos, i);
437       int pos;
438
439       if (TREE_VIA_VIRTUAL (base_binfo))
440         continue;
441
442       for (x = current_base_init_list, pos = 0; x; x = TREE_CHAIN (x), ++pos)
443         {
444           tree binfo = TREE_PURPOSE (x);
445
446           if (binfo == NULL_TREE)
447             continue;
448
449           if (binfo == base_binfo)
450             {
451               if (warn_reorder)
452                 {
453                   if (pos < last_pos)
454                     {
455                       cp_warning_at ("base initializers for `%#T'", last_base);
456                       cp_warning_at ("  and `%#T'", BINFO_TYPE (binfo));
457                       warning ("  will be re-ordered to match inheritance order");
458                     }
459                   last_pos = pos;
460                   last_base = BINFO_TYPE (binfo);
461                 }
462
463               /* Make sure we won't try to work on this init again.  */
464               TREE_PURPOSE (x) = NULL_TREE;
465               x = build_tree_list (binfo, TREE_VALUE (x));
466               goto got_it;
467             }
468         }
469
470       /* If we didn't find BASE_BINFO in the list, create a dummy entry
471          so the two lists (RBASES and the list of bases) will be
472          symmetrical.  */
473       x = build_tree_list (NULL_TREE, NULL_TREE);
474     got_it:
475       rbases = chainon (rbases, x);
476     }
477
478   *rbase_ptr = rbases;
479   *vbase_ptr = vbases;
480 }
481
482 /* Perform partial cleanups for a base for exception handling.  */
483
484 static tree
485 build_partial_cleanup_for (binfo)
486      tree binfo;
487 {
488   return build_scoped_method_call
489     (current_class_ref, binfo, dtor_identifier,
490      build_expr_list (NULL_TREE, integer_zero_node));
491 }
492
493 /* Perform whatever initializations have yet to be done on the base
494    class of the class variable.  These actions are in the global
495    variable CURRENT_BASE_INIT_LIST.  Such an action could be
496    NULL_TREE, meaning that the user has explicitly called the base
497    class constructor with no arguments.
498
499    If there is a need for a call to a constructor, we must surround
500    that call with a pushlevel/poplevel pair, since we are technically
501    at the PARM level of scope.
502
503    Argument IMMEDIATELY, if zero, forces a new sequence to be
504    generated to contain these new insns, so it can be emitted later.
505    This sequence is saved in the global variable BASE_INIT_EXPR.
506    Otherwise, the insns are emitted into the current sequence.
507
508    Note that emit_base_init does *not* initialize virtual base
509    classes.  That is done specially, elsewhere.  */
510
511 extern tree base_init_expr, rtl_expr_chain;
512
513 void
514 emit_base_init (t, immediately)
515      tree t;
516      int immediately;
517 {
518   tree member;
519   tree mem_init_list;
520   tree rbase_init_list, vbase_init_list;
521   tree t_binfo = TYPE_BINFO (t);
522   tree binfos = BINFO_BASETYPES (t_binfo);
523   int i, n_baseclasses = binfos ? TREE_VEC_LENGTH (binfos) : 0;
524   tree expr = NULL_TREE;
525
526   if (! immediately)
527     {
528       int momentary;
529       do_pending_stack_adjust ();
530       /* Make the RTL_EXPR node temporary, not momentary,
531          so that rtl_expr_chain doesn't become garbage.  */
532       momentary = suspend_momentary ();
533       expr = make_node (RTL_EXPR);
534       resume_momentary (momentary);
535       start_sequence_for_rtl_expr (expr); 
536     }
537
538   if (write_symbols == NO_DEBUG)
539     /* As a matter of principle, `start_sequence' should do this.  */
540     emit_note (0, -1);
541   else
542     /* Always emit a line number note so we can step into constructors.  */
543     emit_line_note_force (DECL_SOURCE_FILE (current_function_decl),
544                           DECL_SOURCE_LINE (current_function_decl));
545
546   mem_init_list = sort_member_init (t);
547   current_member_init_list = NULL_TREE;
548
549   sort_base_init (t, &rbase_init_list, &vbase_init_list);
550   current_base_init_list = NULL_TREE;
551
552   if (TYPE_USES_VIRTUAL_BASECLASSES (t))
553     {
554       tree first_arg = TREE_CHAIN (DECL_ARGUMENTS (current_function_decl));
555
556       expand_start_cond (first_arg, 0);
557       expand_aggr_vbase_init (t_binfo, current_class_ref, current_class_ptr,
558                               vbase_init_list);
559       expand_end_cond ();
560     }
561
562   /* Now, perform initialization of non-virtual base classes.  */
563   for (i = 0; i < n_baseclasses; i++)
564     {
565       tree base_binfo = TREE_VEC_ELT (binfos, i);
566       tree init = void_list_node;
567
568       if (TREE_VIA_VIRTUAL (base_binfo))
569         continue;
570
571       my_friendly_assert (BINFO_INHERITANCE_CHAIN (base_binfo) == t_binfo,
572                           999);
573
574       if (TREE_PURPOSE (rbase_init_list))
575         init = TREE_VALUE (rbase_init_list);
576       else if (TYPE_NEEDS_CONSTRUCTING (BINFO_TYPE (base_binfo)))
577         {
578           init = NULL_TREE;
579           if (extra_warnings && copy_args_p (current_function_decl))
580             cp_warning ("base class `%#T' should be explicitly initialized in the copy constructor",
581                         BINFO_TYPE (base_binfo));
582         }
583
584       if (init != void_list_node)
585         {
586           expand_start_target_temps ();
587
588           member = convert_pointer_to_real (base_binfo, current_class_ptr);
589           expand_aggr_init_1 (base_binfo, NULL_TREE,
590                               build_indirect_ref (member, NULL_PTR), init,
591                               LOOKUP_NORMAL);
592
593           expand_end_target_temps ();
594           free_temp_slots ();
595         }
596
597       if (TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo)))
598         {
599           tree expr;
600
601           /* All cleanups must be on the function_obstack.  */
602           push_obstacks_nochange ();
603           resume_temporary_allocation ();
604           expr = build_partial_cleanup_for (base_binfo);
605           pop_obstacks ();
606           add_partial_entry (expr);
607         }
608
609       rbase_init_list = TREE_CHAIN (rbase_init_list);
610     }
611
612   /* Initialize all the virtual function table fields that
613      do come from virtual base classes.  */
614   if (TYPE_USES_VIRTUAL_BASECLASSES (t))
615     expand_indirect_vtbls_init (t_binfo, current_class_ref, current_class_ptr);
616
617   /* Initialize all the virtual function table fields that
618      do not come from virtual base classes.  */
619   expand_direct_vtbls_init (t_binfo, t_binfo, 1, 1, current_class_ptr);
620
621   for (member = TYPE_FIELDS (t); member; member = TREE_CHAIN (member))
622     {
623       tree init, name;
624       int from_init_list;
625
626       /* member could be, for example, a CONST_DECL for an enumerated
627          tag; we don't want to try to initialize that, since it already
628          has a value.  */
629       if (TREE_CODE (member) != FIELD_DECL || !DECL_NAME (member))
630         continue;
631
632       /* See if we had a user-specified member initialization.  */
633       if (TREE_PURPOSE (mem_init_list))
634         {
635           name = TREE_PURPOSE (mem_init_list);
636           init = TREE_VALUE (mem_init_list);
637           from_init_list = 1;
638
639 #if 0
640           if (TREE_CODE (name) == COMPONENT_REF)
641             name = DECL_NAME (TREE_OPERAND (name, 1));
642 #else
643           /* Also see if it's ever a COMPONENT_REF here.  If it is, we
644              need to do `expand_assignment (name, init, 0, 0);' and
645              a continue.  */
646           my_friendly_assert (TREE_CODE (name) != COMPONENT_REF, 349);
647 #endif
648         }
649       else
650         {
651           name = DECL_NAME (member);
652           init = DECL_INITIAL (member);
653
654           from_init_list = 0;
655
656           /* Effective C++ rule 12.  */
657           if (warn_ecpp && init == NULL_TREE
658               && !DECL_ARTIFICIAL (member)
659               && TREE_CODE (TREE_TYPE (member)) != ARRAY_TYPE)
660             cp_warning ("`%D' should be initialized in the member initialization list", member);            
661         }
662
663       perform_member_init (member, name, init, from_init_list);
664       mem_init_list = TREE_CHAIN (mem_init_list);
665     }
666
667   /* Now initialize any members from our bases.  */
668   while (mem_init_list)
669     {
670       tree name, init, field;
671
672       if (TREE_PURPOSE (mem_init_list))
673         {
674           name = TREE_PURPOSE (mem_init_list);
675           init = TREE_VALUE (mem_init_list);
676           /* XXX: this may need the COMPONENT_REF operand 0 check if
677              it turns out we actually get them.  */
678           field = IDENTIFIER_CLASS_VALUE (name);
679
680           /* If one member shadows another, get the outermost one.  */
681           if (TREE_CODE (field) == TREE_LIST)
682             {
683               field = TREE_VALUE (field);
684               if (decl_type_context (field) != current_class_type)
685                 cp_error ("field `%D' not in immediate context", field);
686             }
687
688 #if 0
689           /* It turns out if you have an anonymous union in the
690              class, a member from it can end up not being on the
691              list of fields (rather, the type is), and therefore
692              won't be seen by the for loop above.  */
693
694           /* The code in this for loop is derived from a general loop
695              which had this check in it.  Theoretically, we've hit
696              every initialization for the list of members in T, so
697              we shouldn't have anything but these left in this list.  */
698           my_friendly_assert (DECL_FIELD_CONTEXT (field) != t, 351);
699 #endif
700
701           perform_member_init (field, name, init, 1);
702         }
703       mem_init_list = TREE_CHAIN (mem_init_list);
704     }
705
706   if (! immediately)
707     {
708       do_pending_stack_adjust ();
709       my_friendly_assert (base_init_expr == 0, 207);
710       base_init_expr = expr;
711       TREE_TYPE (expr) = void_type_node;
712       RTL_EXPR_RTL (expr) = const0_rtx;
713       RTL_EXPR_SEQUENCE (expr) = get_insns ();
714       rtl_expr_chain = tree_cons (NULL_TREE, expr, rtl_expr_chain);
715       end_sequence ();
716       TREE_SIDE_EFFECTS (expr) = 1;
717     }
718
719   /* All the implicit try blocks we built up will be zapped
720      when we come to a real binding contour boundary.  */
721 }
722
723 /* Check that all fields are properly initialized after
724    an assignment to `this'.  */
725
726 void
727 check_base_init (t)
728      tree t;
729 {
730   tree member;
731   for (member = TYPE_FIELDS (t); member; member = TREE_CHAIN (member))
732     if (DECL_NAME (member) && TREE_USED (member))
733       cp_error ("field `%D' used before initialized (after assignment to `this')",
734                 member);
735 }
736
737 /* This code sets up the virtual function tables appropriate for
738    the pointer DECL.  It is a one-ply initialization.
739
740    BINFO is the exact type that DECL is supposed to be.  In
741    multiple inheritance, this might mean "C's A" if C : A, B.  */
742
743 static void
744 expand_virtual_init (binfo, decl)
745      tree binfo, decl;
746 {
747   tree type = BINFO_TYPE (binfo);
748   tree vtbl, vtbl_ptr;
749   tree vtype, vtype_binfo;
750
751   /* This code is crusty.  Should be simple, like:
752      vtbl = BINFO_VTABLE (binfo);
753      */
754   vtype = DECL_CONTEXT (CLASSTYPE_VFIELD (type));
755   vtype_binfo = get_binfo (vtype, TREE_TYPE (TREE_TYPE (decl)), 0);
756   vtbl = BINFO_VTABLE (binfo_value (DECL_FIELD_CONTEXT (CLASSTYPE_VFIELD (type)), binfo));
757   assemble_external (vtbl);
758   TREE_USED (vtbl) = 1;
759   vtbl = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (vtbl)), vtbl);
760   decl = convert_pointer_to_real (vtype_binfo, decl);
761   vtbl_ptr = build_vfield_ref (build_indirect_ref (decl, NULL_PTR), vtype);
762   if (vtbl_ptr == error_mark_node)
763     return;
764
765   /* Have to convert VTBL since array sizes may be different.  */
766   vtbl = convert_force (TREE_TYPE (vtbl_ptr), vtbl, 0);
767   expand_expr_stmt (build_modify_expr (vtbl_ptr, NOP_EXPR, vtbl));
768 }
769
770 /* Subroutine of `expand_aggr_vbase_init'.
771    BINFO is the binfo of the type that is being initialized.
772    INIT_LIST is the list of initializers for the virtual baseclass.  */
773
774 static void
775 expand_aggr_vbase_init_1 (binfo, exp, addr, init_list)
776      tree binfo, exp, addr, init_list;
777 {
778   tree init = purpose_member (binfo, init_list);
779   tree ref = build_indirect_ref (addr, NULL_PTR);
780
781   expand_start_target_temps ();
782
783   if (init)
784     init = TREE_VALUE (init);
785   /* Call constructors, but don't set up vtables.  */
786   expand_aggr_init_1 (binfo, exp, ref, init, LOOKUP_COMPLAIN);
787
788   expand_end_target_temps ();
789   free_temp_slots ();
790 }
791
792 /* Initialize this object's virtual base class pointers.  This must be
793    done only at the top-level of the object being constructed.
794
795    INIT_LIST is list of initialization for constructor to perform.  */
796
797 static void
798 expand_aggr_vbase_init (binfo, exp, addr, init_list)
799      tree binfo;
800      tree exp;
801      tree addr;
802      tree init_list;
803 {
804   tree type = BINFO_TYPE (binfo);
805
806   if (TYPE_USES_VIRTUAL_BASECLASSES (type))
807     {
808       tree result = init_vbase_pointers (type, addr);
809       tree vbases;
810
811       if (result)
812         expand_expr_stmt (build_compound_expr (result));
813
814       for (vbases = CLASSTYPE_VBASECLASSES (type); vbases;
815            vbases = TREE_CHAIN (vbases))
816         {
817           tree tmp = purpose_member (vbases, result);
818           expand_aggr_vbase_init_1 (vbases, exp,
819                                     TREE_OPERAND (TREE_VALUE (tmp), 0),
820                                     init_list);
821         }
822     }
823 }
824
825 /* Find the context in which this FIELD can be initialized.  */
826
827 static tree
828 initializing_context (field)
829      tree field;
830 {
831   tree t = DECL_CONTEXT (field);
832
833   /* Anonymous union members can be initialized in the first enclosing
834      non-anonymous union context.  */
835   while (t && ANON_UNION_TYPE_P (t))
836     t = TYPE_CONTEXT (t);
837   return t;
838 }
839
840 /* Function to give error message if member initialization specification
841    is erroneous.  FIELD is the member we decided to initialize.
842    TYPE is the type for which the initialization is being performed.
843    FIELD must be a member of TYPE.
844    
845    MEMBER_NAME is the name of the member.  */
846
847 static int
848 member_init_ok_or_else (field, type, member_name)
849      tree field;
850      tree type;
851      char *member_name;
852 {
853   if (field == error_mark_node)
854     return 0;
855   if (field == NULL_TREE || initializing_context (field) != type)
856     {
857       cp_error ("class `%T' does not have any field named `%s'", type,
858                 member_name);
859       return 0;
860     }
861   if (TREE_STATIC (field))
862     {
863       cp_error ("field `%#D' is static; only point of initialization is its declaration",
864                 field);
865       return 0;
866     }
867
868   return 1;
869 }
870
871 /* If NAME is a viable field name for the aggregate DECL,
872    and PARMS is a viable parameter list, then expand an _EXPR
873    which describes this initialization.
874
875    Note that we do not need to chase through the class's base classes
876    to look for NAME, because if it's in that list, it will be handled
877    by the constructor for that base class.
878
879    We do not yet have a fixed-point finder to instantiate types
880    being fed to overloaded constructors.  If there is a unique
881    constructor, then argument types can be got from that one.
882
883    If INIT is non-NULL, then it the initialization should
884    be placed in `current_base_init_list', where it will be processed
885    by `emit_base_init'.  */
886
887 void
888 expand_member_init (exp, name, init)
889      tree exp, name, init;
890 {
891   tree basetype = NULL_TREE, field;
892   tree type;
893
894   if (exp == NULL_TREE)
895     return;                     /* complain about this later */
896
897   type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
898
899   if (name && TREE_CODE (name) == TYPE_DECL)
900     {
901       basetype = TYPE_MAIN_VARIANT (TREE_TYPE (name));
902       name = DECL_NAME (name);
903     }
904
905   if (name == NULL_TREE && IS_AGGR_TYPE (type))
906     switch (CLASSTYPE_N_BASECLASSES (type))
907       {
908       case 0:
909         error ("base class initializer specified, but no base class to initialize");
910         return;
911       case 1:
912         basetype = TYPE_BINFO_BASETYPE (type, 0);
913         break;
914       default:
915         error ("initializer for unnamed base class ambiguous");
916         cp_error ("(type `%T' uses multiple inheritance)", type);
917         return;
918       }
919
920   my_friendly_assert (init != NULL_TREE, 0);
921
922   /* The grammar should not allow fields which have names that are
923      TYPENAMEs.  Therefore, if the field has a non-NULL TREE_TYPE, we
924      may assume that this is an attempt to initialize a base class
925      member of the current type.  Otherwise, it is an attempt to
926      initialize a member field.  */
927
928   if (init == void_type_node)
929     init = NULL_TREE;
930
931   if (name == NULL_TREE || basetype)
932     {
933       tree base_init;
934
935       if (name == NULL_TREE)
936         {
937 #if 0
938           if (basetype)
939             name = TYPE_IDENTIFIER (basetype);
940           else
941             {
942               error ("no base class to initialize");
943               return;
944             }
945 #endif
946         }
947       else if (basetype != type
948                && ! current_template_parms
949                && ! vec_binfo_member (basetype,
950                                       TYPE_BINFO_BASETYPES (type))
951                && ! binfo_member (basetype, CLASSTYPE_VBASECLASSES (type)))
952         {
953           if (IDENTIFIER_CLASS_VALUE (name))
954             goto try_member;
955           if (TYPE_USES_VIRTUAL_BASECLASSES (type))
956             cp_error ("type `%T' is not an immediate or virtual basetype for `%T'",
957                       basetype, type);
958           else
959             cp_error ("type `%T' is not an immediate basetype for `%T'",
960                       basetype, type);
961           return;
962         }
963
964       if (purpose_member (basetype, current_base_init_list))
965         {
966           cp_error ("base class `%T' already initialized", basetype);
967           return;
968         }
969
970       if (warn_reorder && current_member_init_list)
971         {
972           cp_warning ("base initializer for `%T'", basetype);
973           warning ("   will be re-ordered to precede member initializations");
974         }
975
976       base_init = build_tree_list (basetype, init);
977       current_base_init_list = chainon (current_base_init_list, base_init);
978     }
979   else
980     {
981       tree member_init;
982
983     try_member:
984       field = lookup_field (type, name, 1, 0);
985
986       if (! member_init_ok_or_else (field, type, IDENTIFIER_POINTER (name)))
987         return;
988
989       if (purpose_member (name, current_member_init_list))
990         {
991           cp_error ("field `%D' already initialized", field);
992           return;
993         }
994
995       member_init = build_tree_list (name, init);
996       current_member_init_list = chainon (current_member_init_list, member_init);
997     }
998 }
999
1000 /* This is like `expand_member_init', only it stores one aggregate
1001    value into another.
1002
1003    INIT comes in two flavors: it is either a value which
1004    is to be stored in EXP, or it is a parameter list
1005    to go to a constructor, which will operate on EXP.
1006    If INIT is not a parameter list for a constructor, then set
1007    LOOKUP_ONLYCONVERTING.
1008    If FLAGS is LOOKUP_ONLYCONVERTING then it is the = init form of
1009    the initializer, if FLAGS is 0, then it is the (init) form.
1010    If `init' is a CONSTRUCTOR, then we emit a warning message,
1011    explaining that such initializations are invalid.
1012
1013    ALIAS_THIS is nonzero iff we are initializing something which is
1014    essentially an alias for current_class_ref.  In this case, the base
1015    constructor may move it on us, and we must keep track of such
1016    deviations.
1017
1018    If INIT resolves to a CALL_EXPR which happens to return
1019    something of the type we are looking for, then we know
1020    that we can safely use that call to perform the
1021    initialization.
1022
1023    The virtual function table pointer cannot be set up here, because
1024    we do not really know its type.
1025
1026    Virtual baseclass pointers are also set up here.
1027
1028    This never calls operator=().
1029
1030    When initializing, nothing is CONST.
1031
1032    A default copy constructor may have to be used to perform the
1033    initialization.
1034
1035    A constructor or a conversion operator may have to be used to
1036    perform the initialization, but not both, as it would be ambiguous.  */
1037
1038 void
1039 expand_aggr_init (exp, init, flags)
1040      tree exp, init;
1041      int flags;
1042 {
1043   tree type = TREE_TYPE (exp);
1044   int was_const = TREE_READONLY (exp);
1045   int was_volatile = TREE_THIS_VOLATILE (exp);
1046
1047   if (init == error_mark_node)
1048     return;
1049
1050   TREE_READONLY (exp) = 0;
1051   TREE_THIS_VOLATILE (exp) = 0;
1052
1053   if (init && TREE_CODE (init) != TREE_LIST)
1054     flags |= LOOKUP_ONLYCONVERTING;
1055
1056   if (TREE_CODE (type) == ARRAY_TYPE)
1057     {
1058       /* Must arrange to initialize each element of EXP
1059          from elements of INIT.  */
1060       tree itype = init ? TREE_TYPE (init) : NULL_TREE;
1061       if (CP_TYPE_QUALS (type) != TYPE_UNQUALIFIED)
1062         {
1063           TREE_TYPE (exp) = TYPE_MAIN_VARIANT (type);
1064           if (init)
1065             TREE_TYPE (init) = TYPE_MAIN_VARIANT (itype);
1066         }
1067       if (init && TREE_TYPE (init) == NULL_TREE)
1068         {
1069           /* Handle bad initializers like:
1070              class COMPLEX {
1071              public:
1072                double re, im;
1073                COMPLEX(double r = 0.0, double i = 0.0) {re = r; im = i;};
1074                ~COMPLEX() {};
1075              };
1076
1077              int main(int argc, char **argv) {
1078                COMPLEX zees(1.0, 0.0)[10];
1079              }
1080           */
1081           error ("bad array initializer");
1082           return;
1083         }
1084       expand_vec_init (exp, exp, array_type_nelts (type), init,
1085                        init && same_type_p (TREE_TYPE (init),
1086                                             TREE_TYPE (exp)));
1087       TREE_READONLY (exp) = was_const;
1088       TREE_THIS_VOLATILE (exp) = was_volatile;
1089       TREE_TYPE (exp) = type;
1090       if (init)
1091         TREE_TYPE (init) = itype;
1092       return;
1093     }
1094
1095   if (TREE_CODE (exp) == VAR_DECL || TREE_CODE (exp) == PARM_DECL)
1096     /* just know that we've seen something for this node */
1097     TREE_USED (exp) = 1;
1098
1099 #if 0
1100   /* If initializing from a GNU C CONSTRUCTOR, consider the elts in the
1101      constructor as parameters to an implicit GNU C++ constructor.  */
1102   if (init && TREE_CODE (init) == CONSTRUCTOR
1103       && TYPE_HAS_CONSTRUCTOR (type)
1104       && TREE_TYPE (init) == type)
1105     init = CONSTRUCTOR_ELTS (init);
1106 #endif
1107
1108   TREE_TYPE (exp) = TYPE_MAIN_VARIANT (type);
1109   expand_aggr_init_1 (TYPE_BINFO (type), exp, exp,
1110                       init, LOOKUP_NORMAL|flags);
1111   TREE_TYPE (exp) = type;
1112   TREE_READONLY (exp) = was_const;
1113   TREE_THIS_VOLATILE (exp) = was_volatile;
1114 }
1115
1116 static void
1117 expand_default_init (binfo, true_exp, exp, init, flags)
1118      tree binfo;
1119      tree true_exp, exp;
1120      tree init;
1121      int flags;
1122 {
1123   tree type = TREE_TYPE (exp);
1124
1125   /* It fails because there may not be a constructor which takes
1126      its own type as the first (or only parameter), but which does
1127      take other types via a conversion.  So, if the thing initializing
1128      the expression is a unit element of type X, first try X(X&),
1129      followed by initialization by X.  If neither of these work
1130      out, then look hard.  */
1131   tree rval;
1132   tree parms;
1133
1134   if (init && TREE_CODE (init) != TREE_LIST
1135       && (flags & LOOKUP_ONLYCONVERTING))
1136     {
1137       /* Base subobjects should only get direct-initialization.  */
1138       if (true_exp != exp)
1139         abort ();
1140
1141       if (flags & DIRECT_BIND)
1142         /* Do nothing.  We hit this in two cases:  Reference initialization,
1143            where we aren't initializing a real variable, so we don't want
1144            to run a new constructor; and catching an exception, where we
1145            have already built up the constructor call so we could wrap it
1146            in an exception region.  */;
1147       else
1148         init = ocp_convert (type, init, CONV_IMPLICIT|CONV_FORCE_TEMP, flags);
1149
1150       if (TREE_CODE (init) == TRY_CATCH_EXPR)
1151         /* We need to protect the initialization of a catch parm
1152            with a call to terminate(), which shows up as a TRY_CATCH_EXPR
1153            around the TARGET_EXPR for the copy constructor.  See
1154            expand_start_catch_block.  */
1155         TREE_OPERAND (init, 0) = build (INIT_EXPR, TREE_TYPE (exp), exp,
1156                                         TREE_OPERAND (init, 0));
1157       else
1158         init = build (INIT_EXPR, TREE_TYPE (exp), exp, init);
1159       TREE_SIDE_EFFECTS (init) = 1;
1160       expand_expr_stmt (init);
1161       return;
1162     }
1163
1164   if (init == NULL_TREE
1165       || (TREE_CODE (init) == TREE_LIST && ! TREE_TYPE (init)))
1166     {
1167       parms = init;
1168       if (parms)
1169         init = TREE_VALUE (parms);
1170     }
1171   else
1172     parms = build_expr_list (NULL_TREE, init);
1173
1174   if (TYPE_USES_VIRTUAL_BASECLASSES (type))
1175     {
1176       if (true_exp == exp)
1177         parms = expr_tree_cons (NULL_TREE, integer_one_node, parms);
1178       else
1179         parms = expr_tree_cons (NULL_TREE, integer_zero_node, parms);
1180       flags |= LOOKUP_HAS_IN_CHARGE;
1181     }
1182
1183   rval = build_method_call (exp, ctor_identifier,
1184                             parms, binfo, flags);
1185   if (TREE_SIDE_EFFECTS (rval))
1186     expand_expr_stmt (rval);
1187 }
1188
1189 /* This function is responsible for initializing EXP with INIT
1190    (if any).
1191
1192    BINFO is the binfo of the type for who we are performing the
1193    initialization.  For example, if W is a virtual base class of A and B,
1194    and C : A, B.
1195    If we are initializing B, then W must contain B's W vtable, whereas
1196    were we initializing C, W must contain C's W vtable.
1197
1198    TRUE_EXP is nonzero if it is the true expression being initialized.
1199    In this case, it may be EXP, or may just contain EXP.  The reason we
1200    need this is because if EXP is a base element of TRUE_EXP, we
1201    don't necessarily know by looking at EXP where its virtual
1202    baseclass fields should really be pointing.  But we do know
1203    from TRUE_EXP.  In constructors, we don't know anything about
1204    the value being initialized.
1205
1206    ALIAS_THIS serves the same purpose it serves for expand_aggr_init.
1207
1208    FLAGS is just passes to `build_method_call'.  See that function for
1209    its description.  */
1210
1211 static void
1212 expand_aggr_init_1 (binfo, true_exp, exp, init, flags)
1213      tree binfo;
1214      tree true_exp, exp;
1215      tree init;
1216      int flags;
1217 {
1218   tree type = TREE_TYPE (exp);
1219
1220   my_friendly_assert (init != error_mark_node && type != error_mark_node, 211);
1221
1222   /* Use a function returning the desired type to initialize EXP for us.
1223      If the function is a constructor, and its first argument is
1224      NULL_TREE, know that it was meant for us--just slide exp on
1225      in and expand the constructor.  Constructors now come
1226      as TARGET_EXPRs.  */
1227
1228   if (init && TREE_CODE (exp) == VAR_DECL
1229       && TREE_CODE (init) == CONSTRUCTOR
1230       && TREE_HAS_CONSTRUCTOR (init))
1231     {
1232       tree t = store_init_value (exp, init);
1233       if (!t)
1234         {
1235           expand_decl_init (exp);
1236           return;
1237         }
1238       t = build (INIT_EXPR, type, exp, init);
1239       TREE_SIDE_EFFECTS (t) = 1;
1240       expand_expr_stmt (t);
1241       return;
1242     }
1243
1244   /* We know that expand_default_init can handle everything we want
1245      at this point.  */
1246   expand_default_init (binfo, true_exp, exp, init, flags);
1247 }
1248
1249 /* Report an error if NAME is not the name of a user-defined,
1250    aggregate type.  If OR_ELSE is nonzero, give an error message.  */
1251
1252 int
1253 is_aggr_typedef (name, or_else)
1254      tree name;
1255      int or_else;
1256 {
1257   tree type;
1258
1259   if (name == error_mark_node)
1260     return 0;
1261
1262   if (IDENTIFIER_HAS_TYPE_VALUE (name))
1263     type = IDENTIFIER_TYPE_VALUE (name);
1264   else
1265     {
1266       if (or_else)
1267         cp_error ("`%T' is not an aggregate typedef", name);
1268       return 0;
1269     }
1270
1271   if (! IS_AGGR_TYPE (type)
1272       && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1273       && TREE_CODE (type) != TEMPLATE_TEMPLATE_PARM)
1274     {
1275       if (or_else)
1276         cp_error ("`%T' is not an aggregate type", type);
1277       return 0;
1278     }
1279   return 1;
1280 }
1281
1282 /* Report an error if TYPE is not a user-defined, aggregate type.  If
1283    OR_ELSE is nonzero, give an error message.  */
1284
1285 int
1286 is_aggr_type (type, or_else)
1287      tree type;
1288      int or_else;
1289 {
1290   if (type == error_mark_node)
1291     return 0;
1292
1293   if (! IS_AGGR_TYPE (type)
1294       && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1295       && TREE_CODE (type) != TEMPLATE_TEMPLATE_PARM)
1296     {
1297       if (or_else)
1298         cp_error ("`%T' is not an aggregate type", type);
1299       return 0;
1300     }
1301   return 1;
1302 }
1303
1304 /* Like is_aggr_typedef, but returns typedef if successful.  */
1305
1306 tree
1307 get_aggr_from_typedef (name, or_else)
1308      tree name;
1309      int or_else;
1310 {
1311   tree type;
1312
1313   if (name == error_mark_node)
1314     return NULL_TREE;
1315
1316   if (IDENTIFIER_HAS_TYPE_VALUE (name))
1317     type = IDENTIFIER_TYPE_VALUE (name);
1318   else
1319     {
1320       if (or_else)
1321         cp_error ("`%T' fails to be an aggregate typedef", name);
1322       return NULL_TREE;
1323     }
1324
1325   if (! IS_AGGR_TYPE (type)
1326       && TREE_CODE (type) != TEMPLATE_TYPE_PARM
1327       && TREE_CODE (type) != TEMPLATE_TEMPLATE_PARM)
1328     {
1329       if (or_else)
1330         cp_error ("type `%T' is of non-aggregate type", type);
1331       return NULL_TREE;
1332     }
1333   return type;
1334 }
1335
1336 tree
1337 get_type_value (name)
1338      tree name;
1339 {
1340   if (name == error_mark_node)
1341     return NULL_TREE;
1342
1343   if (IDENTIFIER_HAS_TYPE_VALUE (name))
1344     return IDENTIFIER_TYPE_VALUE (name);
1345   else
1346     return NULL_TREE;
1347 }
1348   
1349 \f
1350 /* This code could just as well go in `class.c', but is placed here for
1351    modularity.  */
1352
1353 /* For an expression of the form TYPE :: NAME (PARMLIST), build
1354    the appropriate function call.  */
1355
1356 tree
1357 build_member_call (type, name, parmlist)
1358      tree type, name, parmlist;
1359 {
1360   tree t;
1361   tree method_name;
1362   int dtor = 0;
1363   tree basetype_path, decl;
1364
1365   if (TREE_CODE (name) == TEMPLATE_ID_EXPR
1366       && TREE_CODE (type) == NAMESPACE_DECL)
1367     {
1368       /* 'name' already refers to the decls from the namespace, since we
1369          hit do_identifier for template_ids.  */
1370       my_friendly_assert (is_overloaded_fn (TREE_OPERAND (name, 0)), 980519);
1371       return build_x_function_call (name, parmlist, current_class_ref);
1372     }
1373
1374   if (type == std_node)
1375     return build_x_function_call (do_scoped_id (name, 0), parmlist,
1376                                   current_class_ref);
1377   if (TREE_CODE (type) == NAMESPACE_DECL)
1378     return build_x_function_call (lookup_namespace_name (type, name),
1379                                   parmlist, current_class_ref);
1380
1381   if (TREE_CODE (name) != TEMPLATE_ID_EXPR)
1382     method_name = name;
1383   else
1384     {
1385       method_name = TREE_OPERAND (name, 0);
1386       if (is_overloaded_fn (method_name))
1387         method_name = DECL_NAME (OVL_CURRENT (method_name));
1388     }
1389
1390   if (TREE_CODE (method_name) == BIT_NOT_EXPR)
1391     {
1392       method_name = TREE_OPERAND (method_name, 0);
1393       dtor = 1;
1394     }
1395
1396   /* This shouldn't be here, and build_member_call shouldn't appear in
1397      parse.y!  (mrs)  */
1398   if (type && TREE_CODE (type) == IDENTIFIER_NODE
1399       && get_aggr_from_typedef (type, 0) == 0)
1400     {
1401       tree ns = lookup_name (type, 0);
1402       if (ns && TREE_CODE (ns) == NAMESPACE_DECL)
1403         {
1404           return build_x_function_call (build_offset_ref (type, name), parmlist, current_class_ref);
1405         }
1406     }
1407
1408   if (type == NULL_TREE || ! is_aggr_type (type, 1))
1409     return error_mark_node;
1410
1411   /* An operator we did not like.  */
1412   if (name == NULL_TREE)
1413     return error_mark_node;
1414
1415   if (dtor)
1416     {
1417       cp_error ("cannot call destructor `%T::~%T' without object", type,
1418                 method_name);
1419       return error_mark_node;
1420     }
1421
1422   decl = maybe_dummy_object (type, &basetype_path);
1423
1424   /* Convert 'this' to the specified type to disambiguate conversion
1425      to the function's context.  Apparently Standard C++ says that we
1426      shouldn't do this.  */
1427   if (decl == current_class_ref
1428       && ! pedantic
1429       && ACCESSIBLY_UNIQUELY_DERIVED_P (type, current_class_type))
1430     {
1431       tree olddecl = current_class_ptr;
1432       tree oldtype = TREE_TYPE (TREE_TYPE (olddecl));
1433       if (oldtype != type)
1434         {
1435           tree newtype = build_qualified_type (type, TYPE_QUALS (oldtype));
1436           decl = convert_force (build_pointer_type (newtype), olddecl, 0);
1437           decl = build_indirect_ref (decl, NULL_PTR);
1438         }
1439     }
1440
1441   if (method_name == constructor_name (type)
1442       || method_name == constructor_name_full (type))
1443     return build_functional_cast (type, parmlist);
1444   if ((t = lookup_fnfields (basetype_path, method_name, 0)))
1445     return build_method_call (decl, 
1446                               TREE_CODE (name) == TEMPLATE_ID_EXPR
1447                               ? name : method_name,
1448                               parmlist, basetype_path,
1449                               LOOKUP_NORMAL|LOOKUP_NONVIRTUAL);
1450   if (TREE_CODE (name) == IDENTIFIER_NODE
1451       && ((t = lookup_field (TYPE_BINFO (type), name, 1, 0))))
1452     {
1453       if (t == error_mark_node)
1454         return error_mark_node;
1455       if (TREE_CODE (t) == FIELD_DECL)
1456         {
1457           if (is_dummy_object (decl))
1458             {
1459               cp_error ("invalid use of non-static field `%D'", t);
1460               return error_mark_node;
1461             }
1462           decl = build (COMPONENT_REF, TREE_TYPE (t), decl, t);
1463         }
1464       else if (TREE_CODE (t) == VAR_DECL)
1465         decl = t;
1466       else
1467         {
1468           cp_error ("invalid use of member `%D'", t);
1469           return error_mark_node;
1470         }
1471       if (TYPE_LANG_SPECIFIC (TREE_TYPE (decl)))
1472         return build_opfncall (CALL_EXPR, LOOKUP_NORMAL, decl,
1473                                parmlist, NULL_TREE);
1474       return build_function_call (decl, parmlist);
1475     }
1476   else
1477     {
1478       cp_error ("no method `%T::%D'", type, name);
1479       return error_mark_node;
1480     }
1481 }
1482
1483 /* Build a reference to a member of an aggregate.  This is not a
1484    C++ `&', but really something which can have its address taken,
1485    and then act as a pointer to member, for example TYPE :: FIELD
1486    can have its address taken by saying & TYPE :: FIELD.
1487
1488    @@ Prints out lousy diagnostics for operator <typename>
1489    @@ fields.
1490
1491    @@ This function should be rewritten and placed in search.c.  */
1492
1493 tree
1494 build_offset_ref (type, name)
1495      tree type, name;
1496 {
1497   tree decl, t = error_mark_node;
1498   tree member;
1499   tree basebinfo = NULL_TREE;
1500   tree orig_name = name;
1501
1502   /* class templates can come in as TEMPLATE_DECLs here.  */
1503   if (TREE_CODE (name) == TEMPLATE_DECL)
1504     return name;
1505
1506   if (type == std_node)
1507     return do_scoped_id (name, 0);
1508
1509   if (processing_template_decl || uses_template_parms (type))
1510     return build_min_nt (SCOPE_REF, type, name);
1511
1512   /* Handle namespace names fully here.  */
1513   if (TREE_CODE (type) == NAMESPACE_DECL)
1514     {
1515       t = lookup_namespace_name (type, name);
1516       if (t != error_mark_node && ! type_unknown_p (t))
1517         {
1518           mark_used (t);
1519           t = convert_from_reference (t);
1520         }
1521       return t;
1522     }
1523
1524   if (type == NULL_TREE || ! is_aggr_type (type, 1))
1525     return error_mark_node;
1526
1527   if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
1528     {
1529       /* If the NAME is a TEMPLATE_ID_EXPR, we are looking at
1530          something like `a.template f<int>' or the like.  For the most
1531          part, we treat this just like a.f.  We do remember, however,
1532          the template-id that was used.  */
1533       name = TREE_OPERAND (orig_name, 0);
1534
1535       if (TREE_CODE (name) == LOOKUP_EXPR)
1536         /* This can happen during tsubst'ing.  */
1537         name = TREE_OPERAND (name, 0);
1538
1539       my_friendly_assert (TREE_CODE (name) == IDENTIFIER_NODE, 0);
1540     }
1541
1542   if (TREE_CODE (name) == BIT_NOT_EXPR)
1543     {
1544       if (! check_dtor_name (type, name))
1545         cp_error ("qualified type `%T' does not match destructor name `~%T'",
1546                   type, TREE_OPERAND (name, 0));
1547       name = dtor_identifier;
1548     }
1549 #if 0
1550   /* I think this is wrong, but the draft is unclear.  --jason 6/15/98 */
1551   else if (name == constructor_name_full (type)
1552            || name == constructor_name (type))
1553     name = ctor_identifier;
1554 #endif
1555
1556   if (TYPE_SIZE (complete_type (type)) == 0
1557       && !TYPE_BEING_DEFINED (type))
1558     {
1559       cp_error ("incomplete type `%T' does not have member `%D'", type,
1560                 name);
1561       return error_mark_node;
1562     }
1563
1564   decl = maybe_dummy_object (type, &basebinfo);
1565
1566   member = lookup_member (basebinfo, name, 1, 0);
1567
1568   if (member == error_mark_node)
1569     return error_mark_node;
1570
1571   /* A lot of this logic is now handled in lookup_field and
1572      lookup_fnfield.  */
1573   if (member && TREE_CODE (member) == TREE_LIST)
1574     {
1575       /* Go from the TREE_BASELINK to the member function info.  */
1576       tree fnfields = member;
1577       t = TREE_VALUE (fnfields);
1578
1579       if (TREE_CODE (orig_name) == TEMPLATE_ID_EXPR)
1580         {
1581           /* The FNFIELDS are going to contain functions that aren't
1582              necessarily templates, and templates that don't
1583              necessarily match the explicit template parameters.  We
1584              save all the functions, and the explicit parameters, and
1585              then figure out exactly what to instantiate with what
1586              arguments in instantiate_type.  */
1587
1588           if (TREE_CODE (t) != OVERLOAD)
1589             /* The code in instantiate_type which will process this
1590                expects to encounter OVERLOADs, not raw functions.  */
1591             t = ovl_cons (t, NULL_TREE);
1592           
1593           return build (OFFSET_REF, 
1594                         build_offset_type (type, unknown_type_node),
1595                         decl,
1596                         build (TEMPLATE_ID_EXPR, 
1597                                TREE_TYPE (t),
1598                                t,
1599                                TREE_OPERAND (orig_name, 1)));
1600         }
1601
1602       if (!really_overloaded_fn (t))
1603         {
1604           /* Get rid of a potential OVERLOAD around it */
1605           t = OVL_CURRENT (t);
1606
1607           /* unique functions are handled easily.  */
1608           basebinfo = TREE_PURPOSE (fnfields);
1609           if (!enforce_access (basebinfo, t))
1610             return error_mark_node;
1611           mark_used (t);
1612           if (DECL_STATIC_FUNCTION_P (t))
1613             return t;
1614           return build (OFFSET_REF, TREE_TYPE (t), decl, t);
1615         }
1616
1617       /* FNFIELDS is most likely allocated on the search_obstack,
1618          which will go away after this class scope.  If we need
1619          to save this value for later (i.e. for use as an initializer
1620          for a static variable), then do so here.
1621
1622          ??? The smart thing to do for the case of saving initializers
1623          is to resolve them before we're done with this scope.  */
1624       if (!TREE_PERMANENT (fnfields)
1625           && ! allocation_temporary_p ())
1626         fnfields = copy_list (fnfields);
1627
1628       t = build_tree_list (error_mark_node, fnfields);
1629       TREE_TYPE (t) = build_offset_type (type, unknown_type_node);
1630       return t;
1631     }
1632
1633   t = member;
1634
1635   if (t == NULL_TREE)
1636     {
1637       cp_error ("`%D' is not a member of type `%T'", name, type);
1638       return error_mark_node;
1639     }
1640
1641   if (TREE_CODE (t) == TYPE_DECL)
1642     {
1643       TREE_USED (t) = 1;
1644       return t;
1645     }
1646   /* static class members and class-specific enum
1647      values can be returned without further ado.  */
1648   if (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == CONST_DECL)
1649     {
1650       mark_used (t);
1651       return convert_from_reference (t);
1652     }
1653
1654   if (TREE_CODE (t) == FIELD_DECL && DECL_C_BIT_FIELD (t))
1655     {
1656       cp_error ("illegal pointer to bit field `%D'", t);
1657       return error_mark_node;
1658     }
1659
1660   /* static class functions too.  */
1661   if (TREE_CODE (t) == FUNCTION_DECL
1662       && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
1663     my_friendly_abort (53);
1664
1665   /* In member functions, the form `type::name' is no longer
1666      equivalent to `this->type::name', at least not until
1667      resolve_offset_ref.  */
1668   return build (OFFSET_REF, build_offset_type (type, TREE_TYPE (t)), decl, t);
1669 }
1670
1671 /* If a OFFSET_REF made it through to here, then it did
1672    not have its address taken.  */
1673
1674 tree
1675 resolve_offset_ref (exp)
1676      tree exp;
1677 {
1678   tree type = TREE_TYPE (exp);
1679   tree base = NULL_TREE;
1680   tree member;
1681   tree basetype, addr;
1682
1683   if (TREE_CODE (exp) == TREE_LIST)
1684     {
1685       cp_pedwarn ("assuming & on overloaded member function");
1686       return build_unary_op (ADDR_EXPR, exp, 0);
1687     }
1688
1689   if (TREE_CODE (exp) == OFFSET_REF)
1690     {
1691       member = TREE_OPERAND (exp, 1);
1692       base = TREE_OPERAND (exp, 0);
1693     }
1694   else
1695     {
1696       my_friendly_assert (TREE_CODE (type) == OFFSET_TYPE, 214);
1697       if (TYPE_OFFSET_BASETYPE (type) != current_class_type)
1698         {
1699           error ("object missing in use of pointer-to-member construct");
1700           return error_mark_node;
1701         }
1702       member = exp;
1703       type = TREE_TYPE (type);
1704       base = current_class_ref;
1705     }
1706
1707   if ((TREE_CODE (member) == VAR_DECL
1708        && ! TYPE_PTRMEMFUNC_P (TREE_TYPE (member))
1709        && ! TYPE_PTRMEM_P (TREE_TYPE (member)))
1710       || TREE_CODE (TREE_TYPE (member)) == FUNCTION_TYPE
1711       || TREE_CODE (TREE_TYPE (member)) == METHOD_TYPE)
1712     {
1713       /* These were static members.  */
1714       if (mark_addressable (member) == 0)
1715         return error_mark_node;
1716       return member;
1717     }
1718
1719   if (TREE_CODE (TREE_TYPE (member)) == POINTER_TYPE
1720       && TREE_CODE (TREE_TYPE (TREE_TYPE (member))) == METHOD_TYPE)
1721     return member;
1722
1723   /* Syntax error can cause a member which should
1724      have been seen as static to be grok'd as non-static.  */
1725   if (TREE_CODE (member) == FIELD_DECL && current_class_ref == NULL_TREE)
1726     {
1727       if (TREE_ADDRESSABLE (member) == 0)
1728         {
1729           cp_error_at ("member `%D' is non-static but referenced as a static member",
1730                        member);
1731           error ("at this point in file");
1732           TREE_ADDRESSABLE (member) = 1;
1733         }
1734       return error_mark_node;
1735     }
1736
1737   /* The first case is really just a reference to a member of `this'.  */
1738   if (TREE_CODE (member) == FIELD_DECL
1739       && (base == current_class_ref || is_dummy_object (base)))
1740     {
1741       tree basetype_path;
1742       tree expr;
1743
1744       if (TREE_CODE (exp) == OFFSET_REF && TREE_CODE (type) == OFFSET_TYPE)
1745         basetype = TYPE_OFFSET_BASETYPE (type);
1746       else
1747         basetype = DECL_CONTEXT (member);
1748
1749       base = current_class_ptr;
1750       
1751       if (get_base_distance (basetype, TREE_TYPE (TREE_TYPE (base)), 0, &basetype_path) < 0)
1752         {
1753           error_not_base_type (basetype, TREE_TYPE (TREE_TYPE (base)));
1754           return error_mark_node;
1755         }
1756       /* Kludge: we need to use basetype_path now, because
1757          convert_pointer_to will bash it.  */
1758       enforce_access (basetype_path, member);
1759       addr = convert_pointer_to (basetype, base);
1760
1761       /* Even in the case of illegal access, we form the
1762          COMPONENT_REF; that will allow better error recovery than
1763          just feeding back error_mark_node.  */
1764       expr = build (COMPONENT_REF, TREE_TYPE (member),
1765                     build_indirect_ref (addr, NULL_PTR), member);
1766       return convert_from_reference (expr);
1767     }
1768
1769   /* Ensure that we have an object.  */
1770   if (is_dummy_object (base))
1771     addr = error_mark_node;
1772   else
1773     /* If this is a reference to a member function, then return the
1774        address of the member function (which may involve going
1775        through the object's vtable), otherwise, return an expression
1776        for the dereferenced pointer-to-member construct.  */
1777     addr = build_unary_op (ADDR_EXPR, base, 0);
1778
1779   if (TYPE_PTRMEM_P (TREE_TYPE (member)))
1780     {
1781       if (addr == error_mark_node)
1782         {
1783           cp_error ("object missing in `%E'", exp);
1784           return error_mark_node;
1785         }
1786
1787       basetype = TYPE_OFFSET_BASETYPE (TREE_TYPE (TREE_TYPE (member)));
1788       addr = convert_pointer_to (basetype, addr);
1789       member = cp_convert (ptrdiff_type_node, member);
1790       
1791       /* Pointer to data members are offset by one, so that a null
1792          pointer with a real value of 0 is distinguishable from an
1793          offset of the first member of a structure.  */
1794       member = build_binary_op (MINUS_EXPR, member,
1795                                 cp_convert (ptrdiff_type_node, integer_one_node),
1796                                 0);
1797
1798       return build1 (INDIRECT_REF, type,
1799                      build (PLUS_EXPR, build_pointer_type (type),
1800                             addr, member));
1801     }
1802   else if (TYPE_PTRMEMFUNC_P (TREE_TYPE (member)))
1803     {
1804       return get_member_function_from_ptrfunc (&addr, member);
1805     }
1806   my_friendly_abort (56);
1807   /* NOTREACHED */
1808   return NULL_TREE;
1809 }
1810
1811 /* Return either DECL or its known constant value (if it has one).  */
1812
1813 tree
1814 decl_constant_value (decl)
1815      tree decl;
1816 {
1817   if (! TREE_THIS_VOLATILE (decl)
1818       && DECL_INITIAL (decl)
1819       && DECL_INITIAL (decl) != error_mark_node
1820       /* This is invalid if initial value is not constant.
1821          If it has either a function call, a memory reference,
1822          or a variable, then re-evaluating it could give different results.  */
1823       && TREE_CONSTANT (DECL_INITIAL (decl))
1824       /* Check for cases where this is sub-optimal, even though valid.  */
1825       && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
1826     return DECL_INITIAL (decl);
1827   return decl;
1828 }
1829 \f
1830 /* Common subroutines of build_new and build_vec_delete.  */
1831
1832 /* Call the global __builtin_delete to delete ADDR.  */
1833
1834 static tree
1835 build_builtin_delete_call (addr)
1836      tree addr;
1837 {
1838   mark_used (global_delete_fndecl);
1839   return build_call (global_delete_fndecl, 
1840                      void_type_node, build_expr_list (NULL_TREE, addr));
1841 }
1842 \f
1843 /* Generate a C++ "new" expression. DECL is either a TREE_LIST
1844    (which needs to go through some sort of groktypename) or it
1845    is the name of the class we are newing. INIT is an initialization value.
1846    It is either an EXPRLIST, an EXPR_NO_COMMAS, or something in braces.
1847    If INIT is void_type_node, it means do *not* call a constructor
1848    for this instance.
1849
1850    For types with constructors, the data returned is initialized
1851    by the appropriate constructor.
1852
1853    Whether the type has a constructor or not, if it has a pointer
1854    to a virtual function table, then that pointer is set up
1855    here.
1856
1857    Unless I am mistaken, a call to new () will return initialized
1858    data regardless of whether the constructor itself is private or
1859    not.  NOPE; new fails if the constructor is private (jcm).
1860
1861    Note that build_new does nothing to assure that any special
1862    alignment requirements of the type are met.  Rather, it leaves
1863    it up to malloc to do the right thing.  Otherwise, folding to
1864    the right alignment cal cause problems if the user tries to later
1865    free the memory returned by `new'.
1866
1867    PLACEMENT is the `placement' list for user-defined operator new ().  */
1868
1869 extern int flag_check_new;
1870
1871 tree
1872 build_new (placement, decl, init, use_global_new)
1873      tree placement;
1874      tree decl, init;
1875      int use_global_new;
1876 {
1877   tree type, rval;
1878   tree nelts = NULL_TREE, t;
1879   int has_array = 0;
1880
1881   tree pending_sizes = NULL_TREE;
1882
1883   if (decl == error_mark_node)
1884     return error_mark_node;
1885
1886   if (TREE_CODE (decl) == TREE_LIST)
1887     {
1888       tree absdcl = TREE_VALUE (decl);
1889       tree last_absdcl = NULL_TREE;
1890       int old_immediate_size_expand = 0;
1891
1892       if (current_function_decl
1893           && DECL_CONSTRUCTOR_P (current_function_decl))
1894         {
1895           old_immediate_size_expand = immediate_size_expand;
1896           immediate_size_expand = 0;
1897         }
1898
1899       nelts = integer_one_node;
1900
1901       if (absdcl && TREE_CODE (absdcl) == CALL_EXPR)
1902         my_friendly_abort (215);
1903       while (absdcl && TREE_CODE (absdcl) == INDIRECT_REF)
1904         {
1905           last_absdcl = absdcl;
1906           absdcl = TREE_OPERAND (absdcl, 0);
1907         }
1908
1909       if (absdcl && TREE_CODE (absdcl) == ARRAY_REF)
1910         {
1911           /* probably meant to be a vec new */
1912           tree this_nelts;
1913
1914           while (TREE_OPERAND (absdcl, 0)
1915                  && TREE_CODE (TREE_OPERAND (absdcl, 0)) == ARRAY_REF)
1916             {
1917               last_absdcl = absdcl;
1918               absdcl = TREE_OPERAND (absdcl, 0);
1919             }
1920
1921           has_array = 1;
1922           this_nelts = TREE_OPERAND (absdcl, 1);
1923           if (this_nelts != error_mark_node)
1924             {
1925               if (this_nelts == NULL_TREE)
1926                 error ("new of array type fails to specify size");
1927               else if (processing_template_decl)
1928                 {
1929                   nelts = this_nelts;
1930                   absdcl = TREE_OPERAND (absdcl, 0);
1931                 }
1932               else
1933                 {
1934                   int flags = pedantic ? WANT_INT : (WANT_INT | WANT_ENUM);
1935                   if (build_expr_type_conversion (flags, this_nelts, 0)
1936                       == NULL_TREE)
1937                     pedwarn ("size in array new must have integral type");
1938
1939                   this_nelts = save_expr (cp_convert (sizetype, this_nelts));
1940                   absdcl = TREE_OPERAND (absdcl, 0);
1941                   if (this_nelts == integer_zero_node)
1942                     {
1943                       warning ("zero size array reserves no space");
1944                       nelts = integer_zero_node;
1945                     }
1946                   else
1947                     nelts = build_binary_op (MULT_EXPR, nelts, this_nelts, 1);
1948                 }
1949             }
1950           else
1951             nelts = integer_zero_node;
1952         }
1953
1954       if (last_absdcl)
1955         TREE_OPERAND (last_absdcl, 0) = absdcl;
1956       else
1957         TREE_VALUE (decl) = absdcl;
1958
1959       type = groktypename (decl);
1960       if (! type || type == error_mark_node)
1961         {
1962           immediate_size_expand = old_immediate_size_expand;
1963           return error_mark_node;
1964         }
1965
1966       if (current_function_decl
1967           && DECL_CONSTRUCTOR_P (current_function_decl))
1968         {
1969           pending_sizes = get_pending_sizes ();
1970           immediate_size_expand = old_immediate_size_expand;
1971         }
1972     }
1973   else if (TREE_CODE (decl) == IDENTIFIER_NODE)
1974     {
1975       if (IDENTIFIER_HAS_TYPE_VALUE (decl))
1976         {
1977           /* An aggregate type.  */
1978           type = IDENTIFIER_TYPE_VALUE (decl);
1979           decl = TYPE_MAIN_DECL (type);
1980         }
1981       else
1982         {
1983           /* A builtin type.  */
1984           decl = lookup_name (decl, 1);
1985           my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 215);
1986           type = TREE_TYPE (decl);
1987         }
1988     }
1989   else if (TREE_CODE (decl) == TYPE_DECL)
1990     {
1991       type = TREE_TYPE (decl);
1992     }
1993   else
1994     {
1995       type = decl;
1996       decl = TYPE_MAIN_DECL (type);
1997     }
1998
1999   if (processing_template_decl)
2000     {
2001       if (has_array)
2002         t = min_tree_cons (min_tree_cons (NULL_TREE, type, NULL_TREE),
2003                            build_min_nt (ARRAY_REF, NULL_TREE, nelts),
2004                            NULL_TREE);
2005       else
2006         t = type;
2007         
2008       rval = build_min_nt (NEW_EXPR, placement, t, init);
2009       NEW_EXPR_USE_GLOBAL (rval) = use_global_new;
2010       return rval;
2011     }
2012
2013   /* ``A reference cannot be created by the new operator.  A reference
2014      is not an object (8.2.2, 8.4.3), so a pointer to it could not be
2015      returned by new.'' ARM 5.3.3 */
2016   if (TREE_CODE (type) == REFERENCE_TYPE)
2017     {
2018       error ("new cannot be applied to a reference type");
2019       type = TREE_TYPE (type);
2020     }
2021
2022   if (TREE_CODE (type) == FUNCTION_TYPE)
2023     {
2024       error ("new cannot be applied to a function type");
2025       return error_mark_node;
2026     }
2027
2028   /* When the object being created is an array, the new-expression yields a
2029      pointer to the initial element (if any) of the array.  For example,
2030      both new int and new int[10] return an int*.  5.3.4.  */
2031   if (TREE_CODE (type) == ARRAY_TYPE && has_array == 0)
2032     {
2033       nelts = array_type_nelts_top (type);
2034       has_array = 1;
2035       type = TREE_TYPE (type);
2036     }
2037
2038   if (has_array)
2039     t = build_nt (ARRAY_REF, type, nelts);
2040   else
2041     t = type;
2042
2043   rval = build (NEW_EXPR, build_pointer_type (type), placement, t, init);
2044   NEW_EXPR_USE_GLOBAL (rval) = use_global_new;
2045   TREE_SIDE_EFFECTS (rval) = 1;
2046
2047   /* Wrap it in a NOP_EXPR so warn_if_unused_value doesn't complain.  */
2048   rval = build1 (NOP_EXPR, TREE_TYPE (rval), rval);
2049   TREE_NO_UNUSED_WARNING (rval) = 1;
2050
2051   if (pending_sizes)
2052     rval = build_compound_expr (chainon (pending_sizes,
2053                                          build_expr_list (NULL_TREE, rval)));
2054
2055   return rval;
2056 }
2057
2058 /* If non-NULL, a POINTER_TYPE equivalent to (java::lang::Class*). */
2059
2060 static tree jclass_node = NULL_TREE;
2061
2062 /* Given a Java class, return a decl for the corresponding java.lang.Class. */
2063
2064 tree
2065 build_java_class_ref (type)
2066      tree type;
2067 {
2068   tree name, class_decl;
2069   static tree CL_prefix = NULL_TREE;
2070   if (CL_prefix == NULL_TREE)
2071     CL_prefix = get_identifier("_CL_");
2072   if (jclass_node == NULL_TREE)
2073     {
2074       jclass_node = IDENTIFIER_GLOBAL_VALUE (get_identifier("jclass"));
2075       if (jclass_node == NULL_TREE)
2076         fatal("call to Java constructor, while `jclass' undefined");
2077       jclass_node = TREE_TYPE (jclass_node);
2078     }
2079   name = build_overload_with_type (CL_prefix, type);
2080   class_decl = IDENTIFIER_GLOBAL_VALUE (name);
2081   if (class_decl == NULL_TREE)
2082     {
2083       push_obstacks_nochange ();
2084       end_temporary_allocation ();
2085       class_decl = build_decl (VAR_DECL, name, TREE_TYPE (jclass_node));
2086       TREE_STATIC (class_decl) = 1;
2087       DECL_EXTERNAL (class_decl) = 1;
2088       TREE_PUBLIC (class_decl) = 1;
2089       DECL_ARTIFICIAL (class_decl) = 1;
2090       DECL_IGNORED_P (class_decl) = 1;
2091       pushdecl_top_level (class_decl);
2092       make_decl_rtl (class_decl, NULL_PTR, 1);
2093       pop_obstacks ();
2094     }
2095   return class_decl;
2096 }
2097
2098 /* Called from cplus_expand_expr when expanding a NEW_EXPR.  The return
2099    value is immediately handed to expand_expr.  */
2100
2101 tree
2102 build_new_1 (exp)
2103      tree exp;
2104 {
2105   tree placement, init;
2106   tree type, true_type, size, rval;
2107   tree nelts = NULL_TREE;
2108   tree alloc_expr, alloc_node = NULL_TREE;
2109   int has_array = 0;
2110   enum tree_code code = NEW_EXPR;
2111   int use_cookie, nothrow, check_new;
2112   int use_global_new;
2113   int use_java_new = 0;
2114
2115   placement = TREE_OPERAND (exp, 0);
2116   type = TREE_OPERAND (exp, 1);
2117   init = TREE_OPERAND (exp, 2);
2118   use_global_new = NEW_EXPR_USE_GLOBAL (exp);
2119
2120   if (TREE_CODE (type) == ARRAY_REF)
2121     {
2122       has_array = 1;
2123       nelts = TREE_OPERAND (type, 1);
2124       type = TREE_OPERAND (type, 0);
2125     }
2126   true_type = type;
2127
2128   if (CP_TYPE_QUALS (type))
2129     type = TYPE_MAIN_VARIANT (type);
2130
2131   /* If our base type is an array, then make sure we know how many elements
2132      it has.  */
2133   while (TREE_CODE (true_type) == ARRAY_TYPE)
2134     {
2135       tree this_nelts = array_type_nelts_top (true_type);
2136       nelts = build_binary_op (MULT_EXPR, nelts, this_nelts, 1);
2137       true_type = TREE_TYPE (true_type);
2138     }
2139
2140   if (!complete_type_or_else (true_type, exp))
2141     return error_mark_node;
2142
2143   if (has_array)
2144     size = fold (build_binary_op (MULT_EXPR, size_in_bytes (true_type),
2145                                   nelts, 1));
2146   else
2147     size = size_in_bytes (type);
2148
2149   if (TREE_CODE (true_type) == VOID_TYPE)
2150     {
2151       error ("invalid type `void' for new");
2152       return error_mark_node;
2153     }
2154
2155   if (TYPE_LANG_SPECIFIC (true_type)
2156       && CLASSTYPE_ABSTRACT_VIRTUALS (true_type))
2157     {
2158       abstract_virtuals_error (NULL_TREE, true_type);
2159       return error_mark_node;
2160     }
2161
2162   if (TYPE_LANG_SPECIFIC (true_type) && IS_SIGNATURE (true_type))
2163     {
2164       signature_error (NULL_TREE, true_type);
2165       return error_mark_node;
2166     }
2167
2168 #if 1
2169   /* Get a little extra space to store a couple of things before the new'ed
2170      array, if this isn't the default placement new.  */
2171
2172   use_cookie = (has_array && TYPE_VEC_NEW_USES_COOKIE (true_type)
2173                 && ! (placement && ! TREE_CHAIN (placement)
2174                       && TREE_TYPE (TREE_VALUE (placement)) == ptr_type_node));
2175 #else
2176   /* Get a little extra space to store a couple of things before the new'ed
2177      array, if this is either non-placement new or new (nothrow).  */
2178   
2179   use_cookie = (has_array && TYPE_VEC_NEW_USES_COOKIE (true_type)
2180                 && (! placement || nothrow));
2181 #endif
2182
2183   if (use_cookie)
2184     {
2185       tree extra = BI_header_size;
2186
2187       size = size_binop (PLUS_EXPR, size, extra);
2188     }
2189
2190   if (has_array)
2191     {
2192       code = VEC_NEW_EXPR;
2193
2194       if (init && pedantic)
2195         cp_pedwarn ("initialization in array new");
2196     }
2197
2198   /* Allocate the object.  */
2199   
2200   if (! has_array && ! placement && flag_this_is_variable > 0
2201       && TYPE_NEEDS_CONSTRUCTING (true_type) && init != void_type_node)
2202     {
2203       if (init == NULL_TREE || TREE_CODE (init) == TREE_LIST)
2204         rval = NULL_TREE;
2205       else
2206         {
2207           error ("constructors take parameter lists");
2208           return error_mark_node;
2209         }
2210     }
2211   else if (! placement && TYPE_FOR_JAVA (true_type))
2212     {
2213       tree class_addr, alloc_decl;
2214       tree class_decl = build_java_class_ref (true_type);
2215       tree class_size = size_in_bytes (true_type);
2216       static char alloc_name[] = "_Jv_AllocObject";
2217       use_java_new = 1;
2218       alloc_decl = IDENTIFIER_GLOBAL_VALUE (get_identifier (alloc_name));
2219       if (alloc_decl == NULL_TREE)
2220         fatal("call to Java constructor, while `%s' undefined", alloc_name);
2221       class_addr = build1 (ADDR_EXPR, jclass_node, class_decl);
2222       rval = build_function_call (alloc_decl,
2223                                   tree_cons (NULL_TREE, class_addr,
2224                                              build_tree_list (NULL_TREE,
2225                                                               class_size)));
2226       rval = cp_convert (build_pointer_type (true_type), rval);
2227     }
2228   else
2229     {
2230       int susp = 0;
2231
2232       if (flag_exceptions)
2233         /* We will use RVAL when generating an exception handler for
2234            this new-expression, so we must save it.  */
2235         susp = suspend_momentary ();
2236
2237       rval = build_op_new_call
2238         (code, true_type, expr_tree_cons (NULL_TREE, size, placement),
2239          LOOKUP_NORMAL | (use_global_new * LOOKUP_GLOBAL));
2240       rval = cp_convert (build_pointer_type (true_type), rval);
2241
2242       if (flag_exceptions)
2243         resume_momentary (susp);
2244     }
2245
2246   /*        unless an allocation function is declared with an empty  excep-
2247      tion-specification  (_except.spec_),  throw(), it indicates failure to
2248      allocate storage by throwing a bad_alloc exception  (clause  _except_,
2249      _lib.bad.alloc_); it returns a non-null pointer otherwise If the allo-
2250      cation function is declared  with  an  empty  exception-specification,
2251      throw(), it returns null to indicate failure to allocate storage and a
2252      non-null pointer otherwise.
2253
2254      So check for a null exception spec on the op new we just called.  */
2255
2256   nothrow = 0;
2257   if (rval)
2258     {
2259       /* The CALL_EXPR.  */
2260       tree t = TREE_OPERAND (rval, 0);
2261       /* The function.  */
2262       t = TREE_OPERAND (TREE_OPERAND (t, 0), 0);
2263       t = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (t));
2264
2265       if (t && TREE_VALUE (t) == NULL_TREE)
2266         nothrow = 1;
2267     }
2268   check_new = (flag_check_new || nothrow) && ! use_java_new;
2269
2270   if ((check_new || flag_exceptions) && rval)
2271     {
2272       alloc_expr = get_target_expr (rval);
2273       alloc_node = rval = TREE_OPERAND (alloc_expr, 0);
2274     }
2275   else
2276     alloc_expr = NULL_TREE;
2277
2278   /* if rval is NULL_TREE I don't have to allocate it, but are we totally
2279      sure we have some extra bytes in that case for the BI_header_size
2280      cookies? And how does that interact with the code below? (mrs) */
2281   /* Finish up some magic for new'ed arrays */
2282   if (use_cookie && rval != NULL_TREE)
2283     {
2284       tree extra = BI_header_size;
2285       tree cookie, exp1;
2286       rval = convert (string_type_node, rval); /* for ptr arithmetic */
2287       rval = save_expr (build_binary_op (PLUS_EXPR, rval, extra, 1));
2288       /* Store header info.  */
2289       cookie = build_indirect_ref (build (MINUS_EXPR,
2290                                           build_pointer_type (BI_header_type),
2291                                           rval, extra), NULL_PTR);
2292       exp1 = build (MODIFY_EXPR, void_type_node,
2293                     build_component_ref (cookie, nc_nelts_field_id,
2294                                          NULL_TREE, 0),
2295                     nelts);
2296       TREE_SIDE_EFFECTS (exp1) = 1;
2297       rval = cp_convert (build_pointer_type (true_type), rval);
2298       rval = build_compound_expr
2299         (expr_tree_cons (NULL_TREE, exp1,
2300                          build_expr_list (NULL_TREE, rval)));
2301     }
2302
2303   if (rval == error_mark_node)
2304     return error_mark_node;
2305
2306   /* Don't call any constructors or do any initialization.  */
2307   if (init == void_type_node)
2308     goto done;
2309
2310   if (TYPE_NEEDS_CONSTRUCTING (type) || init)
2311     {
2312       if (! TYPE_NEEDS_CONSTRUCTING (type)
2313           && ! IS_AGGR_TYPE (type) && ! has_array)
2314         {
2315           /* We are processing something like `new int (10)', which
2316              means allocate an int, and initialize it with 10.  */
2317           tree deref;
2318           tree deref_type;
2319
2320           /* At present RVAL is a temporary variable, created to hold
2321              the value from the call to `operator new'.  We transform
2322              it to (*RVAL = INIT, RVAL).  */
2323           rval = save_expr (rval);
2324           deref = build_indirect_ref (rval, NULL_PTR);
2325
2326           /* Even for something like `new const int (10)' we must
2327              allow the expression to be non-const while we do the
2328              initialization.  */
2329           deref_type = TREE_TYPE (deref);
2330           if (CP_TYPE_CONST_P (deref_type))
2331             TREE_TYPE (deref) 
2332               = cp_build_qualified_type (deref_type,
2333                                          CP_TYPE_QUALS (deref_type) 
2334                                          & ~TYPE_QUAL_CONST);
2335           TREE_READONLY (deref) = 0;
2336
2337           if (TREE_CHAIN (init) != NULL_TREE)
2338             pedwarn ("initializer list being treated as compound expression");
2339           else if (TREE_CODE (init) == CONSTRUCTOR)
2340             {
2341               pedwarn ("initializer list appears where operand should be used");
2342               init = TREE_OPERAND (init, 1);
2343             }
2344           init = build_compound_expr (init);
2345
2346           init = convert_for_initialization (deref, type, init, LOOKUP_NORMAL,
2347                                              "new", NULL_TREE, 0);
2348           rval = build (COMPOUND_EXPR, TREE_TYPE (rval),
2349                         build_modify_expr (deref, NOP_EXPR, init),
2350                         rval);
2351           TREE_NO_UNUSED_WARNING (rval) = 1;
2352           TREE_SIDE_EFFECTS (rval) = 1;
2353         }
2354       else if (! has_array)
2355         {
2356           tree newrval;
2357           /* Constructors are never virtual. If it has an initialization, we
2358              need to complain if we aren't allowed to use the ctor that took
2359              that argument.  */
2360           int flags = LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_COMPLAIN;
2361
2362           if (rval && TYPE_USES_VIRTUAL_BASECLASSES (true_type))
2363             {
2364               init = expr_tree_cons (NULL_TREE, integer_one_node, init);
2365               flags |= LOOKUP_HAS_IN_CHARGE;
2366             }
2367
2368           if (use_java_new)
2369             rval = save_expr (rval);
2370           newrval = rval;
2371
2372           if (newrval && TREE_CODE (TREE_TYPE (newrval)) == POINTER_TYPE)
2373             newrval = build_indirect_ref (newrval, NULL_PTR);
2374
2375           newrval = build_method_call (newrval, ctor_identifier,
2376                                        init, TYPE_BINFO (true_type), flags);
2377
2378           if (newrval == NULL_TREE || newrval == error_mark_node)
2379             return error_mark_node;
2380
2381           /* Java constructors compiled by jc1 do not return this. */
2382           if (use_java_new)
2383             newrval = build (COMPOUND_EXPR, TREE_TYPE (newrval),
2384                              newrval, rval);
2385           rval = newrval;
2386           TREE_HAS_CONSTRUCTOR (rval) = 1;
2387         }
2388       else
2389         rval = build (VEC_INIT_EXPR, TREE_TYPE (rval),
2390                       save_expr (rval), init, nelts);
2391
2392       /* If any part of the object initialization terminates by throwing
2393          an exception and the new-expression does not contain a
2394          new-placement, then the deallocation function is called to free
2395          the memory in which the object was being constructed.  */
2396       if (flag_exceptions && alloc_expr && ! use_java_new)
2397         {
2398           enum tree_code dcode = has_array ? VEC_DELETE_EXPR : DELETE_EXPR;
2399           tree cleanup, fn = NULL_TREE;
2400           int flags = LOOKUP_NORMAL | (use_global_new * LOOKUP_GLOBAL);
2401
2402           /* All cleanups must last longer than normal.  */
2403           int yes = suspend_momentary ();
2404
2405           if (placement)
2406             {
2407               flags |= LOOKUP_SPECULATIVELY;
2408
2409               /* We expect alloc_expr to look like a TARGET_EXPR around
2410                  a NOP_EXPR around the CALL_EXPR we want.  */
2411               fn = TREE_OPERAND (alloc_expr, 1);
2412               fn = TREE_OPERAND (fn, 0);
2413             }
2414
2415           /* Copy size to the saveable obstack.  */
2416           size = copy_node (size);
2417
2418           cleanup = build_op_delete_call (dcode, alloc_node, size, flags, fn);
2419
2420           resume_momentary (yes);
2421
2422           /* Ack!  First we allocate the memory.  Then we set our sentry
2423              variable to true, and expand a cleanup that deletes the memory
2424              if sentry is true.  Then we run the constructor and store the
2425              returned pointer in buf.  Then we clear sentry and return buf.  */
2426
2427           if (cleanup)
2428             {
2429               tree end, sentry, begin, buf, t = TREE_TYPE (rval);
2430
2431               begin = get_target_expr (boolean_true_node);
2432               sentry = TREE_OPERAND (begin, 0);
2433
2434               yes = suspend_momentary ();
2435               TREE_OPERAND (begin, 2)
2436                 = build (COND_EXPR, void_type_node, sentry,
2437                          cleanup, void_zero_node);
2438               resume_momentary (yes);
2439
2440               rval = get_target_expr (rval);
2441
2442               end = build (MODIFY_EXPR, TREE_TYPE (sentry),
2443                            sentry, boolean_false_node);
2444               TREE_SIDE_EFFECTS (end) = 1;
2445
2446               buf = TREE_OPERAND (rval, 0);
2447
2448               rval = build (COMPOUND_EXPR, t, begin,
2449                             build (COMPOUND_EXPR, t, rval,
2450                                    build (COMPOUND_EXPR, t, end, buf)));
2451             }
2452         }
2453     }
2454   else if (CP_TYPE_CONST_P (true_type))
2455     cp_error ("uninitialized const in `new' of `%#T'", true_type);
2456
2457  done:
2458
2459   if (alloc_expr && rval == alloc_node)
2460     {
2461       rval = TREE_OPERAND (alloc_expr, 1);
2462       alloc_expr = NULL_TREE;
2463     }
2464
2465   if (check_new && alloc_expr)
2466     {
2467       /* Did we modify the storage?  */
2468       tree ifexp = build_binary_op (NE_EXPR, alloc_node,
2469                                     integer_zero_node, 1);
2470       rval = build_conditional_expr (ifexp, rval, alloc_node);
2471     }
2472
2473   if (alloc_expr)
2474     rval = build (COMPOUND_EXPR, TREE_TYPE (rval), alloc_expr, rval);
2475
2476   if (rval && TREE_TYPE (rval) != build_pointer_type (type))
2477     {
2478       /* The type of new int [3][3] is not int *, but int [3] * */
2479       rval = build_c_cast (build_pointer_type (type), rval);
2480     }
2481
2482   return rval;
2483 }
2484 \f
2485 static tree
2486 build_vec_delete_1 (base, maxindex, type, auto_delete_vec, auto_delete,
2487                     use_global_delete)
2488      tree base, maxindex, type;
2489      tree auto_delete_vec, auto_delete;
2490      int use_global_delete;
2491 {
2492   tree virtual_size;
2493   tree ptype = build_pointer_type (type = complete_type (type));
2494   tree size_exp = size_in_bytes (type);
2495
2496   /* Temporary variables used by the loop.  */
2497   tree tbase, tbase_init;
2498
2499   /* This is the body of the loop that implements the deletion of a
2500      single element, and moves temp variables to next elements.  */
2501   tree body;
2502
2503   /* This is the LOOP_EXPR that governs the deletion of the elements.  */
2504   tree loop;
2505
2506   /* This is the thing that governs what to do after the loop has run.  */
2507   tree deallocate_expr = 0;
2508
2509   /* This is the BIND_EXPR which holds the outermost iterator of the
2510      loop.  It is convenient to set this variable up and test it before
2511      executing any other code in the loop.
2512      This is also the containing expression returned by this function.  */
2513   tree controller = NULL_TREE;
2514
2515   if (! IS_AGGR_TYPE (type) || ! TYPE_NEEDS_DESTRUCTOR (type))
2516     {
2517       loop = integer_zero_node;
2518       goto no_destructor;
2519     }
2520
2521   /* The below is short by BI_header_size */
2522   virtual_size = fold (size_binop (MULT_EXPR, size_exp, maxindex));
2523
2524   tbase = build_decl (VAR_DECL, NULL_TREE, ptype);
2525   tbase_init = build_modify_expr (tbase, NOP_EXPR,
2526                                   fold (build (PLUS_EXPR, ptype,
2527                                                base,
2528                                                virtual_size)));
2529   DECL_REGISTER (tbase) = 1;
2530   controller = build (BIND_EXPR, void_type_node, tbase, NULL_TREE, NULL_TREE);
2531   TREE_SIDE_EFFECTS (controller) = 1;
2532
2533   if (auto_delete != integer_zero_node
2534       && auto_delete != integer_two_node)
2535     {
2536       tree base_tbd = cp_convert (ptype,
2537                                   build_binary_op (MINUS_EXPR,
2538                                                    cp_convert (ptr_type_node, base),
2539                                                    BI_header_size,
2540                                                    1));
2541       /* This is the real size */
2542       virtual_size = size_binop (PLUS_EXPR, virtual_size, BI_header_size);
2543       body = build_expr_list (NULL_TREE,
2544                               build_x_delete (base_tbd,
2545                                               2 | use_global_delete,
2546                                               virtual_size));
2547       body = build (COND_EXPR, void_type_node,
2548                     build (BIT_AND_EXPR, integer_type_node,
2549                            auto_delete, integer_one_node),
2550                     body, integer_zero_node);
2551     }
2552   else
2553     body = NULL_TREE;
2554
2555   body = expr_tree_cons (NULL_TREE,
2556                     build_delete (ptype, tbase, auto_delete,
2557                                   LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 1),
2558                     body);
2559
2560   body = expr_tree_cons (NULL_TREE,
2561                     build_modify_expr (tbase, NOP_EXPR, build (MINUS_EXPR, ptype, tbase, size_exp)),
2562                     body);
2563
2564   body = expr_tree_cons (NULL_TREE,
2565                     build (EXIT_EXPR, void_type_node,
2566                            build (EQ_EXPR, boolean_type_node, base, tbase)),
2567                     body);
2568
2569   loop = build (LOOP_EXPR, void_type_node, build_compound_expr (body));
2570
2571   loop = expr_tree_cons (NULL_TREE, tbase_init,
2572                     expr_tree_cons (NULL_TREE, loop, NULL_TREE));
2573   loop = build_compound_expr (loop);
2574
2575  no_destructor:
2576   /* If the delete flag is one, or anything else with the low bit set,
2577      delete the storage.  */
2578   if (auto_delete_vec == integer_zero_node)
2579     deallocate_expr = integer_zero_node;
2580   else
2581     {
2582       tree base_tbd;
2583
2584       /* The below is short by BI_header_size */
2585       virtual_size = fold (size_binop (MULT_EXPR, size_exp, maxindex));
2586
2587       if (! TYPE_VEC_NEW_USES_COOKIE (type))
2588         /* no header */
2589         base_tbd = base;
2590       else
2591         {
2592           base_tbd = cp_convert (ptype,
2593                                  build_binary_op (MINUS_EXPR,
2594                                                   cp_convert (string_type_node, base),
2595                                                   BI_header_size,
2596                                                   1));
2597           /* True size with header.  */
2598           virtual_size = size_binop (PLUS_EXPR, virtual_size, BI_header_size);
2599         }
2600       deallocate_expr = build_x_delete (base_tbd,
2601                                         2 | use_global_delete,
2602                                         virtual_size);
2603       if (auto_delete_vec != integer_one_node)
2604         deallocate_expr = build (COND_EXPR, void_type_node,
2605                                  build (BIT_AND_EXPR, integer_type_node,
2606                                         auto_delete_vec, integer_one_node),
2607                                  deallocate_expr, integer_zero_node);
2608     }
2609
2610   if (loop && deallocate_expr != integer_zero_node)
2611     {
2612       body = expr_tree_cons (NULL_TREE, loop,
2613                         expr_tree_cons (NULL_TREE, deallocate_expr, NULL_TREE));
2614       body = build_compound_expr (body);
2615     }
2616   else
2617     body = loop;
2618
2619   /* Outermost wrapper: If pointer is null, punt.  */
2620   body = build (COND_EXPR, void_type_node,
2621                 build (NE_EXPR, boolean_type_node, base, integer_zero_node),
2622                 body, integer_zero_node);
2623   body = build1 (NOP_EXPR, void_type_node, body);
2624
2625   if (controller)
2626     {
2627       TREE_OPERAND (controller, 1) = body;
2628       return controller;
2629     }
2630   else
2631     return cp_convert (void_type_node, body);
2632 }
2633
2634 /* Protect the vector initialization with a try-block so that we can
2635    destroy the first few elements if constructing a later element
2636    causes an exception to be thrown.  TYPE is the type of the array
2637    elements.  */
2638
2639 static void
2640 expand_vec_init_try_block (type)
2641      tree type;
2642 {
2643   if (!TYPE_NEEDS_DESTRUCTOR (type) || !flag_exceptions)
2644     return;
2645
2646   /* The code we generate looks like:
2647
2648        try {
2649          // Initialize the vector.
2650        } catch (...) {
2651          // Destory the elements that need destroying.
2652          throw;
2653        } 
2654
2655      Here we're just beginning the `try'.  */
2656
2657   expand_eh_region_start ();
2658 }
2659
2660 /* Add code to destroy the array elements constructed so far if the
2661    construction of some element in the array causes an exception to be
2662    thrown.  RVAL is the address of the last element in the array.
2663    TYPE is the type of the array elements.  MAXINDEX is the maximum
2664    allowable index into the array.  ITERATOR is an integer variable
2665    indicating how many elements remain to be constructed.  */
2666
2667 static void
2668 expand_vec_init_catch_clause (rval, type, maxindex, iterator)
2669      tree rval;
2670      tree type;
2671      tree maxindex;
2672      tree iterator;
2673 {
2674   tree e;
2675   tree cleanup;
2676
2677   if (!TYPE_NEEDS_DESTRUCTOR (type) || !flag_exceptions)
2678     return;
2679     
2680   /* We have to ensure that this can live to the cleanup expansion
2681      time, since we know it is only ever needed once, generate code
2682      now.  */
2683   push_obstacks_nochange ();
2684   resume_temporary_allocation ();
2685
2686   cleanup = make_node (RTL_EXPR);
2687   TREE_TYPE (cleanup) = void_type_node;
2688   RTL_EXPR_RTL (cleanup) = const0_rtx;
2689   TREE_SIDE_EFFECTS (cleanup) = 1;
2690   do_pending_stack_adjust ();
2691   start_sequence_for_rtl_expr (cleanup);
2692     
2693   e = build_vec_delete_1 (rval,
2694                           build_binary_op (MINUS_EXPR, maxindex, 
2695                                            iterator, 1),
2696                           type,
2697                           /*auto_delete_vec=*/integer_zero_node,
2698                           /*auto_delete=*/integer_zero_node,
2699                           /*use_global_delete=*/0);
2700   expand_expr (e, const0_rtx, VOIDmode, EXPAND_NORMAL);
2701
2702   do_pending_stack_adjust ();
2703   RTL_EXPR_SEQUENCE (cleanup) = get_insns ();
2704   end_sequence ();
2705   cleanup = protect_with_terminate (cleanup);
2706   expand_eh_region_end (cleanup);
2707   pop_obstacks ();
2708 }
2709
2710 /* `expand_vec_init' performs initialization of a vector of aggregate
2711    types.
2712
2713    DECL is passed only for error reporting, and provides line number
2714    and source file name information.
2715    BASE is the space where the vector will be.
2716    MAXINDEX is the maximum index of the array (one less than the
2717             number of elements).
2718    INIT is the (possibly NULL) initializer.
2719
2720    FROM_ARRAY is 0 if we should init everything with INIT
2721    (i.e., every element initialized from INIT).
2722    FROM_ARRAY is 1 if we should index into INIT in parallel
2723    with initialization of DECL.
2724    FROM_ARRAY is 2 if we should index into INIT in parallel,
2725    but use assignment instead of initialization.  */
2726
2727 tree
2728 expand_vec_init (decl, base, maxindex, init, from_array)
2729      tree decl, base, maxindex, init;
2730      int from_array;
2731 {
2732   tree rval;
2733   tree base2 = NULL_TREE;
2734   tree type = TREE_TYPE (TREE_TYPE (base));
2735   tree size;
2736   tree itype = NULL_TREE;
2737   tree iterator;
2738   int num_initialized_elts = 0;
2739
2740   maxindex = cp_convert (ptrdiff_type_node, maxindex);
2741   if (maxindex == error_mark_node)
2742     return error_mark_node;
2743
2744   if (current_function_decl == NULL_TREE)
2745     {
2746       rval = make_tree_vec (3);
2747       TREE_VEC_ELT (rval, 0) = base;
2748       TREE_VEC_ELT (rval, 1) = maxindex;
2749       TREE_VEC_ELT (rval, 2) = init;
2750       return rval;
2751     }
2752
2753   size = size_in_bytes (type);
2754
2755   base = default_conversion (base);
2756   base = cp_convert (build_pointer_type (type), base);
2757   rval = get_temp_regvar (build_pointer_type (type), base);
2758   base = get_temp_regvar (build_pointer_type (type), base);
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   expand_vec_init_try_block (type);
2764
2765   if (init != NULL_TREE && TREE_CODE (init) == CONSTRUCTOR
2766       && (!decl || same_type_p (TREE_TYPE (init), TREE_TYPE (decl))))
2767     {
2768       /* Do non-default initialization resulting from brace-enclosed
2769          initializers.  */
2770
2771       tree elts;
2772       tree baseref = build1 (INDIRECT_REF, type, base);
2773
2774       from_array = 0;
2775
2776       for (elts = CONSTRUCTOR_ELTS (init); elts; elts = TREE_CHAIN (elts))
2777         {
2778           tree elt = TREE_VALUE (elts);
2779
2780           num_initialized_elts++;
2781
2782           if (IS_AGGR_TYPE (type) || TREE_CODE (type) == ARRAY_TYPE)
2783             expand_aggr_init (baseref, elt, 0);
2784           else
2785             expand_assignment (baseref, elt, 0, 0);
2786
2787           expand_assignment (base, 
2788                              build (PLUS_EXPR, build_pointer_type (type),
2789                                     base, size),
2790                              0, 0);
2791           expand_assignment (iterator,
2792                              build (MINUS_EXPR, ptrdiff_type_node,
2793                                     iterator, integer_one_node),
2794                              0, 0);
2795         }
2796
2797       /* Clear out INIT so that we don't get confused below.  */
2798       init = NULL_TREE;
2799
2800       if (obey_regdecls)
2801         use_variable (DECL_RTL (base));
2802     }
2803   else if (from_array)
2804     {
2805       /* If initializing one array from another, initialize element by
2806          element.  We rely upon the below calls the do argument
2807          checking.  */ 
2808       if (decl == NULL_TREE)
2809         {
2810           sorry ("initialization of array from dissimilar array type");
2811           return error_mark_node;
2812         }
2813       if (init)
2814         {
2815           base2 = default_conversion (init);
2816           itype = TREE_TYPE (base2);
2817           base2 = get_temp_regvar (itype, base2);
2818           itype = TREE_TYPE (itype);
2819         }
2820       else if (TYPE_LANG_SPECIFIC (type)
2821                && TYPE_NEEDS_CONSTRUCTING (type)
2822                && ! TYPE_HAS_DEFAULT_CONSTRUCTOR (type))
2823         {
2824           error ("initializer ends prematurely");
2825           return error_mark_node;
2826         }
2827     }
2828
2829   /* Now, default-initialize any remaining elements.  We don't need to
2830      do that if a) the type does not need constructing, or b) we've
2831      already initialized all the elements.
2832
2833      We do need to keep going if we're copying an array.  */
2834
2835   if (from_array
2836       || (TYPE_NEEDS_CONSTRUCTING (type)
2837           && !(TREE_CODE (maxindex) == INTEGER_CST
2838                && num_initialized_elts == TREE_INT_CST_LOW (maxindex) + 1)))
2839     {
2840       /* If the ITERATOR is equal to -1, then we don't have to loop;
2841          we've already initialized all the elements.  */
2842       expand_start_cond (build (NE_EXPR, boolean_type_node,
2843                                 iterator, minus_one),
2844                          0);
2845
2846       /* Otherwise, loop through the elements.  */
2847       expand_start_loop_continue_elsewhere (1);
2848   
2849       /* The initialization of each array element is a full-expression.  */
2850       expand_start_target_temps ();
2851
2852       if (from_array)
2853         {
2854           tree to = build1 (INDIRECT_REF, type, base);
2855           tree from;
2856
2857           if (base2)
2858             from = build1 (INDIRECT_REF, itype, base2);
2859           else
2860             from = NULL_TREE;
2861
2862           if (from_array == 2)
2863             expand_expr_stmt (build_modify_expr (to, NOP_EXPR, from));
2864           else if (TYPE_NEEDS_CONSTRUCTING (type))
2865             expand_aggr_init (to, from, 0);
2866           else if (from)
2867             expand_assignment (to, from, 0, 0);
2868           else
2869             my_friendly_abort (57);
2870         }
2871       else if (TREE_CODE (type) == ARRAY_TYPE)
2872         {
2873           if (init != 0)
2874             sorry ("cannot initialize multi-dimensional array with initializer");
2875           expand_vec_init (decl, 
2876                            build1 (NOP_EXPR, 
2877                                    build_pointer_type (TREE_TYPE
2878                                                        (type)),
2879                                    base),
2880                            array_type_nelts (type), 0, 0);
2881         }
2882       else
2883         expand_aggr_init (build1 (INDIRECT_REF, type, base), init, 0);
2884
2885       expand_assignment (base,
2886                          build (PLUS_EXPR, build_pointer_type (type), 
2887                                 base, size), 0, 0);
2888       if (base2)
2889         expand_assignment (base2,
2890                            build (PLUS_EXPR, build_pointer_type (type), 
2891                                   base2, size), 0, 0);
2892
2893       /* Cleanup any temporaries needed for the initial value.  */
2894       expand_end_target_temps ();
2895   
2896       expand_loop_continue_here ();
2897       expand_exit_loop_if_false (0, build (NE_EXPR, boolean_type_node,
2898                                            build (PREDECREMENT_EXPR, 
2899                                                   ptrdiff_type_node, 
2900                                                   iterator,
2901                                                   integer_one_node), 
2902                                            minus_one));
2903   
2904       if (obey_regdecls)
2905         {
2906           use_variable (DECL_RTL (base));
2907           if (base2)
2908             use_variable (DECL_RTL (base2));
2909         }
2910
2911       expand_end_loop ();
2912       expand_end_cond ();
2913     }
2914
2915   /* Make sure to cleanup any partially constructed elements.  */
2916   expand_vec_init_catch_clause (rval, type, maxindex, iterator);
2917
2918   if (obey_regdecls)
2919     {
2920       use_variable (DECL_RTL (iterator));
2921       use_variable (DECL_RTL (rval));
2922     }
2923
2924   return rval;
2925 }
2926
2927 /* Free up storage of type TYPE, at address ADDR.
2928
2929    TYPE is a POINTER_TYPE and can be ptr_type_node for no special type
2930    of pointer.
2931
2932    VIRTUAL_SIZE is the amount of storage that was allocated, and is
2933    used as the second argument to operator delete.  It can include
2934    things like padding and magic size cookies.  It has virtual in it,
2935    because if you have a base pointer and you delete through a virtual
2936    destructor, it should be the size of the dynamic object, not the
2937    static object, see Free Store 12.5 ANSI C++ WP.
2938
2939    This does not call any destructors.  */
2940
2941 tree
2942 build_x_delete (addr, which_delete, virtual_size)
2943      tree addr;
2944      int which_delete;
2945      tree virtual_size;
2946 {
2947   int use_global_delete = which_delete & 1;
2948   int use_vec_delete = !!(which_delete & 2);
2949   enum tree_code code = use_vec_delete ? VEC_DELETE_EXPR : DELETE_EXPR;
2950   int flags = LOOKUP_NORMAL | (use_global_delete * LOOKUP_GLOBAL);
2951
2952   return build_op_delete_call (code, addr, virtual_size, flags, NULL_TREE);
2953 }
2954
2955 /* Generate a call to a destructor. TYPE is the type to cast ADDR to.
2956    ADDR is an expression which yields the store to be destroyed.
2957    AUTO_DELETE is nonzero if a call to DELETE should be made or not.
2958    If in the program, (AUTO_DELETE & 2) is non-zero, we tear down the
2959    virtual baseclasses.
2960    If in the program, (AUTO_DELETE & 1) is non-zero, then we deallocate.
2961
2962    FLAGS is the logical disjunction of zero or more LOOKUP_
2963    flags.  See cp-tree.h for more info.
2964
2965    This function does not delete an object's virtual base classes.  */
2966
2967 tree
2968 build_delete (type, addr, auto_delete, flags, use_global_delete)
2969      tree type, addr;
2970      tree auto_delete;
2971      int flags;
2972      int use_global_delete;
2973 {
2974   tree member;
2975   tree expr;
2976   tree ref;
2977
2978   if (addr == error_mark_node)
2979     return error_mark_node;
2980
2981   /* Can happen when CURRENT_EXCEPTION_OBJECT gets its type
2982      set to `error_mark_node' before it gets properly cleaned up.  */
2983   if (type == error_mark_node)
2984     return error_mark_node;
2985
2986   type = TYPE_MAIN_VARIANT (type);
2987
2988   if (TREE_CODE (type) == POINTER_TYPE)
2989     {
2990       type = TYPE_MAIN_VARIANT (TREE_TYPE (type));
2991       if (type != void_type_node && !complete_type_or_else (type, addr))
2992         return error_mark_node;
2993       if (TREE_CODE (type) == ARRAY_TYPE)
2994         goto handle_array;
2995       if (! IS_AGGR_TYPE (type))
2996         {
2997           /* Call the builtin operator delete.  */
2998           return build_builtin_delete_call (addr);
2999         }
3000       if (TREE_SIDE_EFFECTS (addr))
3001         addr = save_expr (addr);
3002
3003       /* throw away const and volatile on target type of addr */
3004       addr = convert_force (build_pointer_type (type), addr, 0);
3005       ref = build_indirect_ref (addr, NULL_PTR);
3006     }
3007   else if (TREE_CODE (type) == ARRAY_TYPE)
3008     {
3009     handle_array:
3010       if (TREE_SIDE_EFFECTS (addr))
3011         addr = save_expr (addr);
3012       if (TYPE_DOMAIN (type) == NULL_TREE)
3013         {
3014           error ("unknown array size in delete");
3015           return error_mark_node;
3016         }
3017       return build_vec_delete (addr, array_type_nelts (type),
3018                                auto_delete, integer_zero_node,
3019                                use_global_delete);
3020     }
3021   else
3022     {
3023       /* Don't check PROTECT here; leave that decision to the
3024          destructor.  If the destructor is accessible, call it,
3025          else report error.  */
3026       addr = build_unary_op (ADDR_EXPR, addr, 0);
3027       if (TREE_SIDE_EFFECTS (addr))
3028         addr = save_expr (addr);
3029
3030       if (TREE_CONSTANT (addr))
3031         addr = convert_pointer_to (type, addr);
3032       else
3033         addr = convert_force (build_pointer_type (type), addr, 0);
3034
3035       ref = build_indirect_ref (addr, NULL_PTR);
3036     }
3037
3038   my_friendly_assert (IS_AGGR_TYPE (type), 220);
3039
3040   if (! TYPE_NEEDS_DESTRUCTOR (type))
3041     {
3042       if (auto_delete == integer_zero_node)
3043         return void_zero_node;
3044
3045       return build_op_delete_call
3046         (DELETE_EXPR, addr, c_sizeof_nowarn (type),
3047          LOOKUP_NORMAL | (use_global_delete * LOOKUP_GLOBAL),
3048          NULL_TREE);
3049     }
3050
3051   /* Below, we will reverse the order in which these calls are made.
3052      If we have a destructor, then that destructor will take care
3053      of the base classes; otherwise, we must do that here.  */
3054   if (TYPE_HAS_DESTRUCTOR (type))
3055     {
3056       tree passed_auto_delete;
3057       tree do_delete = NULL_TREE;
3058       tree ifexp;
3059
3060       if (use_global_delete)
3061         {
3062           tree cond = fold (build (BIT_AND_EXPR, integer_type_node,
3063                                    auto_delete, integer_one_node));
3064           tree call = build_builtin_delete_call (addr);
3065
3066           cond = fold (build (COND_EXPR, void_type_node, cond,
3067                               call, void_zero_node));
3068           if (cond != void_zero_node)
3069             do_delete = cond;
3070
3071           passed_auto_delete = fold (build (BIT_AND_EXPR, integer_type_node,
3072                                             auto_delete, integer_two_node));
3073         }
3074       else
3075         passed_auto_delete = auto_delete;
3076
3077       expr = build_method_call
3078         (ref, dtor_identifier, build_expr_list (NULL_TREE, passed_auto_delete),
3079          NULL_TREE, flags);
3080
3081       if (do_delete)
3082         expr = build (COMPOUND_EXPR, void_type_node, expr, do_delete);
3083
3084       if (flags & LOOKUP_DESTRUCTOR)
3085         /* Explicit destructor call; don't check for null pointer.  */
3086         ifexp = integer_one_node;
3087       else
3088         /* Handle deleting a null pointer.  */
3089         ifexp = fold (build_binary_op (NE_EXPR, addr, integer_zero_node, 1));
3090
3091       if (ifexp != integer_one_node)
3092         expr = build (COND_EXPR, void_type_node,
3093                       ifexp, expr, void_zero_node);
3094
3095       return expr;
3096     }
3097   else
3098     {
3099       /* We only get here from finish_function for a destructor.  */
3100       tree binfos = BINFO_BASETYPES (TYPE_BINFO (type));
3101       int i, n_baseclasses = binfos ? TREE_VEC_LENGTH (binfos) : 0;
3102       tree base_binfo = n_baseclasses > 0 ? TREE_VEC_ELT (binfos, 0) : NULL_TREE;
3103       tree exprstmt = NULL_TREE;
3104       tree parent_auto_delete = auto_delete;
3105       tree cond;
3106
3107       /* Set this again before we call anything, as we might get called
3108          recursively.  */
3109       TYPE_HAS_DESTRUCTOR (type) = 1;
3110
3111       /* If we have member delete or vbases, we call delete in
3112          finish_function.  */
3113       if (auto_delete == integer_zero_node)
3114         cond = NULL_TREE;
3115       else if (base_binfo == NULL_TREE
3116                || ! TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo)))
3117         {
3118           cond = build (COND_EXPR, void_type_node,
3119                         build (BIT_AND_EXPR, integer_type_node, auto_delete, integer_one_node),
3120                         build_builtin_delete_call (addr),
3121                         void_zero_node);
3122         }
3123       else
3124         cond = NULL_TREE;
3125
3126       if (cond)
3127         exprstmt = build_expr_list (NULL_TREE, cond);
3128
3129       if (base_binfo
3130           && ! TREE_VIA_VIRTUAL (base_binfo)
3131           && TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo)))
3132         {
3133           tree this_auto_delete;
3134
3135           if (BINFO_OFFSET_ZEROP (base_binfo))
3136             this_auto_delete = parent_auto_delete;
3137           else
3138             this_auto_delete = integer_zero_node;
3139
3140           expr = build_scoped_method_call
3141             (ref, base_binfo, dtor_identifier,
3142              build_expr_list (NULL_TREE, this_auto_delete));
3143           exprstmt = expr_tree_cons (NULL_TREE, expr, exprstmt);
3144         }
3145
3146       /* Take care of the remaining baseclasses.  */
3147       for (i = 1; i < n_baseclasses; i++)
3148         {
3149           base_binfo = TREE_VEC_ELT (binfos, i);
3150           if (! TYPE_NEEDS_DESTRUCTOR (BINFO_TYPE (base_binfo))
3151               || TREE_VIA_VIRTUAL (base_binfo))
3152             continue;
3153
3154           expr = build_scoped_method_call
3155             (ref, base_binfo, dtor_identifier,
3156              build_expr_list (NULL_TREE, integer_zero_node));
3157
3158           exprstmt = expr_tree_cons (NULL_TREE, expr, exprstmt);
3159         }
3160
3161       for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
3162         {
3163           if (TREE_CODE (member) != FIELD_DECL)
3164             continue;
3165           if (TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (member)))
3166             {
3167               tree this_member = build_component_ref (ref, DECL_NAME (member), NULL_TREE, 0);
3168               tree this_type = TREE_TYPE (member);
3169               expr = build_delete (this_type, this_member, integer_two_node, flags, 0);
3170               exprstmt = expr_tree_cons (NULL_TREE, expr, exprstmt);
3171             }
3172         }
3173
3174       if (exprstmt)
3175         return build_compound_expr (exprstmt);
3176       /* Virtual base classes make this function do nothing.  */
3177       return void_zero_node;
3178     }
3179 }
3180
3181 /* For type TYPE, delete the virtual baseclass objects of DECL.  */
3182
3183 tree
3184 build_vbase_delete (type, decl)
3185      tree type, decl;
3186 {
3187   tree vbases = CLASSTYPE_VBASECLASSES (type);
3188   tree result = NULL_TREE;
3189   tree addr = build_unary_op (ADDR_EXPR, decl, 0);
3190
3191   my_friendly_assert (addr != error_mark_node, 222);
3192
3193   while (vbases)
3194     {
3195       tree this_addr = convert_force (build_pointer_type (BINFO_TYPE (vbases)),
3196                                       addr, 0);
3197       result = expr_tree_cons (NULL_TREE,
3198                           build_delete (TREE_TYPE (this_addr), this_addr,
3199                                         integer_zero_node,
3200                                         LOOKUP_NORMAL|LOOKUP_DESTRUCTOR, 0),
3201                           result);
3202       vbases = TREE_CHAIN (vbases);
3203     }
3204   return build_compound_expr (nreverse (result));
3205 }
3206
3207 /* Build a C++ vector delete expression.
3208    MAXINDEX is the number of elements to be deleted.
3209    ELT_SIZE is the nominal size of each element in the vector.
3210    BASE is the expression that should yield the store to be deleted.
3211    This function expands (or synthesizes) these calls itself.
3212    AUTO_DELETE_VEC says whether the container (vector) should be deallocated.
3213    AUTO_DELETE say whether each item in the container should be deallocated.
3214
3215    This also calls delete for virtual baseclasses of elements of the vector.
3216
3217    Update: MAXINDEX is no longer needed.  The size can be extracted from the
3218    start of the vector for pointers, and from the type for arrays.  We still
3219    use MAXINDEX for arrays because it happens to already have one of the
3220    values we'd have to extract.  (We could use MAXINDEX with pointers to
3221    confirm the size, and trap if the numbers differ; not clear that it'd
3222    be worth bothering.)  */
3223
3224 tree
3225 build_vec_delete (base, maxindex, auto_delete_vec, auto_delete,
3226                   use_global_delete)
3227      tree base, maxindex;
3228      tree auto_delete_vec, auto_delete;
3229      int use_global_delete;
3230 {
3231   tree type;
3232
3233   if (TREE_CODE (base) == OFFSET_REF)
3234     base = resolve_offset_ref (base);
3235
3236   type = TREE_TYPE (base);
3237
3238   base = stabilize_reference (base);
3239
3240   /* Since we can use base many times, save_expr it.  */
3241   if (TREE_SIDE_EFFECTS (base))
3242     base = save_expr (base);
3243
3244   if (TREE_CODE (type) == POINTER_TYPE)
3245     {
3246       /* Step back one from start of vector, and read dimension.  */
3247       tree cookie_addr = build (MINUS_EXPR, build_pointer_type (BI_header_type),
3248                                 base, BI_header_size);
3249       tree cookie = build_indirect_ref (cookie_addr, NULL_PTR);
3250       maxindex = build_component_ref (cookie, nc_nelts_field_id, NULL_TREE, 0);
3251       do
3252         type = TREE_TYPE (type);
3253       while (TREE_CODE (type) == ARRAY_TYPE);
3254     }
3255   else if (TREE_CODE (type) == ARRAY_TYPE)
3256     {
3257       /* get the total number of things in the array, maxindex is a bad name */
3258       maxindex = array_type_nelts_total (type);
3259       while (TREE_CODE (type) == ARRAY_TYPE)
3260         type = TREE_TYPE (type);
3261       base = build_unary_op (ADDR_EXPR, base, 1);
3262     }
3263   else
3264     {
3265       if (base != error_mark_node)
3266         error ("type to vector delete is neither pointer or array type");
3267       return error_mark_node;
3268     }
3269
3270   return build_vec_delete_1 (base, maxindex, type, auto_delete_vec, auto_delete,
3271                              use_global_delete);
3272 }