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