Implement DR 209
[gcc.git] / gcc / cp / semantics.c
1 /* Perform the semantic phase of parsing, i.e., the process of
2 building tree structure, checking semantic consistency, and
3 building RTL. These routines are used both during actual parsing
4 and during the instantiation of template functions.
5
6 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
7 Written by Mark Mitchell (mmitchell@usa.net) based on code found
8 formerly in parse.y and pt.c.
9
10 This file is part of GNU CC.
11
12 GNU CC is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2, or (at your option)
15 any later version.
16
17 GNU CC is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GNU CC; see the file COPYING. If not, write to the Free
24 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 02111-1307, USA. */
26
27 #include "config.h"
28 #include "system.h"
29 #include "tree.h"
30 #include "cp-tree.h"
31 #include "except.h"
32 #include "lex.h"
33 #include "toplev.h"
34 #include "flags.h"
35 #include "ggc.h"
36 #include "rtl.h"
37 #include "output.h"
38 #include "timevar.h"
39
40 /* There routines provide a modular interface to perform many parsing
41 operations. They may therefore be used during actual parsing, or
42 during template instantiation, which may be regarded as a
43 degenerate form of parsing. Since the current g++ parser is
44 lacking in several respects, and will be reimplemented, we are
45 attempting to move most code that is not directly related to
46 parsing into this file; that will make implementing the new parser
47 much easier since it will be able to make use of these routines. */
48
49 static tree maybe_convert_cond PARAMS ((tree));
50 static tree simplify_aggr_init_exprs_r PARAMS ((tree *, int *, void *));
51 static void deferred_type_access_control PARAMS ((void));
52 static void emit_associated_thunks PARAMS ((tree));
53 static void genrtl_try_block PARAMS ((tree));
54 static void genrtl_handler PARAMS ((tree));
55 static void genrtl_catch_block PARAMS ((tree));
56 static void genrtl_ctor_stmt PARAMS ((tree));
57 static void genrtl_subobject PARAMS ((tree));
58 static void genrtl_named_return_value PARAMS ((void));
59 static void cp_expand_stmt PARAMS ((tree));
60 static void genrtl_start_function PARAMS ((tree));
61 static void genrtl_finish_function PARAMS ((tree));
62
63 /* Finish processing the COND, the SUBSTMT condition for STMT. */
64
65 #define FINISH_COND(cond, stmt, substmt) \
66 do { \
67 if (last_tree != stmt) \
68 { \
69 RECHAIN_STMTS (stmt, substmt); \
70 if (!processing_template_decl) \
71 { \
72 cond = build_tree_list (substmt, cond); \
73 substmt = cond; \
74 } \
75 } \
76 else \
77 substmt = cond; \
78 } while (0)
79
80 /* Returns non-zero if the current statement is a full expression,
81 i.e. temporaries created during that statement should be destroyed
82 at the end of the statement. */
83
84 int
85 stmts_are_full_exprs_p ()
86 {
87 return current_stmt_tree ()->stmts_are_full_exprs_p;
88 }
89
90 /* Returns the stmt_tree (if any) to which statements are currently
91 being added. If there is no active statement-tree, NULL is
92 returned. */
93
94 stmt_tree
95 current_stmt_tree ()
96 {
97 return (cfun
98 ? &cfun->language->x_stmt_tree
99 : &scope_chain->x_stmt_tree);
100 }
101
102 /* Nonzero if TYPE is an anonymous union or struct type. We have to use a
103 flag for this because "A union for which objects or pointers are
104 declared is not an anonymous union" [class.union]. */
105
106 int
107 anon_aggr_type_p (node)
108 tree node;
109 {
110 return (CLASS_TYPE_P (node) && TYPE_LANG_SPECIFIC(node)->anon_aggr);
111 }
112
113 /* Finish a scope. */
114
115 tree
116 do_poplevel ()
117 {
118 tree block = NULL_TREE;
119
120 if (stmts_are_full_exprs_p ())
121 {
122 tree scope_stmts = NULL_TREE;
123
124 if (!processing_template_decl)
125 scope_stmts = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
126
127 block = poplevel (kept_level_p (), 1, 0);
128 if (block && !processing_template_decl)
129 {
130 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope_stmts)) = block;
131 SCOPE_STMT_BLOCK (TREE_VALUE (scope_stmts)) = block;
132 }
133 }
134
135 return block;
136 }
137
138 /* Begin a new scope. */
139
140 void
141 do_pushlevel ()
142 {
143 if (stmts_are_full_exprs_p ())
144 {
145 pushlevel (0);
146 if (!processing_template_decl)
147 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
148 }
149 }
150
151 /* Finish a goto-statement. */
152
153 tree
154 finish_goto_stmt (destination)
155 tree destination;
156 {
157 if (TREE_CODE (destination) == IDENTIFIER_NODE)
158 destination = lookup_label (destination);
159
160 /* We warn about unused labels with -Wunused. That means we have to
161 mark the used labels as used. */
162 if (TREE_CODE (destination) == LABEL_DECL)
163 TREE_USED (destination) = 1;
164
165 if (TREE_CODE (destination) != LABEL_DECL)
166 /* We don't inline calls to functions with computed gotos.
167 Those functions are typically up to some funny business,
168 and may be depending on the labels being at particular
169 addresses, or some such. */
170 DECL_UNINLINABLE (current_function_decl) = 1;
171
172 check_goto (destination);
173
174 return add_stmt (build_stmt (GOTO_STMT, destination));
175 }
176
177 /* COND is the condition-expression for an if, while, etc.,
178 statement. Convert it to a boolean value, if appropriate. */
179
180 tree
181 maybe_convert_cond (cond)
182 tree cond;
183 {
184 /* Empty conditions remain empty. */
185 if (!cond)
186 return NULL_TREE;
187
188 /* Wait until we instantiate templates before doing conversion. */
189 if (processing_template_decl)
190 return cond;
191
192 /* Do the conversion. */
193 cond = convert_from_reference (cond);
194 return condition_conversion (cond);
195 }
196
197 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
198
199 tree
200 finish_expr_stmt (expr)
201 tree expr;
202 {
203 tree r = NULL_TREE;
204
205 if (expr != NULL_TREE)
206 {
207 if (!processing_template_decl
208 && !(stmts_are_full_exprs_p ())
209 && ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
210 && lvalue_p (expr))
211 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE))
212 expr = default_conversion (expr);
213
214 if (stmts_are_full_exprs_p ())
215 expr = convert_to_void (expr, "statement");
216
217 r = add_stmt (build_stmt (EXPR_STMT, expr));
218 }
219
220 finish_stmt ();
221
222 /* This was an expression-statement, so we save the type of the
223 expression. */
224 last_expr_type = expr ? TREE_TYPE (expr) : NULL_TREE;
225
226 return r;
227 }
228
229
230 /* Begin an if-statement. Returns a newly created IF_STMT if
231 appropriate. */
232
233 tree
234 begin_if_stmt ()
235 {
236 tree r;
237 do_pushlevel ();
238 r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
239 add_stmt (r);
240 return r;
241 }
242
243 /* Process the COND of an if-statement, which may be given by
244 IF_STMT. */
245
246 void
247 finish_if_stmt_cond (cond, if_stmt)
248 tree cond;
249 tree if_stmt;
250 {
251 cond = maybe_convert_cond (cond);
252 FINISH_COND (cond, if_stmt, IF_COND (if_stmt));
253 }
254
255 /* Finish the then-clause of an if-statement, which may be given by
256 IF_STMT. */
257
258 tree
259 finish_then_clause (if_stmt)
260 tree if_stmt;
261 {
262 RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
263 last_tree = if_stmt;
264 return if_stmt;
265 }
266
267 /* Begin the else-clause of an if-statement. */
268
269 void
270 begin_else_clause ()
271 {
272 }
273
274 /* Finish the else-clause of an if-statement, which may be given by
275 IF_STMT. */
276
277 void
278 finish_else_clause (if_stmt)
279 tree if_stmt;
280 {
281 RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
282 }
283
284 /* Finsh an if-statement. */
285
286 void
287 finish_if_stmt ()
288 {
289 do_poplevel ();
290 finish_stmt ();
291 }
292
293 void
294 clear_out_block ()
295 {
296 /* If COND wasn't a declaration, clear out the
297 block we made for it and start a new one here so the
298 optimization in expand_end_loop will work. */
299 if (getdecls () == NULL_TREE)
300 {
301 do_poplevel ();
302 do_pushlevel ();
303 }
304 }
305
306 /* Begin a while-statement. Returns a newly created WHILE_STMT if
307 appropriate. */
308
309 tree
310 begin_while_stmt ()
311 {
312 tree r;
313 r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
314 add_stmt (r);
315 do_pushlevel ();
316 return r;
317 }
318
319 /* Process the COND of a while-statement, which may be given by
320 WHILE_STMT. */
321
322 void
323 finish_while_stmt_cond (cond, while_stmt)
324 tree cond;
325 tree while_stmt;
326 {
327 cond = maybe_convert_cond (cond);
328 FINISH_COND (cond, while_stmt, WHILE_COND (while_stmt));
329 clear_out_block ();
330 }
331
332 /* Finish a while-statement, which may be given by WHILE_STMT. */
333
334 void
335 finish_while_stmt (while_stmt)
336 tree while_stmt;
337 {
338 do_poplevel ();
339 RECHAIN_STMTS (while_stmt, WHILE_BODY (while_stmt));
340 finish_stmt ();
341 }
342
343 /* Begin a do-statement. Returns a newly created DO_STMT if
344 appropriate. */
345
346 tree
347 begin_do_stmt ()
348 {
349 tree r = build_stmt (DO_STMT, NULL_TREE, NULL_TREE);
350 add_stmt (r);
351 return r;
352 }
353
354 /* Finish the body of a do-statement, which may be given by DO_STMT. */
355
356 void
357 finish_do_body (do_stmt)
358 tree do_stmt;
359 {
360 RECHAIN_STMTS (do_stmt, DO_BODY (do_stmt));
361 }
362
363 /* Finish a do-statement, which may be given by DO_STMT, and whose
364 COND is as indicated. */
365
366 void
367 finish_do_stmt (cond, do_stmt)
368 tree cond;
369 tree do_stmt;
370 {
371 cond = maybe_convert_cond (cond);
372 DO_COND (do_stmt) = cond;
373 finish_stmt ();
374 }
375
376 /* Finish a return-statement. The EXPRESSION returned, if any, is as
377 indicated. */
378
379 tree
380 finish_return_stmt (expr)
381 tree expr;
382 {
383 tree r;
384
385 if (!processing_template_decl)
386 expr = check_return_expr (expr);
387 if (!processing_template_decl)
388 {
389 if (DECL_CONSTRUCTOR_P (current_function_decl) && ctor_label)
390 {
391 /* Even returns without a value in a constructor must return
392 `this'. We accomplish this by sending all returns in a
393 constructor to the CTOR_LABEL; finish_function emits code to
394 return a value there. When we finally generate the real
395 return statement, CTOR_LABEL is no longer set, and we fall
396 through into the normal return-processing code below. */
397 return finish_goto_stmt (ctor_label);
398 }
399 else if (DECL_DESTRUCTOR_P (current_function_decl))
400 {
401 /* Similarly, all destructors must run destructors for
402 base-classes before returning. So, all returns in a
403 destructor get sent to the DTOR_LABEL; finsh_function emits
404 code to return a value there. */
405 return finish_goto_stmt (dtor_label);
406 }
407 }
408 r = add_stmt (build_stmt (RETURN_STMT, expr));
409 finish_stmt ();
410
411 return r;
412 }
413
414 /* Begin a for-statement. Returns a new FOR_STMT if appropriate. */
415
416 tree
417 begin_for_stmt ()
418 {
419 tree r;
420
421 r = build_stmt (FOR_STMT, NULL_TREE, NULL_TREE,
422 NULL_TREE, NULL_TREE);
423 NEW_FOR_SCOPE_P (r) = flag_new_for_scope > 0;
424 add_stmt (r);
425 if (NEW_FOR_SCOPE_P (r))
426 {
427 do_pushlevel ();
428 note_level_for_for ();
429 }
430
431 return r;
432 }
433
434 /* Finish the for-init-statement of a for-statement, which may be
435 given by FOR_STMT. */
436
437 void
438 finish_for_init_stmt (for_stmt)
439 tree for_stmt;
440 {
441 if (last_tree != for_stmt)
442 RECHAIN_STMTS (for_stmt, FOR_INIT_STMT (for_stmt));
443 do_pushlevel ();
444 }
445
446 /* Finish the COND of a for-statement, which may be given by
447 FOR_STMT. */
448
449 void
450 finish_for_cond (cond, for_stmt)
451 tree cond;
452 tree for_stmt;
453 {
454 cond = maybe_convert_cond (cond);
455 FINISH_COND (cond, for_stmt, FOR_COND (for_stmt));
456 clear_out_block ();
457 }
458
459 /* Finish the increment-EXPRESSION in a for-statement, which may be
460 given by FOR_STMT. */
461
462 void
463 finish_for_expr (expr, for_stmt)
464 tree expr;
465 tree for_stmt;
466 {
467 FOR_EXPR (for_stmt) = expr;
468 }
469
470 /* Finish the body of a for-statement, which may be given by
471 FOR_STMT. The increment-EXPR for the loop must be
472 provided. */
473
474 void
475 finish_for_stmt (for_stmt)
476 tree for_stmt;
477 {
478 /* Pop the scope for the body of the loop. */
479 do_poplevel ();
480 RECHAIN_STMTS (for_stmt, FOR_BODY (for_stmt));
481 if (NEW_FOR_SCOPE_P (for_stmt))
482 do_poplevel ();
483 finish_stmt ();
484 }
485
486 /* Finish a break-statement. */
487
488 tree
489 finish_break_stmt ()
490 {
491 return add_stmt (build_break_stmt ());
492 }
493
494 /* Finish a continue-statement. */
495
496 tree
497 finish_continue_stmt ()
498 {
499 return add_stmt (build_continue_stmt ());
500 }
501
502 /* Begin a switch-statement. Returns a new SWITCH_STMT if
503 appropriate. */
504
505 tree
506 begin_switch_stmt ()
507 {
508 tree r;
509 r = build_stmt (SWITCH_STMT, NULL_TREE, NULL_TREE);
510 add_stmt (r);
511 do_pushlevel ();
512 return r;
513 }
514
515 /* Finish the cond of a switch-statement. */
516
517 void
518 finish_switch_cond (cond, switch_stmt)
519 tree cond;
520 tree switch_stmt;
521 {
522 if (!processing_template_decl)
523 {
524 tree type;
525 tree index;
526
527 /* Convert the condition to an integer or enumeration type. */
528 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, 1);
529 if (cond == NULL_TREE)
530 {
531 error ("switch quantity not an integer");
532 cond = error_mark_node;
533 }
534 if (cond != error_mark_node)
535 {
536 cond = default_conversion (cond);
537 cond = fold (build1 (CLEANUP_POINT_EXPR, TREE_TYPE (cond), cond));
538 }
539
540 type = TREE_TYPE (cond);
541 index = get_unwidened (cond, NULL_TREE);
542 /* We can't strip a conversion from a signed type to an unsigned,
543 because if we did, int_fits_type_p would do the wrong thing
544 when checking case values for being in range,
545 and it's too hard to do the right thing. */
546 if (TREE_UNSIGNED (TREE_TYPE (cond))
547 == TREE_UNSIGNED (TREE_TYPE (index)))
548 cond = index;
549 }
550 FINISH_COND (cond, switch_stmt, SWITCH_COND (switch_stmt));
551 push_switch (switch_stmt);
552 }
553
554 /* Finish the body of a switch-statement, which may be given by
555 SWITCH_STMT. The COND to switch on is indicated. */
556
557 void
558 finish_switch_stmt (switch_stmt)
559 tree switch_stmt;
560 {
561 RECHAIN_STMTS (switch_stmt, SWITCH_BODY (switch_stmt));
562 pop_switch ();
563 do_poplevel ();
564 finish_stmt ();
565 }
566
567 /* Generate the RTL for T, which is a TRY_BLOCK. */
568
569 static void
570 genrtl_try_block (t)
571 tree t;
572 {
573 if (CLEANUP_P (t))
574 {
575 expand_eh_region_start ();
576 expand_stmt (TRY_STMTS (t));
577 expand_eh_region_end (protect_with_terminate (TRY_HANDLERS (t)));
578 }
579 else
580 {
581 if (!FN_TRY_BLOCK_P (t))
582 emit_line_note (input_filename, lineno);
583 expand_start_try_stmts ();
584
585 expand_stmt (TRY_STMTS (t));
586
587 if (FN_TRY_BLOCK_P (t))
588 {
589 end_protect_partials ();
590 expand_start_all_catch ();
591 in_function_try_handler = 1;
592 expand_stmt (TRY_HANDLERS (t));
593 in_function_try_handler = 0;
594 expand_end_all_catch ();
595 }
596 else
597 {
598 expand_start_all_catch ();
599 expand_stmt (TRY_HANDLERS (t));
600 expand_end_all_catch ();
601 }
602 }
603 }
604
605 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
606 appropriate. */
607
608 tree
609 begin_try_block ()
610 {
611 tree r = build_stmt (TRY_BLOCK, NULL_TREE, NULL_TREE);
612 add_stmt (r);
613 return r;
614 }
615
616 /* Likewise, for a function-try-block. */
617
618 tree
619 begin_function_try_block ()
620 {
621 tree r = build_stmt (TRY_BLOCK, NULL_TREE, NULL_TREE);
622 FN_TRY_BLOCK_P (r) = 1;
623 add_stmt (r);
624 return r;
625 }
626
627 /* Finish a try-block, which may be given by TRY_BLOCK. */
628
629 void
630 finish_try_block (try_block)
631 tree try_block;
632 {
633 RECHAIN_STMTS (try_block, TRY_STMTS (try_block));
634 }
635
636 /* Finish the body of a cleanup try-block, which may be given by
637 TRY_BLOCK. */
638
639 void
640 finish_cleanup_try_block (try_block)
641 tree try_block;
642 {
643 RECHAIN_STMTS (try_block, TRY_STMTS (try_block));
644 }
645
646 /* Finish an implicitly generated try-block, with a cleanup is given
647 by CLEANUP. */
648
649 void
650 finish_cleanup (cleanup, try_block)
651 tree cleanup;
652 tree try_block;
653 {
654 TRY_HANDLERS (try_block) = cleanup;
655 CLEANUP_P (try_block) = 1;
656 }
657
658 /* Likewise, for a function-try-block. */
659
660 void
661 finish_function_try_block (try_block)
662 tree try_block;
663 {
664 if (TREE_CHAIN (try_block)
665 && TREE_CODE (TREE_CHAIN (try_block)) == CTOR_INITIALIZER)
666 {
667 /* Chain the compound statement after the CTOR_INITIALIZER. */
668 TREE_CHAIN (TREE_CHAIN (try_block)) = last_tree;
669 /* And make the CTOR_INITIALIZER the body of the try-block. */
670 RECHAIN_STMTS (try_block, TRY_STMTS (try_block));
671 }
672 else
673 RECHAIN_STMTS (try_block, TRY_STMTS (try_block));
674 in_function_try_handler = 1;
675 }
676
677 /* Finish a handler-sequence for a try-block, which may be given by
678 TRY_BLOCK. */
679
680 void
681 finish_handler_sequence (try_block)
682 tree try_block;
683 {
684 RECHAIN_STMTS (try_block, TRY_HANDLERS (try_block));
685 check_handlers (TRY_HANDLERS (try_block));
686 }
687
688 /* Likewise, for a function-try-block. */
689
690 void
691 finish_function_handler_sequence (try_block)
692 tree try_block;
693 {
694 in_function_try_handler = 0;
695 RECHAIN_STMTS (try_block, TRY_HANDLERS (try_block));
696 check_handlers (TRY_HANDLERS (try_block));
697 }
698
699 /* Generate the RTL for T, which is a HANDLER. */
700
701 static void
702 genrtl_handler (t)
703 tree t;
704 {
705 genrtl_do_pushlevel ();
706 expand_stmt (HANDLER_BODY (t));
707 if (!processing_template_decl)
708 {
709 /* Fall to outside the try statement when done executing
710 handler and we fall off end of handler. This is jump
711 Lresume in the documentation. */
712 expand_goto (top_label_entry (&caught_return_label_stack));
713 end_catch_handler ();
714 }
715 }
716
717 /* Begin a handler. Returns a HANDLER if appropriate. */
718
719 tree
720 begin_handler ()
721 {
722 tree r;
723 r = build_stmt (HANDLER, NULL_TREE, NULL_TREE);
724 add_stmt (r);
725 do_pushlevel ();
726 return r;
727 }
728
729 /* Finish the handler-parameters for a handler, which may be given by
730 HANDLER. DECL is the declaration for the catch parameter, or NULL
731 if this is a `catch (...)' clause. */
732
733 tree
734 finish_handler_parms (decl, handler)
735 tree decl;
736 tree handler;
737 {
738 tree blocks = NULL_TREE;
739
740 if (processing_template_decl)
741 {
742 if (decl)
743 {
744 decl = pushdecl (decl);
745 decl = push_template_decl (decl);
746 add_decl_stmt (decl);
747 RECHAIN_STMTS (handler, HANDLER_PARMS (handler));
748 }
749 }
750 else
751 blocks = expand_start_catch_block (decl);
752
753 if (decl)
754 TREE_TYPE (handler) = TREE_TYPE (decl);
755
756 return blocks;
757 }
758
759 /* Generate the RTL for a CATCH_BLOCK. */
760
761 static void
762 genrtl_catch_block (type)
763 tree type;
764 {
765 start_catch_handler (type);
766 }
767
768 /* Note the beginning of a handler for TYPE. This function is called
769 at the point to which control should be transferred when an
770 appropriately-typed exception is thrown. */
771
772 void
773 begin_catch_block (type)
774 tree type;
775 {
776 add_stmt (build (START_CATCH_STMT, type));
777 }
778
779 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
780 the return value from the matching call to finish_handler_parms. */
781
782 void
783 finish_handler (blocks, handler)
784 tree blocks;
785 tree handler;
786 {
787 if (!processing_template_decl)
788 expand_end_catch_block (blocks);
789 do_poplevel ();
790 RECHAIN_STMTS (handler, HANDLER_BODY (handler));
791 }
792
793 /* Generate the RTL for T, which is a CTOR_STMT. */
794
795 static void
796 genrtl_ctor_stmt (t)
797 tree t;
798 {
799 if (CTOR_BEGIN_P (t))
800 begin_protect_partials ();
801 else
802 /* After this point, any exceptions will cause the
803 destructor to be executed, so we no longer need to worry
804 about destroying the various subobjects ourselves. */
805 end_protect_partials ();
806 }
807
808 /* Begin a compound-statement. If HAS_NO_SCOPE is non-zero, the
809 compound-statement does not define a scope. Returns a new
810 COMPOUND_STMT if appropriate. */
811
812 tree
813 begin_compound_stmt (has_no_scope)
814 int has_no_scope;
815 {
816 tree r;
817 int is_try = 0;
818
819 r = build_stmt (COMPOUND_STMT, NULL_TREE);
820
821 if (last_tree && TREE_CODE (last_tree) == TRY_BLOCK)
822 is_try = 1;
823
824 add_stmt (r);
825 if (has_no_scope)
826 COMPOUND_STMT_NO_SCOPE (r) = 1;
827
828 last_expr_type = NULL_TREE;
829
830 if (!has_no_scope)
831 {
832 do_pushlevel ();
833 if (is_try)
834 note_level_for_eh ();
835 }
836 else
837 /* Normally, we try hard to keep the BLOCK for a
838 statement-expression. But, if it's a statement-expression with
839 a scopeless block, there's nothing to keep, and we don't want
840 to accidentally keep a block *inside* the scopeless block. */
841 keep_next_level (0);
842
843 /* If this is the outermost block of the function, declare the
844 variables __FUNCTION__, __PRETTY_FUNCTION__, and so forth. */
845 if (cfun
846 && !function_name_declared_p
847 && !has_no_scope)
848 {
849 function_name_declared_p = 1;
850 declare_function_name ();
851 }
852
853 return r;
854 }
855
856 /* Finish a compound-statement, which may be given by COMPOUND_STMT.
857 If HAS_NO_SCOPE is non-zero, the compound statement does not define
858 a scope. */
859
860 tree
861 finish_compound_stmt (has_no_scope, compound_stmt)
862 int has_no_scope;
863 tree compound_stmt;
864 {
865 tree r;
866 tree t;
867
868 if (!has_no_scope)
869 r = do_poplevel ();
870 else
871 r = NULL_TREE;
872
873 RECHAIN_STMTS (compound_stmt, COMPOUND_BODY (compound_stmt));
874
875 /* When we call finish_stmt we will lose LAST_EXPR_TYPE. But, since
876 the precise purpose of that variable is store the type of the
877 last expression statement within the last compound statement, we
878 preserve the value. */
879 t = last_expr_type;
880 finish_stmt ();
881 last_expr_type = t;
882
883 return r;
884 }
885
886 /* Finish an asm-statement, whose components are a CV_QUALIFIER, a
887 STRING, some OUTPUT_OPERANDS, some INPUT_OPERANDS, and some
888 CLOBBERS. */
889
890 tree
891 finish_asm_stmt (cv_qualifier, string, output_operands,
892 input_operands, clobbers)
893 tree cv_qualifier;
894 tree string;
895 tree output_operands;
896 tree input_operands;
897 tree clobbers;
898 {
899 tree r;
900 tree t;
901
902 if (TREE_CHAIN (string))
903 string = combine_strings (string);
904
905 if (cv_qualifier != NULL_TREE
906 && cv_qualifier != ridpointers[(int) RID_VOLATILE])
907 {
908 cp_warning ("%s qualifier ignored on asm",
909 IDENTIFIER_POINTER (cv_qualifier));
910 cv_qualifier = NULL_TREE;
911 }
912
913 if (!processing_template_decl)
914 for (t = input_operands; t; t = TREE_CHAIN (t))
915 {
916 tree converted_operand
917 = decay_conversion (TREE_VALUE (t));
918
919 /* If the type of the operand hasn't been determined (e.g.,
920 because it involves an overloaded function), then issue an
921 error message. There's no context available to resolve the
922 overloading. */
923 if (TREE_TYPE (converted_operand) == unknown_type_node)
924 {
925 cp_error ("type of asm operand `%E' could not be determined",
926 TREE_VALUE (t));
927 converted_operand = error_mark_node;
928 }
929 TREE_VALUE (t) = converted_operand;
930 }
931
932 r = build_stmt (ASM_STMT, cv_qualifier, string,
933 output_operands, input_operands,
934 clobbers);
935 return add_stmt (r);
936 }
937
938 /* Finish a label with the indicated NAME. */
939
940 void
941 finish_label_stmt (name)
942 tree name;
943 {
944 tree decl = define_label (input_filename, lineno, name);
945 add_stmt (build_stmt (LABEL_STMT, decl));
946 }
947
948 /* Finish a series of declarations for local labels. G++ allows users
949 to declare "local" labels, i.e., labels with scope. This extension
950 is useful when writing code involving statement-expressions. */
951
952 void
953 finish_label_decl (name)
954 tree name;
955 {
956 tree decl = declare_local_label (name);
957 add_decl_stmt (decl);
958 }
959
960 /* Generate the RTL for a SUBOBJECT. */
961
962 static void
963 genrtl_subobject (cleanup)
964 tree cleanup;
965 {
966 add_partial_entry (cleanup);
967 }
968
969 /* We're in a constructor, and have just constructed a a subobject of
970 *THIS. CLEANUP is code to run if an exception is thrown before the
971 end of the current function is reached. */
972
973 void
974 finish_subobject (cleanup)
975 tree cleanup;
976 {
977 tree r = build_stmt (SUBOBJECT, cleanup);
978 add_stmt (r);
979 }
980
981 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
982
983 void
984 finish_decl_cleanup (decl, cleanup)
985 tree decl;
986 tree cleanup;
987 {
988 add_stmt (build_stmt (CLEANUP_STMT, decl, cleanup));
989 }
990
991 /* Generate the RTL for a RETURN_INIT. */
992
993 static void
994 genrtl_named_return_value ()
995 {
996 tree decl = DECL_RESULT (current_function_decl);
997
998 /* If this named return value comes in a register, put it in a
999 pseudo-register. */
1000 if (DECL_REGISTER (decl))
1001 {
1002 /* Note that the mode of the old DECL_RTL may be wider than the
1003 mode of DECL_RESULT, depending on the calling conventions for
1004 the processor. For example, on the Alpha, a 32-bit integer
1005 is returned in a DImode register -- the DECL_RESULT has
1006 SImode but the DECL_RTL for the DECL_RESULT has DImode. So,
1007 here, we use the mode the back-end has already assigned for
1008 the return value. */
1009 SET_DECL_RTL (decl, gen_reg_rtx (GET_MODE (DECL_RTL (decl))));
1010 if (TREE_ADDRESSABLE (decl))
1011 put_var_into_stack (decl);
1012 }
1013
1014 emit_local_var (decl);
1015 }
1016
1017 /* Bind a name and initialization to the return value of
1018 the current function. */
1019
1020 void
1021 finish_named_return_value (return_id, init)
1022 tree return_id, init;
1023 {
1024 tree decl = DECL_RESULT (current_function_decl);
1025
1026 /* Give this error as many times as there are occurrences, so that
1027 users can use Emacs compilation buffers to find and fix all such
1028 places. */
1029 if (pedantic)
1030 pedwarn ("ISO C++ does not permit named return values");
1031 cp_deprecated ("the named return value extension");
1032
1033 if (return_id != NULL_TREE)
1034 {
1035 if (DECL_NAME (decl) == NULL_TREE)
1036 DECL_NAME (decl) = return_id;
1037 else
1038 {
1039 cp_error ("return identifier `%D' already in place", return_id);
1040 return;
1041 }
1042 }
1043
1044 /* Can't let this happen for constructors. */
1045 if (DECL_CONSTRUCTOR_P (current_function_decl))
1046 {
1047 error ("can't redefine default return value for constructors");
1048 return;
1049 }
1050
1051 /* If we have a named return value, put that in our scope as well. */
1052 if (DECL_NAME (decl) != NULL_TREE)
1053 {
1054 /* Let `cp_finish_decl' know that this initializer is ok. */
1055 DECL_INITIAL (decl) = init;
1056 if (doing_semantic_analysis_p ())
1057 pushdecl (decl);
1058 if (!processing_template_decl)
1059 {
1060 cp_finish_decl (decl, init, NULL_TREE, 0);
1061 add_stmt (build_stmt (RETURN_INIT, NULL_TREE, NULL_TREE));
1062 }
1063 else
1064 add_stmt (build_stmt (RETURN_INIT, return_id, init));
1065 }
1066
1067 /* Don't use tree-inlining for functions with named return values.
1068 That doesn't work properly because we don't do any translation of
1069 the RETURN_INITs when they are copied. */
1070 DECL_UNINLINABLE (current_function_decl) = 1;
1071 }
1072
1073 /* The INIT_LIST is a list of mem-initializers, in the order they were
1074 written by the user. The TREE_VALUE of each node is a list of
1075 initializers for a particular subobject. The TREE_PURPOSE is a
1076 FIELD_DECL is the initializer is for a non-static data member, and
1077 a class type if the initializer is for a base class. */
1078
1079 void
1080 finish_mem_initializers (init_list)
1081 tree init_list;
1082 {
1083 tree member_init_list;
1084 tree base_init_list;
1085 tree last_base_warned_about;
1086 tree next;
1087 tree init;
1088
1089 member_init_list = NULL_TREE;
1090 base_init_list = NULL_TREE;
1091 last_base_warned_about = NULL_TREE;
1092
1093 for (init = init_list; init; init = next)
1094 {
1095 next = TREE_CHAIN (init);
1096 if (TREE_CODE (TREE_PURPOSE (init)) == FIELD_DECL)
1097 {
1098 TREE_CHAIN (init) = member_init_list;
1099 member_init_list = init;
1100
1101 /* We're running through the initializers from right to left
1102 as we process them here. So, if we see a data member
1103 initializer after we see a base initializer, that
1104 actually means that the base initializer preceeded the
1105 data member initializer. */
1106 if (warn_reorder && last_base_warned_about != base_init_list)
1107 {
1108 tree base;
1109
1110 for (base = base_init_list;
1111 base != last_base_warned_about;
1112 base = TREE_CHAIN (base))
1113 {
1114 cp_warning ("base initializer for `%T'",
1115 TREE_PURPOSE (base));
1116 warning (" will be re-ordered to precede member initializations");
1117 }
1118
1119 last_base_warned_about = base_init_list;
1120 }
1121 }
1122 else
1123 {
1124 TREE_CHAIN (init) = base_init_list;
1125 base_init_list = init;
1126 }
1127 }
1128
1129 setup_vtbl_ptr (member_init_list, base_init_list);
1130 }
1131
1132 /* Cache the value of this class's main virtual function table pointer
1133 in a register variable. This will save one indirection if a
1134 more than one virtual function call is made this function. */
1135
1136 void
1137 setup_vtbl_ptr (member_init_list, base_init_list)
1138 tree member_init_list;
1139 tree base_init_list;
1140 {
1141 my_friendly_assert (doing_semantic_analysis_p (), 19990919);
1142
1143 /* If we've already done this, there's no need to do it again. */
1144 if (vtbls_set_up_p)
1145 return;
1146
1147 if (DECL_CONSTRUCTOR_P (current_function_decl))
1148 {
1149 if (processing_template_decl)
1150 add_stmt (build_min_nt
1151 (CTOR_INITIALIZER,
1152 member_init_list, base_init_list));
1153 else
1154 {
1155 tree ctor_stmt;
1156
1157 /* Mark the beginning of the constructor. */
1158 ctor_stmt = build_stmt (CTOR_STMT);
1159 CTOR_BEGIN_P (ctor_stmt) = 1;
1160 add_stmt (ctor_stmt);
1161
1162 /* And actually initialize the base-classes and members. */
1163 emit_base_init (member_init_list, base_init_list);
1164 }
1165 }
1166 else if (DECL_DESTRUCTOR_P (current_function_decl)
1167 && !processing_template_decl)
1168 {
1169 tree if_stmt;
1170 tree compound_stmt;
1171 int saved_cfnd;
1172
1173 /* If the dtor is empty, and we know there is not any possible
1174 way we could use any vtable entries, before they are possibly
1175 set by a base class dtor, we don't have to setup the vtables,
1176 as we know that any base class dtor will set up any vtables
1177 it needs. We avoid MI, because one base class dtor can do a
1178 virtual dispatch to an overridden function that would need to
1179 have a non-related vtable set up, we cannot avoid setting up
1180 vtables in that case. We could change this to see if there
1181 is just one vtable. */
1182 if_stmt = begin_if_stmt ();
1183
1184 /* If it is not safe to avoid setting up the vtables, then
1185 someone will change the condition to be boolean_true_node.
1186 (Actually, for now, we do not have code to set the condition
1187 appropriately, so we just assume that we always need to
1188 initialize the vtables.) */
1189 finish_if_stmt_cond (boolean_true_node, if_stmt);
1190 current_vcalls_possible_p = &IF_COND (if_stmt);
1191
1192 /* Don't declare __PRETTY_FUNCTION__ and friends here when we
1193 open the block for the if-body. */
1194 saved_cfnd = function_name_declared_p;
1195 function_name_declared_p = 1;
1196 compound_stmt = begin_compound_stmt (/*has_no_scope=*/0);
1197 function_name_declared_p = saved_cfnd;
1198
1199 /* Make all virtual function table pointers in non-virtual base
1200 classes point to CURRENT_CLASS_TYPE's virtual function
1201 tables. */
1202 initialize_vtbl_ptrs (current_class_ptr);
1203
1204 finish_compound_stmt (/*has_no_scope=*/0, compound_stmt);
1205 finish_then_clause (if_stmt);
1206 finish_if_stmt ();
1207 }
1208
1209 /* Always keep the BLOCK node associated with the outermost pair of
1210 curly braces of a function. These are needed for correct
1211 operation of dwarfout.c. */
1212 keep_next_level (1);
1213
1214 /* The virtual function tables are set up now. */
1215 vtbls_set_up_p = 1;
1216 }
1217
1218 /* Returns the stack of SCOPE_STMTs for the current function. */
1219
1220 tree *
1221 current_scope_stmt_stack ()
1222 {
1223 return &cfun->language->x_scope_stmt_stack;
1224 }
1225
1226 /* Finish a parenthesized expression EXPR. */
1227
1228 tree
1229 finish_parenthesized_expr (expr)
1230 tree expr;
1231 {
1232 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (expr))))
1233 /* This inhibits warnings in truthvalue_conversion. */
1234 C_SET_EXP_ORIGINAL_CODE (expr, ERROR_MARK);
1235
1236 if (TREE_CODE (expr) == OFFSET_REF)
1237 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1238 enclosed in parentheses. */
1239 PTRMEM_OK_P (expr) = 0;
1240 return expr;
1241 }
1242
1243 /* Begin a statement-expression. The value returned must be passed to
1244 finish_stmt_expr. */
1245
1246 tree
1247 begin_stmt_expr ()
1248 {
1249 /* If we're outside a function, we won't have a statement-tree to
1250 work with. But, if we see a statement-expression we need to
1251 create one. */
1252 if (! cfun && !last_tree)
1253 begin_stmt_tree (&scope_chain->x_saved_tree);
1254
1255 keep_next_level (1);
1256 /* If we're building a statement tree, then the upcoming compound
1257 statement will be chained onto the tree structure, starting at
1258 last_tree. We return last_tree so that we can later unhook the
1259 compound statement. */
1260 return last_tree;
1261 }
1262
1263 /* Used when beginning a statement-expression outside function scope.
1264 For example, when handling a file-scope initializer, we use this
1265 function. */
1266
1267 tree
1268 begin_global_stmt_expr ()
1269 {
1270 if (! cfun && !last_tree)
1271 begin_stmt_tree (&scope_chain->x_saved_tree);
1272
1273 keep_next_level (1);
1274
1275 return (last_tree != NULL_TREE) ? last_tree : expand_start_stmt_expr();
1276 }
1277
1278 /* Finish the STMT_EXPR last begun with begin_global_stmt_expr. */
1279
1280 tree
1281 finish_global_stmt_expr (stmt_expr)
1282 tree stmt_expr;
1283 {
1284 stmt_expr = expand_end_stmt_expr (stmt_expr);
1285
1286 if (! cfun
1287 && TREE_CHAIN (scope_chain->x_saved_tree) == NULL_TREE)
1288 finish_stmt_tree (&scope_chain->x_saved_tree);
1289
1290 return stmt_expr;
1291 }
1292
1293 /* Finish a statement-expression. RTL_EXPR should be the value
1294 returned by the previous begin_stmt_expr; EXPR is the
1295 statement-expression. Returns an expression representing the
1296 statement-expression. */
1297
1298 tree
1299 finish_stmt_expr (rtl_expr)
1300 tree rtl_expr;
1301 {
1302 tree result;
1303
1304 /* If the last thing in the statement-expression was not an
1305 expression-statement, then it has type `void'. */
1306 if (!last_expr_type)
1307 last_expr_type = void_type_node;
1308 result = build_min (STMT_EXPR, last_expr_type, last_tree);
1309 TREE_SIDE_EFFECTS (result) = 1;
1310
1311 /* Remove the compound statement from the tree structure; it is
1312 now saved in the STMT_EXPR. */
1313 last_tree = rtl_expr;
1314 TREE_CHAIN (last_tree) = NULL_TREE;
1315
1316 /* If we created a statement-tree for this statement-expression,
1317 remove it now. */
1318 if (! cfun
1319 && TREE_CHAIN (scope_chain->x_saved_tree) == NULL_TREE)
1320 finish_stmt_tree (&scope_chain->x_saved_tree);
1321
1322 return result;
1323 }
1324
1325 /* Finish a call to FN with ARGS. Returns a representation of the
1326 call. */
1327
1328 tree
1329 finish_call_expr (fn, args, koenig)
1330 tree fn;
1331 tree args;
1332 int koenig;
1333 {
1334 tree result;
1335
1336 if (koenig)
1337 {
1338 if (TREE_CODE (fn) == BIT_NOT_EXPR)
1339 fn = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (fn, 0));
1340 else if (TREE_CODE (fn) != TEMPLATE_ID_EXPR)
1341 fn = do_identifier (fn, 2, args);
1342 }
1343 result = build_x_function_call (fn, args, current_class_ref);
1344
1345 if (TREE_CODE (result) == CALL_EXPR
1346 && (! TREE_TYPE (result)
1347 || TREE_CODE (TREE_TYPE (result)) != VOID_TYPE))
1348 result = require_complete_type (result);
1349
1350 return result;
1351 }
1352
1353 /* Finish a call to a postfix increment or decrement or EXPR. (Which
1354 is indicated by CODE, which should be POSTINCREMENT_EXPR or
1355 POSTDECREMENT_EXPR.) */
1356
1357 tree
1358 finish_increment_expr (expr, code)
1359 tree expr;
1360 enum tree_code code;
1361 {
1362 /* If we get an OFFSET_REF, turn it into what it really means (e.g.,
1363 a COMPONENT_REF). This way if we've got, say, a reference to a
1364 static member that's being operated on, we don't end up trying to
1365 find a member operator for the class it's in. */
1366
1367 if (TREE_CODE (expr) == OFFSET_REF)
1368 expr = resolve_offset_ref (expr);
1369 return build_x_unary_op (code, expr);
1370 }
1371
1372 /* Finish a use of `this'. Returns an expression for `this'. */
1373
1374 tree
1375 finish_this_expr ()
1376 {
1377 tree result;
1378
1379 if (current_class_ptr)
1380 {
1381 #ifdef WARNING_ABOUT_CCD
1382 TREE_USED (current_class_ptr) = 1;
1383 #endif
1384 result = current_class_ptr;
1385 }
1386 else if (current_function_decl
1387 && DECL_STATIC_FUNCTION_P (current_function_decl))
1388 {
1389 error ("`this' is unavailable for static member functions");
1390 result = error_mark_node;
1391 }
1392 else
1393 {
1394 if (current_function_decl)
1395 error ("invalid use of `this' in non-member function");
1396 else
1397 error ("invalid use of `this' at top level");
1398 result = error_mark_node;
1399 }
1400
1401 return result;
1402 }
1403
1404 /* Finish a member function call using OBJECT and ARGS as arguments to
1405 FN. Returns an expression for the call. */
1406
1407 tree
1408 finish_object_call_expr (fn, object, args)
1409 tree fn;
1410 tree object;
1411 tree args;
1412 {
1413 #if 0
1414 /* This is a future direction of this code, but because
1415 build_x_function_call cannot always undo what is done in
1416 build_component_ref entirely yet, we cannot do this. */
1417
1418 tree real_fn = build_component_ref (object, fn, NULL_TREE, 1);
1419 return finish_call_expr (real_fn, args);
1420 #else
1421 if (DECL_DECLARES_TYPE_P (fn))
1422 {
1423 if (processing_template_decl)
1424 /* This can happen on code like:
1425
1426 class X;
1427 template <class T> void f(T t) {
1428 t.X();
1429 }
1430
1431 We just grab the underlying IDENTIFIER. */
1432 fn = DECL_NAME (fn);
1433 else
1434 {
1435 cp_error ("calling type `%T' like a method", fn);
1436 return error_mark_node;
1437 }
1438 }
1439
1440 return build_method_call (object, fn, args, NULL_TREE, LOOKUP_NORMAL);
1441 #endif
1442 }
1443
1444 /* Finish a qualified member function call using OBJECT and ARGS as
1445 arguments to FN. Returns an expression for the call. */
1446
1447 tree
1448 finish_qualified_object_call_expr (fn, object, args)
1449 tree fn;
1450 tree object;
1451 tree args;
1452 {
1453 return build_scoped_method_call (object, TREE_OPERAND (fn, 0),
1454 TREE_OPERAND (fn, 1), args);
1455 }
1456
1457 /* Finish a pseudo-destructor call expression of OBJECT, with SCOPE
1458 being the scope, if any, of DESTRUCTOR. Returns an expression for
1459 the call. */
1460
1461 tree
1462 finish_pseudo_destructor_call_expr (object, scope, destructor)
1463 tree object;
1464 tree scope;
1465 tree destructor;
1466 {
1467 if (processing_template_decl)
1468 return build_min_nt (PSEUDO_DTOR_EXPR, object, scope, destructor);
1469
1470 if (scope && scope != destructor)
1471 cp_error ("destructor specifier `%T::~%T()' must have matching names",
1472 scope, destructor);
1473
1474 if ((scope == NULL_TREE || IDENTIFIER_GLOBAL_VALUE (destructor))
1475 && (TREE_CODE (TREE_TYPE (object)) !=
1476 TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (destructor)))))
1477 cp_error ("`%E' is not of type `%T'", object, destructor);
1478
1479 return cp_convert (void_type_node, object);
1480 }
1481
1482 /* Finish a call to a globally qualified member function FN using
1483 ARGS. Returns an expression for the call. */
1484
1485 tree
1486 finish_qualified_call_expr (fn, args)
1487 tree fn;
1488 tree args;
1489 {
1490 if (processing_template_decl)
1491 return build_min_nt (CALL_EXPR, fn, args, NULL_TREE);
1492 else
1493 return build_member_call (TREE_OPERAND (fn, 0),
1494 TREE_OPERAND (fn, 1),
1495 args);
1496 }
1497
1498 /* Finish an expression taking the address of LABEL. Returns an
1499 expression for the address. */
1500
1501 tree
1502 finish_label_address_expr (label)
1503 tree label;
1504 {
1505 tree result;
1506
1507 label = lookup_label (label);
1508 if (label == NULL_TREE)
1509 result = null_pointer_node;
1510 else
1511 {
1512 TREE_USED (label) = 1;
1513 result = build1 (ADDR_EXPR, ptr_type_node, label);
1514 TREE_CONSTANT (result) = 1;
1515 /* This function cannot be inlined. All jumps to the addressed
1516 label should wind up at the same point. */
1517 DECL_UNINLINABLE (current_function_decl) = 1;
1518 }
1519
1520 return result;
1521 }
1522
1523 /* Finish an expression of the form CODE EXPR. */
1524
1525 tree
1526 finish_unary_op_expr (code, expr)
1527 enum tree_code code;
1528 tree expr;
1529 {
1530 tree result = build_x_unary_op (code, expr);
1531 /* Inside a template, build_x_unary_op does not fold the
1532 expression. So check whether the result is folded before
1533 setting TREE_NEGATED_INT. */
1534 if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
1535 && TREE_CODE (result) == INTEGER_CST
1536 && !TREE_UNSIGNED (TREE_TYPE (result))
1537 && INT_CST_LT (result, integer_zero_node))
1538 TREE_NEGATED_INT (result) = 1;
1539 overflow_warning (result);
1540 return result;
1541 }
1542
1543 /* Finish an id-expression. */
1544
1545 tree
1546 finish_id_expr (expr)
1547 tree expr;
1548 {
1549 if (TREE_CODE (expr) == IDENTIFIER_NODE)
1550 expr = do_identifier (expr, 1, NULL_TREE);
1551
1552 if (TREE_TYPE (expr) == error_mark_node)
1553 expr = error_mark_node;
1554 return expr;
1555 }
1556
1557 static tree current_type_lookups;
1558
1559 /* Perform deferred access control for types used in the type of a
1560 declaration. */
1561
1562 static void
1563 deferred_type_access_control ()
1564 {
1565 tree lookup = type_lookups;
1566
1567 if (lookup == error_mark_node)
1568 return;
1569
1570 for (; lookup; lookup = TREE_CHAIN (lookup))
1571 enforce_access (TREE_PURPOSE (lookup), TREE_VALUE (lookup));
1572 }
1573
1574 void
1575 decl_type_access_control (decl)
1576 tree decl;
1577 {
1578 tree save_fn;
1579
1580 if (type_lookups == error_mark_node)
1581 return;
1582
1583 save_fn = current_function_decl;
1584
1585 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
1586 current_function_decl = decl;
1587
1588 deferred_type_access_control ();
1589
1590 current_function_decl = save_fn;
1591
1592 /* Now strip away the checks for the current declarator; they were
1593 added to type_lookups after typed_declspecs saved the copy that
1594 ended up in current_type_lookups. */
1595 type_lookups = current_type_lookups;
1596
1597 current_type_lookups = NULL_TREE;
1598 }
1599
1600 /* Record the lookups, if we're doing deferred access control. */
1601
1602 void
1603 save_type_access_control (lookups)
1604 tree lookups;
1605 {
1606 if (type_lookups != error_mark_node)
1607 {
1608 my_friendly_assert (!current_type_lookups, 20010301);
1609 current_type_lookups = lookups;
1610 }
1611 else
1612 my_friendly_assert (!lookups || lookups == error_mark_node, 20010301);
1613 }
1614
1615 /* Set things up so that the next deferred access control will succeed.
1616 This is needed for friend declarations see grokdeclarator for details. */
1617
1618 void
1619 skip_type_access_control ()
1620 {
1621 type_lookups = NULL_TREE;
1622 }
1623
1624 /* Reset the deferred access control. */
1625
1626 void
1627 reset_type_access_control ()
1628 {
1629 type_lookups = NULL_TREE;
1630 current_type_lookups = NULL_TREE;
1631 }
1632
1633 /* Begin a function definition declared with DECL_SPECS and
1634 DECLARATOR. Returns non-zero if the function-declaration is
1635 legal. */
1636
1637 int
1638 begin_function_definition (decl_specs, declarator)
1639 tree decl_specs;
1640 tree declarator;
1641 {
1642 tree specs;
1643 tree attrs;
1644
1645 split_specs_attrs (decl_specs, &specs, &attrs);
1646 if (!start_function (specs, declarator, attrs, SF_DEFAULT))
1647 return 0;
1648
1649 deferred_type_access_control ();
1650 type_lookups = error_mark_node;
1651
1652 /* The things we're about to see are not directly qualified by any
1653 template headers we've seen thus far. */
1654 reset_specialization ();
1655
1656 return 1;
1657 }
1658
1659 /* Begin a constructor declarator of the form `SCOPE::NAME'. Returns
1660 a SCOPE_REF. */
1661
1662 tree
1663 begin_constructor_declarator (scope, name)
1664 tree scope;
1665 tree name;
1666 {
1667 tree result = build_nt (SCOPE_REF, scope, name);
1668 enter_scope_of (result);
1669 return result;
1670 }
1671
1672 /* Finish an init-declarator. Returns a DECL. */
1673
1674 tree
1675 finish_declarator (declarator, declspecs, attributes,
1676 prefix_attributes, initialized)
1677 tree declarator;
1678 tree declspecs;
1679 tree attributes;
1680 tree prefix_attributes;
1681 int initialized;
1682 {
1683 return start_decl (declarator, declspecs, initialized, attributes,
1684 prefix_attributes);
1685 }
1686
1687 /* Finish a translation unit. */
1688
1689 void
1690 finish_translation_unit ()
1691 {
1692 /* In case there were missing closebraces,
1693 get us back to the global binding level. */
1694 pop_everything ();
1695 while (current_namespace != global_namespace)
1696 pop_namespace ();
1697 finish_file ();
1698 }
1699
1700 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
1701 Returns the parameter. */
1702
1703 tree
1704 finish_template_type_parm (aggr, identifier)
1705 tree aggr;
1706 tree identifier;
1707 {
1708 if (aggr != class_type_node)
1709 {
1710 pedwarn ("template type parameters must use the keyword `class' or `typename'");
1711 aggr = class_type_node;
1712 }
1713
1714 return build_tree_list (aggr, identifier);
1715 }
1716
1717 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
1718 Returns the parameter. */
1719
1720 tree
1721 finish_template_template_parm (aggr, identifier)
1722 tree aggr;
1723 tree identifier;
1724 {
1725 tree decl = build_decl (TYPE_DECL, identifier, NULL_TREE);
1726 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
1727 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
1728 DECL_TEMPLATE_RESULT (tmpl) = decl;
1729 DECL_ARTIFICIAL (decl) = 1;
1730 end_template_decl ();
1731
1732 my_friendly_assert (DECL_TEMPLATE_PARMS (tmpl), 20010110);
1733
1734 return finish_template_type_parm (aggr, tmpl);
1735 }
1736
1737 /* Finish a parameter list, indicated by PARMS. If ELLIPSIS is
1738 non-zero, the parameter list was terminated by a `...'. */
1739
1740 tree
1741 finish_parmlist (parms, ellipsis)
1742 tree parms;
1743 int ellipsis;
1744 {
1745 if (parms)
1746 {
1747 /* We mark the PARMS as a parmlist so that declarator processing can
1748 disambiguate certain constructs. */
1749 TREE_PARMLIST (parms) = 1;
1750 /* We do not append void_list_node here, but leave it to grokparms
1751 to do that. */
1752 PARMLIST_ELLIPSIS_P (parms) = ellipsis;
1753 }
1754 return parms;
1755 }
1756
1757 /* Begin a class definition, as indicated by T. */
1758
1759 tree
1760 begin_class_definition (t)
1761 tree t;
1762 {
1763 /* Check the bases are accessible. */
1764 decl_type_access_control (TYPE_NAME (t));
1765 reset_type_access_control ();
1766
1767 if (processing_template_parmlist)
1768 {
1769 cp_error ("definition of `%#T' inside template parameter list", t);
1770 return error_mark_node;
1771 }
1772 if (t == error_mark_node
1773 || ! IS_AGGR_TYPE (t))
1774 {
1775 t = make_aggr_type (RECORD_TYPE);
1776 pushtag (make_anon_name (), t, 0);
1777 }
1778
1779 /* In a definition of a member class template, we will get here with an
1780 implicit typename, a TYPENAME_TYPE with a type. */
1781 if (TREE_CODE (t) == TYPENAME_TYPE)
1782 t = TREE_TYPE (t);
1783
1784 /* If we generated a partial instantiation of this type, but now
1785 we're seeing a real definition, we're actually looking at a
1786 partial specialization. Consider:
1787
1788 template <class T, class U>
1789 struct Y {};
1790
1791 template <class T>
1792 struct X {};
1793
1794 template <class T, class U>
1795 void f()
1796 {
1797 typename X<Y<T, U> >::A a;
1798 }
1799
1800 template <class T, class U>
1801 struct X<Y<T, U> >
1802 {
1803 };
1804
1805 We have to undo the effects of the previous partial
1806 instantiation. */
1807 if (PARTIAL_INSTANTIATION_P (t))
1808 {
1809 if (!pedantic)
1810 {
1811 /* Unfortunately, when we're not in pedantic mode, we
1812 attempt to actually fill in some of the fields of the
1813 partial instantiation, in order to support the implicit
1814 typename extension. Clear those fields now, in
1815 preparation for the definition here. The fields cleared
1816 here must match those set in instantiate_class_template.
1817 Look for a comment mentioning begin_class_definition
1818 there. */
1819 TYPE_BINFO_BASETYPES (t) = NULL_TREE;
1820 TYPE_FIELDS (t) = NULL_TREE;
1821 TYPE_METHODS (t) = NULL_TREE;
1822 CLASSTYPE_TAGS (t) = NULL_TREE;
1823 CLASSTYPE_VBASECLASSES (t) = NULL_TREE;
1824 TYPE_SIZE (t) = NULL_TREE;
1825 }
1826
1827 /* This isn't a partial instantiation any more. */
1828 PARTIAL_INSTANTIATION_P (t) = 0;
1829 }
1830 /* If this type was already complete, and we see another definition,
1831 that's an error. */
1832 else if (COMPLETE_TYPE_P (t))
1833 duplicate_tag_error (t);
1834
1835 /* Update the location of the decl. */
1836 DECL_SOURCE_FILE (TYPE_NAME (t)) = input_filename;
1837 DECL_SOURCE_LINE (TYPE_NAME (t)) = lineno;
1838
1839 if (TYPE_BEING_DEFINED (t))
1840 {
1841 t = make_aggr_type (TREE_CODE (t));
1842 pushtag (TYPE_IDENTIFIER (t), t, 0);
1843 }
1844 maybe_process_partial_specialization (t);
1845 pushclass (t, 1);
1846 TYPE_BEING_DEFINED (t) = 1;
1847 TYPE_PACKED (t) = flag_pack_struct;
1848 /* Reset the interface data, at the earliest possible
1849 moment, as it might have been set via a class foo;
1850 before. */
1851 {
1852 tree name = TYPE_IDENTIFIER (t);
1853
1854 if (! ANON_AGGRNAME_P (name))
1855 {
1856 CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
1857 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
1858 (t, interface_unknown);
1859 }
1860 }
1861 reset_specialization();
1862
1863 /* Make a declaration for this class in its own scope. */
1864 build_self_reference ();
1865
1866 return t;
1867 }
1868
1869 /* Finish the member declaration given by DECL. */
1870
1871 void
1872 finish_member_declaration (decl)
1873 tree decl;
1874 {
1875 if (decl == error_mark_node || decl == NULL_TREE)
1876 return;
1877
1878 if (decl == void_type_node)
1879 /* The COMPONENT was a friend, not a member, and so there's
1880 nothing for us to do. */
1881 return;
1882
1883 /* We should see only one DECL at a time. */
1884 my_friendly_assert (TREE_CHAIN (decl) == NULL_TREE, 0);
1885
1886 /* Set up access control for DECL. */
1887 TREE_PRIVATE (decl)
1888 = (current_access_specifier == access_private_node);
1889 TREE_PROTECTED (decl)
1890 = (current_access_specifier == access_protected_node);
1891 if (TREE_CODE (decl) == TEMPLATE_DECL)
1892 {
1893 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
1894 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
1895 }
1896
1897 /* Mark the DECL as a member of the current class. */
1898 DECL_CONTEXT (decl) = current_class_type;
1899
1900 /* [dcl.link]
1901
1902 A C language linkage is ignored for the names of class members
1903 and the member function type of class member functions. */
1904 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
1905 DECL_LANGUAGE (decl) = lang_cplusplus;
1906
1907 /* Put functions on the TYPE_METHODS list and everything else on the
1908 TYPE_FIELDS list. Note that these are built up in reverse order.
1909 We reverse them (to obtain declaration order) in finish_struct. */
1910 if (TREE_CODE (decl) == FUNCTION_DECL
1911 || DECL_FUNCTION_TEMPLATE_P (decl))
1912 {
1913 /* We also need to add this function to the
1914 CLASSTYPE_METHOD_VEC. */
1915 add_method (current_class_type, decl, /*error_p=*/0);
1916
1917 TREE_CHAIN (decl) = TYPE_METHODS (current_class_type);
1918 TYPE_METHODS (current_class_type) = decl;
1919 }
1920 else
1921 {
1922 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
1923 go at the beginning. The reason is that lookup_field_1
1924 searches the list in order, and we want a field name to
1925 override a type name so that the "struct stat hack" will
1926 work. In particular:
1927
1928 struct S { enum E { }; int E } s;
1929 s.E = 3;
1930
1931 is legal. In addition, the FIELD_DECLs must be maintained in
1932 declaration order so that class layout works as expected.
1933 However, we don't need that order until class layout, so we
1934 save a little time by putting FIELD_DECLs on in reverse order
1935 here, and then reversing them in finish_struct_1. (We could
1936 also keep a pointer to the correct insertion points in the
1937 list.) */
1938
1939 if (TREE_CODE (decl) == TYPE_DECL)
1940 TYPE_FIELDS (current_class_type)
1941 = chainon (TYPE_FIELDS (current_class_type), decl);
1942 else
1943 {
1944 TREE_CHAIN (decl) = TYPE_FIELDS (current_class_type);
1945 TYPE_FIELDS (current_class_type) = decl;
1946 }
1947
1948 /* Enter the DECL into the scope of the class. */
1949 if (TREE_CODE (decl) != USING_DECL)
1950 pushdecl_class_level (decl);
1951 }
1952 }
1953
1954 /* Finish a class definition T with the indicate ATTRIBUTES. If SEMI,
1955 the definition is immediately followed by a semicolon. Returns the
1956 type. */
1957
1958 tree
1959 finish_class_definition (t, attributes, semi, pop_scope_p)
1960 tree t;
1961 tree attributes;
1962 int semi;
1963 int pop_scope_p;
1964 {
1965 /* finish_struct nukes this anyway; if finish_exception does too,
1966 then it can go. */
1967 if (semi)
1968 note_got_semicolon (t);
1969
1970 /* If we got any attributes in class_head, xref_tag will stick them in
1971 TREE_TYPE of the type. Grab them now. */
1972 attributes = chainon (TREE_TYPE (t), attributes);
1973 TREE_TYPE (t) = NULL_TREE;
1974
1975 if (TREE_CODE (t) == ENUMERAL_TYPE)
1976 ;
1977 else
1978 {
1979 t = finish_struct (t, attributes);
1980 if (semi)
1981 note_got_semicolon (t);
1982 }
1983
1984 if (! semi)
1985 check_for_missing_semicolon (t);
1986 if (pop_scope_p)
1987 pop_scope (CP_DECL_CONTEXT (TYPE_MAIN_DECL (t)));
1988 if (current_function_decl)
1989 type_lookups = error_mark_node;
1990 if (current_scope () == current_function_decl)
1991 do_pending_defargs ();
1992
1993 return t;
1994 }
1995
1996 /* Finish processing the default argument expressions cached during
1997 the processing of a class definition. */
1998
1999 void
2000 begin_inline_definitions ()
2001 {
2002 if (current_scope () == current_function_decl)
2003 do_pending_inlines ();
2004 }
2005
2006 /* Finish processing the inline function definitions cached during the
2007 processing of a class definition. */
2008
2009 void
2010 finish_inline_definitions ()
2011 {
2012 if (current_class_type == NULL_TREE)
2013 clear_inline_text_obstack ();
2014 }
2015
2016 /* Finish processing the declaration of a member class template
2017 TYPES whose template parameters are given by PARMS. */
2018
2019 tree
2020 finish_member_class_template (types)
2021 tree types;
2022 {
2023 tree t;
2024
2025 /* If there are declared, but undefined, partial specializations
2026 mixed in with the typespecs they will not yet have passed through
2027 maybe_process_partial_specialization, so we do that here. */
2028 for (t = types; t != NULL_TREE; t = TREE_CHAIN (t))
2029 if (IS_AGGR_TYPE_CODE (TREE_CODE (TREE_VALUE (t))))
2030 maybe_process_partial_specialization (TREE_VALUE (t));
2031
2032 note_list_got_semicolon (types);
2033 grok_x_components (types);
2034 if (TYPE_CONTEXT (TREE_VALUE (types)) != current_class_type)
2035 /* The component was in fact a friend declaration. We avoid
2036 finish_member_template_decl performing certain checks by
2037 unsetting TYPES. */
2038 types = NULL_TREE;
2039
2040 finish_member_template_decl (types);
2041
2042 /* As with other component type declarations, we do
2043 not store the new DECL on the list of
2044 component_decls. */
2045 return NULL_TREE;
2046 }
2047
2048 /* Finish processsing a complete template declaration. The PARMS are
2049 the template parameters. */
2050
2051 void
2052 finish_template_decl (parms)
2053 tree parms;
2054 {
2055 if (parms)
2056 end_template_decl ();
2057 else
2058 end_specialization ();
2059 }
2060
2061 /* Finish processing a template-id (which names a type) of the form
2062 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2063 template-id. If ENTERING_SCOPE is non-zero we are about to enter
2064 the scope of template-id indicated. */
2065
2066 tree
2067 finish_template_type (name, args, entering_scope)
2068 tree name;
2069 tree args;
2070 int entering_scope;
2071 {
2072 tree decl;
2073
2074 decl = lookup_template_class (name, args,
2075 NULL_TREE, NULL_TREE,
2076 entering_scope, /*complain=*/1);
2077 if (decl != error_mark_node)
2078 decl = TYPE_STUB_DECL (decl);
2079
2080 return decl;
2081 }
2082
2083 /* SR is a SCOPE_REF node. Enter the scope of SR, whether it is a
2084 namespace scope or a class scope. */
2085
2086 void
2087 enter_scope_of (sr)
2088 tree sr;
2089 {
2090 tree scope = TREE_OPERAND (sr, 0);
2091
2092 if (TREE_CODE (scope) == NAMESPACE_DECL)
2093 {
2094 push_decl_namespace (scope);
2095 TREE_COMPLEXITY (sr) = -1;
2096 }
2097 else if (scope != current_class_type)
2098 {
2099 if (TREE_CODE (scope) == TYPENAME_TYPE)
2100 {
2101 /* In a declarator for a template class member, the scope will
2102 get here as an implicit typename, a TYPENAME_TYPE with a type. */
2103 scope = TREE_TYPE (scope);
2104 TREE_OPERAND (sr, 0) = scope;
2105 }
2106 push_nested_class (scope, 3);
2107 TREE_COMPLEXITY (sr) = current_class_depth;
2108 }
2109 }
2110
2111 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2112 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2113 BASE_CLASS, or NULL_TREE if an error occurred. The
2114 ACCESSS_SPECIFIER is one of
2115 access_{default,public,protected_private}[_virtual]_node.*/
2116
2117 tree
2118 finish_base_specifier (access_specifier, base_class)
2119 tree access_specifier;
2120 tree base_class;
2121 {
2122 tree result;
2123
2124 if (! is_aggr_type (base_class, 1))
2125 result = NULL_TREE;
2126 else
2127 {
2128 if (CP_TYPE_QUALS (base_class) != 0)
2129 {
2130 cp_error ("base class `%T' has cv qualifiers", base_class);
2131 base_class = TYPE_MAIN_VARIANT (base_class);
2132 }
2133 result = build_tree_list (access_specifier, base_class);
2134 }
2135
2136 return result;
2137 }
2138
2139 /* Called when multiple declarators are processed. If that is not
2140 premitted in this context, an error is issued. */
2141
2142 void
2143 check_multiple_declarators ()
2144 {
2145 /* [temp]
2146
2147 In a template-declaration, explicit specialization, or explicit
2148 instantiation the init-declarator-list in the declaration shall
2149 contain at most one declarator.
2150
2151 We don't just use PROCESSING_TEMPLATE_DECL for the first
2152 condition since that would disallow the perfectly legal code,
2153 like `template <class T> struct S { int i, j; };'. */
2154 tree scope = current_scope ();
2155
2156 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
2157 /* It's OK to write `template <class T> void f() { int i, j;}'. */
2158 return;
2159
2160 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
2161 || processing_explicit_instantiation
2162 || processing_specialization)
2163 cp_error ("multiple declarators in template declaration");
2164 }
2165
2166 tree
2167 finish_typeof (expr)
2168 tree expr;
2169 {
2170 if (processing_template_decl)
2171 {
2172 tree t;
2173
2174 t = make_aggr_type (TYPEOF_TYPE);
2175 TYPE_FIELDS (t) = expr;
2176
2177 return t;
2178 }
2179
2180 if (TREE_CODE (expr) == OFFSET_REF)
2181 expr = resolve_offset_ref (expr);
2182
2183 return TREE_TYPE (expr);
2184 }
2185
2186 /* Generate RTL for the statement T, and its substatements, and any
2187 other statements at its nesting level. */
2188
2189 static void
2190 cp_expand_stmt (t)
2191 tree t;
2192 {
2193 switch (TREE_CODE (t))
2194 {
2195 case CLEANUP_STMT:
2196 genrtl_decl_cleanup (CLEANUP_DECL (t), CLEANUP_EXPR (t));
2197 break;
2198
2199 case START_CATCH_STMT:
2200 genrtl_catch_block (TREE_TYPE (t));
2201 break;
2202
2203 case CTOR_STMT:
2204 genrtl_ctor_stmt (t);
2205 break;
2206
2207 case TRY_BLOCK:
2208 genrtl_try_block (t);
2209 break;
2210
2211 case HANDLER:
2212 genrtl_handler (t);
2213 break;
2214
2215 case SUBOBJECT:
2216 genrtl_subobject (SUBOBJECT_CLEANUP (t));
2217 break;
2218
2219 case RETURN_INIT:
2220 genrtl_named_return_value ();
2221 break;
2222
2223 default:
2224 my_friendly_abort (19990810);
2225 break;
2226 }
2227 }
2228
2229 /* Called from expand_body via walk_tree. Replace all AGGR_INIT_EXPRs
2230 will equivalent CALL_EXPRs. */
2231
2232 static tree
2233 simplify_aggr_init_exprs_r (tp, walk_subtrees, data)
2234 tree *tp;
2235 int *walk_subtrees ATTRIBUTE_UNUSED;
2236 void *data ATTRIBUTE_UNUSED;
2237 {
2238 tree aggr_init_expr;
2239 tree call_expr;
2240 tree fn;
2241 tree args;
2242 tree slot;
2243 tree type;
2244 tree call_type;
2245 int copy_from_buffer_p;
2246
2247 aggr_init_expr = *tp;
2248 /* We don't need to walk into types; there's nothing in a type that
2249 needs simplification. (And, furthermore, there are places we
2250 actively don't want to go. For example, we don't want to wander
2251 into the default arguments for a FUNCTION_DECL that appears in a
2252 CALL_EXPR.) */
2253 if (TYPE_P (aggr_init_expr))
2254 {
2255 *walk_subtrees = 0;
2256 return NULL_TREE;
2257 }
2258 /* Only AGGR_INIT_EXPRs are interesting. */
2259 else if (TREE_CODE (aggr_init_expr) != AGGR_INIT_EXPR)
2260 return NULL_TREE;
2261
2262 /* Form an appropriate CALL_EXPR. */
2263 fn = TREE_OPERAND (aggr_init_expr, 0);
2264 args = TREE_OPERAND (aggr_init_expr, 1);
2265 slot = TREE_OPERAND (aggr_init_expr, 2);
2266 type = TREE_TYPE (aggr_init_expr);
2267 call_type = type;
2268 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
2269 {
2270 /* Replace the first argument with the address of the third
2271 argument to the AGGR_INIT_EXPR. */
2272 call_type = build_pointer_type (type);
2273 mark_addressable (slot);
2274 args = tree_cons (NULL_TREE, build1 (ADDR_EXPR, call_type, slot),
2275 TREE_CHAIN (args));
2276 }
2277 call_expr = build (CALL_EXPR, call_type, fn, args, NULL_TREE);
2278 TREE_SIDE_EFFECTS (call_expr) = 1;
2279
2280 /* If we're using the non-reentrant PCC calling convention, then we
2281 need to copy the returned value out of the static buffer into the
2282 SLOT. */
2283 copy_from_buffer_p = 0;
2284 #ifdef PCC_STATIC_STRUCT_RETURN
2285 if (!AGGR_INIT_VIA_CTOR_P (aggr_init_expr) && aggregate_value_p (type))
2286 {
2287 int old_ac;
2288
2289 flag_access_control = 0;
2290 call_expr = build_aggr_init (slot, call_expr, LOOKUP_ONLYCONVERTING);
2291 flag_access_control = old_ac;
2292 copy_from_buffer_p = 1;
2293 }
2294 #endif
2295
2296 /* If this AGGR_INIT_EXPR indicates the value returned by a
2297 function, then we want to use the value of the initialized
2298 location as the result. */
2299 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr) || copy_from_buffer_p)
2300 {
2301 call_expr = build (COMPOUND_EXPR, type,
2302 call_expr, slot);
2303 TREE_SIDE_EFFECTS (call_expr) = 1;
2304 }
2305
2306 /* Replace the AGGR_INIT_EXPR with the CALL_EXPR. */
2307 TREE_CHAIN (call_expr) = TREE_CHAIN (aggr_init_expr);
2308 *tp = call_expr;
2309
2310 /* Keep iterating. */
2311 return NULL_TREE;
2312 }
2313
2314 /* Emit all thunks to FN that should be emitted when FN is emitted. */
2315
2316 static void
2317 emit_associated_thunks (fn)
2318 tree fn;
2319 {
2320 /* When we use vcall offsets, we emit thunks with the virtual
2321 functions to which they thunk. The whole point of vcall offsets
2322 is so that you can know statically the entire set of thunks that
2323 will ever be needed for a given virtual function, thereby
2324 enabling you to output all the thunks with the function itself. */
2325 if (vcall_offsets_in_vtable_p () && DECL_VIRTUAL_P (fn))
2326 {
2327 tree binfo;
2328 tree v;
2329
2330 for (binfo = TYPE_BINFO (DECL_CONTEXT (fn));
2331 binfo;
2332 binfo = TREE_CHAIN (binfo))
2333 for (v = BINFO_VIRTUALS (binfo); v; v = TREE_CHAIN (v))
2334 if (BV_FN (v) == fn
2335 && (!integer_zerop (BV_DELTA (v))
2336 || BV_VCALL_INDEX (v)))
2337 {
2338 tree thunk;
2339 tree vcall_index;
2340
2341 if (BV_USE_VCALL_INDEX_P (v))
2342 {
2343 vcall_index = BV_VCALL_INDEX (v);
2344 my_friendly_assert (vcall_index != NULL_TREE, 20000621);
2345 }
2346 else
2347 vcall_index = NULL_TREE;
2348
2349 thunk = make_thunk (build1 (ADDR_EXPR,
2350 vfunc_ptr_type_node,
2351 fn),
2352 BV_DELTA (v),
2353 vcall_index,
2354 /*generate_with_vtable_p=*/0);
2355 use_thunk (thunk, /*emit_p=*/1);
2356 }
2357 }
2358 }
2359
2360 /* Generate RTL for FN. */
2361
2362 void
2363 expand_body (fn)
2364 tree fn;
2365 {
2366 int saved_lineno;
2367 const char *saved_input_filename;
2368
2369 /* When the parser calls us after finishing the body of a template
2370 function, we don't really want to expand the body. When we're
2371 processing an in-class definition of an inline function,
2372 PROCESSING_TEMPLATE_DECL will no longer be set here, so we have
2373 to look at the function itself. */
2374 if (processing_template_decl
2375 || (DECL_LANG_SPECIFIC (fn)
2376 && DECL_TEMPLATE_INFO (fn)
2377 && uses_template_parms (DECL_TI_ARGS (fn))))
2378 {
2379 /* Normally, collection only occurs in rest_of_compilation. So,
2380 if we don't collect here, we never collect junk generated
2381 during the processing of templates until we hit a
2382 non-template function. */
2383 ggc_collect ();
2384 return;
2385 }
2386
2387 /* Replace AGGR_INIT_EXPRs with appropriate CALL_EXPRs. */
2388 walk_tree_without_duplicates (&DECL_SAVED_TREE (fn),
2389 simplify_aggr_init_exprs_r,
2390 NULL);
2391
2392 /* If this is a constructor or destructor body, we have to clone it
2393 under the new ABI. */
2394 if (maybe_clone_body (fn))
2395 {
2396 /* We don't want to process FN again, so pretend we've written
2397 it out, even though we haven't. */
2398 TREE_ASM_WRITTEN (fn) = 1;
2399 return;
2400 }
2401
2402 /* There's no reason to do any of the work here if we're only doing
2403 semantic analysis; this code just generates RTL. */
2404 if (flag_syntax_only)
2405 return;
2406
2407 /* If possible, avoid generating RTL for this function. Instead,
2408 just record it as an inline function, and wait until end-of-file
2409 to decide whether to write it out or not. */
2410 if (/* We have to generate RTL if it's not an inline function. */
2411 (DECL_INLINE (fn) || DECL_COMDAT (fn))
2412 /* Or if we have to keep all inline functions anyhow. */
2413 && !flag_keep_inline_functions
2414 /* Or if we actually have a reference to the function. */
2415 && !DECL_NEEDED_P (fn)
2416 /* Or if this is a nested function. */
2417 && !decl_function_context (fn))
2418 {
2419 /* Set DECL_EXTERNAL so that assemble_external will be called as
2420 necessary. We'll clear it again in finish_file. */
2421 if (!DECL_EXTERNAL (fn))
2422 {
2423 DECL_NOT_REALLY_EXTERN (fn) = 1;
2424 DECL_EXTERNAL (fn) = 1;
2425 }
2426 /* Remember this function. In finish_file we'll decide if
2427 we actually need to write this function out. */
2428 defer_fn (fn);
2429 /* Let the back-end know that this funtion exists. */
2430 note_deferral_of_defined_inline_function (fn);
2431 return;
2432 }
2433
2434 /* Emit any thunks that should be emitted at the same time as FN. */
2435 emit_associated_thunks (fn);
2436
2437 timevar_push (TV_INTEGRATION);
2438
2439 /* Optimize the body of the function before expanding it. */
2440 optimize_function (fn);
2441
2442 timevar_pop (TV_INTEGRATION);
2443 timevar_push (TV_EXPAND);
2444
2445 /* Save the current file name and line number. When we expand the
2446 body of the function, we'll set LINENO and INPUT_FILENAME so that
2447 error-mesages come out in the right places. */
2448 saved_lineno = lineno;
2449 saved_input_filename = input_filename;
2450 lineno = DECL_SOURCE_LINE (fn);
2451 input_filename = DECL_SOURCE_FILE (fn);
2452
2453 genrtl_start_function (fn);
2454 current_function_is_thunk = DECL_THUNK_P (fn);
2455
2456 /* We don't need to redeclare __FUNCTION__, __PRETTY_FUNCTION__, or
2457 any of the other magic variables we set up when starting a
2458 function body. */
2459 function_name_declared_p = 1;
2460
2461 /* Expand the body. */
2462 expand_stmt (DECL_SAVED_TREE (fn));
2463
2464 /* Statements should always be full-expressions at the outermost set
2465 of curly braces for a function. */
2466 my_friendly_assert (stmts_are_full_exprs_p (), 19990831);
2467
2468 /* The outermost statement for a function contains the line number
2469 recorded when we finished processing the function. */
2470 lineno = STMT_LINENO (DECL_SAVED_TREE (fn));
2471
2472 /* Generate code for the function. */
2473 genrtl_finish_function (fn);
2474
2475 /* If possible, obliterate the body of the function so that it can
2476 be garbage collected. */
2477 if (flag_dump_translation_unit)
2478 /* Keep the body; we're going to dump it. */
2479 ;
2480 else if (DECL_INLINE (fn) && flag_inline_trees)
2481 /* We might need the body of this function so that we can expand
2482 it inline somewhere else. */
2483 ;
2484 else
2485 /* We don't need the body; blow it away. */
2486 DECL_SAVED_TREE (fn) = NULL_TREE;
2487
2488 /* And restore the current source position. */
2489 lineno = saved_lineno;
2490 input_filename = saved_input_filename;
2491 extract_interface_info ();
2492
2493 timevar_pop (TV_EXPAND);
2494 }
2495
2496 /* Start generating the RTL for FN. */
2497
2498 static void
2499 genrtl_start_function (fn)
2500 tree fn;
2501 {
2502 tree parm;
2503
2504 /* Tell everybody what function we're processing. */
2505 current_function_decl = fn;
2506 /* Get the RTL machinery going for this function. */
2507 init_function_start (fn, DECL_SOURCE_FILE (fn), DECL_SOURCE_LINE (fn));
2508 /* Let everybody know that we're expanding this function, not doing
2509 semantic analysis. */
2510 expanding_p = 1;
2511
2512 /* Even though we're inside a function body, we still don't want to
2513 call expand_expr to calculate the size of a variable-sized array.
2514 We haven't necessarily assigned RTL to all variables yet, so it's
2515 not safe to try to expand expressions involving them. */
2516 immediate_size_expand = 0;
2517 cfun->x_dont_save_pending_sizes_p = 1;
2518
2519 /* Let the user know we're compiling this function. */
2520 announce_function (fn);
2521
2522 /* Initialize the per-function data. */
2523 my_friendly_assert (!DECL_PENDING_INLINE_P (fn), 20000911);
2524 if (DECL_SAVED_FUNCTION_DATA (fn))
2525 {
2526 /* If we already parsed this function, and we're just expanding it
2527 now, restore saved state. */
2528 *cp_function_chain = *DECL_SAVED_FUNCTION_DATA (fn);
2529
2530 /* This function is being processed in whole-function mode; we
2531 already did semantic analysis. */
2532 cfun->x_whole_function_mode_p = 1;
2533
2534 /* If we decided that we didn't want to inline this function,
2535 make sure the back-end knows that. */
2536 if (!current_function_cannot_inline)
2537 current_function_cannot_inline = cp_function_chain->cannot_inline;
2538
2539 /* We don't need the saved data anymore. */
2540 free (DECL_SAVED_FUNCTION_DATA (fn));
2541 DECL_SAVED_FUNCTION_DATA (fn) = NULL;
2542 }
2543
2544 /* Tell the cross-reference machinery that we're defining this
2545 function. */
2546 GNU_xref_function (fn, DECL_ARGUMENTS (fn));
2547
2548 /* Keep track of how many functions we're presently expanding. */
2549 ++function_depth;
2550
2551 /* Create a binding level for the parameters. */
2552 expand_start_bindings (2);
2553 /* Clear out any previously saved instructions for this function, in
2554 case it was defined more than once. */
2555 DECL_SAVED_INSNS (fn) = NULL;
2556 /* Go through the PARM_DECLs for this function to see if any need
2557 cleanups. */
2558 for (parm = DECL_ARGUMENTS (fn); parm; parm = TREE_CHAIN (parm))
2559 if (TREE_TYPE (parm) != error_mark_node
2560 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (parm)))
2561 {
2562 expand_function_start (fn, /*parms_have_cleanups=*/1);
2563 break;
2564 }
2565 if (!parm)
2566 expand_function_start (fn, /*parms_have_cleanups=*/0);
2567 /* If this function is `main'. */
2568 if (DECL_MAIN_P (fn))
2569 expand_main_function ();
2570 /* Create a binding contour which can be used to catch
2571 cleanup-generated temporaries. */
2572 expand_start_bindings (2);
2573 }
2574
2575 /* Finish generating the RTL for FN. */
2576
2577 static void
2578 genrtl_finish_function (fn)
2579 tree fn;
2580 {
2581 tree no_return_label = NULL_TREE;
2582
2583 #if 0
2584 if (write_symbols != NO_DEBUG)
2585 {
2586 /* Keep this code around in case we later want to control debug info
2587 based on whether a type is "used". (jason 1999-11-11) */
2588
2589 tree ttype = target_type (fntype);
2590 tree parmdecl;
2591
2592 if (IS_AGGR_TYPE (ttype))
2593 /* Let debugger know it should output info for this type. */
2594 note_debug_info_needed (ttype);
2595
2596 for (parmdecl = DECL_ARGUMENTS (fndecl); parmdecl; parmdecl = TREE_CHAIN (parmdecl))
2597 {
2598 ttype = target_type (TREE_TYPE (parmdecl));
2599 if (IS_AGGR_TYPE (ttype))
2600 /* Let debugger know it should output info for this type. */
2601 note_debug_info_needed (ttype);
2602 }
2603 }
2604 #endif
2605
2606 /* Clean house because we will need to reorder insns here. */
2607 do_pending_stack_adjust ();
2608
2609 if (!dtor_label && !DECL_CONSTRUCTOR_P (fn)
2610 && return_label != NULL_RTX
2611 && current_function_return_value == NULL_TREE
2612 && ! DECL_NAME (DECL_RESULT (current_function_decl)))
2613 no_return_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
2614
2615 if (flag_exceptions)
2616 expand_exception_blocks ();
2617
2618 /* If this function is supposed to return a value, ensure that
2619 we do not fall into the cleanups by mistake. The end of our
2620 function will look like this:
2621
2622 user code (may have return stmt somewhere)
2623 goto no_return_label
2624 cleanup_label:
2625 cleanups
2626 goto return_label
2627 no_return_label:
2628 NOTE_INSN_FUNCTION_END
2629 return_label:
2630 things for return
2631
2632 If the user omits a return stmt in the USER CODE section, we
2633 will have a control path which reaches NOTE_INSN_FUNCTION_END.
2634 Otherwise, we won't. */
2635 if (no_return_label)
2636 {
2637 DECL_CONTEXT (no_return_label) = fn;
2638 DECL_INITIAL (no_return_label) = error_mark_node;
2639 DECL_SOURCE_FILE (no_return_label) = input_filename;
2640 DECL_SOURCE_LINE (no_return_label) = lineno;
2641 expand_goto (no_return_label);
2642 }
2643
2644 if (cleanup_label)
2645 {
2646 /* Remove the binding contour which is used to catch
2647 cleanup-generated temporaries. */
2648 expand_end_bindings (0, 0, 0);
2649 poplevel (0, 0, 0);
2650
2651 /* Emit label at beginning of cleanup code for parameters. */
2652 emit_label (cleanup_label);
2653 }
2654
2655 /* Finish building code that will trigger warnings if users forget
2656 to make their functions return values. */
2657 if (return_label)
2658 emit_jump (return_label);
2659 if (no_return_label)
2660 {
2661 /* We don't need to call `expand_*_return' here because we don't
2662 need any cleanups here--this path of code is only for error
2663 checking purposes. */
2664 expand_label (no_return_label);
2665 }
2666
2667 /* We hard-wired immediate_size_expand to zero in start_function.
2668 Expand_function_end will decrement this variable. So, we set the
2669 variable to one here, so that after the decrement it will remain
2670 zero. */
2671 immediate_size_expand = 1;
2672
2673 /* Generate rtl for function exit. */
2674 expand_function_end (input_filename, lineno, 1);
2675
2676 /* If this is a nested function (like a template instantiation that
2677 we're compiling in the midst of compiling something else), push a
2678 new GC context. That will keep local variables on the stack from
2679 being collected while we're doing the compilation of this
2680 function. */
2681 if (function_depth > 1)
2682 ggc_push_context ();
2683
2684 /* Run the optimizers and output the assembler code for this
2685 function. */
2686 rest_of_compilation (fn);
2687
2688 /* Undo the call to ggc_push_context above. */
2689 if (function_depth > 1)
2690 ggc_pop_context ();
2691
2692 if (DECL_SAVED_INSNS (fn) && ! TREE_ASM_WRITTEN (fn))
2693 {
2694 /* Set DECL_EXTERNAL so that assemble_external will be called as
2695 necessary. We'll clear it again in finish_file. */
2696 if (! DECL_EXTERNAL (fn))
2697 DECL_NOT_REALLY_EXTERN (fn) = 1;
2698 DECL_EXTERNAL (fn) = 1;
2699 defer_fn (fn);
2700 }
2701
2702 #if 0
2703 /* Keep this code around in case we later want to control debug info
2704 based on whether a type is "used". (jason 1999-11-11) */
2705
2706 if (ctype && TREE_ASM_WRITTEN (fn))
2707 note_debug_info_needed (ctype);
2708 #endif
2709
2710 /* If this function is marked with the constructor attribute, add it
2711 to the list of functions to be called along with constructors
2712 from static duration objects. */
2713 if (DECL_STATIC_CONSTRUCTOR (fn))
2714 static_ctors = tree_cons (NULL_TREE, fn, static_ctors);
2715
2716 /* If this function is marked with the destructor attribute, add it
2717 to the list of functions to be called along with destructors from
2718 static duration objects. */
2719 if (DECL_STATIC_DESTRUCTOR (fn))
2720 static_dtors = tree_cons (NULL_TREE, fn, static_dtors);
2721
2722 --function_depth;
2723
2724 if (!DECL_SAVED_INSNS (fn)
2725 && !(flag_inline_trees && DECL_INLINE (fn)))
2726 {
2727 tree t;
2728
2729 /* Stop pointing to the local nodes about to be freed. */
2730 /* But DECL_INITIAL must remain nonzero so we know this
2731 was an actual function definition. */
2732 DECL_INITIAL (fn) = error_mark_node;
2733 for (t = DECL_ARGUMENTS (fn); t; t = TREE_CHAIN (t))
2734 {
2735 SET_DECL_RTL (t, NULL_RTX);
2736 DECL_INCOMING_RTL (t) = NULL_RTX;
2737 }
2738 }
2739
2740 /* Let the error reporting routines know that we're outside a
2741 function. For a nested function, this value is used in
2742 pop_cp_function_context and then reset via pop_function_context. */
2743 current_function_decl = NULL_TREE;
2744 }
2745
2746 /* Perform initialization related to this module. */
2747
2748 void
2749 init_cp_semantics ()
2750 {
2751 lang_expand_stmt = cp_expand_stmt;
2752 }