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