a36a631896ce0bd351d5571bde54da9b0fd8d004
[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, 2002, 2003, 2004
7 Free Software Foundation, Inc.
8 Written by Mark Mitchell (mmitchell@usa.net) based on code found
9 formerly in parse.y and pt.c.
10
11 This file is part of GCC.
12
13 GCC is free software; you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
17
18 GCC is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with GCC; see the file COPYING. If not, write to the Free
25 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 02111-1307, USA. */
27
28 #include "config.h"
29 #include "system.h"
30 #include "coretypes.h"
31 #include "tm.h"
32 #include "tree.h"
33 #include "cp-tree.h"
34 #include "c-common.h"
35 #include "tree-inline.h"
36 #include "tree-mudflap.h"
37 #include "except.h"
38 #include "toplev.h"
39 #include "flags.h"
40 #include "rtl.h"
41 #include "expr.h"
42 #include "output.h"
43 #include "timevar.h"
44 #include "debug.h"
45 #include "diagnostic.h"
46 #include "cgraph.h"
47 #include "tree-iterator.h"
48 #include "vec.h"
49 #include "target.h"
50
51 /* There routines provide a modular interface to perform many parsing
52 operations. They may therefore be used during actual parsing, or
53 during template instantiation, which may be regarded as a
54 degenerate form of parsing. Since the current g++ parser is
55 lacking in several respects, and will be reimplemented, we are
56 attempting to move most code that is not directly related to
57 parsing into this file; that will make implementing the new parser
58 much easier since it will be able to make use of these routines. */
59
60 static tree maybe_convert_cond (tree);
61 static tree simplify_aggr_init_exprs_r (tree *, int *, void *);
62 static void emit_associated_thunks (tree);
63 static tree finalize_nrv_r (tree *, int *, void *);
64
65
66 /* Deferred Access Checking Overview
67 ---------------------------------
68
69 Most C++ expressions and declarations require access checking
70 to be performed during parsing. However, in several cases,
71 this has to be treated differently.
72
73 For member declarations, access checking has to be deferred
74 until more information about the declaration is known. For
75 example:
76
77 class A {
78 typedef int X;
79 public:
80 X f();
81 };
82
83 A::X A::f();
84 A::X g();
85
86 When we are parsing the function return type `A::X', we don't
87 really know if this is allowed until we parse the function name.
88
89 Furthermore, some contexts require that access checking is
90 never performed at all. These include class heads, and template
91 instantiations.
92
93 Typical use of access checking functions is described here:
94
95 1. When we enter a context that requires certain access checking
96 mode, the function `push_deferring_access_checks' is called with
97 DEFERRING argument specifying the desired mode. Access checking
98 may be performed immediately (dk_no_deferred), deferred
99 (dk_deferred), or not performed (dk_no_check).
100
101 2. When a declaration such as a type, or a variable, is encountered,
102 the function `perform_or_defer_access_check' is called. It
103 maintains a TREE_LIST of all deferred checks.
104
105 3. The global `current_class_type' or `current_function_decl' is then
106 setup by the parser. `enforce_access' relies on these information
107 to check access.
108
109 4. Upon exiting the context mentioned in step 1,
110 `perform_deferred_access_checks' is called to check all declaration
111 stored in the TREE_LIST. `pop_deferring_access_checks' is then
112 called to restore the previous access checking mode.
113
114 In case of parsing error, we simply call `pop_deferring_access_checks'
115 without `perform_deferred_access_checks'. */
116
117 typedef struct deferred_access GTY(())
118 {
119 /* A TREE_LIST representing name-lookups for which we have deferred
120 checking access controls. We cannot check the accessibility of
121 names used in a decl-specifier-seq until we know what is being
122 declared because code like:
123
124 class A {
125 class B {};
126 B* f();
127 }
128
129 A::B* A::f() { return 0; }
130
131 is valid, even though `A::B' is not generally accessible.
132
133 The TREE_PURPOSE of each node is the scope used to qualify the
134 name being looked up; the TREE_VALUE is the DECL to which the
135 name was resolved. */
136 tree deferred_access_checks;
137
138 /* The current mode of access checks. */
139 enum deferring_kind deferring_access_checks_kind;
140
141 } deferred_access;
142 DEF_VEC_GC_O (deferred_access);
143
144 /* Data for deferred access checking. */
145 static GTY(()) VEC (deferred_access) *deferred_access_stack;
146 static GTY(()) unsigned deferred_access_no_check;
147
148 /* Save the current deferred access states and start deferred
149 access checking iff DEFER_P is true. */
150
151 void
152 push_deferring_access_checks (deferring_kind deferring)
153 {
154 /* For context like template instantiation, access checking
155 disabling applies to all nested context. */
156 if (deferred_access_no_check || deferring == dk_no_check)
157 deferred_access_no_check++;
158 else
159 {
160 deferred_access *ptr;
161
162 ptr = VEC_safe_push (deferred_access, deferred_access_stack, NULL);
163 ptr->deferred_access_checks = NULL_TREE;
164 ptr->deferring_access_checks_kind = deferring;
165 }
166 }
167
168 /* Resume deferring access checks again after we stopped doing
169 this previously. */
170
171 void
172 resume_deferring_access_checks (void)
173 {
174 if (!deferred_access_no_check)
175 VEC_last (deferred_access, deferred_access_stack)
176 ->deferring_access_checks_kind = dk_deferred;
177 }
178
179 /* Stop deferring access checks. */
180
181 void
182 stop_deferring_access_checks (void)
183 {
184 if (!deferred_access_no_check)
185 VEC_last (deferred_access, deferred_access_stack)
186 ->deferring_access_checks_kind = dk_no_deferred;
187 }
188
189 /* Discard the current deferred access checks and restore the
190 previous states. */
191
192 void
193 pop_deferring_access_checks (void)
194 {
195 if (deferred_access_no_check)
196 deferred_access_no_check--;
197 else
198 VEC_pop (deferred_access, deferred_access_stack);
199 }
200
201 /* Returns a TREE_LIST representing the deferred checks.
202 The TREE_PURPOSE of each node is the type through which the
203 access occurred; the TREE_VALUE is the declaration named.
204 */
205
206 tree
207 get_deferred_access_checks (void)
208 {
209 if (deferred_access_no_check)
210 return NULL;
211 else
212 return (VEC_last (deferred_access, deferred_access_stack)
213 ->deferred_access_checks);
214 }
215
216 /* Take current deferred checks and combine with the
217 previous states if we also defer checks previously.
218 Otherwise perform checks now. */
219
220 void
221 pop_to_parent_deferring_access_checks (void)
222 {
223 if (deferred_access_no_check)
224 deferred_access_no_check--;
225 else
226 {
227 tree checks;
228 deferred_access *ptr;
229
230 checks = (VEC_last (deferred_access, deferred_access_stack)
231 ->deferred_access_checks);
232
233 VEC_pop (deferred_access, deferred_access_stack);
234 ptr = VEC_last (deferred_access, deferred_access_stack);
235 if (ptr->deferring_access_checks_kind == dk_no_deferred)
236 {
237 /* Check access. */
238 for (; checks; checks = TREE_CHAIN (checks))
239 enforce_access (TREE_PURPOSE (checks),
240 TREE_VALUE (checks));
241 }
242 else
243 {
244 /* Merge with parent. */
245 tree next;
246 tree original = ptr->deferred_access_checks;
247
248 for (; checks; checks = next)
249 {
250 tree probe;
251
252 next = TREE_CHAIN (checks);
253
254 for (probe = original; probe; probe = TREE_CHAIN (probe))
255 if (TREE_VALUE (probe) == TREE_VALUE (checks)
256 && TREE_PURPOSE (probe) == TREE_PURPOSE (checks))
257 goto found;
258 /* Insert into parent's checks. */
259 TREE_CHAIN (checks) = ptr->deferred_access_checks;
260 ptr->deferred_access_checks = checks;
261 found:;
262 }
263 }
264 }
265 }
266
267 /* Perform the deferred access checks.
268
269 After performing the checks, we still have to keep the list
270 `deferred_access_stack->deferred_access_checks' since we may want
271 to check access for them again later in a different context.
272 For example:
273
274 class A {
275 typedef int X;
276 static X a;
277 };
278 A::X A::a, x; // No error for `A::a', error for `x'
279
280 We have to perform deferred access of `A::X', first with `A::a',
281 next with `x'. */
282
283 void
284 perform_deferred_access_checks (void)
285 {
286 tree deferred_check;
287
288 for (deferred_check = (VEC_last (deferred_access, deferred_access_stack)
289 ->deferred_access_checks);
290 deferred_check;
291 deferred_check = TREE_CHAIN (deferred_check))
292 /* Check access. */
293 enforce_access (TREE_PURPOSE (deferred_check),
294 TREE_VALUE (deferred_check));
295 }
296
297 /* Defer checking the accessibility of DECL, when looked up in
298 BINFO. */
299
300 void
301 perform_or_defer_access_check (tree binfo, tree decl)
302 {
303 tree check;
304 deferred_access *ptr;
305
306 /* Exit if we are in a context that no access checking is performed.
307 */
308 if (deferred_access_no_check)
309 return;
310
311 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
312
313 ptr = VEC_last (deferred_access, deferred_access_stack);
314
315 /* If we are not supposed to defer access checks, just check now. */
316 if (ptr->deferring_access_checks_kind == dk_no_deferred)
317 {
318 enforce_access (binfo, decl);
319 return;
320 }
321
322 /* See if we are already going to perform this check. */
323 for (check = ptr->deferred_access_checks;
324 check;
325 check = TREE_CHAIN (check))
326 if (TREE_VALUE (check) == decl && TREE_PURPOSE (check) == binfo)
327 return;
328 /* If not, record the check. */
329 ptr->deferred_access_checks
330 = tree_cons (binfo, decl, ptr->deferred_access_checks);
331 }
332
333 /* Returns nonzero if the current statement is a full expression,
334 i.e. temporaries created during that statement should be destroyed
335 at the end of the statement. */
336
337 int
338 stmts_are_full_exprs_p (void)
339 {
340 return current_stmt_tree ()->stmts_are_full_exprs_p;
341 }
342
343 /* Returns the stmt_tree (if any) to which statements are currently
344 being added. If there is no active statement-tree, NULL is
345 returned. */
346
347 stmt_tree
348 current_stmt_tree (void)
349 {
350 return (cfun
351 ? &cfun->language->base.x_stmt_tree
352 : &scope_chain->x_stmt_tree);
353 }
354
355 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
356
357 static tree
358 maybe_cleanup_point_expr (tree expr)
359 {
360 if (!processing_template_decl && stmts_are_full_exprs_p ())
361 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
362 return expr;
363 }
364
365 /* Like maybe_cleanup_point_expr except have the type of the new expression be
366 void so we don't need to create a temporary variable to hold the inner
367 expression. The reason why we do this is because the original type might be
368 an aggregate and we cannot create a temporary variable for that type. */
369
370 static tree
371 maybe_cleanup_point_expr_void (tree expr)
372 {
373 if (!processing_template_decl && stmts_are_full_exprs_p ())
374 expr = fold_build_cleanup_point_expr (void_type_node, expr);
375 return expr;
376 }
377
378
379
380 /* Create a declaration statement for the declaration given by the DECL. */
381
382 void
383 add_decl_expr (tree decl)
384 {
385 tree r = build_stmt (DECL_EXPR, decl);
386 if (DECL_INITIAL (decl)
387 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
388 r = maybe_cleanup_point_expr_void (r);
389 add_stmt (r);
390 }
391
392 /* Nonzero if TYPE is an anonymous union or struct type. We have to use a
393 flag for this because "A union for which objects or pointers are
394 declared is not an anonymous union" [class.union]. */
395
396 int
397 anon_aggr_type_p (tree node)
398 {
399 return ANON_AGGR_TYPE_P (node);
400 }
401
402 /* Finish a scope. */
403
404 tree
405 do_poplevel (tree stmt_list)
406 {
407 tree block = NULL;
408
409 if (stmts_are_full_exprs_p ())
410 block = poplevel (kept_level_p (), 1, 0);
411
412 stmt_list = pop_stmt_list (stmt_list);
413
414 if (!processing_template_decl)
415 {
416 stmt_list = c_build_bind_expr (block, stmt_list);
417 /* ??? See c_end_compound_stmt re statement expressions. */
418 }
419
420 return stmt_list;
421 }
422
423 /* Begin a new scope. */
424
425 static tree
426 do_pushlevel (scope_kind sk)
427 {
428 tree ret = push_stmt_list ();
429 if (stmts_are_full_exprs_p ())
430 begin_scope (sk, NULL);
431 return ret;
432 }
433
434 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
435 when the current scope is exited. EH_ONLY is true when this is not
436 meant to apply to normal control flow transfer. */
437
438 void
439 push_cleanup (tree decl, tree cleanup, bool eh_only)
440 {
441 tree stmt = build_stmt (CLEANUP_STMT, NULL, cleanup, decl);
442 CLEANUP_EH_ONLY (stmt) = eh_only;
443 add_stmt (stmt);
444 CLEANUP_BODY (stmt) = push_stmt_list ();
445 }
446
447 /* Begin a conditional that might contain a declaration. When generating
448 normal code, we want the declaration to appear before the statement
449 containing the conditional. When generating template code, we want the
450 conditional to be rendered as the raw DECL_EXPR. */
451
452 static void
453 begin_cond (tree *cond_p)
454 {
455 if (processing_template_decl)
456 *cond_p = push_stmt_list ();
457 }
458
459 /* Finish such a conditional. */
460
461 static void
462 finish_cond (tree *cond_p, tree expr)
463 {
464 if (processing_template_decl)
465 {
466 tree cond = pop_stmt_list (*cond_p);
467 if (TREE_CODE (cond) == DECL_EXPR)
468 expr = cond;
469 }
470 *cond_p = expr;
471 }
472
473 /* If *COND_P specifies a conditional with a declaration, transform the
474 loop such that
475 while (A x = 42) { }
476 for (; A x = 42;) { }
477 becomes
478 while (true) { A x = 42; if (!x) break; }
479 for (;;) { A x = 42; if (!x) break; }
480 The statement list for BODY will be empty if the conditional did
481 not declare anything. */
482
483 static void
484 simplify_loop_decl_cond (tree *cond_p, tree body)
485 {
486 tree cond, if_stmt;
487
488 if (!TREE_SIDE_EFFECTS (body))
489 return;
490
491 cond = *cond_p;
492 *cond_p = boolean_true_node;
493
494 if_stmt = begin_if_stmt ();
495 cond = build_unary_op (TRUTH_NOT_EXPR, cond, 0);
496 finish_if_stmt_cond (cond, if_stmt);
497 finish_break_stmt ();
498 finish_then_clause (if_stmt);
499 finish_if_stmt (if_stmt);
500 }
501
502 /* Finish a goto-statement. */
503
504 tree
505 finish_goto_stmt (tree destination)
506 {
507 if (TREE_CODE (destination) == IDENTIFIER_NODE)
508 destination = lookup_label (destination);
509
510 /* We warn about unused labels with -Wunused. That means we have to
511 mark the used labels as used. */
512 if (TREE_CODE (destination) == LABEL_DECL)
513 TREE_USED (destination) = 1;
514 else
515 {
516 /* The DESTINATION is being used as an rvalue. */
517 if (!processing_template_decl)
518 destination = decay_conversion (destination);
519 /* We don't inline calls to functions with computed gotos.
520 Those functions are typically up to some funny business,
521 and may be depending on the labels being at particular
522 addresses, or some such. */
523 DECL_UNINLINABLE (current_function_decl) = 1;
524 }
525
526 check_goto (destination);
527
528 return add_stmt (build_stmt (GOTO_EXPR, destination));
529 }
530
531 /* COND is the condition-expression for an if, while, etc.,
532 statement. Convert it to a boolean value, if appropriate. */
533
534 static tree
535 maybe_convert_cond (tree cond)
536 {
537 /* Empty conditions remain empty. */
538 if (!cond)
539 return NULL_TREE;
540
541 /* Wait until we instantiate templates before doing conversion. */
542 if (processing_template_decl)
543 return cond;
544
545 /* Do the conversion. */
546 cond = convert_from_reference (cond);
547 return condition_conversion (cond);
548 }
549
550 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
551
552 tree
553 finish_expr_stmt (tree expr)
554 {
555 tree r = NULL_TREE;
556
557 if (expr != NULL_TREE)
558 {
559 if (!processing_template_decl)
560 {
561 if (warn_sequence_point)
562 verify_sequence_points (expr);
563 expr = convert_to_void (expr, "statement");
564 }
565 else if (!type_dependent_expression_p (expr))
566 convert_to_void (build_non_dependent_expr (expr), "statement");
567
568 /* Simplification of inner statement expressions, compound exprs,
569 etc can result in us already having an EXPR_STMT. */
570 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
571 {
572 if (TREE_CODE (expr) != EXPR_STMT)
573 expr = build_stmt (EXPR_STMT, expr);
574 expr = maybe_cleanup_point_expr_void (expr);
575 }
576
577 r = add_stmt (expr);
578 }
579
580 finish_stmt ();
581
582 return r;
583 }
584
585
586 /* Begin an if-statement. Returns a newly created IF_STMT if
587 appropriate. */
588
589 tree
590 begin_if_stmt (void)
591 {
592 tree r, scope;
593 scope = do_pushlevel (sk_block);
594 r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
595 TREE_CHAIN (r) = scope;
596 begin_cond (&IF_COND (r));
597 return r;
598 }
599
600 /* Process the COND of an if-statement, which may be given by
601 IF_STMT. */
602
603 void
604 finish_if_stmt_cond (tree cond, tree if_stmt)
605 {
606 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
607 add_stmt (if_stmt);
608 THEN_CLAUSE (if_stmt) = push_stmt_list ();
609 }
610
611 /* Finish the then-clause of an if-statement, which may be given by
612 IF_STMT. */
613
614 tree
615 finish_then_clause (tree if_stmt)
616 {
617 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
618 return if_stmt;
619 }
620
621 /* Begin the else-clause of an if-statement. */
622
623 void
624 begin_else_clause (tree if_stmt)
625 {
626 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
627 }
628
629 /* Finish the else-clause of an if-statement, which may be given by
630 IF_STMT. */
631
632 void
633 finish_else_clause (tree if_stmt)
634 {
635 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
636 }
637
638 /* Finish an if-statement. */
639
640 void
641 finish_if_stmt (tree if_stmt)
642 {
643 tree scope = TREE_CHAIN (if_stmt);
644 TREE_CHAIN (if_stmt) = NULL;
645 add_stmt (do_poplevel (scope));
646 finish_stmt ();
647 }
648
649 /* Begin a while-statement. Returns a newly created WHILE_STMT if
650 appropriate. */
651
652 tree
653 begin_while_stmt (void)
654 {
655 tree r;
656 r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
657 add_stmt (r);
658 WHILE_BODY (r) = do_pushlevel (sk_block);
659 begin_cond (&WHILE_COND (r));
660 return r;
661 }
662
663 /* Process the COND of a while-statement, which may be given by
664 WHILE_STMT. */
665
666 void
667 finish_while_stmt_cond (tree cond, tree while_stmt)
668 {
669 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
670 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
671 }
672
673 /* Finish a while-statement, which may be given by WHILE_STMT. */
674
675 void
676 finish_while_stmt (tree while_stmt)
677 {
678 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
679 finish_stmt ();
680 }
681
682 /* Begin a do-statement. Returns a newly created DO_STMT if
683 appropriate. */
684
685 tree
686 begin_do_stmt (void)
687 {
688 tree r = build_stmt (DO_STMT, NULL_TREE, NULL_TREE);
689 add_stmt (r);
690 DO_BODY (r) = push_stmt_list ();
691 return r;
692 }
693
694 /* Finish the body of a do-statement, which may be given by DO_STMT. */
695
696 void
697 finish_do_body (tree do_stmt)
698 {
699 DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
700 }
701
702 /* Finish a do-statement, which may be given by DO_STMT, and whose
703 COND is as indicated. */
704
705 void
706 finish_do_stmt (tree cond, tree do_stmt)
707 {
708 cond = maybe_convert_cond (cond);
709 DO_COND (do_stmt) = cond;
710 finish_stmt ();
711 }
712
713 /* Finish a return-statement. The EXPRESSION returned, if any, is as
714 indicated. */
715
716 tree
717 finish_return_stmt (tree expr)
718 {
719 tree r;
720
721 expr = check_return_expr (expr);
722 if (!processing_template_decl)
723 {
724 if (DECL_DESTRUCTOR_P (current_function_decl)
725 || (DECL_CONSTRUCTOR_P (current_function_decl)
726 && targetm.cxx.cdtor_returns_this ()))
727 {
728 /* Similarly, all destructors must run destructors for
729 base-classes before returning. So, all returns in a
730 destructor get sent to the DTOR_LABEL; finish_function emits
731 code to return a value there. */
732 return finish_goto_stmt (cdtor_label);
733 }
734 }
735
736 r = build_stmt (RETURN_EXPR, expr);
737 r = maybe_cleanup_point_expr_void (r);
738 r = add_stmt (r);
739 finish_stmt ();
740
741 return r;
742 }
743
744 /* Begin a for-statement. Returns a new FOR_STMT if appropriate. */
745
746 tree
747 begin_for_stmt (void)
748 {
749 tree r;
750
751 r = build_stmt (FOR_STMT, NULL_TREE, NULL_TREE,
752 NULL_TREE, NULL_TREE);
753
754 if (flag_new_for_scope > 0)
755 TREE_CHAIN (r) = do_pushlevel (sk_for);
756
757 if (processing_template_decl)
758 FOR_INIT_STMT (r) = push_stmt_list ();
759
760 return r;
761 }
762
763 /* Finish the for-init-statement of a for-statement, which may be
764 given by FOR_STMT. */
765
766 void
767 finish_for_init_stmt (tree for_stmt)
768 {
769 if (processing_template_decl)
770 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
771 add_stmt (for_stmt);
772 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
773 begin_cond (&FOR_COND (for_stmt));
774 }
775
776 /* Finish the COND of a for-statement, which may be given by
777 FOR_STMT. */
778
779 void
780 finish_for_cond (tree cond, tree for_stmt)
781 {
782 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
783 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
784 }
785
786 /* Finish the increment-EXPRESSION in a for-statement, which may be
787 given by FOR_STMT. */
788
789 void
790 finish_for_expr (tree expr, tree for_stmt)
791 {
792 if (!expr)
793 return;
794 /* If EXPR is an overloaded function, issue an error; there is no
795 context available to use to perform overload resolution. */
796 if (type_unknown_p (expr))
797 {
798 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
799 expr = error_mark_node;
800 }
801 if (!processing_template_decl)
802 {
803 if (warn_sequence_point)
804 verify_sequence_points (expr);
805 expr = convert_to_void (expr, "3rd expression in for");
806 }
807 else if (!type_dependent_expression_p (expr))
808 convert_to_void (build_non_dependent_expr (expr), "3rd expression in for");
809 expr = maybe_cleanup_point_expr_void (expr);
810 FOR_EXPR (for_stmt) = expr;
811 }
812
813 /* Finish the body of a for-statement, which may be given by
814 FOR_STMT. The increment-EXPR for the loop must be
815 provided. */
816
817 void
818 finish_for_stmt (tree for_stmt)
819 {
820 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
821
822 /* Pop the scope for the body of the loop. */
823 if (flag_new_for_scope > 0)
824 {
825 tree scope = TREE_CHAIN (for_stmt);
826 TREE_CHAIN (for_stmt) = NULL;
827 add_stmt (do_poplevel (scope));
828 }
829
830 finish_stmt ();
831 }
832
833 /* Finish a break-statement. */
834
835 tree
836 finish_break_stmt (void)
837 {
838 return add_stmt (build_break_stmt ());
839 }
840
841 /* Finish a continue-statement. */
842
843 tree
844 finish_continue_stmt (void)
845 {
846 return add_stmt (build_continue_stmt ());
847 }
848
849 /* Begin a switch-statement. Returns a new SWITCH_STMT if
850 appropriate. */
851
852 tree
853 begin_switch_stmt (void)
854 {
855 tree r, scope;
856
857 r = build_stmt (SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
858
859 scope = do_pushlevel (sk_block);
860 TREE_CHAIN (r) = scope;
861 begin_cond (&SWITCH_COND (r));
862
863 return r;
864 }
865
866 /* Finish the cond of a switch-statement. */
867
868 void
869 finish_switch_cond (tree cond, tree switch_stmt)
870 {
871 tree orig_type = NULL;
872 if (!processing_template_decl)
873 {
874 tree index;
875
876 /* Convert the condition to an integer or enumeration type. */
877 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
878 if (cond == NULL_TREE)
879 {
880 error ("switch quantity not an integer");
881 cond = error_mark_node;
882 }
883 orig_type = TREE_TYPE (cond);
884 if (cond != error_mark_node)
885 {
886 /* [stmt.switch]
887
888 Integral promotions are performed. */
889 cond = perform_integral_promotions (cond);
890 cond = maybe_cleanup_point_expr (cond);
891 }
892
893 if (cond != error_mark_node)
894 {
895 index = get_unwidened (cond, NULL_TREE);
896 /* We can't strip a conversion from a signed type to an unsigned,
897 because if we did, int_fits_type_p would do the wrong thing
898 when checking case values for being in range,
899 and it's too hard to do the right thing. */
900 if (TYPE_UNSIGNED (TREE_TYPE (cond))
901 == TYPE_UNSIGNED (TREE_TYPE (index)))
902 cond = index;
903 }
904 }
905 finish_cond (&SWITCH_COND (switch_stmt), cond);
906 SWITCH_TYPE (switch_stmt) = orig_type;
907 add_stmt (switch_stmt);
908 push_switch (switch_stmt);
909 SWITCH_BODY (switch_stmt) = push_stmt_list ();
910 }
911
912 /* Finish the body of a switch-statement, which may be given by
913 SWITCH_STMT. The COND to switch on is indicated. */
914
915 void
916 finish_switch_stmt (tree switch_stmt)
917 {
918 tree scope;
919
920 SWITCH_BODY (switch_stmt) = pop_stmt_list (SWITCH_BODY (switch_stmt));
921 pop_switch ();
922 finish_stmt ();
923
924 scope = TREE_CHAIN (switch_stmt);
925 TREE_CHAIN (switch_stmt) = NULL;
926 add_stmt (do_poplevel (scope));
927 }
928
929 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
930 appropriate. */
931
932 tree
933 begin_try_block (void)
934 {
935 tree r = build_stmt (TRY_BLOCK, NULL_TREE, NULL_TREE);
936 add_stmt (r);
937 TRY_STMTS (r) = push_stmt_list ();
938 return r;
939 }
940
941 /* Likewise, for a function-try-block. */
942
943 tree
944 begin_function_try_block (void)
945 {
946 tree r = begin_try_block ();
947 FN_TRY_BLOCK_P (r) = 1;
948 return r;
949 }
950
951 /* Finish a try-block, which may be given by TRY_BLOCK. */
952
953 void
954 finish_try_block (tree try_block)
955 {
956 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
957 TRY_HANDLERS (try_block) = push_stmt_list ();
958 }
959
960 /* Finish the body of a cleanup try-block, which may be given by
961 TRY_BLOCK. */
962
963 void
964 finish_cleanup_try_block (tree try_block)
965 {
966 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
967 }
968
969 /* Finish an implicitly generated try-block, with a cleanup is given
970 by CLEANUP. */
971
972 void
973 finish_cleanup (tree cleanup, tree try_block)
974 {
975 TRY_HANDLERS (try_block) = cleanup;
976 CLEANUP_P (try_block) = 1;
977 }
978
979 /* Likewise, for a function-try-block. */
980
981 void
982 finish_function_try_block (tree try_block)
983 {
984 finish_try_block (try_block);
985 /* FIXME : something queer about CTOR_INITIALIZER somehow following
986 the try block, but moving it inside. */
987 in_function_try_handler = 1;
988 }
989
990 /* Finish a handler-sequence for a try-block, which may be given by
991 TRY_BLOCK. */
992
993 void
994 finish_handler_sequence (tree try_block)
995 {
996 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
997 check_handlers (TRY_HANDLERS (try_block));
998 }
999
1000 /* Likewise, for a function-try-block. */
1001
1002 void
1003 finish_function_handler_sequence (tree try_block)
1004 {
1005 in_function_try_handler = 0;
1006 finish_handler_sequence (try_block);
1007 }
1008
1009 /* Begin a handler. Returns a HANDLER if appropriate. */
1010
1011 tree
1012 begin_handler (void)
1013 {
1014 tree r;
1015
1016 r = build_stmt (HANDLER, NULL_TREE, NULL_TREE);
1017 add_stmt (r);
1018
1019 /* Create a binding level for the eh_info and the exception object
1020 cleanup. */
1021 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1022
1023 return r;
1024 }
1025
1026 /* Finish the handler-parameters for a handler, which may be given by
1027 HANDLER. DECL is the declaration for the catch parameter, or NULL
1028 if this is a `catch (...)' clause. */
1029
1030 void
1031 finish_handler_parms (tree decl, tree handler)
1032 {
1033 tree type = NULL_TREE;
1034 if (processing_template_decl)
1035 {
1036 if (decl)
1037 {
1038 decl = pushdecl (decl);
1039 decl = push_template_decl (decl);
1040 HANDLER_PARMS (handler) = decl;
1041 type = TREE_TYPE (decl);
1042 }
1043 }
1044 else
1045 type = expand_start_catch_block (decl);
1046
1047 HANDLER_TYPE (handler) = type;
1048 if (!processing_template_decl && type)
1049 mark_used (eh_type_info (type));
1050 }
1051
1052 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1053 the return value from the matching call to finish_handler_parms. */
1054
1055 void
1056 finish_handler (tree handler)
1057 {
1058 if (!processing_template_decl)
1059 expand_end_catch_block ();
1060 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1061 }
1062
1063 /* Begin a compound statement. FLAGS contains some bits that control the
1064 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1065 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1066 block of a function. If BCS_TRY_BLOCK is set, this is the block
1067 created on behalf of a TRY statement. Returns a token to be passed to
1068 finish_compound_stmt. */
1069
1070 tree
1071 begin_compound_stmt (unsigned int flags)
1072 {
1073 tree r;
1074
1075 if (flags & BCS_NO_SCOPE)
1076 {
1077 r = push_stmt_list ();
1078 STATEMENT_LIST_NO_SCOPE (r) = 1;
1079
1080 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1081 But, if it's a statement-expression with a scopeless block, there's
1082 nothing to keep, and we don't want to accidentally keep a block
1083 *inside* the scopeless block. */
1084 keep_next_level (false);
1085 }
1086 else
1087 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1088
1089 /* When processing a template, we need to remember where the braces were,
1090 so that we can set up identical scopes when instantiating the template
1091 later. BIND_EXPR is a handy candidate for this.
1092 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1093 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1094 processing templates. */
1095 if (processing_template_decl)
1096 {
1097 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1098 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1099 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1100 TREE_SIDE_EFFECTS (r) = 1;
1101 }
1102
1103 return r;
1104 }
1105
1106 /* Finish a compound-statement, which is given by STMT. */
1107
1108 void
1109 finish_compound_stmt (tree stmt)
1110 {
1111 if (TREE_CODE (stmt) == BIND_EXPR)
1112 BIND_EXPR_BODY (stmt) = do_poplevel (BIND_EXPR_BODY (stmt));
1113 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1114 stmt = pop_stmt_list (stmt);
1115 else
1116 {
1117 /* Destroy any ObjC "super" receivers that may have been
1118 created. */
1119 objc_clear_super_receiver ();
1120
1121 stmt = do_poplevel (stmt);
1122 }
1123
1124 /* ??? See c_end_compound_stmt wrt statement expressions. */
1125 add_stmt (stmt);
1126 finish_stmt ();
1127 }
1128
1129 /* Finish an asm-statement, whose components are a STRING, some
1130 OUTPUT_OPERANDS, some INPUT_OPERANDS, and some CLOBBERS. Also note
1131 whether the asm-statement should be considered volatile. */
1132
1133 tree
1134 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1135 tree input_operands, tree clobbers)
1136 {
1137 tree r;
1138 tree t;
1139
1140 if (!processing_template_decl)
1141 {
1142 int i;
1143 int ninputs;
1144 int noutputs;
1145
1146 for (t = input_operands; t; t = TREE_CHAIN (t))
1147 {
1148 tree converted_operand
1149 = decay_conversion (TREE_VALUE (t));
1150
1151 /* If the type of the operand hasn't been determined (e.g.,
1152 because it involves an overloaded function), then issue
1153 an error message. There's no context available to
1154 resolve the overloading. */
1155 if (TREE_TYPE (converted_operand) == unknown_type_node)
1156 {
1157 error ("type of asm operand %qE could not be determined",
1158 TREE_VALUE (t));
1159 converted_operand = error_mark_node;
1160 }
1161 TREE_VALUE (t) = converted_operand;
1162 }
1163
1164 ninputs = list_length (input_operands);
1165 noutputs = list_length (output_operands);
1166
1167 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1168 {
1169 bool allows_mem;
1170 bool allows_reg;
1171 bool is_inout;
1172 const char *constraint;
1173 tree operand;
1174
1175 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1176 operand = TREE_VALUE (t);
1177
1178 if (!parse_output_constraint (&constraint,
1179 i, ninputs, noutputs,
1180 &allows_mem,
1181 &allows_reg,
1182 &is_inout))
1183 {
1184 /* By marking this operand as erroneous, we will not try
1185 to process this operand again in expand_asm_operands. */
1186 TREE_VALUE (t) = error_mark_node;
1187 continue;
1188 }
1189
1190 /* If the operand is a DECL that is going to end up in
1191 memory, assume it is addressable. This is a bit more
1192 conservative than it would ideally be; the exact test is
1193 buried deep in expand_asm_operands and depends on the
1194 DECL_RTL for the OPERAND -- which we don't have at this
1195 point. */
1196 if (!allows_reg && DECL_P (operand))
1197 cxx_mark_addressable (operand);
1198 }
1199 }
1200
1201 r = build_stmt (ASM_EXPR, string,
1202 output_operands, input_operands,
1203 clobbers);
1204 ASM_VOLATILE_P (r) = volatile_p;
1205 r = maybe_cleanup_point_expr_void (r);
1206 return add_stmt (r);
1207 }
1208
1209 /* Finish a label with the indicated NAME. */
1210
1211 tree
1212 finish_label_stmt (tree name)
1213 {
1214 tree decl = define_label (input_location, name);
1215 return add_stmt (build_stmt (LABEL_EXPR, decl));
1216 }
1217
1218 /* Finish a series of declarations for local labels. G++ allows users
1219 to declare "local" labels, i.e., labels with scope. This extension
1220 is useful when writing code involving statement-expressions. */
1221
1222 void
1223 finish_label_decl (tree name)
1224 {
1225 tree decl = declare_local_label (name);
1226 add_decl_expr (decl);
1227 }
1228
1229 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1230
1231 void
1232 finish_decl_cleanup (tree decl, tree cleanup)
1233 {
1234 push_cleanup (decl, cleanup, false);
1235 }
1236
1237 /* If the current scope exits with an exception, run CLEANUP. */
1238
1239 void
1240 finish_eh_cleanup (tree cleanup)
1241 {
1242 push_cleanup (NULL, cleanup, true);
1243 }
1244
1245 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1246 order they were written by the user. Each node is as for
1247 emit_mem_initializers. */
1248
1249 void
1250 finish_mem_initializers (tree mem_inits)
1251 {
1252 /* Reorder the MEM_INITS so that they are in the order they appeared
1253 in the source program. */
1254 mem_inits = nreverse (mem_inits);
1255
1256 if (processing_template_decl)
1257 add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
1258 else
1259 emit_mem_initializers (mem_inits);
1260 }
1261
1262 /* Finish a parenthesized expression EXPR. */
1263
1264 tree
1265 finish_parenthesized_expr (tree expr)
1266 {
1267 if (EXPR_P (expr))
1268 /* This inhibits warnings in c_common_truthvalue_conversion. */
1269 TREE_NO_WARNING (expr) = 1;
1270
1271 if (TREE_CODE (expr) == OFFSET_REF)
1272 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1273 enclosed in parentheses. */
1274 PTRMEM_OK_P (expr) = 0;
1275 return expr;
1276 }
1277
1278 /* Finish a reference to a non-static data member (DECL) that is not
1279 preceded by `.' or `->'. */
1280
1281 tree
1282 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1283 {
1284 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1285
1286 if (!object)
1287 {
1288 if (current_function_decl
1289 && DECL_STATIC_FUNCTION_P (current_function_decl))
1290 cp_error_at ("invalid use of member %qD in static member function",
1291 decl);
1292 else
1293 cp_error_at ("invalid use of non-static data member %qD", decl);
1294 error ("from this location");
1295
1296 return error_mark_node;
1297 }
1298 TREE_USED (current_class_ptr) = 1;
1299 if (processing_template_decl && !qualifying_scope)
1300 {
1301 tree type = TREE_TYPE (decl);
1302
1303 if (TREE_CODE (type) == REFERENCE_TYPE)
1304 type = TREE_TYPE (type);
1305 else
1306 {
1307 /* Set the cv qualifiers. */
1308 int quals = cp_type_quals (TREE_TYPE (current_class_ref));
1309
1310 if (DECL_MUTABLE_P (decl))
1311 quals &= ~TYPE_QUAL_CONST;
1312
1313 quals |= cp_type_quals (TREE_TYPE (decl));
1314 type = cp_build_qualified_type (type, quals);
1315 }
1316
1317 return build_min (COMPONENT_REF, type, object, decl, NULL_TREE);
1318 }
1319 else
1320 {
1321 tree access_type = TREE_TYPE (object);
1322 tree lookup_context = context_for_name_lookup (decl);
1323
1324 while (!DERIVED_FROM_P (lookup_context, access_type))
1325 {
1326 access_type = TYPE_CONTEXT (access_type);
1327 while (access_type && DECL_P (access_type))
1328 access_type = DECL_CONTEXT (access_type);
1329
1330 if (!access_type)
1331 {
1332 cp_error_at ("object missing in reference to %qD", decl);
1333 error ("from this location");
1334 return error_mark_node;
1335 }
1336 }
1337
1338 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1339 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1340 for now. */
1341 if (processing_template_decl)
1342 return build_min (SCOPE_REF, TREE_TYPE (decl),
1343 qualifying_scope, DECL_NAME (decl));
1344
1345 perform_or_defer_access_check (TYPE_BINFO (access_type), decl);
1346
1347 /* If the data member was named `C::M', convert `*this' to `C'
1348 first. */
1349 if (qualifying_scope)
1350 {
1351 tree binfo = NULL_TREE;
1352 object = build_scoped_ref (object, qualifying_scope,
1353 &binfo);
1354 }
1355
1356 return build_class_member_access_expr (object, decl,
1357 /*access_path=*/NULL_TREE,
1358 /*preserve_reference=*/false);
1359 }
1360 }
1361
1362 /* DECL was the declaration to which a qualified-id resolved. Issue
1363 an error message if it is not accessible. If OBJECT_TYPE is
1364 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1365 type of `*x', or `x', respectively. If the DECL was named as
1366 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1367
1368 void
1369 check_accessibility_of_qualified_id (tree decl,
1370 tree object_type,
1371 tree nested_name_specifier)
1372 {
1373 tree scope;
1374 tree qualifying_type = NULL_TREE;
1375
1376 /* If we're not checking, return immediately. */
1377 if (deferred_access_no_check)
1378 return;
1379
1380 /* Determine the SCOPE of DECL. */
1381 scope = context_for_name_lookup (decl);
1382 /* If the SCOPE is not a type, then DECL is not a member. */
1383 if (!TYPE_P (scope))
1384 return;
1385 /* Compute the scope through which DECL is being accessed. */
1386 if (object_type
1387 /* OBJECT_TYPE might not be a class type; consider:
1388
1389 class A { typedef int I; };
1390 I *p;
1391 p->A::I::~I();
1392
1393 In this case, we will have "A::I" as the DECL, but "I" as the
1394 OBJECT_TYPE. */
1395 && CLASS_TYPE_P (object_type)
1396 && DERIVED_FROM_P (scope, object_type))
1397 /* If we are processing a `->' or `.' expression, use the type of the
1398 left-hand side. */
1399 qualifying_type = object_type;
1400 else if (nested_name_specifier)
1401 {
1402 /* If the reference is to a non-static member of the
1403 current class, treat it as if it were referenced through
1404 `this'. */
1405 if (DECL_NONSTATIC_MEMBER_P (decl)
1406 && current_class_ptr
1407 && DERIVED_FROM_P (scope, current_class_type))
1408 qualifying_type = current_class_type;
1409 /* Otherwise, use the type indicated by the
1410 nested-name-specifier. */
1411 else
1412 qualifying_type = nested_name_specifier;
1413 }
1414 else
1415 /* Otherwise, the name must be from the current class or one of
1416 its bases. */
1417 qualifying_type = currently_open_derived_class (scope);
1418
1419 if (qualifying_type && IS_AGGR_TYPE_CODE (TREE_CODE (qualifying_type)))
1420 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1421 or similar in a default argument value. */
1422 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl);
1423 }
1424
1425 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1426 class named to the left of the "::" operator. DONE is true if this
1427 expression is a complete postfix-expression; it is false if this
1428 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1429 iff this expression is the operand of '&'. */
1430
1431 tree
1432 finish_qualified_id_expr (tree qualifying_class, tree expr, bool done,
1433 bool address_p)
1434 {
1435 if (error_operand_p (expr))
1436 return error_mark_node;
1437
1438 /* If EXPR occurs as the operand of '&', use special handling that
1439 permits a pointer-to-member. */
1440 if (address_p && done)
1441 {
1442 if (TREE_CODE (expr) == SCOPE_REF)
1443 expr = TREE_OPERAND (expr, 1);
1444 expr = build_offset_ref (qualifying_class, expr,
1445 /*address_p=*/true);
1446 return expr;
1447 }
1448
1449 if (TREE_CODE (expr) == FIELD_DECL)
1450 expr = finish_non_static_data_member (expr, current_class_ref,
1451 qualifying_class);
1452 else if (BASELINK_P (expr) && !processing_template_decl)
1453 {
1454 tree fns;
1455
1456 /* See if any of the functions are non-static members. */
1457 fns = BASELINK_FUNCTIONS (expr);
1458 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
1459 fns = TREE_OPERAND (fns, 0);
1460 /* If so, the expression may be relative to the current
1461 class. */
1462 if (!shared_member_p (fns)
1463 && current_class_type
1464 && DERIVED_FROM_P (qualifying_class, current_class_type))
1465 expr = (build_class_member_access_expr
1466 (maybe_dummy_object (qualifying_class, NULL),
1467 expr,
1468 BASELINK_ACCESS_BINFO (expr),
1469 /*preserve_reference=*/false));
1470 else if (done)
1471 /* The expression is a qualified name whose address is not
1472 being taken. */
1473 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1474 }
1475
1476 return expr;
1477 }
1478
1479 /* Begin a statement-expression. The value returned must be passed to
1480 finish_stmt_expr. */
1481
1482 tree
1483 begin_stmt_expr (void)
1484 {
1485 return push_stmt_list ();
1486 }
1487
1488 /* Process the final expression of a statement expression. EXPR can be
1489 NULL, if the final expression is empty. Build up a TARGET_EXPR so
1490 that the result value can be safely returned to the enclosing
1491 expression. */
1492
1493 tree
1494 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1495 {
1496 tree result = NULL_TREE;
1497
1498 if (expr)
1499 {
1500 if (!processing_template_decl && !VOID_TYPE_P (TREE_TYPE (expr)))
1501 {
1502 tree type = TREE_TYPE (expr);
1503
1504 if (TREE_CODE (type) == ARRAY_TYPE
1505 || TREE_CODE (type) == FUNCTION_TYPE)
1506 expr = decay_conversion (expr);
1507
1508 expr = convert_from_reference (expr);
1509 expr = require_complete_type (expr);
1510
1511 type = TREE_TYPE (expr);
1512
1513 /* Build a TARGET_EXPR for this aggregate. finish_stmt_expr
1514 will then pull it apart so the lifetime of the target is
1515 within the scope of the expression containing this statement
1516 expression. */
1517 if (TREE_CODE (expr) == TARGET_EXPR)
1518 ;
1519 else if (!IS_AGGR_TYPE (type) || TYPE_HAS_TRIVIAL_INIT_REF (type))
1520 expr = build_target_expr_with_type (expr, type);
1521 else
1522 {
1523 /* Copy construct. */
1524 expr = build_special_member_call
1525 (NULL_TREE, complete_ctor_identifier,
1526 build_tree_list (NULL_TREE, expr),
1527 type, LOOKUP_NORMAL);
1528 expr = build_cplus_new (type, expr);
1529 gcc_assert (TREE_CODE (expr) == TARGET_EXPR);
1530 }
1531 }
1532
1533 if (expr != error_mark_node)
1534 {
1535 result = build_stmt (EXPR_STMT, expr);
1536 EXPR_STMT_STMT_EXPR_RESULT (result) = 1;
1537 add_stmt (result);
1538 }
1539 }
1540
1541 finish_stmt ();
1542
1543 /* Remember the last expression so that finish_stmt_expr
1544 can pull it apart. */
1545 TREE_TYPE (stmt_expr) = result;
1546
1547 return result;
1548 }
1549
1550 /* Finish a statement-expression. EXPR should be the value returned
1551 by the previous begin_stmt_expr. Returns an expression
1552 representing the statement-expression. */
1553
1554 tree
1555 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1556 {
1557 tree result, result_stmt, type;
1558 tree *result_stmt_p = NULL;
1559
1560 result_stmt = TREE_TYPE (stmt_expr);
1561 TREE_TYPE (stmt_expr) = void_type_node;
1562 result = pop_stmt_list (stmt_expr);
1563
1564 if (!result_stmt || VOID_TYPE_P (result_stmt))
1565 type = void_type_node;
1566 else
1567 {
1568 /* We need to search the statement expression for the result_stmt,
1569 since we'll need to replace it entirely. */
1570 tree t;
1571 result_stmt_p = &result;
1572 while (1)
1573 {
1574 t = *result_stmt_p;
1575 if (t == result_stmt)
1576 break;
1577
1578 switch (TREE_CODE (t))
1579 {
1580 case STATEMENT_LIST:
1581 {
1582 tree_stmt_iterator i = tsi_last (t);
1583 result_stmt_p = tsi_stmt_ptr (i);
1584 break;
1585 }
1586 case BIND_EXPR:
1587 result_stmt_p = &BIND_EXPR_BODY (t);
1588 break;
1589 case TRY_FINALLY_EXPR:
1590 case TRY_CATCH_EXPR:
1591 case CLEANUP_STMT:
1592 result_stmt_p = &TREE_OPERAND (t, 0);
1593 break;
1594 default:
1595 gcc_unreachable ();
1596 }
1597 }
1598 type = TREE_TYPE (EXPR_STMT_EXPR (result_stmt));
1599 }
1600
1601 if (processing_template_decl)
1602 {
1603 result = build_min (STMT_EXPR, type, result);
1604 TREE_SIDE_EFFECTS (result) = 1;
1605 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1606 }
1607 else if (!VOID_TYPE_P (type))
1608 {
1609 /* Pull out the TARGET_EXPR that is the final expression. Put
1610 the target's init_expr as the final expression and then put
1611 the statement expression itself as the target's init
1612 expr. Finally, return the target expression. */
1613 tree init, target_expr = EXPR_STMT_EXPR (result_stmt);
1614 gcc_assert (TREE_CODE (target_expr) == TARGET_EXPR);
1615
1616 /* The initializer will be void if the initialization is done by
1617 AGGR_INIT_EXPR; propagate that out to the statement-expression as
1618 a whole. */
1619 init = TREE_OPERAND (target_expr, 1);
1620 type = TREE_TYPE (init);
1621
1622 init = maybe_cleanup_point_expr (init);
1623 *result_stmt_p = init;
1624
1625 if (VOID_TYPE_P (type))
1626 /* No frobbing needed. */;
1627 else if (TREE_CODE (result) == BIND_EXPR)
1628 {
1629 /* The BIND_EXPR created in finish_compound_stmt is void; if we're
1630 returning a value directly, give it the appropriate type. */
1631 if (VOID_TYPE_P (TREE_TYPE (result)))
1632 TREE_TYPE (result) = type;
1633 else
1634 gcc_assert (same_type_p (TREE_TYPE (result), type));
1635 }
1636 else if (TREE_CODE (result) == STATEMENT_LIST)
1637 /* We need to wrap a STATEMENT_LIST in a BIND_EXPR so it can have a
1638 type other than void. FIXME why can't we just return a value
1639 from STATEMENT_LIST? */
1640 result = build3 (BIND_EXPR, type, NULL, result, NULL);
1641
1642 TREE_OPERAND (target_expr, 1) = result;
1643 result = target_expr;
1644 }
1645
1646 return result;
1647 }
1648
1649 /* Perform Koenig lookup. FN is the postfix-expression representing
1650 the function (or functions) to call; ARGS are the arguments to the
1651 call. Returns the functions to be considered by overload
1652 resolution. */
1653
1654 tree
1655 perform_koenig_lookup (tree fn, tree args)
1656 {
1657 tree identifier = NULL_TREE;
1658 tree functions = NULL_TREE;
1659
1660 /* Find the name of the overloaded function. */
1661 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1662 identifier = fn;
1663 else if (is_overloaded_fn (fn))
1664 {
1665 functions = fn;
1666 identifier = DECL_NAME (get_first_fn (functions));
1667 }
1668 else if (DECL_P (fn))
1669 {
1670 functions = fn;
1671 identifier = DECL_NAME (fn);
1672 }
1673
1674 /* A call to a namespace-scope function using an unqualified name.
1675
1676 Do Koenig lookup -- unless any of the arguments are
1677 type-dependent. */
1678 if (!any_type_dependent_arguments_p (args))
1679 {
1680 fn = lookup_arg_dependent (identifier, functions, args);
1681 if (!fn)
1682 /* The unqualified name could not be resolved. */
1683 fn = unqualified_fn_lookup_error (identifier);
1684 }
1685 else
1686 fn = identifier;
1687
1688 return fn;
1689 }
1690
1691 /* Generate an expression for `FN (ARGS)'.
1692
1693 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
1694 as a virtual call, even if FN is virtual. (This flag is set when
1695 encountering an expression where the function name is explicitly
1696 qualified. For example a call to `X::f' never generates a virtual
1697 call.)
1698
1699 Returns code for the call. */
1700
1701 tree
1702 finish_call_expr (tree fn, tree args, bool disallow_virtual, bool koenig_p)
1703 {
1704 tree result;
1705 tree orig_fn;
1706 tree orig_args;
1707
1708 if (fn == error_mark_node || args == error_mark_node)
1709 return error_mark_node;
1710
1711 /* ARGS should be a list of arguments. */
1712 gcc_assert (!args || TREE_CODE (args) == TREE_LIST);
1713
1714 orig_fn = fn;
1715 orig_args = args;
1716
1717 if (processing_template_decl)
1718 {
1719 if (type_dependent_expression_p (fn)
1720 || any_type_dependent_arguments_p (args))
1721 {
1722 result = build_nt (CALL_EXPR, fn, args, NULL_TREE);
1723 KOENIG_LOOKUP_P (result) = koenig_p;
1724 return result;
1725 }
1726 if (!BASELINK_P (fn)
1727 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
1728 && TREE_TYPE (fn) != unknown_type_node)
1729 fn = build_non_dependent_expr (fn);
1730 args = build_non_dependent_args (orig_args);
1731 }
1732
1733 /* A reference to a member function will appear as an overloaded
1734 function (rather than a BASELINK) if an unqualified name was used
1735 to refer to it. */
1736 if (!BASELINK_P (fn) && is_overloaded_fn (fn))
1737 {
1738 tree f = fn;
1739
1740 if (TREE_CODE (f) == TEMPLATE_ID_EXPR)
1741 f = TREE_OPERAND (f, 0);
1742 f = get_first_fn (f);
1743 if (DECL_FUNCTION_MEMBER_P (f))
1744 {
1745 tree type = currently_open_derived_class (DECL_CONTEXT (f));
1746 if (!type)
1747 type = DECL_CONTEXT (f);
1748 fn = build_baselink (TYPE_BINFO (type),
1749 TYPE_BINFO (type),
1750 fn, /*optype=*/NULL_TREE);
1751 }
1752 }
1753
1754 result = NULL_TREE;
1755 if (BASELINK_P (fn))
1756 {
1757 tree object;
1758
1759 /* A call to a member function. From [over.call.func]:
1760
1761 If the keyword this is in scope and refers to the class of
1762 that member function, or a derived class thereof, then the
1763 function call is transformed into a qualified function call
1764 using (*this) as the postfix-expression to the left of the
1765 . operator.... [Otherwise] a contrived object of type T
1766 becomes the implied object argument.
1767
1768 This paragraph is unclear about this situation:
1769
1770 struct A { void f(); };
1771 struct B : public A {};
1772 struct C : public A { void g() { B::f(); }};
1773
1774 In particular, for `B::f', this paragraph does not make clear
1775 whether "the class of that member function" refers to `A' or
1776 to `B'. We believe it refers to `B'. */
1777 if (current_class_type
1778 && DERIVED_FROM_P (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1779 current_class_type)
1780 && current_class_ref)
1781 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1782 NULL);
1783 else
1784 {
1785 tree representative_fn;
1786
1787 representative_fn = BASELINK_FUNCTIONS (fn);
1788 if (TREE_CODE (representative_fn) == TEMPLATE_ID_EXPR)
1789 representative_fn = TREE_OPERAND (representative_fn, 0);
1790 representative_fn = get_first_fn (representative_fn);
1791 object = build_dummy_object (DECL_CONTEXT (representative_fn));
1792 }
1793
1794 if (processing_template_decl)
1795 {
1796 if (type_dependent_expression_p (object))
1797 return build_nt (CALL_EXPR, orig_fn, orig_args, NULL_TREE);
1798 object = build_non_dependent_expr (object);
1799 }
1800
1801 result = build_new_method_call (object, fn, args, NULL_TREE,
1802 (disallow_virtual
1803 ? LOOKUP_NONVIRTUAL : 0));
1804 }
1805 else if (is_overloaded_fn (fn))
1806 /* A call to a namespace-scope function. */
1807 result = build_new_function_call (fn, args);
1808 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
1809 {
1810 if (args)
1811 error ("arguments to destructor are not allowed");
1812 /* Mark the pseudo-destructor call as having side-effects so
1813 that we do not issue warnings about its use. */
1814 result = build1 (NOP_EXPR,
1815 void_type_node,
1816 TREE_OPERAND (fn, 0));
1817 TREE_SIDE_EFFECTS (result) = 1;
1818 }
1819 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
1820 /* If the "function" is really an object of class type, it might
1821 have an overloaded `operator ()'. */
1822 result = build_new_op (CALL_EXPR, LOOKUP_NORMAL, fn, args, NULL_TREE,
1823 /*overloaded_p=*/NULL);
1824 if (!result)
1825 /* A call where the function is unknown. */
1826 result = build_function_call (fn, args);
1827
1828 if (processing_template_decl)
1829 {
1830 result = build3 (CALL_EXPR, TREE_TYPE (result), orig_fn,
1831 orig_args, NULL_TREE);
1832 KOENIG_LOOKUP_P (result) = koenig_p;
1833 }
1834 return result;
1835 }
1836
1837 /* Finish a call to a postfix increment or decrement or EXPR. (Which
1838 is indicated by CODE, which should be POSTINCREMENT_EXPR or
1839 POSTDECREMENT_EXPR.) */
1840
1841 tree
1842 finish_increment_expr (tree expr, enum tree_code code)
1843 {
1844 return build_x_unary_op (code, expr);
1845 }
1846
1847 /* Finish a use of `this'. Returns an expression for `this'. */
1848
1849 tree
1850 finish_this_expr (void)
1851 {
1852 tree result;
1853
1854 if (current_class_ptr)
1855 {
1856 result = current_class_ptr;
1857 }
1858 else if (current_function_decl
1859 && DECL_STATIC_FUNCTION_P (current_function_decl))
1860 {
1861 error ("%<this%> is unavailable for static member functions");
1862 result = error_mark_node;
1863 }
1864 else
1865 {
1866 if (current_function_decl)
1867 error ("invalid use of %<this%> in non-member function");
1868 else
1869 error ("invalid use of %<this%> at top level");
1870 result = error_mark_node;
1871 }
1872
1873 return result;
1874 }
1875
1876 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
1877 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
1878 the TYPE for the type given. If SCOPE is non-NULL, the expression
1879 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
1880
1881 tree
1882 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
1883 {
1884 if (destructor == error_mark_node)
1885 return error_mark_node;
1886
1887 gcc_assert (TYPE_P (destructor));
1888
1889 if (!processing_template_decl)
1890 {
1891 if (scope == error_mark_node)
1892 {
1893 error ("invalid qualifying scope in pseudo-destructor name");
1894 return error_mark_node;
1895 }
1896
1897 /* [expr.pseudo] says both:
1898
1899 The type designated by the pseudo-destructor-name shall be
1900 the same as the object type.
1901
1902 and:
1903
1904 The cv-unqualified versions of the object type and of the
1905 type designated by the pseudo-destructor-name shall be the
1906 same type.
1907
1908 We implement the more generous second sentence, since that is
1909 what most other compilers do. */
1910 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
1911 destructor))
1912 {
1913 error ("%qE is not of type %qT", object, destructor);
1914 return error_mark_node;
1915 }
1916 }
1917
1918 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
1919 }
1920
1921 /* Finish an expression of the form CODE EXPR. */
1922
1923 tree
1924 finish_unary_op_expr (enum tree_code code, tree expr)
1925 {
1926 tree result = build_x_unary_op (code, expr);
1927 /* Inside a template, build_x_unary_op does not fold the
1928 expression. So check whether the result is folded before
1929 setting TREE_NEGATED_INT. */
1930 if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
1931 && TREE_CODE (result) == INTEGER_CST
1932 && !TYPE_UNSIGNED (TREE_TYPE (result))
1933 && INT_CST_LT (result, integer_zero_node))
1934 TREE_NEGATED_INT (result) = 1;
1935 overflow_warning (result);
1936 return result;
1937 }
1938
1939 /* Finish a compound-literal expression. TYPE is the type to which
1940 the INITIALIZER_LIST is being cast. */
1941
1942 tree
1943 finish_compound_literal (tree type, tree initializer_list)
1944 {
1945 tree compound_literal;
1946
1947 /* Build a CONSTRUCTOR for the INITIALIZER_LIST. */
1948 compound_literal = build_constructor (NULL_TREE, initializer_list);
1949 /* Mark it as a compound-literal. */
1950 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
1951 if (processing_template_decl)
1952 TREE_TYPE (compound_literal) = type;
1953 else
1954 {
1955 /* Check the initialization. */
1956 compound_literal = digest_init (type, compound_literal, NULL);
1957 /* If the TYPE was an array type with an unknown bound, then we can
1958 figure out the dimension now. For example, something like:
1959
1960 `(int []) { 2, 3 }'
1961
1962 implies that the array has two elements. */
1963 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
1964 complete_array_type (type, compound_literal, 1);
1965 }
1966
1967 return compound_literal;
1968 }
1969
1970 /* Return the declaration for the function-name variable indicated by
1971 ID. */
1972
1973 tree
1974 finish_fname (tree id)
1975 {
1976 tree decl;
1977
1978 decl = fname_decl (C_RID_CODE (id), id);
1979 if (processing_template_decl)
1980 decl = DECL_NAME (decl);
1981 return decl;
1982 }
1983
1984 /* Finish a translation unit. */
1985
1986 void
1987 finish_translation_unit (void)
1988 {
1989 /* In case there were missing closebraces,
1990 get us back to the global binding level. */
1991 pop_everything ();
1992 while (current_namespace != global_namespace)
1993 pop_namespace ();
1994
1995 /* Do file scope __FUNCTION__ et al. */
1996 finish_fname_decls ();
1997 }
1998
1999 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2000 Returns the parameter. */
2001
2002 tree
2003 finish_template_type_parm (tree aggr, tree identifier)
2004 {
2005 if (aggr != class_type_node)
2006 {
2007 pedwarn ("template type parameters must use the keyword %<class%> or %<typename%>");
2008 aggr = class_type_node;
2009 }
2010
2011 return build_tree_list (aggr, identifier);
2012 }
2013
2014 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2015 Returns the parameter. */
2016
2017 tree
2018 finish_template_template_parm (tree aggr, tree identifier)
2019 {
2020 tree decl = build_decl (TYPE_DECL, identifier, NULL_TREE);
2021 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2022 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2023 DECL_TEMPLATE_RESULT (tmpl) = decl;
2024 DECL_ARTIFICIAL (decl) = 1;
2025 end_template_decl ();
2026
2027 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2028
2029 return finish_template_type_parm (aggr, tmpl);
2030 }
2031
2032 /* ARGUMENT is the default-argument value for a template template
2033 parameter. If ARGUMENT is invalid, issue error messages and return
2034 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2035
2036 tree
2037 check_template_template_default_arg (tree argument)
2038 {
2039 if (TREE_CODE (argument) != TEMPLATE_DECL
2040 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2041 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2042 {
2043 if (TREE_CODE (argument) == TYPE_DECL)
2044 {
2045 tree t = TREE_TYPE (argument);
2046
2047 /* Try to emit a slightly smarter error message if we detect
2048 that the user is using a template instantiation. */
2049 if (CLASSTYPE_TEMPLATE_INFO (t)
2050 && CLASSTYPE_TEMPLATE_INSTANTIATION (t))
2051 error ("invalid use of type %qT as a default value for a "
2052 "template template-parameter", t);
2053 else
2054 error ("invalid use of %qD as a default value for a template "
2055 "template-parameter", argument);
2056 }
2057 else
2058 error ("invalid default argument for a template template parameter");
2059 return error_mark_node;
2060 }
2061
2062 return argument;
2063 }
2064
2065 /* Begin a class definition, as indicated by T. */
2066
2067 tree
2068 begin_class_definition (tree t)
2069 {
2070 if (t == error_mark_node)
2071 return error_mark_node;
2072
2073 if (processing_template_parmlist)
2074 {
2075 error ("definition of %q#T inside template parameter list", t);
2076 return error_mark_node;
2077 }
2078 /* A non-implicit typename comes from code like:
2079
2080 template <typename T> struct A {
2081 template <typename U> struct A<T>::B ...
2082
2083 This is erroneous. */
2084 else if (TREE_CODE (t) == TYPENAME_TYPE)
2085 {
2086 error ("invalid definition of qualified type %qT", t);
2087 t = error_mark_node;
2088 }
2089
2090 if (t == error_mark_node || ! IS_AGGR_TYPE (t))
2091 {
2092 t = make_aggr_type (RECORD_TYPE);
2093 pushtag (make_anon_name (), t, 0);
2094 }
2095
2096 /* If this type was already complete, and we see another definition,
2097 that's an error. */
2098 if (COMPLETE_TYPE_P (t))
2099 {
2100 error ("redefinition of %q#T", t);
2101 cp_error_at ("previous definition of %q#T", t);
2102 return error_mark_node;
2103 }
2104
2105 /* Update the location of the decl. */
2106 DECL_SOURCE_LOCATION (TYPE_NAME (t)) = input_location;
2107
2108 if (TYPE_BEING_DEFINED (t))
2109 {
2110 t = make_aggr_type (TREE_CODE (t));
2111 pushtag (TYPE_IDENTIFIER (t), t, 0);
2112 }
2113 maybe_process_partial_specialization (t);
2114 pushclass (t);
2115 TYPE_BEING_DEFINED (t) = 1;
2116 if (flag_pack_struct)
2117 {
2118 tree v;
2119 TYPE_PACKED (t) = 1;
2120 /* Even though the type is being defined for the first time
2121 here, there might have been a forward declaration, so there
2122 might be cv-qualified variants of T. */
2123 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2124 TYPE_PACKED (v) = 1;
2125 }
2126 /* Reset the interface data, at the earliest possible
2127 moment, as it might have been set via a class foo;
2128 before. */
2129 if (! TYPE_ANONYMOUS_P (t))
2130 {
2131 struct c_fileinfo *finfo = get_fileinfo (lbasename (input_filename));
2132 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2133 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2134 (t, finfo->interface_unknown);
2135 }
2136 reset_specialization();
2137
2138 /* Make a declaration for this class in its own scope. */
2139 build_self_reference ();
2140
2141 return t;
2142 }
2143
2144 /* Finish the member declaration given by DECL. */
2145
2146 void
2147 finish_member_declaration (tree decl)
2148 {
2149 if (decl == error_mark_node || decl == NULL_TREE)
2150 return;
2151
2152 if (decl == void_type_node)
2153 /* The COMPONENT was a friend, not a member, and so there's
2154 nothing for us to do. */
2155 return;
2156
2157 /* We should see only one DECL at a time. */
2158 gcc_assert (TREE_CHAIN (decl) == NULL_TREE);
2159
2160 /* Set up access control for DECL. */
2161 TREE_PRIVATE (decl)
2162 = (current_access_specifier == access_private_node);
2163 TREE_PROTECTED (decl)
2164 = (current_access_specifier == access_protected_node);
2165 if (TREE_CODE (decl) == TEMPLATE_DECL)
2166 {
2167 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2168 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2169 }
2170
2171 /* Mark the DECL as a member of the current class. */
2172 DECL_CONTEXT (decl) = current_class_type;
2173
2174 /* [dcl.link]
2175
2176 A C language linkage is ignored for the names of class members
2177 and the member function type of class member functions. */
2178 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2179 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2180
2181 /* Put functions on the TYPE_METHODS list and everything else on the
2182 TYPE_FIELDS list. Note that these are built up in reverse order.
2183 We reverse them (to obtain declaration order) in finish_struct. */
2184 if (TREE_CODE (decl) == FUNCTION_DECL
2185 || DECL_FUNCTION_TEMPLATE_P (decl))
2186 {
2187 /* We also need to add this function to the
2188 CLASSTYPE_METHOD_VEC. */
2189 add_method (current_class_type, decl);
2190
2191 TREE_CHAIN (decl) = TYPE_METHODS (current_class_type);
2192 TYPE_METHODS (current_class_type) = decl;
2193
2194 maybe_add_class_template_decl_list (current_class_type, decl,
2195 /*friend_p=*/0);
2196 }
2197 /* Enter the DECL into the scope of the class. */
2198 else if ((TREE_CODE (decl) == USING_DECL && TREE_TYPE (decl))
2199 || pushdecl_class_level (decl))
2200 {
2201 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2202 go at the beginning. The reason is that lookup_field_1
2203 searches the list in order, and we want a field name to
2204 override a type name so that the "struct stat hack" will
2205 work. In particular:
2206
2207 struct S { enum E { }; int E } s;
2208 s.E = 3;
2209
2210 is valid. In addition, the FIELD_DECLs must be maintained in
2211 declaration order so that class layout works as expected.
2212 However, we don't need that order until class layout, so we
2213 save a little time by putting FIELD_DECLs on in reverse order
2214 here, and then reversing them in finish_struct_1. (We could
2215 also keep a pointer to the correct insertion points in the
2216 list.) */
2217
2218 if (TREE_CODE (decl) == TYPE_DECL)
2219 TYPE_FIELDS (current_class_type)
2220 = chainon (TYPE_FIELDS (current_class_type), decl);
2221 else
2222 {
2223 TREE_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2224 TYPE_FIELDS (current_class_type) = decl;
2225 }
2226
2227 maybe_add_class_template_decl_list (current_class_type, decl,
2228 /*friend_p=*/0);
2229 }
2230 }
2231
2232 /* Finish processing a complete template declaration. The PARMS are
2233 the template parameters. */
2234
2235 void
2236 finish_template_decl (tree parms)
2237 {
2238 if (parms)
2239 end_template_decl ();
2240 else
2241 end_specialization ();
2242 }
2243
2244 /* Finish processing a template-id (which names a type) of the form
2245 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2246 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2247 the scope of template-id indicated. */
2248
2249 tree
2250 finish_template_type (tree name, tree args, int entering_scope)
2251 {
2252 tree decl;
2253
2254 decl = lookup_template_class (name, args,
2255 NULL_TREE, NULL_TREE, entering_scope,
2256 tf_error | tf_warning | tf_user);
2257 if (decl != error_mark_node)
2258 decl = TYPE_STUB_DECL (decl);
2259
2260 return decl;
2261 }
2262
2263 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2264 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2265 BASE_CLASS, or NULL_TREE if an error occurred. The
2266 ACCESS_SPECIFIER is one of
2267 access_{default,public,protected_private}_node. For a virtual base
2268 we set TREE_TYPE. */
2269
2270 tree
2271 finish_base_specifier (tree base, tree access, bool virtual_p)
2272 {
2273 tree result;
2274
2275 if (base == error_mark_node)
2276 {
2277 error ("invalid base-class specification");
2278 result = NULL_TREE;
2279 }
2280 else if (! is_aggr_type (base, 1))
2281 result = NULL_TREE;
2282 else
2283 {
2284 if (cp_type_quals (base) != 0)
2285 {
2286 error ("base class %qT has cv qualifiers", base);
2287 base = TYPE_MAIN_VARIANT (base);
2288 }
2289 result = build_tree_list (access, base);
2290 if (virtual_p)
2291 TREE_TYPE (result) = integer_type_node;
2292 }
2293
2294 return result;
2295 }
2296
2297 /* Called when multiple declarators are processed. If that is not
2298 permitted in this context, an error is issued. */
2299
2300 void
2301 check_multiple_declarators (void)
2302 {
2303 /* [temp]
2304
2305 In a template-declaration, explicit specialization, or explicit
2306 instantiation the init-declarator-list in the declaration shall
2307 contain at most one declarator.
2308
2309 We don't just use PROCESSING_TEMPLATE_DECL for the first
2310 condition since that would disallow the perfectly valid code,
2311 like `template <class T> struct S { int i, j; };'. */
2312 if (at_function_scope_p ())
2313 /* It's OK to write `template <class T> void f() { int i, j;}'. */
2314 return;
2315
2316 if (PROCESSING_REAL_TEMPLATE_DECL_P ()
2317 || processing_explicit_instantiation
2318 || processing_specialization)
2319 error ("multiple declarators in template declaration");
2320 }
2321
2322 /* Issue a diagnostic that NAME cannot be found in SCOPE. DECL is
2323 what we found when we tried to do the lookup. */
2324
2325 void
2326 qualified_name_lookup_error (tree scope, tree name, tree decl)
2327 {
2328 if (TYPE_P (scope))
2329 {
2330 if (!COMPLETE_TYPE_P (scope))
2331 error ("incomplete type %qT used in nested name specifier", scope);
2332 else if (TREE_CODE (decl) == TREE_LIST)
2333 {
2334 error ("reference to %<%T::%D%> is ambiguous", scope, name);
2335 print_candidates (decl);
2336 }
2337 else
2338 error ("%qD is not a member of %qT", name, scope);
2339 }
2340 else if (scope != global_namespace)
2341 error ("%qD is not a member of %qD", name, scope);
2342 else
2343 error ("%<::%D%> has not been declared", name);
2344 }
2345
2346 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2347 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2348 if non-NULL, is the type or namespace used to explicitly qualify
2349 ID_EXPRESSION. DECL is the entity to which that name has been
2350 resolved.
2351
2352 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2353 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2354 be set to true if this expression isn't permitted in a
2355 constant-expression, but it is otherwise not set by this function.
2356 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2357 constant-expression, but a non-constant expression is also
2358 permissible.
2359
2360 If an error occurs, and it is the kind of error that might cause
2361 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2362 is the caller's responsibility to issue the message. *ERROR_MSG
2363 will be a string with static storage duration, so the caller need
2364 not "free" it.
2365
2366 Return an expression for the entity, after issuing appropriate
2367 diagnostics. This function is also responsible for transforming a
2368 reference to a non-static member into a COMPONENT_REF that makes
2369 the use of "this" explicit.
2370
2371 Upon return, *IDK will be filled in appropriately. */
2372
2373 tree
2374 finish_id_expression (tree id_expression,
2375 tree decl,
2376 tree scope,
2377 cp_id_kind *idk,
2378 tree *qualifying_class,
2379 bool integral_constant_expression_p,
2380 bool allow_non_integral_constant_expression_p,
2381 bool *non_integral_constant_expression_p,
2382 const char **error_msg)
2383 {
2384 /* Initialize the output parameters. */
2385 *idk = CP_ID_KIND_NONE;
2386 *error_msg = NULL;
2387
2388 if (id_expression == error_mark_node)
2389 return error_mark_node;
2390 /* If we have a template-id, then no further lookup is
2391 required. If the template-id was for a template-class, we
2392 will sometimes have a TYPE_DECL at this point. */
2393 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2394 || TREE_CODE (decl) == TYPE_DECL)
2395 ;
2396 /* Look up the name. */
2397 else
2398 {
2399 if (decl == error_mark_node)
2400 {
2401 /* Name lookup failed. */
2402 if (scope
2403 && (!TYPE_P (scope)
2404 || (!dependent_type_p (scope)
2405 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2406 && IDENTIFIER_TYPENAME_P (id_expression)
2407 && dependent_type_p (TREE_TYPE (id_expression))))))
2408 {
2409 /* If the qualifying type is non-dependent (and the name
2410 does not name a conversion operator to a dependent
2411 type), issue an error. */
2412 qualified_name_lookup_error (scope, id_expression, decl);
2413 return error_mark_node;
2414 }
2415 else if (!scope)
2416 {
2417 /* It may be resolved via Koenig lookup. */
2418 *idk = CP_ID_KIND_UNQUALIFIED;
2419 return id_expression;
2420 }
2421 else
2422 decl = id_expression;
2423 }
2424 /* If DECL is a variable that would be out of scope under
2425 ANSI/ISO rules, but in scope in the ARM, name lookup
2426 will succeed. Issue a diagnostic here. */
2427 else
2428 decl = check_for_out_of_scope_variable (decl);
2429
2430 /* Remember that the name was used in the definition of
2431 the current class so that we can check later to see if
2432 the meaning would have been different after the class
2433 was entirely defined. */
2434 if (!scope && decl != error_mark_node)
2435 maybe_note_name_used_in_class (id_expression, decl);
2436 }
2437
2438 /* If we didn't find anything, or what we found was a type,
2439 then this wasn't really an id-expression. */
2440 if (TREE_CODE (decl) == TEMPLATE_DECL
2441 && !DECL_FUNCTION_TEMPLATE_P (decl))
2442 {
2443 *error_msg = "missing template arguments";
2444 return error_mark_node;
2445 }
2446 else if (TREE_CODE (decl) == TYPE_DECL
2447 || TREE_CODE (decl) == NAMESPACE_DECL)
2448 {
2449 *error_msg = "expected primary-expression";
2450 return error_mark_node;
2451 }
2452
2453 /* If the name resolved to a template parameter, there is no
2454 need to look it up again later. */
2455 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
2456 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2457 {
2458 *idk = CP_ID_KIND_NONE;
2459 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2460 decl = TEMPLATE_PARM_DECL (decl);
2461 if (integral_constant_expression_p
2462 && !dependent_type_p (TREE_TYPE (decl))
2463 && !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (decl)))
2464 {
2465 if (!allow_non_integral_constant_expression_p)
2466 error ("template parameter %qD of type %qT is not allowed in "
2467 "an integral constant expression because it is not of "
2468 "integral or enumeration type", decl, TREE_TYPE (decl));
2469 *non_integral_constant_expression_p = true;
2470 }
2471 return DECL_INITIAL (decl);
2472 }
2473 /* Similarly, we resolve enumeration constants to their
2474 underlying values. */
2475 else if (TREE_CODE (decl) == CONST_DECL)
2476 {
2477 *idk = CP_ID_KIND_NONE;
2478 if (!processing_template_decl)
2479 return DECL_INITIAL (decl);
2480 return decl;
2481 }
2482 else
2483 {
2484 bool dependent_p;
2485
2486 /* If the declaration was explicitly qualified indicate
2487 that. The semantics of `A::f(3)' are different than
2488 `f(3)' if `f' is virtual. */
2489 *idk = (scope
2490 ? CP_ID_KIND_QUALIFIED
2491 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2492 ? CP_ID_KIND_TEMPLATE_ID
2493 : CP_ID_KIND_UNQUALIFIED));
2494
2495
2496 /* [temp.dep.expr]
2497
2498 An id-expression is type-dependent if it contains an
2499 identifier that was declared with a dependent type.
2500
2501 The standard is not very specific about an id-expression that
2502 names a set of overloaded functions. What if some of them
2503 have dependent types and some of them do not? Presumably,
2504 such a name should be treated as a dependent name. */
2505 /* Assume the name is not dependent. */
2506 dependent_p = false;
2507 if (!processing_template_decl)
2508 /* No names are dependent outside a template. */
2509 ;
2510 /* A template-id where the name of the template was not resolved
2511 is definitely dependent. */
2512 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2513 && (TREE_CODE (TREE_OPERAND (decl, 0))
2514 == IDENTIFIER_NODE))
2515 dependent_p = true;
2516 /* For anything except an overloaded function, just check its
2517 type. */
2518 else if (!is_overloaded_fn (decl))
2519 dependent_p
2520 = dependent_type_p (TREE_TYPE (decl));
2521 /* For a set of overloaded functions, check each of the
2522 functions. */
2523 else
2524 {
2525 tree fns = decl;
2526
2527 if (BASELINK_P (fns))
2528 fns = BASELINK_FUNCTIONS (fns);
2529
2530 /* For a template-id, check to see if the template
2531 arguments are dependent. */
2532 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
2533 {
2534 tree args = TREE_OPERAND (fns, 1);
2535 dependent_p = any_dependent_template_arguments_p (args);
2536 /* The functions are those referred to by the
2537 template-id. */
2538 fns = TREE_OPERAND (fns, 0);
2539 }
2540
2541 /* If there are no dependent template arguments, go through
2542 the overloaded functions. */
2543 while (fns && !dependent_p)
2544 {
2545 tree fn = OVL_CURRENT (fns);
2546
2547 /* Member functions of dependent classes are
2548 dependent. */
2549 if (TREE_CODE (fn) == FUNCTION_DECL
2550 && type_dependent_expression_p (fn))
2551 dependent_p = true;
2552 else if (TREE_CODE (fn) == TEMPLATE_DECL
2553 && dependent_template_p (fn))
2554 dependent_p = true;
2555
2556 fns = OVL_NEXT (fns);
2557 }
2558 }
2559
2560 /* If the name was dependent on a template parameter, we will
2561 resolve the name at instantiation time. */
2562 if (dependent_p)
2563 {
2564 /* Create a SCOPE_REF for qualified names, if the scope is
2565 dependent. */
2566 if (scope)
2567 {
2568 if (TYPE_P (scope))
2569 *qualifying_class = scope;
2570 /* Since this name was dependent, the expression isn't
2571 constant -- yet. No error is issued because it might
2572 be constant when things are instantiated. */
2573 if (integral_constant_expression_p)
2574 *non_integral_constant_expression_p = true;
2575 if (TYPE_P (scope) && dependent_type_p (scope))
2576 return build_nt (SCOPE_REF, scope, id_expression);
2577 else if (TYPE_P (scope) && DECL_P (decl))
2578 return build2 (SCOPE_REF, TREE_TYPE (decl), scope,
2579 id_expression);
2580 else
2581 return decl;
2582 }
2583 /* A TEMPLATE_ID already contains all the information we
2584 need. */
2585 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
2586 return id_expression;
2587 /* Since this name was dependent, the expression isn't
2588 constant -- yet. No error is issued because it might be
2589 constant when things are instantiated. */
2590 if (integral_constant_expression_p)
2591 *non_integral_constant_expression_p = true;
2592 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
2593 /* If we found a variable, then name lookup during the
2594 instantiation will always resolve to the same VAR_DECL
2595 (or an instantiation thereof). */
2596 if (TREE_CODE (decl) == VAR_DECL
2597 || TREE_CODE (decl) == PARM_DECL)
2598 return decl;
2599 return id_expression;
2600 }
2601
2602 /* Only certain kinds of names are allowed in constant
2603 expression. Enumerators and template parameters
2604 have already been handled above. */
2605 if (integral_constant_expression_p
2606 && !DECL_INTEGRAL_CONSTANT_VAR_P (decl))
2607 {
2608 if (!allow_non_integral_constant_expression_p)
2609 {
2610 error ("%qD cannot appear in a constant-expression", decl);
2611 return error_mark_node;
2612 }
2613 *non_integral_constant_expression_p = true;
2614 }
2615
2616 if (TREE_CODE (decl) == NAMESPACE_DECL)
2617 {
2618 error ("use of namespace %qD as expression", decl);
2619 return error_mark_node;
2620 }
2621 else if (DECL_CLASS_TEMPLATE_P (decl))
2622 {
2623 error ("use of class template %qT as expression", decl);
2624 return error_mark_node;
2625 }
2626 else if (TREE_CODE (decl) == TREE_LIST)
2627 {
2628 /* Ambiguous reference to base members. */
2629 error ("request for member %qD is ambiguous in "
2630 "multiple inheritance lattice", id_expression);
2631 print_candidates (decl);
2632 return error_mark_node;
2633 }
2634
2635 /* Mark variable-like entities as used. Functions are similarly
2636 marked either below or after overload resolution. */
2637 if (TREE_CODE (decl) == VAR_DECL
2638 || TREE_CODE (decl) == PARM_DECL
2639 || TREE_CODE (decl) == RESULT_DECL)
2640 mark_used (decl);
2641
2642 if (scope)
2643 {
2644 decl = (adjust_result_of_qualified_name_lookup
2645 (decl, scope, current_class_type));
2646
2647 if (TREE_CODE (decl) == FUNCTION_DECL)
2648 mark_used (decl);
2649
2650 if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
2651 *qualifying_class = scope;
2652 else if (!processing_template_decl)
2653 decl = convert_from_reference (decl);
2654 else if (TYPE_P (scope))
2655 decl = build2 (SCOPE_REF, TREE_TYPE (decl), scope, decl);
2656 }
2657 else if (TREE_CODE (decl) == FIELD_DECL)
2658 decl = finish_non_static_data_member (decl, current_class_ref,
2659 /*qualifying_scope=*/NULL_TREE);
2660 else if (is_overloaded_fn (decl))
2661 {
2662 tree first_fn = OVL_CURRENT (decl);
2663
2664 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
2665 first_fn = DECL_TEMPLATE_RESULT (first_fn);
2666
2667 if (!really_overloaded_fn (decl))
2668 mark_used (first_fn);
2669
2670 if (TREE_CODE (first_fn) == FUNCTION_DECL
2671 && DECL_FUNCTION_MEMBER_P (first_fn)
2672 && !shared_member_p (decl))
2673 {
2674 /* A set of member functions. */
2675 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
2676 return finish_class_member_access_expr (decl, id_expression);
2677 }
2678 }
2679 else
2680 {
2681 if (TREE_CODE (decl) == VAR_DECL
2682 || TREE_CODE (decl) == PARM_DECL
2683 || TREE_CODE (decl) == RESULT_DECL)
2684 {
2685 tree context = decl_function_context (decl);
2686
2687 if (context != NULL_TREE && context != current_function_decl
2688 && ! TREE_STATIC (decl))
2689 {
2690 error ("use of %s from containing function",
2691 (TREE_CODE (decl) == VAR_DECL
2692 ? "%<auto%> variable" : "parameter"));
2693 cp_error_at (" %q#D declared here", decl);
2694 return error_mark_node;
2695 }
2696 }
2697
2698 if (DECL_P (decl) && DECL_NONLOCAL (decl)
2699 && DECL_CLASS_SCOPE_P (decl)
2700 && DECL_CONTEXT (decl) != current_class_type)
2701 {
2702 tree path;
2703
2704 path = currently_open_derived_class (DECL_CONTEXT (decl));
2705 perform_or_defer_access_check (TYPE_BINFO (path), decl);
2706 }
2707
2708 if (! processing_template_decl)
2709 decl = convert_from_reference (decl);
2710 }
2711
2712 /* Resolve references to variables of anonymous unions
2713 into COMPONENT_REFs. */
2714 if (TREE_CODE (decl) == ALIAS_DECL)
2715 decl = unshare_expr (DECL_INITIAL (decl));
2716 }
2717
2718 if (TREE_DEPRECATED (decl))
2719 warn_deprecated_use (decl);
2720
2721 return decl;
2722 }
2723
2724 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
2725 use as a type-specifier. */
2726
2727 tree
2728 finish_typeof (tree expr)
2729 {
2730 tree type;
2731
2732 if (type_dependent_expression_p (expr))
2733 {
2734 type = make_aggr_type (TYPEOF_TYPE);
2735 TYPEOF_TYPE_EXPR (type) = expr;
2736
2737 return type;
2738 }
2739
2740 type = TREE_TYPE (expr);
2741
2742 if (!type || type == unknown_type_node)
2743 {
2744 error ("type of %qE is unknown", expr);
2745 return error_mark_node;
2746 }
2747
2748 return type;
2749 }
2750
2751 /* Called from expand_body via walk_tree. Replace all AGGR_INIT_EXPRs
2752 with equivalent CALL_EXPRs. */
2753
2754 static tree
2755 simplify_aggr_init_exprs_r (tree* tp,
2756 int* walk_subtrees,
2757 void* data ATTRIBUTE_UNUSED)
2758 {
2759 /* We don't need to walk into types; there's nothing in a type that
2760 needs simplification. (And, furthermore, there are places we
2761 actively don't want to go. For example, we don't want to wander
2762 into the default arguments for a FUNCTION_DECL that appears in a
2763 CALL_EXPR.) */
2764 if (TYPE_P (*tp))
2765 {
2766 *walk_subtrees = 0;
2767 return NULL_TREE;
2768 }
2769 /* Only AGGR_INIT_EXPRs are interesting. */
2770 else if (TREE_CODE (*tp) != AGGR_INIT_EXPR)
2771 return NULL_TREE;
2772
2773 simplify_aggr_init_expr (tp);
2774
2775 /* Keep iterating. */
2776 return NULL_TREE;
2777 }
2778
2779 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
2780 function is broken out from the above for the benefit of the tree-ssa
2781 project. */
2782
2783 void
2784 simplify_aggr_init_expr (tree *tp)
2785 {
2786 tree aggr_init_expr = *tp;
2787
2788 /* Form an appropriate CALL_EXPR. */
2789 tree fn = TREE_OPERAND (aggr_init_expr, 0);
2790 tree args = TREE_OPERAND (aggr_init_expr, 1);
2791 tree slot = TREE_OPERAND (aggr_init_expr, 2);
2792 tree type = TREE_TYPE (slot);
2793
2794 tree call_expr;
2795 enum style_t { ctor, arg, pcc } style;
2796
2797 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
2798 style = ctor;
2799 #ifdef PCC_STATIC_STRUCT_RETURN
2800 else if (1)
2801 style = pcc;
2802 #endif
2803 else
2804 {
2805 gcc_assert (TREE_ADDRESSABLE (type));
2806 style = arg;
2807 }
2808
2809 if (style == ctor || style == arg)
2810 {
2811 /* Pass the address of the slot. If this is a constructor, we
2812 replace the first argument; otherwise, we tack on a new one. */
2813 tree addr;
2814
2815 if (style == ctor)
2816 args = TREE_CHAIN (args);
2817
2818 cxx_mark_addressable (slot);
2819 addr = build1 (ADDR_EXPR, build_pointer_type (type), slot);
2820 if (style == arg)
2821 {
2822 /* The return type might have different cv-quals from the slot. */
2823 tree fntype = TREE_TYPE (TREE_TYPE (fn));
2824
2825 gcc_assert (TREE_CODE (fntype) == FUNCTION_TYPE
2826 || TREE_CODE (fntype) == METHOD_TYPE);
2827 addr = convert (build_pointer_type (TREE_TYPE (fntype)), addr);
2828 }
2829
2830 args = tree_cons (NULL_TREE, addr, args);
2831 }
2832
2833 call_expr = build3 (CALL_EXPR,
2834 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
2835 fn, args, NULL_TREE);
2836
2837 if (style == arg)
2838 /* Tell the backend that we've added our return slot to the argument
2839 list. */
2840 CALL_EXPR_HAS_RETURN_SLOT_ADDR (call_expr) = 1;
2841 else if (style == pcc)
2842 {
2843 /* If we're using the non-reentrant PCC calling convention, then we
2844 need to copy the returned value out of the static buffer into the
2845 SLOT. */
2846 push_deferring_access_checks (dk_no_check);
2847 call_expr = build_aggr_init (slot, call_expr,
2848 DIRECT_BIND | LOOKUP_ONLYCONVERTING);
2849 pop_deferring_access_checks ();
2850 }
2851
2852 *tp = call_expr;
2853 }
2854
2855 /* Emit all thunks to FN that should be emitted when FN is emitted. */
2856
2857 static void
2858 emit_associated_thunks (tree fn)
2859 {
2860 /* When we use vcall offsets, we emit thunks with the virtual
2861 functions to which they thunk. The whole point of vcall offsets
2862 is so that you can know statically the entire set of thunks that
2863 will ever be needed for a given virtual function, thereby
2864 enabling you to output all the thunks with the function itself. */
2865 if (DECL_VIRTUAL_P (fn))
2866 {
2867 tree thunk;
2868
2869 for (thunk = DECL_THUNKS (fn); thunk; thunk = TREE_CHAIN (thunk))
2870 {
2871 if (!THUNK_ALIAS (thunk))
2872 {
2873 use_thunk (thunk, /*emit_p=*/1);
2874 if (DECL_RESULT_THUNK_P (thunk))
2875 {
2876 tree probe;
2877
2878 for (probe = DECL_THUNKS (thunk);
2879 probe; probe = TREE_CHAIN (probe))
2880 use_thunk (probe, /*emit_p=*/1);
2881 }
2882 }
2883 else
2884 gcc_assert (!DECL_THUNKS (thunk));
2885 }
2886 }
2887 }
2888
2889 /* Generate RTL for FN. */
2890
2891 void
2892 expand_body (tree fn)
2893 {
2894 tree saved_function;
2895
2896 /* Compute the appropriate object-file linkage for inline
2897 functions. */
2898 if (DECL_DECLARED_INLINE_P (fn))
2899 import_export_decl (fn);
2900
2901 /* If FN is external, then there's no point in generating RTL for
2902 it. This situation can arise with an inline function under
2903 `-fexternal-templates'; we instantiate the function, even though
2904 we're not planning on emitting it, in case we get a chance to
2905 inline it. */
2906 if (DECL_EXTERNAL (fn))
2907 return;
2908
2909 /* ??? When is this needed? */
2910 saved_function = current_function_decl;
2911
2912 /* Emit any thunks that should be emitted at the same time as FN. */
2913 emit_associated_thunks (fn);
2914
2915 /* This function is only called from cgraph, or recursively from
2916 emit_associated_thunks. In neither case should we be currently
2917 generating trees for a function. */
2918 gcc_assert (function_depth == 0);
2919
2920 tree_rest_of_compilation (fn);
2921
2922 current_function_decl = saved_function;
2923
2924 if (DECL_CLONED_FUNCTION_P (fn))
2925 {
2926 /* If this is a clone, go through the other clones now and mark
2927 their parameters used. We have to do that here, as we don't
2928 know whether any particular clone will be expanded, and
2929 therefore cannot pick one arbitrarily. */
2930 tree probe;
2931
2932 for (probe = TREE_CHAIN (DECL_CLONED_FUNCTION (fn));
2933 probe && DECL_CLONED_FUNCTION_P (probe);
2934 probe = TREE_CHAIN (probe))
2935 {
2936 tree parms;
2937
2938 for (parms = DECL_ARGUMENTS (probe);
2939 parms; parms = TREE_CHAIN (parms))
2940 TREE_USED (parms) = 1;
2941 }
2942 }
2943 }
2944
2945 /* Generate RTL for FN. */
2946
2947 void
2948 expand_or_defer_fn (tree fn)
2949 {
2950 /* When the parser calls us after finishing the body of a template
2951 function, we don't really want to expand the body. */
2952 if (processing_template_decl)
2953 {
2954 /* Normally, collection only occurs in rest_of_compilation. So,
2955 if we don't collect here, we never collect junk generated
2956 during the processing of templates until we hit a
2957 non-template function. */
2958 ggc_collect ();
2959 return;
2960 }
2961
2962 /* Replace AGGR_INIT_EXPRs with appropriate CALL_EXPRs. */
2963 walk_tree_without_duplicates (&DECL_SAVED_TREE (fn),
2964 simplify_aggr_init_exprs_r,
2965 NULL);
2966
2967 /* If this is a constructor or destructor body, we have to clone
2968 it. */
2969 if (maybe_clone_body (fn))
2970 {
2971 /* We don't want to process FN again, so pretend we've written
2972 it out, even though we haven't. */
2973 TREE_ASM_WRITTEN (fn) = 1;
2974 return;
2975 }
2976
2977 /* If this function is marked with the constructor attribute, add it
2978 to the list of functions to be called along with constructors
2979 from static duration objects. */
2980 if (DECL_STATIC_CONSTRUCTOR (fn))
2981 static_ctors = tree_cons (NULL_TREE, fn, static_ctors);
2982
2983 /* If this function is marked with the destructor attribute, add it
2984 to the list of functions to be called along with destructors from
2985 static duration objects. */
2986 if (DECL_STATIC_DESTRUCTOR (fn))
2987 static_dtors = tree_cons (NULL_TREE, fn, static_dtors);
2988
2989 /* We make a decision about linkage for these functions at the end
2990 of the compilation. Until that point, we do not want the back
2991 end to output them -- but we do want it to see the bodies of
2992 these functions so that it can inline them as appropriate. */
2993 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
2994 {
2995 if (!at_eof)
2996 {
2997 DECL_EXTERNAL (fn) = 1;
2998 DECL_NOT_REALLY_EXTERN (fn) = 1;
2999 note_vague_linkage_fn (fn);
3000 }
3001 else
3002 import_export_decl (fn);
3003
3004 /* If the user wants us to keep all inline functions, then mark
3005 this function as needed so that finish_file will make sure to
3006 output it later. */
3007 if (flag_keep_inline_functions && DECL_DECLARED_INLINE_P (fn))
3008 mark_needed (fn);
3009 }
3010
3011 /* There's no reason to do any of the work here if we're only doing
3012 semantic analysis; this code just generates RTL. */
3013 if (flag_syntax_only)
3014 return;
3015
3016 function_depth++;
3017
3018 /* Expand or defer, at the whim of the compilation unit manager. */
3019 cgraph_finalize_function (fn, function_depth > 1);
3020
3021 function_depth--;
3022 }
3023
3024 struct nrv_data
3025 {
3026 tree var;
3027 tree result;
3028 htab_t visited;
3029 };
3030
3031 /* Helper function for walk_tree, used by finalize_nrv below. */
3032
3033 static tree
3034 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3035 {
3036 struct nrv_data *dp = (struct nrv_data *)data;
3037 void **slot;
3038
3039 /* No need to walk into types. There wouldn't be any need to walk into
3040 non-statements, except that we have to consider STMT_EXPRs. */
3041 if (TYPE_P (*tp))
3042 *walk_subtrees = 0;
3043 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3044 but differs from using NULL_TREE in that it indicates that we care
3045 about the value of the RESULT_DECL. */
3046 else if (TREE_CODE (*tp) == RETURN_EXPR)
3047 TREE_OPERAND (*tp, 0) = dp->result;
3048 /* Change all cleanups for the NRV to only run when an exception is
3049 thrown. */
3050 else if (TREE_CODE (*tp) == CLEANUP_STMT
3051 && CLEANUP_DECL (*tp) == dp->var)
3052 CLEANUP_EH_ONLY (*tp) = 1;
3053 /* Replace the DECL_EXPR for the NRV with an initialization of the
3054 RESULT_DECL, if needed. */
3055 else if (TREE_CODE (*tp) == DECL_EXPR
3056 && DECL_EXPR_DECL (*tp) == dp->var)
3057 {
3058 tree init;
3059 if (DECL_INITIAL (dp->var)
3060 && DECL_INITIAL (dp->var) != error_mark_node)
3061 {
3062 init = build2 (INIT_EXPR, void_type_node, dp->result,
3063 DECL_INITIAL (dp->var));
3064 DECL_INITIAL (dp->var) = error_mark_node;
3065 }
3066 else
3067 init = build_empty_stmt ();
3068 SET_EXPR_LOCUS (init, EXPR_LOCUS (*tp));
3069 *tp = init;
3070 }
3071 /* And replace all uses of the NRV with the RESULT_DECL. */
3072 else if (*tp == dp->var)
3073 *tp = dp->result;
3074
3075 /* Avoid walking into the same tree more than once. Unfortunately, we
3076 can't just use walk_tree_without duplicates because it would only call
3077 us for the first occurrence of dp->var in the function body. */
3078 slot = htab_find_slot (dp->visited, *tp, INSERT);
3079 if (*slot)
3080 *walk_subtrees = 0;
3081 else
3082 *slot = *tp;
3083
3084 /* Keep iterating. */
3085 return NULL_TREE;
3086 }
3087
3088 /* Called from finish_function to implement the named return value
3089 optimization by overriding all the RETURN_EXPRs and pertinent
3090 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3091 RESULT_DECL for the function. */
3092
3093 void
3094 finalize_nrv (tree *tp, tree var, tree result)
3095 {
3096 struct nrv_data data;
3097
3098 /* Copy debugging information from VAR to RESULT. */
3099 DECL_NAME (result) = DECL_NAME (var);
3100 DECL_ARTIFICIAL (result) = DECL_ARTIFICIAL (var);
3101 DECL_IGNORED_P (result) = DECL_IGNORED_P (var);
3102 DECL_SOURCE_LOCATION (result) = DECL_SOURCE_LOCATION (var);
3103 DECL_ABSTRACT_ORIGIN (result) = DECL_ABSTRACT_ORIGIN (var);
3104 /* Don't forget that we take its address. */
3105 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3106
3107 data.var = var;
3108 data.result = result;
3109 data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3110 walk_tree (tp, finalize_nrv_r, &data, 0);
3111 htab_delete (data.visited);
3112 }
3113
3114 /* Perform initialization related to this module. */
3115
3116 void
3117 init_cp_semantics (void)
3118 {
3119 }
3120
3121 #include "gt-cp-semantics.h"