OSDN Git Service

2009-07-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.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, 2005, 2006, 2007,
7                  2008, 2009 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 3, 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 COPYING3.  If not see
25 <http://www.gnu.org/licenses/>.  */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "cp-tree.h"
33 #include "c-common.h"
34 #include "tree-inline.h"
35 #include "tree-mudflap.h"
36 #include "except.h"
37 #include "toplev.h"
38 #include "flags.h"
39 #include "rtl.h"
40 #include "expr.h"
41 #include "output.h"
42 #include "timevar.h"
43 #include "debug.h"
44 #include "diagnostic.h"
45 #include "cgraph.h"
46 #include "tree-iterator.h"
47 #include "vec.h"
48 #include "target.h"
49 #include "gimple.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.  */
55
56 static tree maybe_convert_cond (tree);
57 static tree finalize_nrv_r (tree *, int *, void *);
58
59
60 /* Deferred Access Checking Overview
61    ---------------------------------
62
63    Most C++ expressions and declarations require access checking
64    to be performed during parsing.  However, in several cases,
65    this has to be treated differently.
66
67    For member declarations, access checking has to be deferred
68    until more information about the declaration is known.  For
69    example:
70
71      class A {
72          typedef int X;
73        public:
74          X f();
75      };
76
77      A::X A::f();
78      A::X g();
79
80    When we are parsing the function return type `A::X', we don't
81    really know if this is allowed until we parse the function name.
82
83    Furthermore, some contexts require that access checking is
84    never performed at all.  These include class heads, and template
85    instantiations.
86
87    Typical use of access checking functions is described here:
88
89    1. When we enter a context that requires certain access checking
90       mode, the function `push_deferring_access_checks' is called with
91       DEFERRING argument specifying the desired mode.  Access checking
92       may be performed immediately (dk_no_deferred), deferred
93       (dk_deferred), or not performed (dk_no_check).
94
95    2. When a declaration such as a type, or a variable, is encountered,
96       the function `perform_or_defer_access_check' is called.  It
97       maintains a VEC of all deferred checks.
98
99    3. The global `current_class_type' or `current_function_decl' is then
100       setup by the parser.  `enforce_access' relies on these information
101       to check access.
102
103    4. Upon exiting the context mentioned in step 1,
104       `perform_deferred_access_checks' is called to check all declaration
105       stored in the VEC. `pop_deferring_access_checks' is then
106       called to restore the previous access checking mode.
107
108       In case of parsing error, we simply call `pop_deferring_access_checks'
109       without `perform_deferred_access_checks'.  */
110
111 typedef struct GTY(()) deferred_access {
112   /* A VEC representing name-lookups for which we have deferred
113      checking access controls.  We cannot check the accessibility of
114      names used in a decl-specifier-seq until we know what is being
115      declared because code like:
116
117        class A {
118          class B {};
119          B* f();
120        }
121
122        A::B* A::f() { return 0; }
123
124      is valid, even though `A::B' is not generally accessible.  */
125   VEC (deferred_access_check,gc)* GTY(()) deferred_access_checks;
126
127   /* The current mode of access checks.  */
128   enum deferring_kind deferring_access_checks_kind;
129
130 } deferred_access;
131 DEF_VEC_O (deferred_access);
132 DEF_VEC_ALLOC_O (deferred_access,gc);
133
134 /* Data for deferred access checking.  */
135 static GTY(()) VEC(deferred_access,gc) *deferred_access_stack;
136 static GTY(()) unsigned deferred_access_no_check;
137
138 /* Save the current deferred access states and start deferred
139    access checking iff DEFER_P is true.  */
140
141 void
142 push_deferring_access_checks (deferring_kind deferring)
143 {
144   /* For context like template instantiation, access checking
145      disabling applies to all nested context.  */
146   if (deferred_access_no_check || deferring == dk_no_check)
147     deferred_access_no_check++;
148   else
149     {
150       deferred_access *ptr;
151
152       ptr = VEC_safe_push (deferred_access, gc, deferred_access_stack, NULL);
153       ptr->deferred_access_checks = NULL;
154       ptr->deferring_access_checks_kind = deferring;
155     }
156 }
157
158 /* Resume deferring access checks again after we stopped doing
159    this previously.  */
160
161 void
162 resume_deferring_access_checks (void)
163 {
164   if (!deferred_access_no_check)
165     VEC_last (deferred_access, deferred_access_stack)
166       ->deferring_access_checks_kind = dk_deferred;
167 }
168
169 /* Stop deferring access checks.  */
170
171 void
172 stop_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_no_deferred;
177 }
178
179 /* Discard the current deferred access checks and restore the
180    previous states.  */
181
182 void
183 pop_deferring_access_checks (void)
184 {
185   if (deferred_access_no_check)
186     deferred_access_no_check--;
187   else
188     VEC_pop (deferred_access, deferred_access_stack);
189 }
190
191 /* Returns a TREE_LIST representing the deferred checks.
192    The TREE_PURPOSE of each node is the type through which the
193    access occurred; the TREE_VALUE is the declaration named.
194    */
195
196 VEC (deferred_access_check,gc)*
197 get_deferred_access_checks (void)
198 {
199   if (deferred_access_no_check)
200     return NULL;
201   else
202     return (VEC_last (deferred_access, deferred_access_stack)
203             ->deferred_access_checks);
204 }
205
206 /* Take current deferred checks and combine with the
207    previous states if we also defer checks previously.
208    Otherwise perform checks now.  */
209
210 void
211 pop_to_parent_deferring_access_checks (void)
212 {
213   if (deferred_access_no_check)
214     deferred_access_no_check--;
215   else
216     {
217       VEC (deferred_access_check,gc) *checks;
218       deferred_access *ptr;
219
220       checks = (VEC_last (deferred_access, deferred_access_stack)
221                 ->deferred_access_checks);
222
223       VEC_pop (deferred_access, deferred_access_stack);
224       ptr = VEC_last (deferred_access, deferred_access_stack);
225       if (ptr->deferring_access_checks_kind == dk_no_deferred)
226         {
227           /* Check access.  */
228           perform_access_checks (checks);
229         }
230       else
231         {
232           /* Merge with parent.  */
233           int i, j;
234           deferred_access_check *chk, *probe;
235
236           for (i = 0 ;
237                VEC_iterate (deferred_access_check, checks, i, chk) ;
238                ++i)
239             {
240               for (j = 0 ;
241                    VEC_iterate (deferred_access_check,
242                                 ptr->deferred_access_checks, j, probe) ;
243                    ++j)
244                 {
245                   if (probe->binfo == chk->binfo &&
246                       probe->decl == chk->decl &&
247                       probe->diag_decl == chk->diag_decl)
248                     goto found;
249                 }
250               /* Insert into parent's checks.  */
251               VEC_safe_push (deferred_access_check, gc,
252                              ptr->deferred_access_checks, chk);
253             found:;
254             }
255         }
256     }
257 }
258
259 /* Perform the access checks in CHECKS.  The TREE_PURPOSE of each node
260    is the BINFO indicating the qualifying scope used to access the
261    DECL node stored in the TREE_VALUE of the node.  */
262
263 void
264 perform_access_checks (VEC (deferred_access_check,gc)* checks)
265 {
266   int i;
267   deferred_access_check *chk;
268
269   if (!checks)
270     return;
271
272   for (i = 0 ; VEC_iterate (deferred_access_check, checks, i, chk) ; ++i)
273     enforce_access (chk->binfo, chk->decl, chk->diag_decl);
274 }
275
276 /* Perform the deferred access checks.
277
278    After performing the checks, we still have to keep the list
279    `deferred_access_stack->deferred_access_checks' since we may want
280    to check access for them again later in a different context.
281    For example:
282
283      class A {
284        typedef int X;
285        static X a;
286      };
287      A::X A::a, x;      // No error for `A::a', error for `x'
288
289    We have to perform deferred access of `A::X', first with `A::a',
290    next with `x'.  */
291
292 void
293 perform_deferred_access_checks (void)
294 {
295   perform_access_checks (get_deferred_access_checks ());
296 }
297
298 /* Defer checking the accessibility of DECL, when looked up in
299    BINFO. DIAG_DECL is the declaration to use to print diagnostics.  */
300
301 void
302 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl)
303 {
304   int i;
305   deferred_access *ptr;
306   deferred_access_check *chk;
307   deferred_access_check *new_access;
308
309
310   /* Exit if we are in a context that no access checking is performed.
311      */
312   if (deferred_access_no_check)
313     return;
314
315   gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
316
317   ptr = VEC_last (deferred_access, deferred_access_stack);
318
319   /* If we are not supposed to defer access checks, just check now.  */
320   if (ptr->deferring_access_checks_kind == dk_no_deferred)
321     {
322       enforce_access (binfo, decl, diag_decl);
323       return;
324     }
325
326   /* See if we are already going to perform this check.  */
327   for (i = 0 ;
328        VEC_iterate (deferred_access_check,
329                     ptr->deferred_access_checks, i, chk) ;
330        ++i)
331     {
332       if (chk->decl == decl && chk->binfo == binfo &&
333           chk->diag_decl == diag_decl)
334         {
335           return;
336         }
337     }
338   /* If not, record the check.  */
339   new_access =
340     VEC_safe_push (deferred_access_check, gc,
341                    ptr->deferred_access_checks, 0);
342   new_access->binfo = binfo;
343   new_access->decl = decl;
344   new_access->diag_decl = diag_decl;
345 }
346
347 /* Returns nonzero if the current statement is a full expression,
348    i.e. temporaries created during that statement should be destroyed
349    at the end of the statement.  */
350
351 int
352 stmts_are_full_exprs_p (void)
353 {
354   return current_stmt_tree ()->stmts_are_full_exprs_p;
355 }
356
357 /* T is a statement.  Add it to the statement-tree.  This is the C++
358    version.  The C/ObjC frontends have a slightly different version of
359    this function.  */
360
361 tree
362 add_stmt (tree t)
363 {
364   enum tree_code code = TREE_CODE (t);
365
366   if (EXPR_P (t) && code != LABEL_EXPR)
367     {
368       if (!EXPR_HAS_LOCATION (t))
369         SET_EXPR_LOCATION (t, input_location);
370
371       /* When we expand a statement-tree, we must know whether or not the
372          statements are full-expressions.  We record that fact here.  */
373       STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
374     }
375
376   /* Add T to the statement-tree.  Non-side-effect statements need to be
377      recorded during statement expressions.  */
378   append_to_statement_list_force (t, &cur_stmt_list);
379
380   return t;
381 }
382
383 /* Returns the stmt_tree to which statements are currently being added.  */
384
385 stmt_tree
386 current_stmt_tree (void)
387 {
388   return (cfun
389           ? &cfun->language->base.x_stmt_tree
390           : &scope_chain->x_stmt_tree);
391 }
392
393 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR.  */
394
395 static tree
396 maybe_cleanup_point_expr (tree expr)
397 {
398   if (!processing_template_decl && stmts_are_full_exprs_p ())
399     expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
400   return expr;
401 }
402
403 /* Like maybe_cleanup_point_expr except have the type of the new expression be
404    void so we don't need to create a temporary variable to hold the inner
405    expression.  The reason why we do this is because the original type might be
406    an aggregate and we cannot create a temporary variable for that type.  */
407
408 static tree
409 maybe_cleanup_point_expr_void (tree expr)
410 {
411   if (!processing_template_decl && stmts_are_full_exprs_p ())
412     expr = fold_build_cleanup_point_expr (void_type_node, expr);
413   return expr;
414 }
415
416
417
418 /* Create a declaration statement for the declaration given by the DECL.  */
419
420 void
421 add_decl_expr (tree decl)
422 {
423   tree r = build_stmt (input_location, DECL_EXPR, decl);
424   if (DECL_INITIAL (decl)
425       || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
426     r = maybe_cleanup_point_expr_void (r);
427   add_stmt (r);
428 }
429
430 /* Finish a scope.  */
431
432 tree
433 do_poplevel (tree stmt_list)
434 {
435   tree block = NULL;
436
437   if (stmts_are_full_exprs_p ())
438     block = poplevel (kept_level_p (), 1, 0);
439
440   stmt_list = pop_stmt_list (stmt_list);
441
442   if (!processing_template_decl)
443     {
444       stmt_list = c_build_bind_expr (input_location, block, stmt_list);
445       /* ??? See c_end_compound_stmt re statement expressions.  */
446     }
447
448   return stmt_list;
449 }
450
451 /* Begin a new scope.  */
452
453 static tree
454 do_pushlevel (scope_kind sk)
455 {
456   tree ret = push_stmt_list ();
457   if (stmts_are_full_exprs_p ())
458     begin_scope (sk, NULL);
459   return ret;
460 }
461
462 /* Queue a cleanup.  CLEANUP is an expression/statement to be executed
463    when the current scope is exited.  EH_ONLY is true when this is not
464    meant to apply to normal control flow transfer.  */
465
466 void
467 push_cleanup (tree decl, tree cleanup, bool eh_only)
468 {
469   tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
470   CLEANUP_EH_ONLY (stmt) = eh_only;
471   add_stmt (stmt);
472   CLEANUP_BODY (stmt) = push_stmt_list ();
473 }
474
475 /* Begin a conditional that might contain a declaration.  When generating
476    normal code, we want the declaration to appear before the statement
477    containing the conditional.  When generating template code, we want the
478    conditional to be rendered as the raw DECL_EXPR.  */
479
480 static void
481 begin_cond (tree *cond_p)
482 {
483   if (processing_template_decl)
484     *cond_p = push_stmt_list ();
485 }
486
487 /* Finish such a conditional.  */
488
489 static void
490 finish_cond (tree *cond_p, tree expr)
491 {
492   if (processing_template_decl)
493     {
494       tree cond = pop_stmt_list (*cond_p);
495       if (TREE_CODE (cond) == DECL_EXPR)
496         expr = cond;
497
498       if (check_for_bare_parameter_packs (expr))
499         *cond_p = error_mark_node;
500     }
501   *cond_p = expr;
502 }
503
504 /* If *COND_P specifies a conditional with a declaration, transform the
505    loop such that
506             while (A x = 42) { }
507             for (; A x = 42;) { }
508    becomes
509             while (true) { A x = 42; if (!x) break; }
510             for (;;) { A x = 42; if (!x) break; }
511    The statement list for BODY will be empty if the conditional did
512    not declare anything.  */
513
514 static void
515 simplify_loop_decl_cond (tree *cond_p, tree body)
516 {
517   tree cond, if_stmt;
518
519   if (!TREE_SIDE_EFFECTS (body))
520     return;
521
522   cond = *cond_p;
523   *cond_p = boolean_true_node;
524
525   if_stmt = begin_if_stmt ();
526   cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
527   finish_if_stmt_cond (cond, if_stmt);
528   finish_break_stmt ();
529   finish_then_clause (if_stmt);
530   finish_if_stmt (if_stmt);
531 }
532
533 /* Finish a goto-statement.  */
534
535 tree
536 finish_goto_stmt (tree destination)
537 {
538   if (TREE_CODE (destination) == IDENTIFIER_NODE)
539     destination = lookup_label (destination);
540
541   /* We warn about unused labels with -Wunused.  That means we have to
542      mark the used labels as used.  */
543   if (TREE_CODE (destination) == LABEL_DECL)
544     TREE_USED (destination) = 1;
545   else
546     {
547       /* The DESTINATION is being used as an rvalue.  */
548       if (!processing_template_decl)
549         {
550           destination = decay_conversion (destination);
551           destination = cp_convert (ptr_type_node, destination);
552           if (error_operand_p (destination))
553             return NULL_TREE;
554         }
555       /* We don't inline calls to functions with computed gotos.
556          Those functions are typically up to some funny business,
557          and may be depending on the labels being at particular
558          addresses, or some such.  */
559       DECL_UNINLINABLE (current_function_decl) = 1;
560     }
561
562   check_goto (destination);
563
564   return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
565 }
566
567 /* COND is the condition-expression for an if, while, etc.,
568    statement.  Convert it to a boolean value, if appropriate.
569    In addition, verify sequence points if -Wsequence-point is enabled.  */
570
571 static tree
572 maybe_convert_cond (tree cond)
573 {
574   /* Empty conditions remain empty.  */
575   if (!cond)
576     return NULL_TREE;
577
578   /* Wait until we instantiate templates before doing conversion.  */
579   if (processing_template_decl)
580     return cond;
581
582   if (warn_sequence_point)
583     verify_sequence_points (cond);
584
585   /* Do the conversion.  */
586   cond = convert_from_reference (cond);
587
588   if (TREE_CODE (cond) == MODIFY_EXPR
589       && !TREE_NO_WARNING (cond)
590       && warn_parentheses)
591     {
592       warning (OPT_Wparentheses,
593                "suggest parentheses around assignment used as truth value");
594       TREE_NO_WARNING (cond) = 1;
595     }
596
597   return condition_conversion (cond);
598 }
599
600 /* Finish an expression-statement, whose EXPRESSION is as indicated.  */
601
602 tree
603 finish_expr_stmt (tree expr)
604 {
605   tree r = NULL_TREE;
606
607   if (expr != NULL_TREE)
608     {
609       if (!processing_template_decl)
610         {
611           if (warn_sequence_point)
612             verify_sequence_points (expr);
613           expr = convert_to_void (expr, "statement", tf_warning_or_error);
614         }
615       else if (!type_dependent_expression_p (expr))
616         convert_to_void (build_non_dependent_expr (expr), "statement", 
617                          tf_warning_or_error);
618
619       if (check_for_bare_parameter_packs (expr))
620         expr = error_mark_node;
621
622       /* Simplification of inner statement expressions, compound exprs,
623          etc can result in us already having an EXPR_STMT.  */
624       if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
625         {
626           if (TREE_CODE (expr) != EXPR_STMT)
627             expr = build_stmt (input_location, EXPR_STMT, expr);
628           expr = maybe_cleanup_point_expr_void (expr);
629         }
630
631       r = add_stmt (expr);
632     }
633
634   finish_stmt ();
635
636   return r;
637 }
638
639
640 /* Begin an if-statement.  Returns a newly created IF_STMT if
641    appropriate.  */
642
643 tree
644 begin_if_stmt (void)
645 {
646   tree r, scope;
647   scope = do_pushlevel (sk_block);
648   r = build_stmt (input_location, IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
649   TREE_CHAIN (r) = scope;
650   begin_cond (&IF_COND (r));
651   return r;
652 }
653
654 /* Process the COND of an if-statement, which may be given by
655    IF_STMT.  */
656
657 void
658 finish_if_stmt_cond (tree cond, tree if_stmt)
659 {
660   finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
661   add_stmt (if_stmt);
662   THEN_CLAUSE (if_stmt) = push_stmt_list ();
663 }
664
665 /* Finish the then-clause of an if-statement, which may be given by
666    IF_STMT.  */
667
668 tree
669 finish_then_clause (tree if_stmt)
670 {
671   THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
672   return if_stmt;
673 }
674
675 /* Begin the else-clause of an if-statement.  */
676
677 void
678 begin_else_clause (tree if_stmt)
679 {
680   ELSE_CLAUSE (if_stmt) = push_stmt_list ();
681 }
682
683 /* Finish the else-clause of an if-statement, which may be given by
684    IF_STMT.  */
685
686 void
687 finish_else_clause (tree if_stmt)
688 {
689   ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
690 }
691
692 /* Finish an if-statement.  */
693
694 void
695 finish_if_stmt (tree if_stmt)
696 {
697   tree scope = TREE_CHAIN (if_stmt);
698   TREE_CHAIN (if_stmt) = NULL;
699   add_stmt (do_poplevel (scope));
700   finish_stmt ();
701 }
702
703 /* Begin a while-statement.  Returns a newly created WHILE_STMT if
704    appropriate.  */
705
706 tree
707 begin_while_stmt (void)
708 {
709   tree r;
710   r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
711   add_stmt (r);
712   WHILE_BODY (r) = do_pushlevel (sk_block);
713   begin_cond (&WHILE_COND (r));
714   return r;
715 }
716
717 /* Process the COND of a while-statement, which may be given by
718    WHILE_STMT.  */
719
720 void
721 finish_while_stmt_cond (tree cond, tree while_stmt)
722 {
723   finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
724   simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
725 }
726
727 /* Finish a while-statement, which may be given by WHILE_STMT.  */
728
729 void
730 finish_while_stmt (tree while_stmt)
731 {
732   WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
733   finish_stmt ();
734 }
735
736 /* Begin a do-statement.  Returns a newly created DO_STMT if
737    appropriate.  */
738
739 tree
740 begin_do_stmt (void)
741 {
742   tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
743   add_stmt (r);
744   DO_BODY (r) = push_stmt_list ();
745   return r;
746 }
747
748 /* Finish the body of a do-statement, which may be given by DO_STMT.  */
749
750 void
751 finish_do_body (tree do_stmt)
752 {
753   tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
754
755   if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
756     body = STATEMENT_LIST_TAIL (body)->stmt;
757
758   if (IS_EMPTY_STMT (body))
759     warning (OPT_Wempty_body,
760             "suggest explicit braces around empty body in %<do%> statement");
761 }
762
763 /* Finish a do-statement, which may be given by DO_STMT, and whose
764    COND is as indicated.  */
765
766 void
767 finish_do_stmt (tree cond, tree do_stmt)
768 {
769   cond = maybe_convert_cond (cond);
770   DO_COND (do_stmt) = cond;
771   finish_stmt ();
772 }
773
774 /* Finish a return-statement.  The EXPRESSION returned, if any, is as
775    indicated.  */
776
777 tree
778 finish_return_stmt (tree expr)
779 {
780   tree r;
781   bool no_warning;
782
783   expr = check_return_expr (expr, &no_warning);
784
785   if (flag_openmp && !check_omp_return ())
786     return error_mark_node;
787   if (!processing_template_decl)
788     {
789       if (warn_sequence_point)
790         verify_sequence_points (expr);
791       
792       if (DECL_DESTRUCTOR_P (current_function_decl)
793           || (DECL_CONSTRUCTOR_P (current_function_decl)
794               && targetm.cxx.cdtor_returns_this ()))
795         {
796           /* Similarly, all destructors must run destructors for
797              base-classes before returning.  So, all returns in a
798              destructor get sent to the DTOR_LABEL; finish_function emits
799              code to return a value there.  */
800           return finish_goto_stmt (cdtor_label);
801         }
802     }
803
804   r = build_stmt (input_location, RETURN_EXPR, expr);
805   TREE_NO_WARNING (r) |= no_warning;
806   r = maybe_cleanup_point_expr_void (r);
807   r = add_stmt (r);
808   finish_stmt ();
809
810   return r;
811 }
812
813 /* Begin a for-statement.  Returns a new FOR_STMT if appropriate.  */
814
815 tree
816 begin_for_stmt (void)
817 {
818   tree r;
819
820   r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
821                   NULL_TREE, NULL_TREE);
822
823   if (flag_new_for_scope > 0)
824     TREE_CHAIN (r) = do_pushlevel (sk_for);
825
826   if (processing_template_decl)
827     FOR_INIT_STMT (r) = push_stmt_list ();
828
829   return r;
830 }
831
832 /* Finish the for-init-statement of a for-statement, which may be
833    given by FOR_STMT.  */
834
835 void
836 finish_for_init_stmt (tree for_stmt)
837 {
838   if (processing_template_decl)
839     FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
840   add_stmt (for_stmt);
841   FOR_BODY (for_stmt) = do_pushlevel (sk_block);
842   begin_cond (&FOR_COND (for_stmt));
843 }
844
845 /* Finish the COND of a for-statement, which may be given by
846    FOR_STMT.  */
847
848 void
849 finish_for_cond (tree cond, tree for_stmt)
850 {
851   finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
852   simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
853 }
854
855 /* Finish the increment-EXPRESSION in a for-statement, which may be
856    given by FOR_STMT.  */
857
858 void
859 finish_for_expr (tree expr, tree for_stmt)
860 {
861   if (!expr)
862     return;
863   /* If EXPR is an overloaded function, issue an error; there is no
864      context available to use to perform overload resolution.  */
865   if (type_unknown_p (expr))
866     {
867       cxx_incomplete_type_error (expr, TREE_TYPE (expr));
868       expr = error_mark_node;
869     }
870   if (!processing_template_decl)
871     {
872       if (warn_sequence_point)
873         verify_sequence_points (expr);
874       expr = convert_to_void (expr, "3rd expression in for",
875                               tf_warning_or_error);
876     }
877   else if (!type_dependent_expression_p (expr))
878     convert_to_void (build_non_dependent_expr (expr), "3rd expression in for",
879                      tf_warning_or_error);
880   expr = maybe_cleanup_point_expr_void (expr);
881   if (check_for_bare_parameter_packs (expr))
882     expr = error_mark_node;
883   FOR_EXPR (for_stmt) = expr;
884 }
885
886 /* Finish the body of a for-statement, which may be given by
887    FOR_STMT.  The increment-EXPR for the loop must be
888    provided.  */
889
890 void
891 finish_for_stmt (tree for_stmt)
892 {
893   FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
894
895   /* Pop the scope for the body of the loop.  */
896   if (flag_new_for_scope > 0)
897     {
898       tree scope = TREE_CHAIN (for_stmt);
899       TREE_CHAIN (for_stmt) = NULL;
900       add_stmt (do_poplevel (scope));
901     }
902
903   finish_stmt ();
904 }
905
906 /* Finish a break-statement.  */
907
908 tree
909 finish_break_stmt (void)
910 {
911   return add_stmt (build_stmt (input_location, BREAK_STMT));
912 }
913
914 /* Finish a continue-statement.  */
915
916 tree
917 finish_continue_stmt (void)
918 {
919   return add_stmt (build_stmt (input_location, CONTINUE_STMT));
920 }
921
922 /* Begin a switch-statement.  Returns a new SWITCH_STMT if
923    appropriate.  */
924
925 tree
926 begin_switch_stmt (void)
927 {
928   tree r, scope;
929
930   r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
931
932   scope = do_pushlevel (sk_block);
933   TREE_CHAIN (r) = scope;
934   begin_cond (&SWITCH_STMT_COND (r));
935
936   return r;
937 }
938
939 /* Finish the cond of a switch-statement.  */
940
941 void
942 finish_switch_cond (tree cond, tree switch_stmt)
943 {
944   tree orig_type = NULL;
945   if (!processing_template_decl)
946     {
947       /* Convert the condition to an integer or enumeration type.  */
948       cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
949       if (cond == NULL_TREE)
950         {
951           error ("switch quantity not an integer");
952           cond = error_mark_node;
953         }
954       orig_type = TREE_TYPE (cond);
955       if (cond != error_mark_node)
956         {
957           /* [stmt.switch]
958
959              Integral promotions are performed.  */
960           cond = perform_integral_promotions (cond);
961           cond = maybe_cleanup_point_expr (cond);
962         }
963     }
964   if (check_for_bare_parameter_packs (cond))
965     cond = error_mark_node;
966   else if (!processing_template_decl && warn_sequence_point)
967     verify_sequence_points (cond);
968
969   finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
970   SWITCH_STMT_TYPE (switch_stmt) = orig_type;
971   add_stmt (switch_stmt);
972   push_switch (switch_stmt);
973   SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
974 }
975
976 /* Finish the body of a switch-statement, which may be given by
977    SWITCH_STMT.  The COND to switch on is indicated.  */
978
979 void
980 finish_switch_stmt (tree switch_stmt)
981 {
982   tree scope;
983
984   SWITCH_STMT_BODY (switch_stmt) =
985     pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
986   pop_switch ();
987   finish_stmt ();
988
989   scope = TREE_CHAIN (switch_stmt);
990   TREE_CHAIN (switch_stmt) = NULL;
991   add_stmt (do_poplevel (scope));
992 }
993
994 /* Begin a try-block.  Returns a newly-created TRY_BLOCK if
995    appropriate.  */
996
997 tree
998 begin_try_block (void)
999 {
1000   tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1001   add_stmt (r);
1002   TRY_STMTS (r) = push_stmt_list ();
1003   return r;
1004 }
1005
1006 /* Likewise, for a function-try-block.  The block returned in
1007    *COMPOUND_STMT is an artificial outer scope, containing the
1008    function-try-block.  */
1009
1010 tree
1011 begin_function_try_block (tree *compound_stmt)
1012 {
1013   tree r;
1014   /* This outer scope does not exist in the C++ standard, but we need
1015      a place to put __FUNCTION__ and similar variables.  */
1016   *compound_stmt = begin_compound_stmt (0);
1017   r = begin_try_block ();
1018   FN_TRY_BLOCK_P (r) = 1;
1019   return r;
1020 }
1021
1022 /* Finish a try-block, which may be given by TRY_BLOCK.  */
1023
1024 void
1025 finish_try_block (tree try_block)
1026 {
1027   TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1028   TRY_HANDLERS (try_block) = push_stmt_list ();
1029 }
1030
1031 /* Finish the body of a cleanup try-block, which may be given by
1032    TRY_BLOCK.  */
1033
1034 void
1035 finish_cleanup_try_block (tree try_block)
1036 {
1037   TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1038 }
1039
1040 /* Finish an implicitly generated try-block, with a cleanup is given
1041    by CLEANUP.  */
1042
1043 void
1044 finish_cleanup (tree cleanup, tree try_block)
1045 {
1046   TRY_HANDLERS (try_block) = cleanup;
1047   CLEANUP_P (try_block) = 1;
1048 }
1049
1050 /* Likewise, for a function-try-block.  */
1051
1052 void
1053 finish_function_try_block (tree try_block)
1054 {
1055   finish_try_block (try_block);
1056   /* FIXME : something queer about CTOR_INITIALIZER somehow following
1057      the try block, but moving it inside.  */
1058   in_function_try_handler = 1;
1059 }
1060
1061 /* Finish a handler-sequence for a try-block, which may be given by
1062    TRY_BLOCK.  */
1063
1064 void
1065 finish_handler_sequence (tree try_block)
1066 {
1067   TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1068   check_handlers (TRY_HANDLERS (try_block));
1069 }
1070
1071 /* Finish the handler-seq for a function-try-block, given by
1072    TRY_BLOCK.  COMPOUND_STMT is the outer block created by
1073    begin_function_try_block.  */
1074
1075 void
1076 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1077 {
1078   in_function_try_handler = 0;
1079   finish_handler_sequence (try_block);
1080   finish_compound_stmt (compound_stmt);
1081 }
1082
1083 /* Begin a handler.  Returns a HANDLER if appropriate.  */
1084
1085 tree
1086 begin_handler (void)
1087 {
1088   tree r;
1089
1090   r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1091   add_stmt (r);
1092
1093   /* Create a binding level for the eh_info and the exception object
1094      cleanup.  */
1095   HANDLER_BODY (r) = do_pushlevel (sk_catch);
1096
1097   return r;
1098 }
1099
1100 /* Finish the handler-parameters for a handler, which may be given by
1101    HANDLER.  DECL is the declaration for the catch parameter, or NULL
1102    if this is a `catch (...)' clause.  */
1103
1104 void
1105 finish_handler_parms (tree decl, tree handler)
1106 {
1107   tree type = NULL_TREE;
1108   if (processing_template_decl)
1109     {
1110       if (decl)
1111         {
1112           decl = pushdecl (decl);
1113           decl = push_template_decl (decl);
1114           HANDLER_PARMS (handler) = decl;
1115           type = TREE_TYPE (decl);
1116         }
1117     }
1118   else
1119     type = expand_start_catch_block (decl);
1120   HANDLER_TYPE (handler) = type;
1121   if (!processing_template_decl && type)
1122     mark_used (eh_type_info (type));
1123 }
1124
1125 /* Finish a handler, which may be given by HANDLER.  The BLOCKs are
1126    the return value from the matching call to finish_handler_parms.  */
1127
1128 void
1129 finish_handler (tree handler)
1130 {
1131   if (!processing_template_decl)
1132     expand_end_catch_block ();
1133   HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1134 }
1135
1136 /* Begin a compound statement.  FLAGS contains some bits that control the
1137    behavior and context.  If BCS_NO_SCOPE is set, the compound statement
1138    does not define a scope.  If BCS_FN_BODY is set, this is the outermost
1139    block of a function.  If BCS_TRY_BLOCK is set, this is the block
1140    created on behalf of a TRY statement.  Returns a token to be passed to
1141    finish_compound_stmt.  */
1142
1143 tree
1144 begin_compound_stmt (unsigned int flags)
1145 {
1146   tree r;
1147
1148   if (flags & BCS_NO_SCOPE)
1149     {
1150       r = push_stmt_list ();
1151       STATEMENT_LIST_NO_SCOPE (r) = 1;
1152
1153       /* Normally, we try hard to keep the BLOCK for a statement-expression.
1154          But, if it's a statement-expression with a scopeless block, there's
1155          nothing to keep, and we don't want to accidentally keep a block
1156          *inside* the scopeless block.  */
1157       keep_next_level (false);
1158     }
1159   else
1160     r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1161
1162   /* When processing a template, we need to remember where the braces were,
1163      so that we can set up identical scopes when instantiating the template
1164      later.  BIND_EXPR is a handy candidate for this.
1165      Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1166      result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1167      processing templates.  */
1168   if (processing_template_decl)
1169     {
1170       r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1171       BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1172       BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1173       TREE_SIDE_EFFECTS (r) = 1;
1174     }
1175
1176   return r;
1177 }
1178
1179 /* Finish a compound-statement, which is given by STMT.  */
1180
1181 void
1182 finish_compound_stmt (tree stmt)
1183 {
1184   if (TREE_CODE (stmt) == BIND_EXPR)
1185     BIND_EXPR_BODY (stmt) = do_poplevel (BIND_EXPR_BODY (stmt));
1186   else if (STATEMENT_LIST_NO_SCOPE (stmt))
1187     stmt = pop_stmt_list (stmt);
1188   else
1189     {
1190       /* Destroy any ObjC "super" receivers that may have been
1191          created.  */
1192       objc_clear_super_receiver ();
1193
1194       stmt = do_poplevel (stmt);
1195     }
1196
1197   /* ??? See c_end_compound_stmt wrt statement expressions.  */
1198   add_stmt (stmt);
1199   finish_stmt ();
1200 }
1201
1202 /* Finish an asm-statement, whose components are a STRING, some
1203    OUTPUT_OPERANDS, some INPUT_OPERANDS, and some CLOBBERS.  Also note
1204    whether the asm-statement should be considered volatile.  */
1205
1206 tree
1207 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1208                  tree input_operands, tree clobbers)
1209 {
1210   tree r;
1211   tree t;
1212   int ninputs = list_length (input_operands);
1213   int noutputs = list_length (output_operands);
1214
1215   if (!processing_template_decl)
1216     {
1217       const char *constraint;
1218       const char **oconstraints;
1219       bool allows_mem, allows_reg, is_inout;
1220       tree operand;
1221       int i;
1222
1223       oconstraints = (const char **) alloca (noutputs * sizeof (char *));
1224
1225       string = resolve_asm_operand_names (string, output_operands,
1226                                           input_operands);
1227
1228       for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1229         {
1230           operand = TREE_VALUE (t);
1231
1232           /* ??? Really, this should not be here.  Users should be using a
1233              proper lvalue, dammit.  But there's a long history of using
1234              casts in the output operands.  In cases like longlong.h, this
1235              becomes a primitive form of typechecking -- if the cast can be
1236              removed, then the output operand had a type of the proper width;
1237              otherwise we'll get an error.  Gross, but ...  */
1238           STRIP_NOPS (operand);
1239
1240           if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1241             operand = error_mark_node;
1242
1243           if (operand != error_mark_node
1244               && (TREE_READONLY (operand)
1245                   || CP_TYPE_CONST_P (TREE_TYPE (operand))
1246                   /* Functions are not modifiable, even though they are
1247                      lvalues.  */
1248                   || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1249                   || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1250                   /* If it's an aggregate and any field is const, then it is
1251                      effectively const.  */
1252                   || (CLASS_TYPE_P (TREE_TYPE (operand))
1253                       && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1254             readonly_error (operand, "assignment (via 'asm' output)");
1255
1256           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1257           oconstraints[i] = constraint;
1258
1259           if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1260                                        &allows_mem, &allows_reg, &is_inout))
1261             {
1262               /* If the operand is going to end up in memory,
1263                  mark it addressable.  */
1264               if (!allows_reg && !cxx_mark_addressable (operand))
1265                 operand = error_mark_node;
1266             }
1267           else
1268             operand = error_mark_node;
1269
1270           TREE_VALUE (t) = operand;
1271         }
1272
1273       for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1274         {
1275           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1276           operand = decay_conversion (TREE_VALUE (t));
1277
1278           /* If the type of the operand hasn't been determined (e.g.,
1279              because it involves an overloaded function), then issue
1280              an error message.  There's no context available to
1281              resolve the overloading.  */
1282           if (TREE_TYPE (operand) == unknown_type_node)
1283             {
1284               error ("type of asm operand %qE could not be determined",
1285                      TREE_VALUE (t));
1286               operand = error_mark_node;
1287             }
1288
1289           if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1290                                       oconstraints, &allows_mem, &allows_reg))
1291             {
1292               /* If the operand is going to end up in memory,
1293                  mark it addressable.  */
1294               if (!allows_reg && allows_mem)
1295                 {
1296                   /* Strip the nops as we allow this case.  FIXME, this really
1297                      should be rejected or made deprecated.  */
1298                   STRIP_NOPS (operand);
1299                   if (!cxx_mark_addressable (operand))
1300                     operand = error_mark_node;
1301                 }
1302             }
1303           else
1304             operand = error_mark_node;
1305
1306           TREE_VALUE (t) = operand;
1307         }
1308     }
1309
1310   r = build_stmt (input_location, ASM_EXPR, string,
1311                   output_operands, input_operands,
1312                   clobbers);
1313   ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1314   r = maybe_cleanup_point_expr_void (r);
1315   return add_stmt (r);
1316 }
1317
1318 /* Finish a label with the indicated NAME.  Returns the new label.  */
1319
1320 tree
1321 finish_label_stmt (tree name)
1322 {
1323   tree decl = define_label (input_location, name);
1324
1325   if (decl == error_mark_node)
1326     return error_mark_node;
1327
1328   add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1329
1330   return decl;
1331 }
1332
1333 /* Finish a series of declarations for local labels.  G++ allows users
1334    to declare "local" labels, i.e., labels with scope.  This extension
1335    is useful when writing code involving statement-expressions.  */
1336
1337 void
1338 finish_label_decl (tree name)
1339 {
1340   if (!at_function_scope_p ())
1341     {
1342       error ("__label__ declarations are only allowed in function scopes");
1343       return;
1344     }
1345
1346   add_decl_expr (declare_local_label (name));
1347 }
1348
1349 /* When DECL goes out of scope, make sure that CLEANUP is executed.  */
1350
1351 void
1352 finish_decl_cleanup (tree decl, tree cleanup)
1353 {
1354   push_cleanup (decl, cleanup, false);
1355 }
1356
1357 /* If the current scope exits with an exception, run CLEANUP.  */
1358
1359 void
1360 finish_eh_cleanup (tree cleanup)
1361 {
1362   push_cleanup (NULL, cleanup, true);
1363 }
1364
1365 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1366    order they were written by the user.  Each node is as for
1367    emit_mem_initializers.  */
1368
1369 void
1370 finish_mem_initializers (tree mem_inits)
1371 {
1372   /* Reorder the MEM_INITS so that they are in the order they appeared
1373      in the source program.  */
1374   mem_inits = nreverse (mem_inits);
1375
1376   if (processing_template_decl)
1377     {
1378       tree mem;
1379
1380       for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1381         {
1382           /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1383              check for bare parameter packs in the TREE_VALUE, because
1384              any parameter packs in the TREE_VALUE have already been
1385              bound as part of the TREE_PURPOSE.  See
1386              make_pack_expansion for more information.  */
1387           if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1388               && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1389             TREE_VALUE (mem) = error_mark_node;
1390         }
1391
1392       add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
1393     }
1394   else
1395     emit_mem_initializers (mem_inits);
1396 }
1397
1398 /* Finish a parenthesized expression EXPR.  */
1399
1400 tree
1401 finish_parenthesized_expr (tree expr)
1402 {
1403   if (EXPR_P (expr))
1404     /* This inhibits warnings in c_common_truthvalue_conversion.  */
1405     TREE_NO_WARNING (expr) = 1;
1406
1407   if (TREE_CODE (expr) == OFFSET_REF)
1408     /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1409        enclosed in parentheses.  */
1410     PTRMEM_OK_P (expr) = 0;
1411
1412   if (TREE_CODE (expr) == STRING_CST)
1413     PAREN_STRING_LITERAL_P (expr) = 1;
1414
1415   return expr;
1416 }
1417
1418 /* Finish a reference to a non-static data member (DECL) that is not
1419    preceded by `.' or `->'.  */
1420
1421 tree
1422 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1423 {
1424   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1425
1426   if (!object && cp_unevaluated_operand != 0)
1427     {
1428       /* DR 613: Can use non-static data members without an associated
1429          object in sizeof/decltype/alignof.  */
1430       tree scope = qualifying_scope;
1431       if (scope == NULL_TREE)
1432         scope = context_for_name_lookup (decl);
1433       object = maybe_dummy_object (scope, NULL);
1434     }
1435
1436   if (!object)
1437     {
1438       if (current_function_decl
1439           && DECL_STATIC_FUNCTION_P (current_function_decl))
1440         error ("invalid use of member %q+D in static member function", decl);
1441       else
1442         error ("invalid use of non-static data member %q+D", decl);
1443       error ("from this location");
1444
1445       return error_mark_node;
1446     }
1447   if (current_class_ptr)
1448     TREE_USED (current_class_ptr) = 1;
1449   if (processing_template_decl && !qualifying_scope)
1450     {
1451       tree type = TREE_TYPE (decl);
1452
1453       if (TREE_CODE (type) == REFERENCE_TYPE)
1454         type = TREE_TYPE (type);
1455       else
1456         {
1457           /* Set the cv qualifiers.  */
1458           int quals = (current_class_ref
1459                        ? cp_type_quals (TREE_TYPE (current_class_ref))
1460                        : TYPE_UNQUALIFIED);
1461
1462           if (DECL_MUTABLE_P (decl))
1463             quals &= ~TYPE_QUAL_CONST;
1464
1465           quals |= cp_type_quals (TREE_TYPE (decl));
1466           type = cp_build_qualified_type (type, quals);
1467         }
1468
1469       return build_min (COMPONENT_REF, type, object, decl, NULL_TREE);
1470     }
1471   else
1472     {
1473       tree access_type = TREE_TYPE (object);
1474       tree lookup_context = context_for_name_lookup (decl);
1475
1476       while (!DERIVED_FROM_P (lookup_context, access_type))
1477         {
1478           access_type = TYPE_CONTEXT (access_type);
1479           while (access_type && DECL_P (access_type))
1480             access_type = DECL_CONTEXT (access_type);
1481
1482           if (!access_type)
1483             {
1484               error ("object missing in reference to %q+D", decl);
1485               error ("from this location");
1486               return error_mark_node;
1487             }
1488         }
1489
1490       /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1491          QUALIFYING_SCOPE is also non-null.  Wrap this in a SCOPE_REF
1492          for now.  */
1493       if (processing_template_decl)
1494         return build_qualified_name (TREE_TYPE (decl),
1495                                      qualifying_scope,
1496                                      DECL_NAME (decl),
1497                                      /*template_p=*/false);
1498
1499       perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1500                                      decl);
1501
1502       /* If the data member was named `C::M', convert `*this' to `C'
1503          first.  */
1504       if (qualifying_scope)
1505         {
1506           tree binfo = NULL_TREE;
1507           object = build_scoped_ref (object, qualifying_scope,
1508                                      &binfo);
1509         }
1510
1511       return build_class_member_access_expr (object, decl,
1512                                              /*access_path=*/NULL_TREE,
1513                                              /*preserve_reference=*/false,
1514                                              tf_warning_or_error);
1515     }
1516 }
1517
1518 /* DECL was the declaration to which a qualified-id resolved.  Issue
1519    an error message if it is not accessible.  If OBJECT_TYPE is
1520    non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1521    type of `*x', or `x', respectively.  If the DECL was named as
1522    `A::B' then NESTED_NAME_SPECIFIER is `A'.  */
1523
1524 void
1525 check_accessibility_of_qualified_id (tree decl,
1526                                      tree object_type,
1527                                      tree nested_name_specifier)
1528 {
1529   tree scope;
1530   tree qualifying_type = NULL_TREE;
1531
1532   /* If we are parsing a template declaration and if decl is a typedef,
1533      add it to a list tied to the template.
1534      At template instantiation time, that list will be walked and
1535      access check performed.  */
1536   if (is_typedef_decl (decl))
1537     {
1538       /* This the scope through which type_decl is accessed.
1539          It will be useful information later to do access check for
1540          type_decl usage.  */
1541       tree scope = nested_name_specifier
1542       ?  nested_name_specifier
1543       : DECL_CONTEXT (decl);
1544       tree templ_info = NULL;
1545       tree cs = current_scope ();
1546
1547       if (cs && (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL))
1548         templ_info = get_template_info (cs);
1549
1550       if (templ_info
1551           && TI_TEMPLATE (templ_info)
1552           && scope
1553           && CLASS_TYPE_P (scope)
1554           && !currently_open_class (scope))
1555         append_type_to_template_for_access_check (current_scope (), decl, scope);
1556     }
1557
1558   /* If we're not checking, return immediately.  */
1559   if (deferred_access_no_check)
1560     return;
1561
1562   /* Determine the SCOPE of DECL.  */
1563   scope = context_for_name_lookup (decl);
1564   /* If the SCOPE is not a type, then DECL is not a member.  */
1565   if (!TYPE_P (scope))
1566     return;
1567   /* Compute the scope through which DECL is being accessed.  */
1568   if (object_type
1569       /* OBJECT_TYPE might not be a class type; consider:
1570
1571            class A { typedef int I; };
1572            I *p;
1573            p->A::I::~I();
1574
1575          In this case, we will have "A::I" as the DECL, but "I" as the
1576          OBJECT_TYPE.  */
1577       && CLASS_TYPE_P (object_type)
1578       && DERIVED_FROM_P (scope, object_type))
1579     /* If we are processing a `->' or `.' expression, use the type of the
1580        left-hand side.  */
1581     qualifying_type = object_type;
1582   else if (nested_name_specifier)
1583     {
1584       /* If the reference is to a non-static member of the
1585          current class, treat it as if it were referenced through
1586          `this'.  */
1587       if (DECL_NONSTATIC_MEMBER_P (decl)
1588           && current_class_ptr
1589           && DERIVED_FROM_P (scope, current_class_type))
1590         qualifying_type = current_class_type;
1591       /* Otherwise, use the type indicated by the
1592          nested-name-specifier.  */
1593       else
1594         qualifying_type = nested_name_specifier;
1595     }
1596   else
1597     /* Otherwise, the name must be from the current class or one of
1598        its bases.  */
1599     qualifying_type = currently_open_derived_class (scope);
1600
1601   if (qualifying_type 
1602       /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1603          or similar in a default argument value.  */
1604       && CLASS_TYPE_P (qualifying_type)
1605       && !dependent_type_p (qualifying_type))
1606     perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1607                                    decl);
1608 }
1609
1610 /* EXPR is the result of a qualified-id.  The QUALIFYING_CLASS was the
1611    class named to the left of the "::" operator.  DONE is true if this
1612    expression is a complete postfix-expression; it is false if this
1613    expression is followed by '->', '[', '(', etc.  ADDRESS_P is true
1614    iff this expression is the operand of '&'.  TEMPLATE_P is true iff
1615    the qualified-id was of the form "A::template B".  TEMPLATE_ARG_P
1616    is true iff this qualified name appears as a template argument.  */
1617
1618 tree
1619 finish_qualified_id_expr (tree qualifying_class,
1620                           tree expr,
1621                           bool done,
1622                           bool address_p,
1623                           bool template_p,
1624                           bool template_arg_p)
1625 {
1626   gcc_assert (TYPE_P (qualifying_class));
1627
1628   if (error_operand_p (expr))
1629     return error_mark_node;
1630
1631   if (DECL_P (expr) || BASELINK_P (expr))
1632     mark_used (expr);
1633
1634   if (template_p)
1635     check_template_keyword (expr);
1636
1637   /* If EXPR occurs as the operand of '&', use special handling that
1638      permits a pointer-to-member.  */
1639   if (address_p && done)
1640     {
1641       if (TREE_CODE (expr) == SCOPE_REF)
1642         expr = TREE_OPERAND (expr, 1);
1643       expr = build_offset_ref (qualifying_class, expr,
1644                                /*address_p=*/true);
1645       return expr;
1646     }
1647
1648   /* Within the scope of a class, turn references to non-static
1649      members into expression of the form "this->...".  */
1650   if (template_arg_p)
1651     /* But, within a template argument, we do not want make the
1652        transformation, as there is no "this" pointer.  */
1653     ;
1654   else if (TREE_CODE (expr) == FIELD_DECL)
1655     {
1656       push_deferring_access_checks (dk_no_check);
1657       expr = finish_non_static_data_member (expr, current_class_ref,
1658                                             qualifying_class);
1659       pop_deferring_access_checks ();
1660     }
1661   else if (BASELINK_P (expr) && !processing_template_decl)
1662     {
1663       tree fns;
1664
1665       /* See if any of the functions are non-static members.  */
1666       fns = BASELINK_FUNCTIONS (expr);
1667       if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
1668         fns = TREE_OPERAND (fns, 0);
1669       /* If so, the expression may be relative to 'this'.  */
1670       if (!shared_member_p (fns)
1671           && current_class_ref
1672           && DERIVED_FROM_P (qualifying_class, TREE_TYPE (current_class_ref)))
1673         expr = (build_class_member_access_expr
1674                 (maybe_dummy_object (qualifying_class, NULL),
1675                  expr,
1676                  BASELINK_ACCESS_BINFO (expr),
1677                  /*preserve_reference=*/false,
1678                  tf_warning_or_error));
1679       else if (done)
1680         /* The expression is a qualified name whose address is not
1681            being taken.  */
1682         expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1683     }
1684
1685   return expr;
1686 }
1687
1688 /* Begin a statement-expression.  The value returned must be passed to
1689    finish_stmt_expr.  */
1690
1691 tree
1692 begin_stmt_expr (void)
1693 {
1694   return push_stmt_list ();
1695 }
1696
1697 /* Process the final expression of a statement expression. EXPR can be
1698    NULL, if the final expression is empty.  Return a STATEMENT_LIST
1699    containing all the statements in the statement-expression, or
1700    ERROR_MARK_NODE if there was an error.  */
1701
1702 tree
1703 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1704 {
1705   if (error_operand_p (expr))
1706     {
1707       /* The type of the statement-expression is the type of the last
1708          expression.  */
1709       TREE_TYPE (stmt_expr) = error_mark_node;
1710       return error_mark_node;
1711     }
1712
1713   /* If the last statement does not have "void" type, then the value
1714      of the last statement is the value of the entire expression.  */
1715   if (expr)
1716     {
1717       tree type = TREE_TYPE (expr);
1718
1719       if (processing_template_decl)
1720         {
1721           expr = build_stmt (input_location, EXPR_STMT, expr);
1722           expr = add_stmt (expr);
1723           /* Mark the last statement so that we can recognize it as such at
1724              template-instantiation time.  */
1725           EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1726         }
1727       else if (VOID_TYPE_P (type))
1728         {
1729           /* Just treat this like an ordinary statement.  */
1730           expr = finish_expr_stmt (expr);
1731         }
1732       else
1733         {
1734           /* It actually has a value we need to deal with.  First, force it
1735              to be an rvalue so that we won't need to build up a copy
1736              constructor call later when we try to assign it to something.  */
1737           expr = force_rvalue (expr);
1738           if (error_operand_p (expr))
1739             return error_mark_node;
1740
1741           /* Update for array-to-pointer decay.  */
1742           type = TREE_TYPE (expr);
1743
1744           /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1745              normal statement, but don't convert to void or actually add
1746              the EXPR_STMT.  */
1747           if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1748             expr = maybe_cleanup_point_expr (expr);
1749           add_stmt (expr);
1750         }
1751
1752       /* The type of the statement-expression is the type of the last
1753          expression.  */
1754       TREE_TYPE (stmt_expr) = type;
1755     }
1756
1757   return stmt_expr;
1758 }
1759
1760 /* Finish a statement-expression.  EXPR should be the value returned
1761    by the previous begin_stmt_expr.  Returns an expression
1762    representing the statement-expression.  */
1763
1764 tree
1765 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1766 {
1767   tree type;
1768   tree result;
1769
1770   if (error_operand_p (stmt_expr))
1771     {
1772       pop_stmt_list (stmt_expr);
1773       return error_mark_node;
1774     }
1775
1776   gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
1777
1778   type = TREE_TYPE (stmt_expr);
1779   result = pop_stmt_list (stmt_expr);
1780   TREE_TYPE (result) = type;
1781
1782   if (processing_template_decl)
1783     {
1784       result = build_min (STMT_EXPR, type, result);
1785       TREE_SIDE_EFFECTS (result) = 1;
1786       STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1787     }
1788   else if (CLASS_TYPE_P (type))
1789     {
1790       /* Wrap the statement-expression in a TARGET_EXPR so that the
1791          temporary object created by the final expression is destroyed at
1792          the end of the full-expression containing the
1793          statement-expression.  */
1794       result = force_target_expr (type, result);
1795     }
1796
1797   return result;
1798 }
1799
1800 /* Returns the expression which provides the value of STMT_EXPR.  */
1801
1802 tree
1803 stmt_expr_value_expr (tree stmt_expr)
1804 {
1805   tree t = STMT_EXPR_STMT (stmt_expr);
1806
1807   if (TREE_CODE (t) == BIND_EXPR)
1808     t = BIND_EXPR_BODY (t);
1809
1810   if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
1811     t = STATEMENT_LIST_TAIL (t)->stmt;
1812
1813   if (TREE_CODE (t) == EXPR_STMT)
1814     t = EXPR_STMT_EXPR (t);
1815
1816   return t;
1817 }
1818
1819 /* Perform Koenig lookup.  FN is the postfix-expression representing
1820    the function (or functions) to call; ARGS are the arguments to the
1821    call.  Returns the functions to be considered by overload
1822    resolution.  */
1823
1824 tree
1825 perform_koenig_lookup (tree fn, VEC(tree,gc) *args)
1826 {
1827   tree identifier = NULL_TREE;
1828   tree functions = NULL_TREE;
1829   tree tmpl_args = NULL_TREE;
1830
1831   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1832     {
1833       tmpl_args = TREE_OPERAND (fn, 1);
1834       fn = TREE_OPERAND (fn, 0);
1835     }
1836
1837   /* Find the name of the overloaded function.  */
1838   if (TREE_CODE (fn) == IDENTIFIER_NODE)
1839     identifier = fn;
1840   else if (is_overloaded_fn (fn))
1841     {
1842       functions = fn;
1843       identifier = DECL_NAME (get_first_fn (functions));
1844     }
1845   else if (DECL_P (fn))
1846     {
1847       functions = fn;
1848       identifier = DECL_NAME (fn);
1849     }
1850
1851   /* A call to a namespace-scope function using an unqualified name.
1852
1853      Do Koenig lookup -- unless any of the arguments are
1854      type-dependent.  */
1855   if (!any_type_dependent_arguments_p (args)
1856       && !any_dependent_template_arguments_p (tmpl_args))
1857     {
1858       fn = lookup_arg_dependent (identifier, functions, args);
1859       if (!fn)
1860         /* The unqualified name could not be resolved.  */
1861         fn = unqualified_fn_lookup_error (identifier);
1862     }
1863
1864   if (fn && tmpl_args)
1865     fn = build_nt (TEMPLATE_ID_EXPR, fn, tmpl_args);
1866   
1867   return fn;
1868 }
1869
1870 /* Generate an expression for `FN (ARGS)'.  This may change the
1871    contents of ARGS.
1872
1873    If DISALLOW_VIRTUAL is true, the call to FN will be not generated
1874    as a virtual call, even if FN is virtual.  (This flag is set when
1875    encountering an expression where the function name is explicitly
1876    qualified.  For example a call to `X::f' never generates a virtual
1877    call.)
1878
1879    Returns code for the call.  */
1880
1881 tree
1882 finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
1883                   bool koenig_p, tsubst_flags_t complain)
1884 {
1885   tree result;
1886   tree orig_fn;
1887   VEC(tree,gc) *orig_args = NULL;
1888
1889   if (fn == error_mark_node)
1890     return error_mark_node;
1891
1892   gcc_assert (!TYPE_P (fn));
1893
1894   orig_fn = fn;
1895
1896   if (processing_template_decl)
1897     {
1898       if (type_dependent_expression_p (fn)
1899           || any_type_dependent_arguments_p (*args))
1900         {
1901           result = build_nt_call_vec (fn, *args);
1902           KOENIG_LOOKUP_P (result) = koenig_p;
1903           if (cfun)
1904             {
1905               do
1906                 {
1907                   tree fndecl = OVL_CURRENT (fn);
1908                   if (TREE_CODE (fndecl) != FUNCTION_DECL
1909                       || !TREE_THIS_VOLATILE (fndecl))
1910                     break;
1911                   fn = OVL_NEXT (fn);
1912                 }
1913               while (fn);
1914               if (!fn)
1915                 current_function_returns_abnormally = 1;
1916             }
1917           return result;
1918         }
1919       orig_args = make_tree_vector_copy (*args);
1920       if (!BASELINK_P (fn)
1921           && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
1922           && TREE_TYPE (fn) != unknown_type_node)
1923         fn = build_non_dependent_expr (fn);
1924       make_args_non_dependent (*args);
1925     }
1926
1927   if (is_overloaded_fn (fn))
1928     fn = baselink_for_fns (fn);
1929
1930   result = NULL_TREE;
1931   if (BASELINK_P (fn))
1932     {
1933       tree object;
1934
1935       /* A call to a member function.  From [over.call.func]:
1936
1937            If the keyword this is in scope and refers to the class of
1938            that member function, or a derived class thereof, then the
1939            function call is transformed into a qualified function call
1940            using (*this) as the postfix-expression to the left of the
1941            . operator.... [Otherwise] a contrived object of type T
1942            becomes the implied object argument.
1943
1944         This paragraph is unclear about this situation:
1945
1946           struct A { void f(); };
1947           struct B : public A {};
1948           struct C : public A { void g() { B::f(); }};
1949
1950         In particular, for `B::f', this paragraph does not make clear
1951         whether "the class of that member function" refers to `A' or
1952         to `B'.  We believe it refers to `B'.  */
1953       if (current_class_type
1954           && DERIVED_FROM_P (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1955                              current_class_type)
1956           && current_class_ref)
1957         object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
1958                                      NULL);
1959       else
1960         {
1961           tree representative_fn;
1962
1963           representative_fn = BASELINK_FUNCTIONS (fn);
1964           if (TREE_CODE (representative_fn) == TEMPLATE_ID_EXPR)
1965             representative_fn = TREE_OPERAND (representative_fn, 0);
1966           representative_fn = get_first_fn (representative_fn);
1967           object = build_dummy_object (DECL_CONTEXT (representative_fn));
1968         }
1969
1970       if (processing_template_decl)
1971         {
1972           if (type_dependent_expression_p (object))
1973             {
1974               tree ret = build_nt_call_vec (orig_fn, orig_args);
1975               release_tree_vector (orig_args);
1976               return ret;
1977             }
1978           object = build_non_dependent_expr (object);
1979         }
1980
1981       result = build_new_method_call (object, fn, args, NULL_TREE,
1982                                       (disallow_virtual
1983                                        ? LOOKUP_NONVIRTUAL : 0),
1984                                       /*fn_p=*/NULL,
1985                                       complain);
1986     }
1987   else if (is_overloaded_fn (fn))
1988     {
1989       /* If the function is an overloaded builtin, resolve it.  */
1990       if (TREE_CODE (fn) == FUNCTION_DECL
1991           && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
1992               || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
1993         result = resolve_overloaded_builtin (input_location, fn, *args);
1994
1995       if (!result)
1996         /* A call to a namespace-scope function.  */
1997         result = build_new_function_call (fn, args, koenig_p, complain);
1998     }
1999   else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2000     {
2001       if (!VEC_empty (tree, *args))
2002         error ("arguments to destructor are not allowed");
2003       /* Mark the pseudo-destructor call as having side-effects so
2004          that we do not issue warnings about its use.  */
2005       result = build1 (NOP_EXPR,
2006                        void_type_node,
2007                        TREE_OPERAND (fn, 0));
2008       TREE_SIDE_EFFECTS (result) = 1;
2009     }
2010   else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2011     /* If the "function" is really an object of class type, it might
2012        have an overloaded `operator ()'.  */
2013     result = build_op_call (fn, args, complain);
2014
2015   if (!result)
2016     /* A call where the function is unknown.  */
2017     result = cp_build_function_call_vec (fn, args, complain);
2018
2019   if (processing_template_decl)
2020     {
2021       result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2022       KOENIG_LOOKUP_P (result) = koenig_p;
2023       release_tree_vector (orig_args);
2024     }
2025
2026   return result;
2027 }
2028
2029 /* Finish a call to a postfix increment or decrement or EXPR.  (Which
2030    is indicated by CODE, which should be POSTINCREMENT_EXPR or
2031    POSTDECREMENT_EXPR.)  */
2032
2033 tree
2034 finish_increment_expr (tree expr, enum tree_code code)
2035 {
2036   return build_x_unary_op (code, expr, tf_warning_or_error);
2037 }
2038
2039 /* Finish a use of `this'.  Returns an expression for `this'.  */
2040
2041 tree
2042 finish_this_expr (void)
2043 {
2044   tree result;
2045
2046   if (current_class_ptr)
2047     {
2048       result = current_class_ptr;
2049     }
2050   else if (current_function_decl
2051            && DECL_STATIC_FUNCTION_P (current_function_decl))
2052     {
2053       error ("%<this%> is unavailable for static member functions");
2054       result = error_mark_node;
2055     }
2056   else
2057     {
2058       if (current_function_decl)
2059         error ("invalid use of %<this%> in non-member function");
2060       else
2061         error ("invalid use of %<this%> at top level");
2062       result = error_mark_node;
2063     }
2064
2065   return result;
2066 }
2067
2068 /* Finish a pseudo-destructor expression.  If SCOPE is NULL, the
2069    expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2070    the TYPE for the type given.  If SCOPE is non-NULL, the expression
2071    was of the form `OBJECT.SCOPE::~DESTRUCTOR'.  */
2072
2073 tree
2074 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
2075 {
2076   if (object == error_mark_node || destructor == error_mark_node)
2077     return error_mark_node;
2078
2079   gcc_assert (TYPE_P (destructor));
2080
2081   if (!processing_template_decl)
2082     {
2083       if (scope == error_mark_node)
2084         {
2085           error ("invalid qualifying scope in pseudo-destructor name");
2086           return error_mark_node;
2087         }
2088       if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2089         {
2090           error ("qualified type %qT does not match destructor name ~%qT",
2091                  scope, destructor);
2092           return error_mark_node;
2093         }
2094
2095
2096       /* [expr.pseudo] says both:
2097
2098            The type designated by the pseudo-destructor-name shall be
2099            the same as the object type.
2100
2101          and:
2102
2103            The cv-unqualified versions of the object type and of the
2104            type designated by the pseudo-destructor-name shall be the
2105            same type.
2106
2107          We implement the more generous second sentence, since that is
2108          what most other compilers do.  */
2109       if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2110                                                       destructor))
2111         {
2112           error ("%qE is not of type %qT", object, destructor);
2113           return error_mark_node;
2114         }
2115     }
2116
2117   return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
2118 }
2119
2120 /* Finish an expression of the form CODE EXPR.  */
2121
2122 tree
2123 finish_unary_op_expr (enum tree_code code, tree expr)
2124 {
2125   tree result = build_x_unary_op (code, expr, tf_warning_or_error);
2126   /* Inside a template, build_x_unary_op does not fold the
2127      expression. So check whether the result is folded before
2128      setting TREE_NEGATED_INT.  */
2129   if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
2130       && TREE_CODE (result) == INTEGER_CST
2131       && !TYPE_UNSIGNED (TREE_TYPE (result))
2132       && INT_CST_LT (result, integer_zero_node))
2133     {
2134       /* RESULT may be a cached INTEGER_CST, so we must copy it before
2135          setting TREE_NEGATED_INT.  */
2136       result = copy_node (result);
2137       TREE_NEGATED_INT (result) = 1;
2138     }
2139   if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2140     overflow_warning (input_location, result);
2141
2142   return result;
2143 }
2144
2145 /* Finish a compound-literal expression.  TYPE is the type to which
2146    the CONSTRUCTOR in COMPOUND_LITERAL is being cast.  */
2147
2148 tree
2149 finish_compound_literal (tree type, tree compound_literal)
2150 {
2151   if (type == error_mark_node)
2152     return error_mark_node;
2153
2154   if (!TYPE_OBJ_P (type))
2155     {
2156       error ("compound literal of non-object type %qT", type);
2157       return error_mark_node;
2158     }
2159
2160   if (processing_template_decl)
2161     {
2162       TREE_TYPE (compound_literal) = type;
2163       /* Mark the expression as a compound literal.  */
2164       TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2165       return compound_literal;
2166     }
2167
2168   type = complete_type (type);
2169
2170   if (TYPE_NON_AGGREGATE_CLASS (type))
2171     {
2172       /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2173          everywhere that deals with function arguments would be a pain, so
2174          just wrap it in a TREE_LIST.  The parser set a flag so we know
2175          that it came from T{} rather than T({}).  */
2176       CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2177       compound_literal = build_tree_list (NULL_TREE, compound_literal);
2178       return build_functional_cast (type, compound_literal, tf_error);
2179     }
2180
2181   if (TREE_CODE (type) == ARRAY_TYPE
2182       && check_array_initializer (NULL_TREE, type, compound_literal))
2183     return error_mark_node;
2184   compound_literal = reshape_init (type, compound_literal);
2185   if (TREE_CODE (type) == ARRAY_TYPE)
2186     cp_complete_array_type (&type, compound_literal, false);
2187   compound_literal = digest_init (type, compound_literal);
2188   if ((!at_function_scope_p () || cp_type_readonly (type))
2189       && initializer_constant_valid_p (compound_literal, type))
2190     {
2191       tree decl = create_temporary_var (type);
2192       DECL_INITIAL (decl) = compound_literal;
2193       TREE_STATIC (decl) = 1;
2194       decl = pushdecl_top_level (decl);
2195       DECL_NAME (decl) = make_anon_name ();
2196       SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2197       return decl;
2198     }
2199   else
2200     return get_target_expr (compound_literal);
2201 }
2202
2203 /* Return the declaration for the function-name variable indicated by
2204    ID.  */
2205
2206 tree
2207 finish_fname (tree id)
2208 {
2209   tree decl;
2210
2211   decl = fname_decl (input_location, C_RID_CODE (id), id);
2212   if (processing_template_decl)
2213     decl = DECL_NAME (decl);
2214   return decl;
2215 }
2216
2217 /* Finish a translation unit.  */
2218
2219 void
2220 finish_translation_unit (void)
2221 {
2222   /* In case there were missing closebraces,
2223      get us back to the global binding level.  */
2224   pop_everything ();
2225   while (current_namespace != global_namespace)
2226     pop_namespace ();
2227
2228   /* Do file scope __FUNCTION__ et al.  */
2229   finish_fname_decls ();
2230 }
2231
2232 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2233    Returns the parameter.  */
2234
2235 tree
2236 finish_template_type_parm (tree aggr, tree identifier)
2237 {
2238   if (aggr != class_type_node)
2239     {
2240       permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2241       aggr = class_type_node;
2242     }
2243
2244   return build_tree_list (aggr, identifier);
2245 }
2246
2247 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2248    Returns the parameter.  */
2249
2250 tree
2251 finish_template_template_parm (tree aggr, tree identifier)
2252 {
2253   tree decl = build_decl (input_location,
2254                           TYPE_DECL, identifier, NULL_TREE);
2255   tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2256   DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2257   DECL_TEMPLATE_RESULT (tmpl) = decl;
2258   DECL_ARTIFICIAL (decl) = 1;
2259   end_template_decl ();
2260
2261   gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2262
2263   check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl), 
2264                            /*is_primary=*/true, /*is_partial=*/false,
2265                            /*is_friend=*/0);
2266
2267   return finish_template_type_parm (aggr, tmpl);
2268 }
2269
2270 /* ARGUMENT is the default-argument value for a template template
2271    parameter.  If ARGUMENT is invalid, issue error messages and return
2272    the ERROR_MARK_NODE.  Otherwise, ARGUMENT itself is returned.  */
2273
2274 tree
2275 check_template_template_default_arg (tree argument)
2276 {
2277   if (TREE_CODE (argument) != TEMPLATE_DECL
2278       && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2279       && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2280     {
2281       if (TREE_CODE (argument) == TYPE_DECL)
2282         error ("invalid use of type %qT as a default value for a template "
2283                "template-parameter", TREE_TYPE (argument));
2284       else
2285         error ("invalid default argument for a template template parameter");
2286       return error_mark_node;
2287     }
2288
2289   return argument;
2290 }
2291
2292 /* Begin a class definition, as indicated by T.  */
2293
2294 tree
2295 begin_class_definition (tree t, tree attributes)
2296 {
2297   if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2298     return error_mark_node;
2299
2300   if (processing_template_parmlist)
2301     {
2302       error ("definition of %q#T inside template parameter list", t);
2303       return error_mark_node;
2304     }
2305   /* A non-implicit typename comes from code like:
2306
2307        template <typename T> struct A {
2308          template <typename U> struct A<T>::B ...
2309
2310      This is erroneous.  */
2311   else if (TREE_CODE (t) == TYPENAME_TYPE)
2312     {
2313       error ("invalid definition of qualified type %qT", t);
2314       t = error_mark_node;
2315     }
2316
2317   if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2318     {
2319       t = make_class_type (RECORD_TYPE);
2320       pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2321     }
2322
2323   /* Update the location of the decl.  */
2324   DECL_SOURCE_LOCATION (TYPE_NAME (t)) = input_location;
2325
2326   if (TYPE_BEING_DEFINED (t))
2327     {
2328       t = make_class_type (TREE_CODE (t));
2329       pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2330     }
2331   maybe_process_partial_specialization (t);
2332   pushclass (t);
2333   TYPE_BEING_DEFINED (t) = 1;
2334
2335   cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
2336
2337   if (flag_pack_struct)
2338     {
2339       tree v;
2340       TYPE_PACKED (t) = 1;
2341       /* Even though the type is being defined for the first time
2342          here, there might have been a forward declaration, so there
2343          might be cv-qualified variants of T.  */
2344       for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2345         TYPE_PACKED (v) = 1;
2346     }
2347   /* Reset the interface data, at the earliest possible
2348      moment, as it might have been set via a class foo;
2349      before.  */
2350   if (! TYPE_ANONYMOUS_P (t))
2351     {
2352       struct c_fileinfo *finfo = get_fileinfo (input_filename);
2353       CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2354       SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2355         (t, finfo->interface_unknown);
2356     }
2357   reset_specialization();
2358
2359   /* Make a declaration for this class in its own scope.  */
2360   build_self_reference ();
2361
2362   return t;
2363 }
2364
2365 /* Finish the member declaration given by DECL.  */
2366
2367 void
2368 finish_member_declaration (tree decl)
2369 {
2370   if (decl == error_mark_node || decl == NULL_TREE)
2371     return;
2372
2373   if (decl == void_type_node)
2374     /* The COMPONENT was a friend, not a member, and so there's
2375        nothing for us to do.  */
2376     return;
2377
2378   /* We should see only one DECL at a time.  */
2379   gcc_assert (TREE_CHAIN (decl) == NULL_TREE);
2380
2381   /* Set up access control for DECL.  */
2382   TREE_PRIVATE (decl)
2383     = (current_access_specifier == access_private_node);
2384   TREE_PROTECTED (decl)
2385     = (current_access_specifier == access_protected_node);
2386   if (TREE_CODE (decl) == TEMPLATE_DECL)
2387     {
2388       TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2389       TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2390     }
2391
2392   /* Mark the DECL as a member of the current class.  */
2393   DECL_CONTEXT (decl) = current_class_type;
2394
2395   /* Check for bare parameter packs in the member variable declaration.  */
2396   if (TREE_CODE (decl) == FIELD_DECL)
2397     {
2398       if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2399         TREE_TYPE (decl) = error_mark_node;
2400       if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2401         DECL_ATTRIBUTES (decl) = NULL_TREE;
2402     }
2403
2404   /* [dcl.link]
2405
2406      A C language linkage is ignored for the names of class members
2407      and the member function type of class member functions.  */
2408   if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2409     SET_DECL_LANGUAGE (decl, lang_cplusplus);
2410
2411   /* Put functions on the TYPE_METHODS list and everything else on the
2412      TYPE_FIELDS list.  Note that these are built up in reverse order.
2413      We reverse them (to obtain declaration order) in finish_struct.  */
2414   if (TREE_CODE (decl) == FUNCTION_DECL
2415       || DECL_FUNCTION_TEMPLATE_P (decl))
2416     {
2417       /* We also need to add this function to the
2418          CLASSTYPE_METHOD_VEC.  */
2419       if (add_method (current_class_type, decl, NULL_TREE))
2420         {
2421           TREE_CHAIN (decl) = TYPE_METHODS (current_class_type);
2422           TYPE_METHODS (current_class_type) = decl;
2423
2424           maybe_add_class_template_decl_list (current_class_type, decl,
2425                                               /*friend_p=*/0);
2426         }
2427     }
2428   /* Enter the DECL into the scope of the class.  */
2429   else if ((TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
2430            || pushdecl_class_level (decl))
2431     {
2432       /* All TYPE_DECLs go at the end of TYPE_FIELDS.  Ordinary fields
2433          go at the beginning.  The reason is that lookup_field_1
2434          searches the list in order, and we want a field name to
2435          override a type name so that the "struct stat hack" will
2436          work.  In particular:
2437
2438            struct S { enum E { }; int E } s;
2439            s.E = 3;
2440
2441          is valid.  In addition, the FIELD_DECLs must be maintained in
2442          declaration order so that class layout works as expected.
2443          However, we don't need that order until class layout, so we
2444          save a little time by putting FIELD_DECLs on in reverse order
2445          here, and then reversing them in finish_struct_1.  (We could
2446          also keep a pointer to the correct insertion points in the
2447          list.)  */
2448
2449       if (TREE_CODE (decl) == TYPE_DECL)
2450         TYPE_FIELDS (current_class_type)
2451           = chainon (TYPE_FIELDS (current_class_type), decl);
2452       else
2453         {
2454           TREE_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2455           TYPE_FIELDS (current_class_type) = decl;
2456         }
2457
2458       maybe_add_class_template_decl_list (current_class_type, decl,
2459                                           /*friend_p=*/0);
2460     }
2461
2462   if (pch_file)
2463     note_decl_for_pch (decl);
2464 }
2465
2466 /* DECL has been declared while we are building a PCH file.  Perform
2467    actions that we might normally undertake lazily, but which can be
2468    performed now so that they do not have to be performed in
2469    translation units which include the PCH file.  */
2470
2471 void
2472 note_decl_for_pch (tree decl)
2473 {
2474   gcc_assert (pch_file);
2475
2476   /* There's a good chance that we'll have to mangle names at some
2477      point, even if only for emission in debugging information.  */
2478   if ((TREE_CODE (decl) == VAR_DECL
2479        || TREE_CODE (decl) == FUNCTION_DECL)
2480       && !processing_template_decl)
2481     mangle_decl (decl);
2482 }
2483
2484 /* Finish processing a complete template declaration.  The PARMS are
2485    the template parameters.  */
2486
2487 void
2488 finish_template_decl (tree parms)
2489 {
2490   if (parms)
2491     end_template_decl ();
2492   else
2493     end_specialization ();
2494 }
2495
2496 /* Finish processing a template-id (which names a type) of the form
2497    NAME < ARGS >.  Return the TYPE_DECL for the type named by the
2498    template-id.  If ENTERING_SCOPE is nonzero we are about to enter
2499    the scope of template-id indicated.  */
2500
2501 tree
2502 finish_template_type (tree name, tree args, int entering_scope)
2503 {
2504   tree decl;
2505
2506   decl = lookup_template_class (name, args,
2507                                 NULL_TREE, NULL_TREE, entering_scope,
2508                                 tf_warning_or_error | tf_user);
2509   if (decl != error_mark_node)
2510     decl = TYPE_STUB_DECL (decl);
2511
2512   return decl;
2513 }
2514
2515 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2516    Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2517    BASE_CLASS, or NULL_TREE if an error occurred.  The
2518    ACCESS_SPECIFIER is one of
2519    access_{default,public,protected_private}_node.  For a virtual base
2520    we set TREE_TYPE.  */
2521
2522 tree
2523 finish_base_specifier (tree base, tree access, bool virtual_p)
2524 {
2525   tree result;
2526
2527   if (base == error_mark_node)
2528     {
2529       error ("invalid base-class specification");
2530       result = NULL_TREE;
2531     }
2532   else if (! MAYBE_CLASS_TYPE_P (base))
2533     {
2534       error ("%qT is not a class type", base);
2535       result = NULL_TREE;
2536     }
2537   else
2538     {
2539       if (cp_type_quals (base) != 0)
2540         {
2541           error ("base class %qT has cv qualifiers", base);
2542           base = TYPE_MAIN_VARIANT (base);
2543         }
2544       result = build_tree_list (access, base);
2545       if (virtual_p)
2546         TREE_TYPE (result) = integer_type_node;
2547     }
2548
2549   return result;
2550 }
2551
2552 /* Issue a diagnostic that NAME cannot be found in SCOPE.  DECL is
2553    what we found when we tried to do the lookup.
2554    LOCATION is the location of the NAME identifier;
2555    The location is used in the error message*/
2556
2557 void
2558 qualified_name_lookup_error (tree scope, tree name,
2559                              tree decl, location_t location)
2560 {
2561   if (scope == error_mark_node)
2562     ; /* We already complained.  */
2563   else if (TYPE_P (scope))
2564     {
2565       if (!COMPLETE_TYPE_P (scope))
2566         error_at (location, "incomplete type %qT used in nested name specifier",
2567                   scope);
2568       else if (TREE_CODE (decl) == TREE_LIST)
2569         {
2570           error_at (location, "reference to %<%T::%D%> is ambiguous",
2571                     scope, name);
2572           print_candidates (decl);
2573         }
2574       else
2575         error_at (location, "%qD is not a member of %qT", name, scope);
2576     }
2577   else if (scope != global_namespace)
2578     error_at (location, "%qD is not a member of %qD", name, scope);
2579   else
2580     error_at (location, "%<::%D%> has not been declared", name);
2581 }
2582
2583 /* If FNS is a member function, a set of member functions, or a
2584    template-id referring to one or more member functions, return a
2585    BASELINK for FNS, incorporating the current access context.
2586    Otherwise, return FNS unchanged.  */
2587
2588 tree
2589 baselink_for_fns (tree fns)
2590 {
2591   tree fn;
2592   tree cl;
2593
2594   if (BASELINK_P (fns) 
2595       || error_operand_p (fns))
2596     return fns;
2597   
2598   fn = fns;
2599   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2600     fn = TREE_OPERAND (fn, 0);
2601   fn = get_first_fn (fn);
2602   if (!DECL_FUNCTION_MEMBER_P (fn))
2603     return fns;
2604
2605   cl = currently_open_derived_class (DECL_CONTEXT (fn));
2606   if (!cl)
2607     cl = DECL_CONTEXT (fn);
2608   cl = TYPE_BINFO (cl);
2609   return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
2610 }
2611
2612 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2613    id-expression.  (See cp_parser_id_expression for details.)  SCOPE,
2614    if non-NULL, is the type or namespace used to explicitly qualify
2615    ID_EXPRESSION.  DECL is the entity to which that name has been
2616    resolved.
2617
2618    *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2619    constant-expression.  In that case, *NON_CONSTANT_EXPRESSION_P will
2620    be set to true if this expression isn't permitted in a
2621    constant-expression, but it is otherwise not set by this function.
2622    *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2623    constant-expression, but a non-constant expression is also
2624    permissible.
2625
2626    DONE is true if this expression is a complete postfix-expression;
2627    it is false if this expression is followed by '->', '[', '(', etc.
2628    ADDRESS_P is true iff this expression is the operand of '&'.
2629    TEMPLATE_P is true iff the qualified-id was of the form
2630    "A::template B".  TEMPLATE_ARG_P is true iff this qualified name
2631    appears as a template argument.
2632
2633    If an error occurs, and it is the kind of error that might cause
2634    the parser to abort a tentative parse, *ERROR_MSG is filled in.  It
2635    is the caller's responsibility to issue the message.  *ERROR_MSG
2636    will be a string with static storage duration, so the caller need
2637    not "free" it.
2638
2639    Return an expression for the entity, after issuing appropriate
2640    diagnostics.  This function is also responsible for transforming a
2641    reference to a non-static member into a COMPONENT_REF that makes
2642    the use of "this" explicit.
2643
2644    Upon return, *IDK will be filled in appropriately.  */
2645 tree
2646 finish_id_expression (tree id_expression,
2647                       tree decl,
2648                       tree scope,
2649                       cp_id_kind *idk,
2650                       bool integral_constant_expression_p,
2651                       bool allow_non_integral_constant_expression_p,
2652                       bool *non_integral_constant_expression_p,
2653                       bool template_p,
2654                       bool done,
2655                       bool address_p,
2656                       bool template_arg_p,
2657                       const char **error_msg,
2658                       location_t location)
2659 {
2660   /* Initialize the output parameters.  */
2661   *idk = CP_ID_KIND_NONE;
2662   *error_msg = NULL;
2663
2664   if (id_expression == error_mark_node)
2665     return error_mark_node;
2666   /* If we have a template-id, then no further lookup is
2667      required.  If the template-id was for a template-class, we
2668      will sometimes have a TYPE_DECL at this point.  */
2669   else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2670            || TREE_CODE (decl) == TYPE_DECL)
2671     ;
2672   /* Look up the name.  */
2673   else
2674     {
2675       if (decl == error_mark_node)
2676         {
2677           /* Name lookup failed.  */
2678           if (scope
2679               && (!TYPE_P (scope)
2680                   || (!dependent_type_p (scope)
2681                       && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2682                            && IDENTIFIER_TYPENAME_P (id_expression)
2683                            && dependent_type_p (TREE_TYPE (id_expression))))))
2684             {
2685               /* If the qualifying type is non-dependent (and the name
2686                  does not name a conversion operator to a dependent
2687                  type), issue an error.  */
2688               qualified_name_lookup_error (scope, id_expression, decl, location);
2689               return error_mark_node;
2690             }
2691           else if (!scope)
2692             {
2693               /* It may be resolved via Koenig lookup.  */
2694               *idk = CP_ID_KIND_UNQUALIFIED;
2695               return id_expression;
2696             }
2697           else
2698             decl = id_expression;
2699         }
2700       /* If DECL is a variable that would be out of scope under
2701          ANSI/ISO rules, but in scope in the ARM, name lookup
2702          will succeed.  Issue a diagnostic here.  */
2703       else
2704         decl = check_for_out_of_scope_variable (decl);
2705
2706       /* Remember that the name was used in the definition of
2707          the current class so that we can check later to see if
2708          the meaning would have been different after the class
2709          was entirely defined.  */
2710       if (!scope && decl != error_mark_node)
2711         maybe_note_name_used_in_class (id_expression, decl);
2712
2713       /* Disallow uses of local variables from containing functions.  */
2714       if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2715         {
2716           tree context = decl_function_context (decl);
2717           if (context != NULL_TREE && context != current_function_decl
2718               && ! TREE_STATIC (decl))
2719             {
2720               error (TREE_CODE (decl) == VAR_DECL
2721                      ? "use of %<auto%> variable from containing function"
2722                      : "use of parameter from containing function");
2723               error ("  %q+#D declared here", decl);
2724               return error_mark_node;
2725             }
2726         }
2727     }
2728
2729   /* If we didn't find anything, or what we found was a type,
2730      then this wasn't really an id-expression.  */
2731   if (TREE_CODE (decl) == TEMPLATE_DECL
2732       && !DECL_FUNCTION_TEMPLATE_P (decl))
2733     {
2734       *error_msg = "missing template arguments";
2735       return error_mark_node;
2736     }
2737   else if (TREE_CODE (decl) == TYPE_DECL
2738            || TREE_CODE (decl) == NAMESPACE_DECL)
2739     {
2740       *error_msg = "expected primary-expression";
2741       return error_mark_node;
2742     }
2743
2744   /* If the name resolved to a template parameter, there is no
2745      need to look it up again later.  */
2746   if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
2747       || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2748     {
2749       tree r;
2750
2751       *idk = CP_ID_KIND_NONE;
2752       if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2753         decl = TEMPLATE_PARM_DECL (decl);
2754       r = convert_from_reference (DECL_INITIAL (decl));
2755
2756       if (integral_constant_expression_p
2757           && !dependent_type_p (TREE_TYPE (decl))
2758           && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
2759         {
2760           if (!allow_non_integral_constant_expression_p)
2761             error ("template parameter %qD of type %qT is not allowed in "
2762                    "an integral constant expression because it is not of "
2763                    "integral or enumeration type", decl, TREE_TYPE (decl));
2764           *non_integral_constant_expression_p = true;
2765         }
2766       return r;
2767     }
2768   /* Similarly, we resolve enumeration constants to their
2769      underlying values.  */
2770   else if (TREE_CODE (decl) == CONST_DECL)
2771     {
2772       *idk = CP_ID_KIND_NONE;
2773       if (!processing_template_decl)
2774         {
2775           used_types_insert (TREE_TYPE (decl));
2776           return DECL_INITIAL (decl);
2777         }
2778       return decl;
2779     }
2780   else
2781     {
2782       bool dependent_p;
2783
2784       /* If the declaration was explicitly qualified indicate
2785          that.  The semantics of `A::f(3)' are different than
2786          `f(3)' if `f' is virtual.  */
2787       *idk = (scope
2788               ? CP_ID_KIND_QUALIFIED
2789               : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2790                  ? CP_ID_KIND_TEMPLATE_ID
2791                  : CP_ID_KIND_UNQUALIFIED));
2792
2793
2794       /* [temp.dep.expr]
2795
2796          An id-expression is type-dependent if it contains an
2797          identifier that was declared with a dependent type.
2798
2799          The standard is not very specific about an id-expression that
2800          names a set of overloaded functions.  What if some of them
2801          have dependent types and some of them do not?  Presumably,
2802          such a name should be treated as a dependent name.  */
2803       /* Assume the name is not dependent.  */
2804       dependent_p = false;
2805       if (!processing_template_decl)
2806         /* No names are dependent outside a template.  */
2807         ;
2808       /* A template-id where the name of the template was not resolved
2809          is definitely dependent.  */
2810       else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2811                && (TREE_CODE (TREE_OPERAND (decl, 0))
2812                    == IDENTIFIER_NODE))
2813         dependent_p = true;
2814       /* For anything except an overloaded function, just check its
2815          type.  */
2816       else if (!is_overloaded_fn (decl))
2817         dependent_p
2818           = dependent_type_p (TREE_TYPE (decl));
2819       /* For a set of overloaded functions, check each of the
2820          functions.  */
2821       else
2822         {
2823           tree fns = decl;
2824
2825           if (BASELINK_P (fns))
2826             fns = BASELINK_FUNCTIONS (fns);
2827
2828           /* For a template-id, check to see if the template
2829              arguments are dependent.  */
2830           if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
2831             {
2832               tree args = TREE_OPERAND (fns, 1);
2833               dependent_p = any_dependent_template_arguments_p (args);
2834               /* The functions are those referred to by the
2835                  template-id.  */
2836               fns = TREE_OPERAND (fns, 0);
2837             }
2838
2839           /* If there are no dependent template arguments, go through
2840              the overloaded functions.  */
2841           while (fns && !dependent_p)
2842             {
2843               tree fn = OVL_CURRENT (fns);
2844
2845               /* Member functions of dependent classes are
2846                  dependent.  */
2847               if (TREE_CODE (fn) == FUNCTION_DECL
2848                   && type_dependent_expression_p (fn))
2849                 dependent_p = true;
2850               else if (TREE_CODE (fn) == TEMPLATE_DECL
2851                        && dependent_template_p (fn))
2852                 dependent_p = true;
2853
2854               fns = OVL_NEXT (fns);
2855             }
2856         }
2857
2858       /* If the name was dependent on a template parameter, we will
2859          resolve the name at instantiation time.  */
2860       if (dependent_p)
2861         {
2862           /* Create a SCOPE_REF for qualified names, if the scope is
2863              dependent.  */
2864           if (scope)
2865             {
2866               if (TYPE_P (scope))
2867                 {
2868                   if (address_p && done)
2869                     decl = finish_qualified_id_expr (scope, decl,
2870                                                      done, address_p,
2871                                                      template_p,
2872                                                      template_arg_p);
2873                   else
2874                     {
2875                       tree type = NULL_TREE;
2876                       if (DECL_P (decl) && !dependent_scope_p (scope))
2877                         type = TREE_TYPE (decl);
2878                       decl = build_qualified_name (type,
2879                                                    scope,
2880                                                    id_expression,
2881                                                    template_p);
2882                     }
2883                 }
2884               if (TREE_TYPE (decl))
2885                 decl = convert_from_reference (decl);
2886               return decl;
2887             }
2888           /* A TEMPLATE_ID already contains all the information we
2889              need.  */
2890           if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
2891             return id_expression;
2892           *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
2893           /* If we found a variable, then name lookup during the
2894              instantiation will always resolve to the same VAR_DECL
2895              (or an instantiation thereof).  */
2896           if (TREE_CODE (decl) == VAR_DECL
2897               || TREE_CODE (decl) == PARM_DECL)
2898             return convert_from_reference (decl);
2899           /* The same is true for FIELD_DECL, but we also need to
2900              make sure that the syntax is correct.  */
2901           else if (TREE_CODE (decl) == FIELD_DECL)
2902             {
2903               /* Since SCOPE is NULL here, this is an unqualified name.
2904                  Access checking has been performed during name lookup
2905                  already.  Turn off checking to avoid duplicate errors.  */
2906               push_deferring_access_checks (dk_no_check);
2907               decl = finish_non_static_data_member
2908                        (decl, current_class_ref,
2909                         /*qualifying_scope=*/NULL_TREE);
2910               pop_deferring_access_checks ();
2911               return decl;
2912             }
2913           return id_expression;
2914         }
2915
2916       /* Only certain kinds of names are allowed in constant
2917          expression.  Enumerators and template parameters have already
2918          been handled above.  */
2919       if (integral_constant_expression_p
2920           && ! DECL_INTEGRAL_CONSTANT_VAR_P (decl)
2921           && ! builtin_valid_in_constant_expr_p (decl))
2922         {
2923           if (!allow_non_integral_constant_expression_p)
2924             {
2925               error ("%qD cannot appear in a constant-expression", decl);
2926               return error_mark_node;
2927             }
2928           *non_integral_constant_expression_p = true;
2929         }
2930
2931       if (TREE_CODE (decl) == NAMESPACE_DECL)
2932         {
2933           error ("use of namespace %qD as expression", decl);
2934           return error_mark_node;
2935         }
2936       else if (DECL_CLASS_TEMPLATE_P (decl))
2937         {
2938           error ("use of class template %qT as expression", decl);
2939           return error_mark_node;
2940         }
2941       else if (TREE_CODE (decl) == TREE_LIST)
2942         {
2943           /* Ambiguous reference to base members.  */
2944           error ("request for member %qD is ambiguous in "
2945                  "multiple inheritance lattice", id_expression);
2946           print_candidates (decl);
2947           return error_mark_node;
2948         }
2949
2950       /* Mark variable-like entities as used.  Functions are similarly
2951          marked either below or after overload resolution.  */
2952       if (TREE_CODE (decl) == VAR_DECL
2953           || TREE_CODE (decl) == PARM_DECL
2954           || TREE_CODE (decl) == RESULT_DECL)
2955         mark_used (decl);
2956
2957       if (scope)
2958         {
2959           decl = (adjust_result_of_qualified_name_lookup
2960                   (decl, scope, current_class_type));
2961
2962           if (TREE_CODE (decl) == FUNCTION_DECL)
2963             mark_used (decl);
2964
2965           if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
2966             decl = finish_qualified_id_expr (scope,
2967                                              decl,
2968                                              done,
2969                                              address_p,
2970                                              template_p,
2971                                              template_arg_p);
2972           else
2973             {
2974               tree r = convert_from_reference (decl);
2975
2976               if (processing_template_decl && TYPE_P (scope))
2977                 r = build_qualified_name (TREE_TYPE (r),
2978                                           scope, decl,
2979                                           template_p);
2980               decl = r;
2981             }
2982         }
2983       else if (TREE_CODE (decl) == FIELD_DECL)
2984         {
2985           /* Since SCOPE is NULL here, this is an unqualified name.
2986              Access checking has been performed during name lookup
2987              already.  Turn off checking to avoid duplicate errors.  */
2988           push_deferring_access_checks (dk_no_check);
2989           decl = finish_non_static_data_member (decl, current_class_ref,
2990                                                 /*qualifying_scope=*/NULL_TREE);
2991           pop_deferring_access_checks ();
2992         }
2993       else if (is_overloaded_fn (decl))
2994         {
2995           tree first_fn;
2996
2997           first_fn = decl;
2998           if (TREE_CODE (first_fn) == TEMPLATE_ID_EXPR)
2999             first_fn = TREE_OPERAND (first_fn, 0);
3000           first_fn = get_first_fn (first_fn);
3001           if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3002             first_fn = DECL_TEMPLATE_RESULT (first_fn);
3003
3004           if (!really_overloaded_fn (decl))
3005             mark_used (first_fn);
3006
3007           if (!template_arg_p
3008               && TREE_CODE (first_fn) == FUNCTION_DECL
3009               && DECL_FUNCTION_MEMBER_P (first_fn)
3010               && !shared_member_p (decl))
3011             {
3012               /* A set of member functions.  */
3013               decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3014               return finish_class_member_access_expr (decl, id_expression,
3015                                                       /*template_p=*/false,
3016                                                       tf_warning_or_error);
3017             }
3018
3019           decl = baselink_for_fns (decl);
3020         }
3021       else
3022         {
3023           if (DECL_P (decl) && DECL_NONLOCAL (decl)
3024               && DECL_CLASS_SCOPE_P (decl))
3025             {
3026               tree context = context_for_name_lookup (decl); 
3027               if (context != current_class_type)
3028                 {
3029                   tree path = currently_open_derived_class (context);
3030                   perform_or_defer_access_check (TYPE_BINFO (path),
3031                                                  decl, decl);
3032                 }
3033             }
3034
3035           decl = convert_from_reference (decl);
3036         }
3037     }
3038
3039   if (TREE_DEPRECATED (decl))
3040     warn_deprecated_use (decl, NULL_TREE);
3041
3042   return decl;
3043 }
3044
3045 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3046    use as a type-specifier.  */
3047
3048 tree
3049 finish_typeof (tree expr)
3050 {
3051   tree type;
3052
3053   if (type_dependent_expression_p (expr))
3054     {
3055       type = cxx_make_type (TYPEOF_TYPE);
3056       TYPEOF_TYPE_EXPR (type) = expr;
3057       SET_TYPE_STRUCTURAL_EQUALITY (type);
3058
3059       return type;
3060     }
3061
3062   type = unlowered_expr_type (expr);
3063
3064   if (!type || type == unknown_type_node)
3065     {
3066       error ("type of %qE is unknown", expr);
3067       return error_mark_node;
3068     }
3069
3070   return type;
3071 }
3072
3073 /* Perform C++-specific checks for __builtin_offsetof before calling
3074    fold_offsetof.  */
3075
3076 tree
3077 finish_offsetof (tree expr)
3078 {
3079   if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3080     {
3081       error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3082               TREE_OPERAND (expr, 2));
3083       return error_mark_node;
3084     }
3085   if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3086       || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3087       || TREE_CODE (TREE_TYPE (expr)) == UNKNOWN_TYPE)
3088     {
3089       if (TREE_CODE (expr) == COMPONENT_REF
3090           || TREE_CODE (expr) == COMPOUND_EXPR)
3091         expr = TREE_OPERAND (expr, 1);
3092       error ("cannot apply %<offsetof%> to member function %qD", expr);
3093       return error_mark_node;
3094     }
3095   if (TREE_CODE (expr) == INDIRECT_REF && REFERENCE_REF_P (expr))
3096     expr = TREE_OPERAND (expr, 0);
3097   return fold_offsetof (expr, NULL_TREE);
3098 }
3099
3100 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR.  This
3101    function is broken out from the above for the benefit of the tree-ssa
3102    project.  */
3103
3104 void
3105 simplify_aggr_init_expr (tree *tp)
3106 {
3107   tree aggr_init_expr = *tp;
3108
3109   /* Form an appropriate CALL_EXPR.  */
3110   tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3111   tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3112   tree type = TREE_TYPE (slot);
3113
3114   tree call_expr;
3115   enum style_t { ctor, arg, pcc } style;
3116
3117   if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3118     style = ctor;
3119 #ifdef PCC_STATIC_STRUCT_RETURN
3120   else if (1)
3121     style = pcc;
3122 #endif
3123   else
3124     {
3125       gcc_assert (TREE_ADDRESSABLE (type));
3126       style = arg;
3127     }
3128
3129   call_expr = build_call_array (TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3130                                 fn,
3131                                 aggr_init_expr_nargs (aggr_init_expr),
3132                                 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3133
3134   if (style == ctor)
3135     {
3136       /* Replace the first argument to the ctor with the address of the
3137          slot.  */
3138       cxx_mark_addressable (slot);
3139       CALL_EXPR_ARG (call_expr, 0) =
3140         build1 (ADDR_EXPR, build_pointer_type (type), slot);
3141     }
3142   else if (style == arg)
3143     {
3144       /* Just mark it addressable here, and leave the rest to
3145          expand_call{,_inline}.  */
3146       cxx_mark_addressable (slot);
3147       CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3148       call_expr = build2 (MODIFY_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3149     }
3150   else if (style == pcc)
3151     {
3152       /* If we're using the non-reentrant PCC calling convention, then we
3153          need to copy the returned value out of the static buffer into the
3154          SLOT.  */
3155       push_deferring_access_checks (dk_no_check);
3156       call_expr = build_aggr_init (slot, call_expr,
3157                                    DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3158                                    tf_warning_or_error);
3159       pop_deferring_access_checks ();
3160       call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3161     }
3162
3163   if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3164     {
3165       tree init = build_zero_init (type, NULL_TREE,
3166                                    /*static_storage_p=*/false);
3167       init = build2 (INIT_EXPR, void_type_node, slot, init);
3168       call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3169                           init, call_expr);
3170     }
3171
3172   *tp = call_expr;
3173 }
3174
3175 /* Emit all thunks to FN that should be emitted when FN is emitted.  */
3176
3177 void
3178 emit_associated_thunks (tree fn)
3179 {
3180   /* When we use vcall offsets, we emit thunks with the virtual
3181      functions to which they thunk. The whole point of vcall offsets
3182      is so that you can know statically the entire set of thunks that
3183      will ever be needed for a given virtual function, thereby
3184      enabling you to output all the thunks with the function itself.  */
3185   if (DECL_VIRTUAL_P (fn))
3186     {
3187       tree thunk;
3188
3189       for (thunk = DECL_THUNKS (fn); thunk; thunk = TREE_CHAIN (thunk))
3190         {
3191           if (!THUNK_ALIAS (thunk))
3192             {
3193               use_thunk (thunk, /*emit_p=*/1);
3194               if (DECL_RESULT_THUNK_P (thunk))
3195                 {
3196                   tree probe;
3197
3198                   for (probe = DECL_THUNKS (thunk);
3199                        probe; probe = TREE_CHAIN (probe))
3200                     use_thunk (probe, /*emit_p=*/1);
3201                 }
3202             }
3203           else
3204             gcc_assert (!DECL_THUNKS (thunk));
3205         }
3206     }
3207 }
3208
3209 /* Generate RTL for FN.  */
3210
3211 void
3212 expand_or_defer_fn (tree fn)
3213 {
3214   /* When the parser calls us after finishing the body of a template
3215      function, we don't really want to expand the body.  */
3216   if (processing_template_decl)
3217     {
3218       /* Normally, collection only occurs in rest_of_compilation.  So,
3219          if we don't collect here, we never collect junk generated
3220          during the processing of templates until we hit a
3221          non-template function.  It's not safe to do this inside a
3222          nested class, though, as the parser may have local state that
3223          is not a GC root.  */
3224       if (!function_depth)
3225         ggc_collect ();
3226       return;
3227     }
3228
3229   gcc_assert (gimple_body (fn));
3230
3231   /* If this is a constructor or destructor body, we have to clone
3232      it.  */
3233   if (maybe_clone_body (fn))
3234     {
3235       /* We don't want to process FN again, so pretend we've written
3236          it out, even though we haven't.  */
3237       TREE_ASM_WRITTEN (fn) = 1;
3238       return;
3239     }
3240
3241   /* We make a decision about linkage for these functions at the end
3242      of the compilation.  Until that point, we do not want the back
3243      end to output them -- but we do want it to see the bodies of
3244      these functions so that it can inline them as appropriate.  */
3245   if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3246     {
3247       if (DECL_INTERFACE_KNOWN (fn))
3248         /* We've already made a decision as to how this function will
3249            be handled.  */;
3250       else if (!at_eof)
3251         {
3252           DECL_EXTERNAL (fn) = 1;
3253           DECL_NOT_REALLY_EXTERN (fn) = 1;
3254           note_vague_linkage_fn (fn);
3255           /* A non-template inline function with external linkage will
3256              always be COMDAT.  As we must eventually determine the
3257              linkage of all functions, and as that causes writes to
3258              the data mapped in from the PCH file, it's advantageous
3259              to mark the functions at this point.  */
3260           if (!DECL_IMPLICIT_INSTANTIATION (fn))
3261             {
3262               /* This function must have external linkage, as
3263                  otherwise DECL_INTERFACE_KNOWN would have been
3264                  set.  */
3265               gcc_assert (TREE_PUBLIC (fn));
3266               comdat_linkage (fn);
3267               DECL_INTERFACE_KNOWN (fn) = 1;
3268             }
3269         }
3270       else
3271         import_export_decl (fn);
3272
3273       /* If the user wants us to keep all inline functions, then mark
3274          this function as needed so that finish_file will make sure to
3275          output it later.  Similarly, all dllexport'd functions must
3276          be emitted; there may be callers in other DLLs.  */
3277       if ((flag_keep_inline_functions && DECL_DECLARED_INLINE_P (fn))
3278           || lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn)))
3279         mark_needed (fn);
3280     }
3281
3282   /* There's no reason to do any of the work here if we're only doing
3283      semantic analysis; this code just generates RTL.  */
3284   if (flag_syntax_only)
3285     return;
3286
3287   function_depth++;
3288
3289   /* Expand or defer, at the whim of the compilation unit manager.  */
3290   cgraph_finalize_function (fn, function_depth > 1);
3291
3292   function_depth--;
3293 }
3294
3295 struct nrv_data
3296 {
3297   tree var;
3298   tree result;
3299   htab_t visited;
3300 };
3301
3302 /* Helper function for walk_tree, used by finalize_nrv below.  */
3303
3304 static tree
3305 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3306 {
3307   struct nrv_data *dp = (struct nrv_data *)data;
3308   void **slot;
3309
3310   /* No need to walk into types.  There wouldn't be any need to walk into
3311      non-statements, except that we have to consider STMT_EXPRs.  */
3312   if (TYPE_P (*tp))
3313     *walk_subtrees = 0;
3314   /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3315      but differs from using NULL_TREE in that it indicates that we care
3316      about the value of the RESULT_DECL.  */
3317   else if (TREE_CODE (*tp) == RETURN_EXPR)
3318     TREE_OPERAND (*tp, 0) = dp->result;
3319   /* Change all cleanups for the NRV to only run when an exception is
3320      thrown.  */
3321   else if (TREE_CODE (*tp) == CLEANUP_STMT
3322            && CLEANUP_DECL (*tp) == dp->var)
3323     CLEANUP_EH_ONLY (*tp) = 1;
3324   /* Replace the DECL_EXPR for the NRV with an initialization of the
3325      RESULT_DECL, if needed.  */
3326   else if (TREE_CODE (*tp) == DECL_EXPR
3327            && DECL_EXPR_DECL (*tp) == dp->var)
3328     {
3329       tree init;
3330       if (DECL_INITIAL (dp->var)
3331           && DECL_INITIAL (dp->var) != error_mark_node)
3332         init = build2 (INIT_EXPR, void_type_node, dp->result,
3333                        DECL_INITIAL (dp->var));
3334       else
3335         init = build_empty_stmt (EXPR_LOCATION (*tp));
3336       DECL_INITIAL (dp->var) = NULL_TREE;
3337       SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
3338       *tp = init;
3339     }
3340   /* And replace all uses of the NRV with the RESULT_DECL.  */
3341   else if (*tp == dp->var)
3342     *tp = dp->result;
3343
3344   /* Avoid walking into the same tree more than once.  Unfortunately, we
3345      can't just use walk_tree_without duplicates because it would only call
3346      us for the first occurrence of dp->var in the function body.  */
3347   slot = htab_find_slot (dp->visited, *tp, INSERT);
3348   if (*slot)
3349     *walk_subtrees = 0;
3350   else
3351     *slot = *tp;
3352
3353   /* Keep iterating.  */
3354   return NULL_TREE;
3355 }
3356
3357 /* Called from finish_function to implement the named return value
3358    optimization by overriding all the RETURN_EXPRs and pertinent
3359    CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3360    RESULT_DECL for the function.  */
3361
3362 void
3363 finalize_nrv (tree *tp, tree var, tree result)
3364 {
3365   struct nrv_data data;
3366
3367   /* Copy debugging information from VAR to RESULT.  */
3368   DECL_NAME (result) = DECL_NAME (var);
3369   DECL_ARTIFICIAL (result) = DECL_ARTIFICIAL (var);
3370   DECL_IGNORED_P (result) = DECL_IGNORED_P (var);
3371   DECL_SOURCE_LOCATION (result) = DECL_SOURCE_LOCATION (var);
3372   DECL_ABSTRACT_ORIGIN (result) = DECL_ABSTRACT_ORIGIN (var);
3373   /* Don't forget that we take its address.  */
3374   TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3375
3376   data.var = var;
3377   data.result = result;
3378   data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3379   cp_walk_tree (tp, finalize_nrv_r, &data, 0);
3380   htab_delete (data.visited);
3381 }
3382 \f
3383 /* Return the declaration for the function called by CALL_EXPR T,
3384    TYPE is the class type of the clause decl.  */
3385
3386 static tree
3387 omp_clause_info_fndecl (tree t, tree type)
3388 {
3389   tree ret = get_callee_fndecl (t);
3390
3391   if (ret)
3392     return ret;
3393
3394   gcc_assert (TREE_CODE (t) == CALL_EXPR);
3395   t = CALL_EXPR_FN (t);
3396   STRIP_NOPS (t);
3397   if (TREE_CODE (t) == OBJ_TYPE_REF)
3398     {
3399       t = cp_fold_obj_type_ref (t, type);
3400       if (TREE_CODE (t) == ADDR_EXPR
3401           && TREE_CODE (TREE_OPERAND (t, 0)) == FUNCTION_DECL)
3402         return TREE_OPERAND (t, 0);
3403     }
3404
3405   return NULL_TREE;
3406 }
3407
3408 /* Create CP_OMP_CLAUSE_INFO for clause C.  Returns true if it is invalid.  */
3409
3410 bool
3411 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3412                             bool need_copy_ctor, bool need_copy_assignment)
3413 {
3414   int save_errorcount = errorcount;
3415   tree info, t;
3416
3417   /* Always allocate 3 elements for simplicity.  These are the
3418      function decls for the ctor, dtor, and assignment op.
3419      This layout is known to the three lang hooks,
3420      cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3421      and cxx_omp_clause_assign_op.  */
3422   info = make_tree_vec (3);
3423   CP_OMP_CLAUSE_INFO (c) = info;
3424
3425   if (need_default_ctor
3426       || (need_copy_ctor && !TYPE_HAS_TRIVIAL_INIT_REF (type)))
3427     {
3428       VEC(tree,gc) *vec;
3429
3430       if (need_default_ctor)
3431         vec = NULL;
3432       else
3433         {
3434           t = build_int_cst (build_pointer_type (type), 0);
3435           t = build1 (INDIRECT_REF, type, t);
3436           vec = make_tree_vector_single (t);
3437         }
3438       t = build_special_member_call (NULL_TREE, complete_ctor_identifier,
3439                                      &vec, type, LOOKUP_NORMAL,
3440                                      tf_warning_or_error);
3441
3442       if (vec != NULL)
3443         release_tree_vector (vec);
3444
3445       if (targetm.cxx.cdtor_returns_this () || errorcount)
3446         /* Because constructors and destructors return this,
3447            the call will have been cast to "void".  Remove the
3448            cast here.  We would like to use STRIP_NOPS, but it
3449            wouldn't work here because TYPE_MODE (t) and
3450            TYPE_MODE (TREE_OPERAND (t, 0)) are different.
3451            They are VOIDmode and Pmode, respectively.  */
3452         if (TREE_CODE (t) == NOP_EXPR)
3453           t = TREE_OPERAND (t, 0);
3454
3455       TREE_VEC_ELT (info, 0) = get_callee_fndecl (t);
3456     }
3457
3458   if ((need_default_ctor || need_copy_ctor)
3459       && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3460     {
3461       t = build_int_cst (build_pointer_type (type), 0);
3462       t = build1 (INDIRECT_REF, type, t);
3463       t = build_special_member_call (t, complete_dtor_identifier,
3464                                      NULL, type, LOOKUP_NORMAL,
3465                                      tf_warning_or_error);
3466
3467       if (targetm.cxx.cdtor_returns_this () || errorcount)
3468         /* Because constructors and destructors return this,
3469            the call will have been cast to "void".  Remove the
3470            cast here.  We would like to use STRIP_NOPS, but it
3471            wouldn't work here because TYPE_MODE (t) and
3472            TYPE_MODE (TREE_OPERAND (t, 0)) are different.
3473            They are VOIDmode and Pmode, respectively.  */
3474         if (TREE_CODE (t) == NOP_EXPR)
3475           t = TREE_OPERAND (t, 0);
3476
3477       TREE_VEC_ELT (info, 1) = omp_clause_info_fndecl (t, type);
3478     }
3479
3480   if (need_copy_assignment && !TYPE_HAS_TRIVIAL_ASSIGN_REF (type))
3481     {
3482       VEC(tree,gc) *vec;
3483
3484       t = build_int_cst (build_pointer_type (type), 0);
3485       t = build1 (INDIRECT_REF, type, t);
3486       vec = make_tree_vector_single (t);
3487       t = build_special_member_call (t, ansi_assopname (NOP_EXPR),
3488                                      &vec, type, LOOKUP_NORMAL,
3489                                      tf_warning_or_error);
3490       release_tree_vector (vec);
3491
3492       /* We'll have called convert_from_reference on the call, which
3493          may well have added an indirect_ref.  It's unneeded here,
3494          and in the way, so kill it.  */
3495       if (TREE_CODE (t) == INDIRECT_REF)
3496         t = TREE_OPERAND (t, 0);
3497
3498       TREE_VEC_ELT (info, 2) = omp_clause_info_fndecl (t, type);
3499     }
3500
3501   return errorcount != save_errorcount;
3502 }
3503
3504 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
3505    Remove any elements from the list that are invalid.  */
3506
3507 tree
3508 finish_omp_clauses (tree clauses)
3509 {
3510   bitmap_head generic_head, firstprivate_head, lastprivate_head;
3511   tree c, t, *pc = &clauses;
3512   const char *name;
3513
3514   bitmap_obstack_initialize (NULL);
3515   bitmap_initialize (&generic_head, &bitmap_default_obstack);
3516   bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
3517   bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
3518
3519   for (pc = &clauses, c = clauses; c ; c = *pc)
3520     {
3521       bool remove = false;
3522
3523       switch (OMP_CLAUSE_CODE (c))
3524         {
3525         case OMP_CLAUSE_SHARED:
3526           name = "shared";
3527           goto check_dup_generic;
3528         case OMP_CLAUSE_PRIVATE:
3529           name = "private";
3530           goto check_dup_generic;
3531         case OMP_CLAUSE_REDUCTION:
3532           name = "reduction";
3533           goto check_dup_generic;
3534         case OMP_CLAUSE_COPYPRIVATE:
3535           name = "copyprivate";
3536           goto check_dup_generic;
3537         case OMP_CLAUSE_COPYIN:
3538           name = "copyin";
3539           goto check_dup_generic;
3540         check_dup_generic:
3541           t = OMP_CLAUSE_DECL (c);
3542           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3543             {
3544               if (processing_template_decl)
3545                 break;
3546               if (DECL_P (t))
3547                 error ("%qD is not a variable in clause %qs", t, name);
3548               else
3549                 error ("%qE is not a variable in clause %qs", t, name);
3550               remove = true;
3551             }
3552           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3553                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
3554                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3555             {
3556               error ("%qD appears more than once in data clauses", t);
3557               remove = true;
3558             }
3559           else
3560             bitmap_set_bit (&generic_head, DECL_UID (t));
3561           break;
3562
3563         case OMP_CLAUSE_FIRSTPRIVATE:
3564           t = OMP_CLAUSE_DECL (c);
3565           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3566             {
3567               if (processing_template_decl)
3568                 break;
3569               if (DECL_P (t))
3570                 error ("%qD is not a variable in clause %<firstprivate%>", t);
3571               else
3572                 error ("%qE is not a variable in clause %<firstprivate%>", t);
3573               remove = true;
3574             }
3575           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3576                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3577             {
3578               error ("%qD appears more than once in data clauses", t);
3579               remove = true;
3580             }
3581           else
3582             bitmap_set_bit (&firstprivate_head, DECL_UID (t));
3583           break;
3584
3585         case OMP_CLAUSE_LASTPRIVATE:
3586           t = OMP_CLAUSE_DECL (c);
3587           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3588             {
3589               if (processing_template_decl)
3590                 break;
3591               if (DECL_P (t))
3592                 error ("%qD is not a variable in clause %<lastprivate%>", t);
3593               else
3594                 error ("%qE is not a variable in clause %<lastprivate%>", t);
3595               remove = true;
3596             }
3597           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3598                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3599             {
3600               error ("%qD appears more than once in data clauses", t);
3601               remove = true;
3602             }
3603           else
3604             bitmap_set_bit (&lastprivate_head, DECL_UID (t));
3605           break;
3606
3607         case OMP_CLAUSE_IF:
3608           t = OMP_CLAUSE_IF_EXPR (c);
3609           t = maybe_convert_cond (t);
3610           if (t == error_mark_node)
3611             remove = true;
3612           OMP_CLAUSE_IF_EXPR (c) = t;
3613           break;
3614
3615         case OMP_CLAUSE_NUM_THREADS:
3616           t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
3617           if (t == error_mark_node)
3618             remove = true;
3619           else if (!type_dependent_expression_p (t)
3620                    && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
3621             {
3622               error ("num_threads expression must be integral");
3623               remove = true;
3624             }
3625           break;
3626
3627         case OMP_CLAUSE_SCHEDULE:
3628           t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
3629           if (t == NULL)
3630             ;
3631           else if (t == error_mark_node)
3632             remove = true;
3633           else if (!type_dependent_expression_p (t)
3634                    && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
3635             {
3636               error ("schedule chunk size expression must be integral");
3637               remove = true;
3638             }
3639           break;
3640
3641         case OMP_CLAUSE_NOWAIT:
3642         case OMP_CLAUSE_ORDERED:
3643         case OMP_CLAUSE_DEFAULT:
3644         case OMP_CLAUSE_UNTIED:
3645         case OMP_CLAUSE_COLLAPSE:
3646           break;
3647
3648         default:
3649           gcc_unreachable ();
3650         }
3651
3652       if (remove)
3653         *pc = OMP_CLAUSE_CHAIN (c);
3654       else
3655         pc = &OMP_CLAUSE_CHAIN (c);
3656     }
3657
3658   for (pc = &clauses, c = clauses; c ; c = *pc)
3659     {
3660       enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
3661       bool remove = false;
3662       bool need_complete_non_reference = false;
3663       bool need_default_ctor = false;
3664       bool need_copy_ctor = false;
3665       bool need_copy_assignment = false;
3666       bool need_implicitly_determined = false;
3667       tree type, inner_type;
3668
3669       switch (c_kind)
3670         {
3671         case OMP_CLAUSE_SHARED:
3672           name = "shared";
3673           need_implicitly_determined = true;
3674           break;
3675         case OMP_CLAUSE_PRIVATE:
3676           name = "private";
3677           need_complete_non_reference = true;
3678           need_default_ctor = true;
3679           need_implicitly_determined = true;
3680           break;
3681         case OMP_CLAUSE_FIRSTPRIVATE:
3682           name = "firstprivate";
3683           need_complete_non_reference = true;
3684           need_copy_ctor = true;
3685           need_implicitly_determined = true;
3686           break;
3687         case OMP_CLAUSE_LASTPRIVATE:
3688           name = "lastprivate";
3689           need_complete_non_reference = true;
3690           need_copy_assignment = true;
3691           need_implicitly_determined = true;
3692           break;
3693         case OMP_CLAUSE_REDUCTION:
3694           name = "reduction";
3695           need_implicitly_determined = true;
3696           break;
3697         case OMP_CLAUSE_COPYPRIVATE:
3698           name = "copyprivate";
3699           need_copy_assignment = true;
3700           break;
3701         case OMP_CLAUSE_COPYIN:
3702           name = "copyin";
3703           need_copy_assignment = true;
3704           break;
3705         default:
3706           pc = &OMP_CLAUSE_CHAIN (c);
3707           continue;
3708         }
3709
3710       t = OMP_CLAUSE_DECL (c);
3711       if (processing_template_decl
3712           && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3713         {
3714           pc = &OMP_CLAUSE_CHAIN (c);
3715           continue;
3716         }
3717
3718       switch (c_kind)
3719         {
3720         case OMP_CLAUSE_LASTPRIVATE:
3721           if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3722             need_default_ctor = true;
3723           break;
3724
3725         case OMP_CLAUSE_REDUCTION:
3726           if (AGGREGATE_TYPE_P (TREE_TYPE (t))
3727               || POINTER_TYPE_P (TREE_TYPE (t)))
3728             {
3729               error ("%qE has invalid type for %<reduction%>", t);
3730               remove = true;
3731             }
3732           else if (FLOAT_TYPE_P (TREE_TYPE (t)))
3733             {
3734               enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
3735               switch (r_code)
3736                 {
3737                 case PLUS_EXPR:
3738                 case MULT_EXPR:
3739                 case MINUS_EXPR:
3740                   break;
3741                 default:
3742                   error ("%qE has invalid type for %<reduction(%s)%>",
3743                          t, operator_name_info[r_code].name);
3744                   remove = true;
3745                 }
3746             }
3747           break;
3748
3749         case OMP_CLAUSE_COPYIN:
3750           if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
3751             {
3752               error ("%qE must be %<threadprivate%> for %<copyin%>", t);
3753               remove = true;
3754             }
3755           break;
3756
3757         default:
3758           break;
3759         }
3760
3761       if (need_complete_non_reference)
3762         {
3763           t = require_complete_type (t);
3764           if (t == error_mark_node)
3765             remove = true;
3766           else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
3767             {
3768               error ("%qE has reference type for %qs", t, name);
3769               remove = true;
3770             }
3771         }
3772       if (need_implicitly_determined)
3773         {
3774           const char *share_name = NULL;
3775
3776           if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
3777             share_name = "threadprivate";
3778           else switch (cxx_omp_predetermined_sharing (t))
3779             {
3780             case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
3781               break;
3782             case OMP_CLAUSE_DEFAULT_SHARED:
3783               share_name = "shared";
3784               break;
3785             case OMP_CLAUSE_DEFAULT_PRIVATE:
3786               share_name = "private";
3787               break;
3788             default:
3789               gcc_unreachable ();
3790             }
3791           if (share_name)
3792             {
3793               error ("%qE is predetermined %qs for %qs",
3794                      t, share_name, name);
3795               remove = true;
3796             }
3797         }
3798
3799       /* We're interested in the base element, not arrays.  */
3800       inner_type = type = TREE_TYPE (t);
3801       while (TREE_CODE (inner_type) == ARRAY_TYPE)
3802         inner_type = TREE_TYPE (inner_type);
3803
3804       /* Check for special function availability by building a call to one.
3805          Save the results, because later we won't be in the right context
3806          for making these queries.  */
3807       if (CLASS_TYPE_P (inner_type)
3808           && (need_default_ctor || need_copy_ctor || need_copy_assignment)
3809           && !type_dependent_expression_p (t)
3810           && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
3811                                          need_copy_ctor, need_copy_assignment))
3812         remove = true;
3813
3814       if (remove)
3815         *pc = OMP_CLAUSE_CHAIN (c);
3816       else
3817         pc = &OMP_CLAUSE_CHAIN (c);
3818     }
3819
3820   bitmap_obstack_release (NULL);
3821   return clauses;
3822 }
3823
3824 /* For all variables in the tree_list VARS, mark them as thread local.  */
3825
3826 void
3827 finish_omp_threadprivate (tree vars)
3828 {
3829   tree t;
3830
3831   /* Mark every variable in VARS to be assigned thread local storage.  */
3832   for (t = vars; t; t = TREE_CHAIN (t))
3833     {
3834       tree v = TREE_PURPOSE (t);
3835
3836       if (error_operand_p (v))
3837         ;
3838       else if (TREE_CODE (v) != VAR_DECL)
3839         error ("%<threadprivate%> %qD is not file, namespace "
3840                "or block scope variable", v);
3841       /* If V had already been marked threadprivate, it doesn't matter
3842          whether it had been used prior to this point.  */
3843       else if (TREE_USED (v)
3844           && (DECL_LANG_SPECIFIC (v) == NULL
3845               || !CP_DECL_THREADPRIVATE_P (v)))
3846         error ("%qE declared %<threadprivate%> after first use", v);
3847       else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
3848         error ("automatic variable %qE cannot be %<threadprivate%>", v);
3849       else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
3850         error ("%<threadprivate%> %qE has incomplete type", v);
3851       else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
3852                && CP_DECL_CONTEXT (v) != current_class_type)
3853         error ("%<threadprivate%> %qE directive not "
3854                "in %qT definition", v, CP_DECL_CONTEXT (v));
3855       else
3856         {
3857           /* Allocate a LANG_SPECIFIC structure for V, if needed.  */
3858           if (DECL_LANG_SPECIFIC (v) == NULL)
3859             {
3860               retrofit_lang_decl (v);
3861
3862               /* Make sure that DECL_DISCRIMINATOR_P continues to be true
3863                  after the allocation of the lang_decl structure.  */
3864               if (DECL_DISCRIMINATOR_P (v))
3865                 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
3866             }
3867
3868           if (! DECL_THREAD_LOCAL_P (v))
3869             {
3870               DECL_TLS_MODEL (v) = decl_default_tls_model (v);
3871               /* If rtl has been already set for this var, call
3872                  make_decl_rtl once again, so that encode_section_info
3873                  has a chance to look at the new decl flags.  */
3874               if (DECL_RTL_SET_P (v))
3875                 make_decl_rtl (v);
3876             }
3877           CP_DECL_THREADPRIVATE_P (v) = 1;
3878         }
3879     }
3880 }
3881
3882 /* Build an OpenMP structured block.  */
3883
3884 tree
3885 begin_omp_structured_block (void)
3886 {
3887   return do_pushlevel (sk_omp);
3888 }
3889
3890 tree
3891 finish_omp_structured_block (tree block)
3892 {
3893   return do_poplevel (block);
3894 }
3895
3896 /* Similarly, except force the retention of the BLOCK.  */
3897
3898 tree
3899 begin_omp_parallel (void)
3900 {
3901   keep_next_level (true);
3902   return begin_omp_structured_block ();
3903 }
3904
3905 tree
3906 finish_omp_parallel (tree clauses, tree body)
3907 {
3908   tree stmt;
3909
3910   body = finish_omp_structured_block (body);
3911
3912   stmt = make_node (OMP_PARALLEL);
3913   TREE_TYPE (stmt) = void_type_node;
3914   OMP_PARALLEL_CLAUSES (stmt) = clauses;
3915   OMP_PARALLEL_BODY (stmt) = body;
3916
3917   return add_stmt (stmt);
3918 }
3919
3920 tree
3921 begin_omp_task (void)
3922 {
3923   keep_next_level (true);
3924   return begin_omp_structured_block ();
3925 }
3926
3927 tree
3928 finish_omp_task (tree clauses, tree body)
3929 {
3930   tree stmt;
3931
3932   body = finish_omp_structured_block (body);
3933
3934   stmt = make_node (OMP_TASK);
3935   TREE_TYPE (stmt) = void_type_node;
3936   OMP_TASK_CLAUSES (stmt) = clauses;
3937   OMP_TASK_BODY (stmt) = body;
3938
3939   return add_stmt (stmt);
3940 }
3941
3942 /* Helper function for finish_omp_for.  Convert Ith random access iterator
3943    into integral iterator.  Return FALSE if successful.  */
3944
3945 static bool
3946 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
3947                                tree condv, tree incrv, tree *body,
3948                                tree *pre_body, tree clauses)
3949 {
3950   tree diff, iter_init, iter_incr = NULL, last;
3951   tree incr_var = NULL, orig_pre_body, orig_body, c;
3952   tree decl = TREE_VEC_ELT (declv, i);
3953   tree init = TREE_VEC_ELT (initv, i);
3954   tree cond = TREE_VEC_ELT (condv, i);
3955   tree incr = TREE_VEC_ELT (incrv, i);
3956   tree iter = decl;
3957   location_t elocus = locus;
3958
3959   if (init && EXPR_HAS_LOCATION (init))
3960     elocus = EXPR_LOCATION (init);
3961
3962   switch (TREE_CODE (cond))
3963     {
3964     case GT_EXPR:
3965     case GE_EXPR:
3966     case LT_EXPR:
3967     case LE_EXPR:
3968       if (TREE_OPERAND (cond, 1) == iter)
3969         cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
3970                        TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
3971       if (TREE_OPERAND (cond, 0) != iter)
3972         cond = error_mark_node;
3973       else
3974         {
3975           tree tem = build_x_binary_op (TREE_CODE (cond), iter, ERROR_MARK,
3976                                         TREE_OPERAND (cond, 1), ERROR_MARK,
3977                                         NULL, tf_warning_or_error);
3978           if (error_operand_p (tem))
3979             return true;
3980         }
3981       break;
3982     default:
3983       cond = error_mark_node;
3984       break;
3985     }
3986   if (cond == error_mark_node)
3987     {
3988       error_at (elocus, "invalid controlling predicate");
3989       return true;
3990     }
3991   diff = build_x_binary_op (MINUS_EXPR, TREE_OPERAND (cond, 1),
3992                             ERROR_MARK, iter, ERROR_MARK, NULL,
3993                             tf_warning_or_error);
3994   if (error_operand_p (diff))
3995     return true;
3996   if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
3997     {
3998       error_at (elocus, "difference between %qE and %qD does not have integer type",
3999                 TREE_OPERAND (cond, 1), iter);
4000       return true;
4001     }
4002
4003   switch (TREE_CODE (incr))
4004     {
4005     case PREINCREMENT_EXPR:
4006     case PREDECREMENT_EXPR:
4007     case POSTINCREMENT_EXPR:
4008     case POSTDECREMENT_EXPR:
4009       if (TREE_OPERAND (incr, 0) != iter)
4010         {
4011           incr = error_mark_node;
4012           break;
4013         }
4014       iter_incr = build_x_unary_op (TREE_CODE (incr), iter,
4015                                     tf_warning_or_error);
4016       if (error_operand_p (iter_incr))
4017         return true;
4018       else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4019                || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4020         incr = integer_one_node;
4021       else
4022         incr = integer_minus_one_node;
4023       break;
4024     case MODIFY_EXPR:
4025       if (TREE_OPERAND (incr, 0) != iter)
4026         incr = error_mark_node;
4027       else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4028                || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4029         {
4030           tree rhs = TREE_OPERAND (incr, 1);
4031           if (TREE_OPERAND (rhs, 0) == iter)
4032             {
4033               if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4034                   != INTEGER_TYPE)
4035                 incr = error_mark_node;
4036               else
4037                 {
4038                   iter_incr = build_x_modify_expr (iter, TREE_CODE (rhs),
4039                                                    TREE_OPERAND (rhs, 1),
4040                                                    tf_warning_or_error);
4041                   if (error_operand_p (iter_incr))
4042                     return true;
4043                   incr = TREE_OPERAND (rhs, 1);
4044                   incr = cp_convert (TREE_TYPE (diff), incr);
4045                   if (TREE_CODE (rhs) == MINUS_EXPR)
4046                     {
4047                       incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4048                       incr = fold_if_not_in_template (incr);
4049                     }
4050                   if (TREE_CODE (incr) != INTEGER_CST
4051                       && (TREE_CODE (incr) != NOP_EXPR
4052                           || (TREE_CODE (TREE_OPERAND (incr, 0))
4053                               != INTEGER_CST)))
4054                     iter_incr = NULL;
4055                 }
4056             }
4057           else if (TREE_OPERAND (rhs, 1) == iter)
4058             {
4059               if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4060                   || TREE_CODE (rhs) != PLUS_EXPR)
4061                 incr = error_mark_node;
4062               else
4063                 {
4064                   iter_incr = build_x_binary_op (PLUS_EXPR,
4065                                                  TREE_OPERAND (rhs, 0),
4066                                                  ERROR_MARK, iter,
4067                                                  ERROR_MARK, NULL,
4068                                                  tf_warning_or_error);
4069                   if (error_operand_p (iter_incr))
4070                     return true;
4071                   iter_incr = build_x_modify_expr (iter, NOP_EXPR,
4072                                                    iter_incr,
4073                                                    tf_warning_or_error);
4074                   if (error_operand_p (iter_incr))
4075                     return true;
4076                   incr = TREE_OPERAND (rhs, 0);
4077                   iter_incr = NULL;
4078                 }
4079             }
4080           else
4081             incr = error_mark_node;
4082         }
4083       else
4084         incr = error_mark_node;
4085       break;
4086     default:
4087       incr = error_mark_node;
4088       break;
4089     }
4090
4091   if (incr == error_mark_node)
4092     {
4093       error_at (elocus, "invalid increment expression");
4094       return true;
4095     }
4096
4097   incr = cp_convert (TREE_TYPE (diff), incr);
4098   for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4099     if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4100         && OMP_CLAUSE_DECL (c) == iter)
4101       break;
4102
4103   decl = create_temporary_var (TREE_TYPE (diff));
4104   pushdecl (decl);
4105   add_decl_expr (decl);
4106   last = create_temporary_var (TREE_TYPE (diff));
4107   pushdecl (last);
4108   add_decl_expr (last);
4109   if (c && iter_incr == NULL)
4110     {
4111       incr_var = create_temporary_var (TREE_TYPE (diff));
4112       pushdecl (incr_var);
4113       add_decl_expr (incr_var);
4114     }
4115   gcc_assert (stmts_are_full_exprs_p ());
4116
4117   orig_pre_body = *pre_body;
4118   *pre_body = push_stmt_list ();
4119   if (orig_pre_body)
4120     add_stmt (orig_pre_body);
4121   if (init != NULL)
4122     finish_expr_stmt (build_x_modify_expr (iter, NOP_EXPR, init,
4123                                            tf_warning_or_error));
4124   init = build_int_cst (TREE_TYPE (diff), 0);
4125   if (c && iter_incr == NULL)
4126     {
4127       finish_expr_stmt (build_x_modify_expr (incr_var, NOP_EXPR,
4128                                              incr, tf_warning_or_error));
4129       incr = incr_var;
4130       iter_incr = build_x_modify_expr (iter, PLUS_EXPR, incr,
4131                                        tf_warning_or_error);
4132     }
4133   finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, init,
4134                                          tf_warning_or_error));
4135   *pre_body = pop_stmt_list (*pre_body);
4136
4137   cond = cp_build_binary_op (elocus,
4138                              TREE_CODE (cond), decl, diff,
4139                              tf_warning_or_error);
4140   incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
4141                             elocus, incr, NULL_TREE);
4142
4143   orig_body = *body;
4144   *body = push_stmt_list ();
4145   iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4146   iter_init = build_x_modify_expr (iter, PLUS_EXPR, iter_init,
4147                                    tf_warning_or_error);
4148   iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4149   finish_expr_stmt (iter_init);
4150   finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, decl,
4151                                          tf_warning_or_error));
4152   add_stmt (orig_body);
4153   *body = pop_stmt_list (*body);
4154
4155   if (c)
4156     {
4157       OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4158       finish_expr_stmt (iter_incr);
4159       OMP_CLAUSE_LASTPRIVATE_STMT (c)
4160         = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4161     }
4162
4163   TREE_VEC_ELT (declv, i) = decl;
4164   TREE_VEC_ELT (initv, i) = init;
4165   TREE_VEC_ELT (condv, i) = cond;
4166   TREE_VEC_ELT (incrv, i) = incr;
4167
4168   return false;
4169 }
4170
4171 /* Build and validate an OMP_FOR statement.  CLAUSES, BODY, COND, INCR
4172    are directly for their associated operands in the statement.  DECL
4173    and INIT are a combo; if DECL is NULL then INIT ought to be a
4174    MODIFY_EXPR, and the DECL should be extracted.  PRE_BODY are
4175    optional statements that need to go before the loop into its
4176    sk_omp scope.  */
4177
4178 tree
4179 finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4180                 tree incrv, tree body, tree pre_body, tree clauses)
4181 {
4182   tree omp_for = NULL, orig_incr = NULL;
4183   tree decl, init, cond, incr;
4184   location_t elocus;
4185   int i;
4186
4187   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4188   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4189   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4190   for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4191     {
4192       decl = TREE_VEC_ELT (declv, i);
4193       init = TREE_VEC_ELT (initv, i);
4194       cond = TREE_VEC_ELT (condv, i);
4195       incr = TREE_VEC_ELT (incrv, i);
4196       elocus = locus;
4197
4198       if (decl == NULL)
4199         {
4200           if (init != NULL)
4201             switch (TREE_CODE (init))
4202               {
4203               case MODIFY_EXPR:
4204                 decl = TREE_OPERAND (init, 0);
4205                 init = TREE_OPERAND (init, 1);
4206                 break;
4207               case MODOP_EXPR:
4208                 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4209                   {
4210                     decl = TREE_OPERAND (init, 0);
4211                     init = TREE_OPERAND (init, 2);
4212                   }
4213                 break;
4214               default:
4215                 break;
4216               }
4217
4218           if (decl == NULL)
4219             {
4220               error_at (locus,
4221                         "expected iteration declaration or initialization");
4222               return NULL;
4223             }
4224         }
4225
4226       if (init && EXPR_HAS_LOCATION (init))
4227         elocus = EXPR_LOCATION (init);
4228
4229       if (cond == NULL)
4230         {
4231           error_at (elocus, "missing controlling predicate");
4232           return NULL;
4233         }
4234
4235       if (incr == NULL)
4236         {
4237           error_at (elocus, "missing increment expression");
4238           return NULL;
4239         }
4240
4241       TREE_VEC_ELT (declv, i) = decl;
4242       TREE_VEC_ELT (initv, i) = init;
4243     }
4244
4245   if (dependent_omp_for_p (declv, initv, condv, incrv))
4246     {
4247       tree stmt;
4248
4249       stmt = make_node (OMP_FOR);
4250
4251       for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4252         {
4253           /* This is really just a place-holder.  We'll be decomposing this
4254              again and going through the cp_build_modify_expr path below when
4255              we instantiate the thing.  */
4256           TREE_VEC_ELT (initv, i)
4257             = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4258                       TREE_VEC_ELT (initv, i));
4259         }
4260
4261       TREE_TYPE (stmt) = void_type_node;
4262       OMP_FOR_INIT (stmt) = initv;
4263       OMP_FOR_COND (stmt) = condv;
4264       OMP_FOR_INCR (stmt) = incrv;
4265       OMP_FOR_BODY (stmt) = body;
4266       OMP_FOR_PRE_BODY (stmt) = pre_body;
4267       OMP_FOR_CLAUSES (stmt) = clauses;
4268
4269       SET_EXPR_LOCATION (stmt, locus);
4270       return add_stmt (stmt);
4271     }
4272
4273   if (processing_template_decl)
4274     orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
4275
4276   for (i = 0; i < TREE_VEC_LENGTH (declv); )
4277     {
4278       decl = TREE_VEC_ELT (declv, i);
4279       init = TREE_VEC_ELT (initv, i);
4280       cond = TREE_VEC_ELT (condv, i);
4281       incr = TREE_VEC_ELT (incrv, i);
4282       if (orig_incr)
4283         TREE_VEC_ELT (orig_incr, i) = incr;
4284       elocus = locus;
4285
4286       if (init && EXPR_HAS_LOCATION (init))
4287         elocus = EXPR_LOCATION (init);
4288
4289       if (!DECL_P (decl))
4290         {
4291           error_at (elocus, "expected iteration declaration or initialization");
4292           return NULL;
4293         }
4294
4295       if (incr && TREE_CODE (incr) == MODOP_EXPR)
4296         {
4297           if (orig_incr)
4298             TREE_VEC_ELT (orig_incr, i) = incr;
4299           incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4300                                        TREE_CODE (TREE_OPERAND (incr, 1)),
4301                                        TREE_OPERAND (incr, 2),
4302                                        tf_warning_or_error);
4303         }
4304
4305       if (CLASS_TYPE_P (TREE_TYPE (decl)))
4306         {
4307           if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4308                                              incrv, &body, &pre_body, clauses))
4309             return NULL;
4310           continue;
4311         }
4312
4313       if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4314           && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4315         {
4316           error_at (elocus, "invalid type for iteration variable %qE", decl);
4317           return NULL;
4318         }
4319
4320       if (!processing_template_decl)
4321         {
4322           init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4323           init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4324         }
4325       else
4326         init = build2 (MODIFY_EXPR, void_type_node, decl, init);
4327       if (cond
4328           && TREE_SIDE_EFFECTS (cond)
4329           && COMPARISON_CLASS_P (cond)
4330           && !processing_template_decl)
4331         {
4332           tree t = TREE_OPERAND (cond, 0);
4333           if (TREE_SIDE_EFFECTS (t)
4334               && t != decl
4335               && (TREE_CODE (t) != NOP_EXPR
4336                   || TREE_OPERAND (t, 0) != decl))
4337             TREE_OPERAND (cond, 0)
4338               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4339
4340           t = TREE_OPERAND (cond, 1);
4341           if (TREE_SIDE_EFFECTS (t)
4342               && t != decl
4343               && (TREE_CODE (t) != NOP_EXPR
4344                   || TREE_OPERAND (t, 0) != decl))
4345             TREE_OPERAND (cond, 1)
4346               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4347         }
4348       if (decl == error_mark_node || init == error_mark_node)
4349         return NULL;
4350
4351       TREE_VEC_ELT (declv, i) = decl;
4352       TREE_VEC_ELT (initv, i) = init;
4353       TREE_VEC_ELT (condv, i) = cond;
4354       TREE_VEC_ELT (incrv, i) = incr;
4355       i++;
4356     }
4357
4358   if (IS_EMPTY_STMT (pre_body))
4359     pre_body = NULL;
4360
4361   omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4362                               body, pre_body);
4363
4364   if (omp_for == NULL)
4365     return NULL;
4366
4367   for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
4368     {
4369       decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4370       incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
4371
4372       if (TREE_CODE (incr) != MODIFY_EXPR)
4373         continue;
4374
4375       if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
4376           && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4377           && !processing_template_decl)
4378         {
4379           tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4380           if (TREE_SIDE_EFFECTS (t)
4381               && t != decl
4382               && (TREE_CODE (t) != NOP_EXPR
4383                   || TREE_OPERAND (t, 0) != decl))
4384             TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4385               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4386
4387           t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4388           if (TREE_SIDE_EFFECTS (t)
4389               && t != decl
4390               && (TREE_CODE (t) != NOP_EXPR
4391                   || TREE_OPERAND (t, 0) != decl))
4392             TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4393               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4394         }
4395
4396       if (orig_incr)
4397         TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
4398     }
4399   if (omp_for != NULL)
4400     OMP_FOR_CLAUSES (omp_for) = clauses;
4401   return omp_for;
4402 }
4403
4404 void
4405 finish_omp_atomic (enum tree_code code, tree lhs, tree rhs)
4406 {
4407   tree orig_lhs;
4408   tree orig_rhs;
4409   bool dependent_p;
4410   tree stmt;
4411
4412   orig_lhs = lhs;
4413   orig_rhs = rhs;
4414   dependent_p = false;
4415   stmt = NULL_TREE;
4416
4417   /* Even in a template, we can detect invalid uses of the atomic
4418      pragma if neither LHS nor RHS is type-dependent.  */
4419   if (processing_template_decl)
4420     {
4421       dependent_p = (type_dependent_expression_p (lhs)
4422                      || type_dependent_expression_p (rhs));
4423       if (!dependent_p)
4424         {
4425           lhs = build_non_dependent_expr (lhs);
4426           rhs = build_non_dependent_expr (rhs);
4427         }
4428     }
4429   if (!dependent_p)
4430     {
4431       stmt = c_finish_omp_atomic (input_location, code, lhs, rhs);
4432       if (stmt == error_mark_node)
4433         return;
4434     }
4435   if (processing_template_decl)
4436     stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node,
4437                    build2 (code, void_type_node, orig_lhs, orig_rhs));
4438   add_stmt (stmt);
4439 }
4440
4441 void
4442 finish_omp_barrier (void)
4443 {
4444   tree fn = built_in_decls[BUILT_IN_GOMP_BARRIER];
4445   VEC(tree,gc) *vec = make_tree_vector ();
4446   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4447   release_tree_vector (vec);
4448   finish_expr_stmt (stmt);
4449 }
4450
4451 void
4452 finish_omp_flush (void)
4453 {
4454   tree fn = built_in_decls[BUILT_IN_SYNCHRONIZE];
4455   VEC(tree,gc) *vec = make_tree_vector ();
4456   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4457   release_tree_vector (vec);
4458   finish_expr_stmt (stmt);
4459 }
4460
4461 void
4462 finish_omp_taskwait (void)
4463 {
4464   tree fn = built_in_decls[BUILT_IN_GOMP_TASKWAIT];
4465   VEC(tree,gc) *vec = make_tree_vector ();
4466   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4467   release_tree_vector (vec);
4468   finish_expr_stmt (stmt);
4469 }
4470 \f
4471 void
4472 init_cp_semantics (void)
4473 {
4474 }
4475 \f
4476 /* Build a STATIC_ASSERT for a static assertion with the condition
4477    CONDITION and the message text MESSAGE.  LOCATION is the location
4478    of the static assertion in the source code.  When MEMBER_P, this
4479    static assertion is a member of a class.  */
4480 void 
4481 finish_static_assert (tree condition, tree message, location_t location, 
4482                       bool member_p)
4483 {
4484   if (check_for_bare_parameter_packs (condition))
4485     condition = error_mark_node;
4486
4487   if (type_dependent_expression_p (condition) 
4488       || value_dependent_expression_p (condition))
4489     {
4490       /* We're in a template; build a STATIC_ASSERT and put it in
4491          the right place. */
4492       tree assertion;
4493
4494       assertion = make_node (STATIC_ASSERT);
4495       STATIC_ASSERT_CONDITION (assertion) = condition;
4496       STATIC_ASSERT_MESSAGE (assertion) = message;
4497       STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
4498
4499       if (member_p)
4500         maybe_add_class_template_decl_list (current_class_type, 
4501                                             assertion,
4502                                             /*friend_p=*/0);
4503       else
4504         add_stmt (assertion);
4505
4506       return;
4507     }
4508
4509   /* Fold the expression and convert it to a boolean value. */
4510   condition = fold_non_dependent_expr (condition);
4511   condition = cp_convert (boolean_type_node, condition);
4512
4513   if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
4514     /* Do nothing; the condition is satisfied. */
4515     ;
4516   else 
4517     {
4518       location_t saved_loc = input_location;
4519
4520       input_location = location;
4521       if (TREE_CODE (condition) == INTEGER_CST 
4522           && integer_zerop (condition))
4523         /* Report the error. */
4524         error ("static assertion failed: %E", message);
4525       else if (condition && condition != error_mark_node)
4526         error ("non-constant condition for static assertion");
4527       input_location = saved_loc;
4528     }
4529 }
4530 \f
4531 /* Returns decltype((EXPR)) for cases where we can drop the decltype and
4532    just return the type even though EXPR is a type-dependent expression.
4533    The ABI specifies which cases this applies to, which is a subset of the
4534    possible cases.  */
4535
4536 tree
4537 describable_type (tree expr)
4538 {
4539   tree type = NULL_TREE;
4540
4541   /* processing_template_decl isn't set when we're called from the mangling
4542      code, so bump it now.  */
4543   ++processing_template_decl;
4544   if (! type_dependent_expression_p (expr)
4545       && ! type_unknown_p (expr))
4546     {
4547       type = TREE_TYPE (expr);
4548       if (real_lvalue_p (expr))
4549         type = build_reference_type (type);
4550     }
4551   --processing_template_decl;
4552
4553   if (type)
4554     return type;
4555
4556   switch (TREE_CODE (expr))
4557     {
4558     case VAR_DECL:
4559     case PARM_DECL:
4560     case RESULT_DECL:
4561     case FUNCTION_DECL:
4562       /* Named rvalue reference becomes lvalue.  */
4563       type = build_reference_type (non_reference (TREE_TYPE (expr)));
4564       break;
4565
4566     case NEW_EXPR:
4567     case CONST_DECL:
4568     case TEMPLATE_PARM_INDEX:
4569     case CAST_EXPR:
4570     case STATIC_CAST_EXPR:
4571     case REINTERPRET_CAST_EXPR:
4572     case CONST_CAST_EXPR:
4573     case DYNAMIC_CAST_EXPR:
4574       type = TREE_TYPE (expr);
4575       break;
4576
4577     case INDIRECT_REF:
4578       {
4579         tree ptrtype = describable_type (TREE_OPERAND (expr, 0));
4580         if (ptrtype && POINTER_TYPE_P (ptrtype))
4581           type = build_reference_type (TREE_TYPE (ptrtype));
4582       }
4583       break;
4584
4585     default:
4586       if (TREE_CODE_CLASS (TREE_CODE (expr)) == tcc_constant)
4587         type = TREE_TYPE (expr);
4588       break;
4589     }
4590
4591   if (type && type_uses_auto (type))
4592     return NULL_TREE;
4593   else
4594     return type;
4595 }
4596
4597 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
4598    suitable for use as a type-specifier.
4599
4600    ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
4601    id-expression or a class member access, FALSE when it was parsed as
4602    a full expression.  */
4603
4604 tree
4605 finish_decltype_type (tree expr, bool id_expression_or_member_access_p)
4606 {
4607   tree orig_expr = expr;
4608   tree type = NULL_TREE;
4609
4610   if (!expr || error_operand_p (expr))
4611     return error_mark_node;
4612
4613   if (TYPE_P (expr)
4614       || TREE_CODE (expr) == TYPE_DECL
4615       || (TREE_CODE (expr) == BIT_NOT_EXPR
4616           && TYPE_P (TREE_OPERAND (expr, 0))))
4617     {
4618       error ("argument to decltype must be an expression");
4619       return error_mark_node;
4620     }
4621
4622   if (type_dependent_expression_p (expr))
4623     {
4624       if (id_expression_or_member_access_p)
4625         {
4626           switch (TREE_CODE (expr))
4627             {
4628             case VAR_DECL:
4629             case PARM_DECL:
4630             case RESULT_DECL:
4631             case FUNCTION_DECL:
4632             case CONST_DECL:
4633             case TEMPLATE_PARM_INDEX:
4634               type = TREE_TYPE (expr);
4635               break;
4636
4637             default:
4638               break;
4639             }
4640         }
4641
4642       if (type && !type_uses_auto (type))
4643         return type;
4644
4645       type = cxx_make_type (DECLTYPE_TYPE);
4646       DECLTYPE_TYPE_EXPR (type) = expr;
4647       DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
4648         = id_expression_or_member_access_p;
4649       SET_TYPE_STRUCTURAL_EQUALITY (type);
4650
4651       return type;
4652     }
4653
4654   /* The type denoted by decltype(e) is defined as follows:  */
4655
4656   if (id_expression_or_member_access_p)
4657     {
4658       /* If e is an id-expression or a class member access (5.2.5
4659          [expr.ref]), decltype(e) is defined as the type of the entity
4660          named by e. If there is no such entity, or e names a set of
4661          overloaded functions, the program is ill-formed.  */
4662       if (TREE_CODE (expr) == IDENTIFIER_NODE)
4663         expr = lookup_name (expr);
4664
4665       if (TREE_CODE (expr) == INDIRECT_REF)
4666         /* This can happen when the expression is, e.g., "a.b". Just
4667            look at the underlying operand.  */
4668         expr = TREE_OPERAND (expr, 0);
4669
4670       if (TREE_CODE (expr) == OFFSET_REF
4671           || TREE_CODE (expr) == MEMBER_REF)
4672         /* We're only interested in the field itself. If it is a
4673            BASELINK, we will need to see through it in the next
4674            step.  */
4675         expr = TREE_OPERAND (expr, 1);
4676
4677       if (TREE_CODE (expr) == BASELINK)
4678         /* See through BASELINK nodes to the underlying functions.  */
4679         expr = BASELINK_FUNCTIONS (expr);
4680
4681       if (TREE_CODE (expr) == OVERLOAD)
4682         {
4683           if (OVL_CHAIN (expr))
4684             {
4685               error ("%qE refers to a set of overloaded functions", orig_expr);
4686               return error_mark_node;
4687             }
4688           else
4689             /* An overload set containing only one function: just look
4690                at that function.  */
4691             expr = OVL_FUNCTION (expr);
4692         }
4693
4694       switch (TREE_CODE (expr))
4695         {
4696         case FIELD_DECL:
4697           if (DECL_BIT_FIELD_TYPE (expr))
4698             {
4699               type = DECL_BIT_FIELD_TYPE (expr);
4700               break;
4701             }
4702           /* Fall through for fields that aren't bitfields.  */
4703
4704         case FUNCTION_DECL:
4705         case VAR_DECL:
4706         case CONST_DECL:
4707         case PARM_DECL:
4708         case RESULT_DECL:
4709         case TEMPLATE_PARM_INDEX:
4710           type = TREE_TYPE (expr);
4711           break;
4712
4713         case ERROR_MARK:
4714           type = error_mark_node;
4715           break;
4716
4717         case COMPONENT_REF:
4718           type = is_bitfield_expr_with_lowered_type (expr);
4719           if (!type)
4720             type = TREE_TYPE (TREE_OPERAND (expr, 1));
4721           break;
4722
4723         case BIT_FIELD_REF:
4724           gcc_unreachable ();
4725
4726         case INTEGER_CST:
4727           /* We can get here when the id-expression refers to an
4728              enumerator.  */
4729           type = TREE_TYPE (expr);
4730           break;
4731
4732         default:
4733           gcc_assert (TYPE_P (expr) || DECL_P (expr)
4734                       || TREE_CODE (expr) == SCOPE_REF);
4735           error ("argument to decltype must be an expression");
4736           return error_mark_node;
4737         }
4738     }
4739   else
4740     {
4741       /* Expressions of reference type are sometimes wrapped in
4742          INDIRECT_REFs.  INDIRECT_REFs are just internal compiler
4743          representation, not part of the language, so we have to look
4744          through them.  */
4745       if (TREE_CODE (expr) == INDIRECT_REF
4746           && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0)))
4747           == REFERENCE_TYPE)
4748         expr = TREE_OPERAND (expr, 0);
4749
4750       if (TREE_CODE (expr) == CALL_EXPR)
4751         {
4752           /* If e is a function call (5.2.2 [expr.call]) or an
4753            invocation of an overloaded operator (parentheses around e
4754            are ignored), decltype(e) is defined as the return type of
4755            that function.  */
4756           tree fndecl = get_callee_fndecl (expr);
4757           if (fndecl && fndecl != error_mark_node)
4758             type = TREE_TYPE (TREE_TYPE (fndecl));
4759           else 
4760             {
4761               tree target_type = TREE_TYPE (CALL_EXPR_FN (expr));
4762               if ((TREE_CODE (target_type) == REFERENCE_TYPE
4763                    || TREE_CODE (target_type) == POINTER_TYPE)
4764                   && (TREE_CODE (TREE_TYPE (target_type)) == FUNCTION_TYPE
4765                       || TREE_CODE (TREE_TYPE (target_type)) == METHOD_TYPE))
4766                 type = TREE_TYPE (TREE_TYPE (target_type));
4767               else
4768                 sorry ("unable to determine the declared type of expression %<%E%>",
4769                        expr);
4770             }
4771         }
4772       else 
4773         {
4774           type = is_bitfield_expr_with_lowered_type (expr);
4775           if (type)
4776             {
4777               /* Bitfields are special, because their type encodes the
4778                  number of bits they store.  If the expression referenced a
4779                  bitfield, TYPE now has the declared type of that
4780                  bitfield.  */
4781               type = cp_build_qualified_type (type, 
4782                                               cp_type_quals (TREE_TYPE (expr)));
4783               
4784               if (real_lvalue_p (expr))
4785                 type = build_reference_type (type);
4786             }
4787           else
4788             {
4789               /* Otherwise, where T is the type of e, if e is an lvalue,
4790                  decltype(e) is defined as T&, otherwise decltype(e) is
4791                  defined as T.  */
4792               type = TREE_TYPE (expr);
4793               if (type == error_mark_node)
4794                 return error_mark_node;
4795               else if (expr == current_class_ptr)
4796                 /* If the expression is just "this", we want the
4797                    cv-unqualified pointer for the "this" type.  */
4798                 type = TYPE_MAIN_VARIANT (type);
4799               else if (real_lvalue_p (expr))
4800                 {
4801                   if (TREE_CODE (type) != REFERENCE_TYPE)
4802                     type = build_reference_type (type);
4803                 }
4804               else
4805                 type = non_reference (type);
4806             }
4807         }
4808     }
4809
4810   if (!type || type == unknown_type_node)
4811     {
4812       error ("type of %qE is unknown", expr);
4813       return error_mark_node;
4814     }
4815
4816   return type;
4817 }
4818
4819 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or 
4820    __has_nothrow_copy, depending on assign_p.  */
4821
4822 static bool
4823 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
4824 {
4825   tree fns;
4826
4827   if (assign_p)
4828     {
4829       int ix;
4830       ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
4831       if (ix < 0)
4832         return false;
4833       fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
4834     } 
4835   else if (TYPE_HAS_INIT_REF (type))
4836     {
4837       /* If construction of the copy constructor was postponed, create
4838          it now.  */
4839       if (CLASSTYPE_LAZY_COPY_CTOR (type))
4840         lazily_declare_fn (sfk_copy_constructor, type);
4841       fns = CLASSTYPE_CONSTRUCTORS (type);
4842     }
4843   else
4844     return false;
4845
4846   for (; fns; fns = OVL_NEXT (fns))
4847     {
4848       tree fn = OVL_CURRENT (fns);
4849  
4850       if (assign_p)
4851         {
4852           if (copy_fn_p (fn) == 0)
4853             continue;
4854         }
4855       else if (copy_fn_p (fn) <= 0)
4856         continue;
4857
4858       if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
4859         return false;
4860     }
4861
4862   return true;
4863 }
4864
4865 /* Actually evaluates the trait.  */
4866
4867 static bool
4868 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
4869 {
4870   enum tree_code type_code1;
4871   tree t;
4872
4873   type_code1 = TREE_CODE (type1);
4874
4875   switch (kind)
4876     {
4877     case CPTK_HAS_NOTHROW_ASSIGN:
4878       return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
4879               && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
4880                   || (CLASS_TYPE_P (type1)
4881                       && classtype_has_nothrow_assign_or_copy_p (type1,
4882                                                                  true))));
4883
4884     case CPTK_HAS_TRIVIAL_ASSIGN:
4885       return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
4886               && (pod_type_p (type1)
4887                     || (CLASS_TYPE_P (type1)
4888                         && TYPE_HAS_TRIVIAL_ASSIGN_REF (type1))));
4889
4890     case CPTK_HAS_NOTHROW_CONSTRUCTOR:
4891       type1 = strip_array_types (type1);
4892       return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2) 
4893               || (CLASS_TYPE_P (type1)
4894                   && (t = locate_ctor (type1, NULL))
4895                   && TYPE_NOTHROW_P (TREE_TYPE (t))));
4896
4897     case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
4898       type1 = strip_array_types (type1);
4899       return (pod_type_p (type1)
4900               || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
4901
4902     case CPTK_HAS_NOTHROW_COPY:
4903       return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
4904               || (CLASS_TYPE_P (type1)
4905                   && classtype_has_nothrow_assign_or_copy_p (type1, false)));
4906
4907     case CPTK_HAS_TRIVIAL_COPY:
4908       return (pod_type_p (type1) || type_code1 == REFERENCE_TYPE
4909               || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_INIT_REF (type1)));
4910
4911     case CPTK_HAS_TRIVIAL_DESTRUCTOR:
4912       type1 = strip_array_types (type1);
4913       return (pod_type_p (type1) || type_code1 == REFERENCE_TYPE
4914               || (CLASS_TYPE_P (type1)
4915                   && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
4916
4917     case CPTK_HAS_VIRTUAL_DESTRUCTOR:
4918       return (CLASS_TYPE_P (type1)
4919               && (t = locate_dtor (type1, NULL)) && DECL_VIRTUAL_P (t));
4920
4921     case CPTK_IS_ABSTRACT:
4922       return (CLASS_TYPE_P (type1) && CLASSTYPE_PURE_VIRTUALS (type1));
4923
4924     case CPTK_IS_BASE_OF:
4925       return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
4926               && DERIVED_FROM_P (type1, type2));
4927
4928     case CPTK_IS_CLASS:
4929       return (NON_UNION_CLASS_TYPE_P (type1));
4930
4931     case CPTK_IS_CONVERTIBLE_TO:
4932       /* TODO  */
4933       return false;
4934
4935     case CPTK_IS_EMPTY:
4936       return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
4937
4938     case CPTK_IS_ENUM:
4939       return (type_code1 == ENUMERAL_TYPE);
4940
4941     case CPTK_IS_POD:
4942       return (pod_type_p (type1));
4943
4944     case CPTK_IS_POLYMORPHIC:
4945       return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
4946
4947     case CPTK_IS_UNION:
4948       return (type_code1 == UNION_TYPE);
4949
4950     default:
4951       gcc_unreachable ();
4952       return false;
4953     }
4954 }
4955
4956 /* Returns true if TYPE is a complete type, an array of unknown bound,
4957    or (possibly cv-qualified) void, returns false otherwise.  */
4958
4959 static bool
4960 check_trait_type (tree type)
4961 {
4962   if (COMPLETE_TYPE_P (type))
4963     return true;
4964
4965   if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type))
4966     return true;
4967
4968   if (VOID_TYPE_P (type))
4969     return true;
4970
4971   return false;
4972 }
4973
4974 /* Process a trait expression.  */
4975
4976 tree
4977 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
4978 {
4979   gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
4980               || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
4981               || kind == CPTK_HAS_NOTHROW_COPY
4982               || kind == CPTK_HAS_TRIVIAL_ASSIGN
4983               || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
4984               || kind == CPTK_HAS_TRIVIAL_COPY
4985               || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
4986               || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR          
4987               || kind == CPTK_IS_ABSTRACT
4988               || kind == CPTK_IS_BASE_OF
4989               || kind == CPTK_IS_CLASS
4990               || kind == CPTK_IS_CONVERTIBLE_TO
4991               || kind == CPTK_IS_EMPTY
4992               || kind == CPTK_IS_ENUM
4993               || kind == CPTK_IS_POD
4994               || kind == CPTK_IS_POLYMORPHIC
4995               || kind == CPTK_IS_UNION);
4996
4997   if (kind == CPTK_IS_CONVERTIBLE_TO)
4998     {
4999       sorry ("__is_convertible_to");
5000       return error_mark_node;
5001     }
5002
5003   if (type1 == error_mark_node
5004       || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5005           && type2 == error_mark_node))
5006     return error_mark_node;
5007
5008   if (processing_template_decl)
5009     {
5010       tree trait_expr = make_node (TRAIT_EXPR);
5011       TREE_TYPE (trait_expr) = boolean_type_node;
5012       TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5013       TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5014       TRAIT_EXPR_KIND (trait_expr) = kind;
5015       return trait_expr;
5016     }
5017
5018   complete_type (type1);
5019   if (type2)
5020     complete_type (type2);
5021
5022   switch (kind)
5023     {
5024     case CPTK_HAS_NOTHROW_ASSIGN:
5025     case CPTK_HAS_TRIVIAL_ASSIGN:
5026     case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5027     case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5028     case CPTK_HAS_NOTHROW_COPY:
5029     case CPTK_HAS_TRIVIAL_COPY:
5030     case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5031     case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5032     case CPTK_IS_ABSTRACT:
5033     case CPTK_IS_EMPTY:
5034     case CPTK_IS_POD:
5035     case CPTK_IS_POLYMORPHIC:
5036       if (!check_trait_type (type1))
5037         {
5038           error ("incomplete type %qT not allowed", type1);
5039           return error_mark_node;
5040         }
5041       break;
5042
5043     case CPTK_IS_BASE_OF:
5044       if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5045           && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5046           && !COMPLETE_TYPE_P (type2))
5047         {
5048           error ("incomplete type %qT not allowed", type2);
5049           return error_mark_node;
5050         }
5051       break;
5052
5053     case CPTK_IS_CLASS:
5054     case CPTK_IS_ENUM:
5055     case CPTK_IS_UNION:
5056       break;
5057     
5058     case CPTK_IS_CONVERTIBLE_TO:
5059     default:
5060       gcc_unreachable ();
5061     }
5062
5063   return (trait_expr_value (kind, type1, type2)
5064           ? boolean_true_node : boolean_false_node);
5065 }
5066
5067 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5068    which is ignored for C++.  */
5069
5070 void
5071 set_float_const_decimal64 (void)
5072 {
5073 }
5074
5075 void
5076 clear_float_const_decimal64 (void)
5077 {
5078 }
5079
5080 bool
5081 float_const_decimal64_p (void)
5082 {
5083   return 0;
5084 }
5085
5086 #include "gt-cp-semantics.h"