OSDN Git Service

Core 898
[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, 2010, 2011 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-family/c-common.h"
34 #include "c-family/c-objc.h"
35 #include "tree-inline.h"
36 #include "tree-mudflap.h"
37 #include "toplev.h"
38 #include "flags.h"
39 #include "output.h"
40 #include "timevar.h"
41 #include "diagnostic.h"
42 #include "cgraph.h"
43 #include "tree-iterator.h"
44 #include "vec.h"
45 #include "target.h"
46 #include "gimple.h"
47 #include "bitmap.h"
48
49 /* There routines provide a modular interface to perform many parsing
50    operations.  They may therefore be used during actual parsing, or
51    during template instantiation, which may be regarded as a
52    degenerate form of parsing.  */
53
54 static tree maybe_convert_cond (tree);
55 static tree finalize_nrv_r (tree *, int *, void *);
56 static tree capture_decltype (tree);
57 static tree thisify_lambda_field (tree);
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_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
237             {
238               FOR_EACH_VEC_ELT (deferred_access_check,
239                                 ptr->deferred_access_checks, j, probe)
240                 {
241                   if (probe->binfo == chk->binfo &&
242                       probe->decl == chk->decl &&
243                       probe->diag_decl == chk->diag_decl)
244                     goto found;
245                 }
246               /* Insert into parent's checks.  */
247               VEC_safe_push (deferred_access_check, gc,
248                              ptr->deferred_access_checks, chk);
249             found:;
250             }
251         }
252     }
253 }
254
255 /* Perform the access checks in CHECKS.  The TREE_PURPOSE of each node
256    is the BINFO indicating the qualifying scope used to access the
257    DECL node stored in the TREE_VALUE of the node.  */
258
259 void
260 perform_access_checks (VEC (deferred_access_check,gc)* checks)
261 {
262   int i;
263   deferred_access_check *chk;
264
265   if (!checks)
266     return;
267
268   FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
269     enforce_access (chk->binfo, chk->decl, chk->diag_decl);
270 }
271
272 /* Perform the deferred access checks.
273
274    After performing the checks, we still have to keep the list
275    `deferred_access_stack->deferred_access_checks' since we may want
276    to check access for them again later in a different context.
277    For example:
278
279      class A {
280        typedef int X;
281        static X a;
282      };
283      A::X A::a, x;      // No error for `A::a', error for `x'
284
285    We have to perform deferred access of `A::X', first with `A::a',
286    next with `x'.  */
287
288 void
289 perform_deferred_access_checks (void)
290 {
291   perform_access_checks (get_deferred_access_checks ());
292 }
293
294 /* Defer checking the accessibility of DECL, when looked up in
295    BINFO. DIAG_DECL is the declaration to use to print diagnostics.  */
296
297 void
298 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl)
299 {
300   int i;
301   deferred_access *ptr;
302   deferred_access_check *chk;
303   deferred_access_check *new_access;
304
305
306   /* Exit if we are in a context that no access checking is performed.
307      */
308   if (deferred_access_no_check)
309     return;
310
311   gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
312
313   ptr = VEC_last (deferred_access, deferred_access_stack);
314
315   /* If we are not supposed to defer access checks, just check now.  */
316   if (ptr->deferring_access_checks_kind == dk_no_deferred)
317     {
318       enforce_access (binfo, decl, diag_decl);
319       return;
320     }
321
322   /* See if we are already going to perform this check.  */
323   FOR_EACH_VEC_ELT  (deferred_access_check,
324                      ptr->deferred_access_checks, i, chk)
325     {
326       if (chk->decl == decl && chk->binfo == binfo &&
327           chk->diag_decl == diag_decl)
328         {
329           return;
330         }
331     }
332   /* If not, record the check.  */
333   new_access =
334     VEC_safe_push (deferred_access_check, gc,
335                    ptr->deferred_access_checks, 0);
336   new_access->binfo = binfo;
337   new_access->decl = decl;
338   new_access->diag_decl = diag_decl;
339 }
340
341 /* Used by build_over_call in LOOKUP_SPECULATIVE mode: return whether DECL
342    is accessible in BINFO, and possibly complain if not.  If we're not
343    checking access, everything is accessible.  */
344
345 bool
346 speculative_access_check (tree binfo, tree decl, tree diag_decl,
347                           bool complain)
348 {
349   if (deferred_access_no_check)
350     return true;
351
352   /* If we're checking for implicit delete, we don't want access
353      control errors.  */
354   if (!accessible_p (binfo, decl, true))
355     {
356       /* Unless we're under maybe_explain_implicit_delete.  */
357       if (complain)
358         enforce_access (binfo, decl, diag_decl);
359       return false;
360     }
361
362   return true;
363 }
364
365 /* Returns nonzero if the current statement is a full expression,
366    i.e. temporaries created during that statement should be destroyed
367    at the end of the statement.  */
368
369 int
370 stmts_are_full_exprs_p (void)
371 {
372   return current_stmt_tree ()->stmts_are_full_exprs_p;
373 }
374
375 /* T is a statement.  Add it to the statement-tree.  This is the C++
376    version.  The C/ObjC frontends have a slightly different version of
377    this function.  */
378
379 tree
380 add_stmt (tree t)
381 {
382   enum tree_code code = TREE_CODE (t);
383
384   if (EXPR_P (t) && code != LABEL_EXPR)
385     {
386       if (!EXPR_HAS_LOCATION (t))
387         SET_EXPR_LOCATION (t, input_location);
388
389       /* When we expand a statement-tree, we must know whether or not the
390          statements are full-expressions.  We record that fact here.  */
391       STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
392     }
393
394   /* Add T to the statement-tree.  Non-side-effect statements need to be
395      recorded during statement expressions.  */
396   append_to_statement_list_force (t, &cur_stmt_list);
397
398   return t;
399 }
400
401 /* Returns the stmt_tree to which statements are currently being added.  */
402
403 stmt_tree
404 current_stmt_tree (void)
405 {
406   return (cfun
407           ? &cfun->language->base.x_stmt_tree
408           : &scope_chain->x_stmt_tree);
409 }
410
411 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR.  */
412
413 static tree
414 maybe_cleanup_point_expr (tree expr)
415 {
416   if (!processing_template_decl && stmts_are_full_exprs_p ())
417     expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
418   return expr;
419 }
420
421 /* Like maybe_cleanup_point_expr except have the type of the new expression be
422    void so we don't need to create a temporary variable to hold the inner
423    expression.  The reason why we do this is because the original type might be
424    an aggregate and we cannot create a temporary variable for that type.  */
425
426 static tree
427 maybe_cleanup_point_expr_void (tree expr)
428 {
429   if (!processing_template_decl && stmts_are_full_exprs_p ())
430     expr = fold_build_cleanup_point_expr (void_type_node, expr);
431   return expr;
432 }
433
434
435
436 /* Create a declaration statement for the declaration given by the DECL.  */
437
438 void
439 add_decl_expr (tree decl)
440 {
441   tree r = build_stmt (input_location, DECL_EXPR, decl);
442   if (DECL_INITIAL (decl)
443       || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
444     r = maybe_cleanup_point_expr_void (r);
445   add_stmt (r);
446 }
447
448 /* Finish a scope.  */
449
450 tree
451 do_poplevel (tree stmt_list)
452 {
453   tree block = NULL;
454
455   if (stmts_are_full_exprs_p ())
456     block = poplevel (kept_level_p (), 1, 0);
457
458   stmt_list = pop_stmt_list (stmt_list);
459
460   if (!processing_template_decl)
461     {
462       stmt_list = c_build_bind_expr (input_location, block, stmt_list);
463       /* ??? See c_end_compound_stmt re statement expressions.  */
464     }
465
466   return stmt_list;
467 }
468
469 /* Begin a new scope.  */
470
471 static tree
472 do_pushlevel (scope_kind sk)
473 {
474   tree ret = push_stmt_list ();
475   if (stmts_are_full_exprs_p ())
476     begin_scope (sk, NULL);
477   return ret;
478 }
479
480 /* Queue a cleanup.  CLEANUP is an expression/statement to be executed
481    when the current scope is exited.  EH_ONLY is true when this is not
482    meant to apply to normal control flow transfer.  */
483
484 void
485 push_cleanup (tree decl, tree cleanup, bool eh_only)
486 {
487   tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
488   CLEANUP_EH_ONLY (stmt) = eh_only;
489   add_stmt (stmt);
490   CLEANUP_BODY (stmt) = push_stmt_list ();
491 }
492
493 /* Begin a conditional that might contain a declaration.  When generating
494    normal code, we want the declaration to appear before the statement
495    containing the conditional.  When generating template code, we want the
496    conditional to be rendered as the raw DECL_EXPR.  */
497
498 static void
499 begin_cond (tree *cond_p)
500 {
501   if (processing_template_decl)
502     *cond_p = push_stmt_list ();
503 }
504
505 /* Finish such a conditional.  */
506
507 static void
508 finish_cond (tree *cond_p, tree expr)
509 {
510   if (processing_template_decl)
511     {
512       tree cond = pop_stmt_list (*cond_p);
513       if (TREE_CODE (cond) == DECL_EXPR)
514         expr = cond;
515
516       if (check_for_bare_parameter_packs (expr))
517         *cond_p = error_mark_node;
518     }
519   *cond_p = expr;
520 }
521
522 /* If *COND_P specifies a conditional with a declaration, transform the
523    loop such that
524             while (A x = 42) { }
525             for (; A x = 42;) { }
526    becomes
527             while (true) { A x = 42; if (!x) break; }
528             for (;;) { A x = 42; if (!x) break; }
529    The statement list for BODY will be empty if the conditional did
530    not declare anything.  */
531
532 static void
533 simplify_loop_decl_cond (tree *cond_p, tree body)
534 {
535   tree cond, if_stmt;
536
537   if (!TREE_SIDE_EFFECTS (body))
538     return;
539
540   cond = *cond_p;
541   *cond_p = boolean_true_node;
542
543   if_stmt = begin_if_stmt ();
544   cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
545   finish_if_stmt_cond (cond, if_stmt);
546   finish_break_stmt ();
547   finish_then_clause (if_stmt);
548   finish_if_stmt (if_stmt);
549 }
550
551 /* Finish a goto-statement.  */
552
553 tree
554 finish_goto_stmt (tree destination)
555 {
556   if (TREE_CODE (destination) == IDENTIFIER_NODE)
557     destination = lookup_label (destination);
558
559   /* We warn about unused labels with -Wunused.  That means we have to
560      mark the used labels as used.  */
561   if (TREE_CODE (destination) == LABEL_DECL)
562     TREE_USED (destination) = 1;
563   else
564     {
565       destination = mark_rvalue_use (destination);
566       if (!processing_template_decl)
567         {
568           destination = cp_convert (ptr_type_node, destination);
569           if (error_operand_p (destination))
570             return NULL_TREE;
571         }
572       /* We don't inline calls to functions with computed gotos.
573          Those functions are typically up to some funny business,
574          and may be depending on the labels being at particular
575          addresses, or some such.  */
576       DECL_UNINLINABLE (current_function_decl) = 1;
577     }
578
579   check_goto (destination);
580
581   return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
582 }
583
584 /* COND is the condition-expression for an if, while, etc.,
585    statement.  Convert it to a boolean value, if appropriate.
586    In addition, verify sequence points if -Wsequence-point is enabled.  */
587
588 static tree
589 maybe_convert_cond (tree cond)
590 {
591   /* Empty conditions remain empty.  */
592   if (!cond)
593     return NULL_TREE;
594
595   /* Wait until we instantiate templates before doing conversion.  */
596   if (processing_template_decl)
597     return cond;
598
599   if (warn_sequence_point)
600     verify_sequence_points (cond);
601
602   /* Do the conversion.  */
603   cond = convert_from_reference (cond);
604
605   if (TREE_CODE (cond) == MODIFY_EXPR
606       && !TREE_NO_WARNING (cond)
607       && warn_parentheses)
608     {
609       warning (OPT_Wparentheses,
610                "suggest parentheses around assignment used as truth value");
611       TREE_NO_WARNING (cond) = 1;
612     }
613
614   return condition_conversion (cond);
615 }
616
617 /* Finish an expression-statement, whose EXPRESSION is as indicated.  */
618
619 tree
620 finish_expr_stmt (tree expr)
621 {
622   tree r = NULL_TREE;
623
624   if (expr != NULL_TREE)
625     {
626       if (!processing_template_decl)
627         {
628           if (warn_sequence_point)
629             verify_sequence_points (expr);
630           expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
631         }
632       else if (!type_dependent_expression_p (expr))
633         convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT, 
634                          tf_warning_or_error);
635
636       if (check_for_bare_parameter_packs (expr))
637         expr = error_mark_node;
638
639       /* Simplification of inner statement expressions, compound exprs,
640          etc can result in us already having an EXPR_STMT.  */
641       if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
642         {
643           if (TREE_CODE (expr) != EXPR_STMT)
644             expr = build_stmt (input_location, EXPR_STMT, expr);
645           expr = maybe_cleanup_point_expr_void (expr);
646         }
647
648       r = add_stmt (expr);
649     }
650
651   finish_stmt ();
652
653   return r;
654 }
655
656
657 /* Begin an if-statement.  Returns a newly created IF_STMT if
658    appropriate.  */
659
660 tree
661 begin_if_stmt (void)
662 {
663   tree r, scope;
664   scope = do_pushlevel (sk_block);
665   r = build_stmt (input_location, IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
666   TREE_CHAIN (r) = scope;
667   begin_cond (&IF_COND (r));
668   return r;
669 }
670
671 /* Process the COND of an if-statement, which may be given by
672    IF_STMT.  */
673
674 void
675 finish_if_stmt_cond (tree cond, tree if_stmt)
676 {
677   finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
678   add_stmt (if_stmt);
679   THEN_CLAUSE (if_stmt) = push_stmt_list ();
680 }
681
682 /* Finish the then-clause of an if-statement, which may be given by
683    IF_STMT.  */
684
685 tree
686 finish_then_clause (tree if_stmt)
687 {
688   THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
689   return if_stmt;
690 }
691
692 /* Begin the else-clause of an if-statement.  */
693
694 void
695 begin_else_clause (tree if_stmt)
696 {
697   ELSE_CLAUSE (if_stmt) = push_stmt_list ();
698 }
699
700 /* Finish the else-clause of an if-statement, which may be given by
701    IF_STMT.  */
702
703 void
704 finish_else_clause (tree if_stmt)
705 {
706   ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
707 }
708
709 /* Finish an if-statement.  */
710
711 void
712 finish_if_stmt (tree if_stmt)
713 {
714   tree scope = TREE_CHAIN (if_stmt);
715   TREE_CHAIN (if_stmt) = NULL;
716   add_stmt (do_poplevel (scope));
717   finish_stmt ();
718 }
719
720 /* Begin a while-statement.  Returns a newly created WHILE_STMT if
721    appropriate.  */
722
723 tree
724 begin_while_stmt (void)
725 {
726   tree r;
727   r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
728   add_stmt (r);
729   WHILE_BODY (r) = do_pushlevel (sk_block);
730   begin_cond (&WHILE_COND (r));
731   return r;
732 }
733
734 /* Process the COND of a while-statement, which may be given by
735    WHILE_STMT.  */
736
737 void
738 finish_while_stmt_cond (tree cond, tree while_stmt)
739 {
740   finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
741   simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
742 }
743
744 /* Finish a while-statement, which may be given by WHILE_STMT.  */
745
746 void
747 finish_while_stmt (tree while_stmt)
748 {
749   WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
750   finish_stmt ();
751 }
752
753 /* Begin a do-statement.  Returns a newly created DO_STMT if
754    appropriate.  */
755
756 tree
757 begin_do_stmt (void)
758 {
759   tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
760   add_stmt (r);
761   DO_BODY (r) = push_stmt_list ();
762   return r;
763 }
764
765 /* Finish the body of a do-statement, which may be given by DO_STMT.  */
766
767 void
768 finish_do_body (tree do_stmt)
769 {
770   tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
771
772   if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
773     body = STATEMENT_LIST_TAIL (body)->stmt;
774
775   if (IS_EMPTY_STMT (body))
776     warning (OPT_Wempty_body,
777             "suggest explicit braces around empty body in %<do%> statement");
778 }
779
780 /* Finish a do-statement, which may be given by DO_STMT, and whose
781    COND is as indicated.  */
782
783 void
784 finish_do_stmt (tree cond, tree do_stmt)
785 {
786   cond = maybe_convert_cond (cond);
787   DO_COND (do_stmt) = cond;
788   finish_stmt ();
789 }
790
791 /* Finish a return-statement.  The EXPRESSION returned, if any, is as
792    indicated.  */
793
794 tree
795 finish_return_stmt (tree expr)
796 {
797   tree r;
798   bool no_warning;
799
800   expr = check_return_expr (expr, &no_warning);
801
802   if (flag_openmp && !check_omp_return ())
803     return error_mark_node;
804   if (!processing_template_decl)
805     {
806       if (warn_sequence_point)
807         verify_sequence_points (expr);
808       
809       if (DECL_DESTRUCTOR_P (current_function_decl)
810           || (DECL_CONSTRUCTOR_P (current_function_decl)
811               && targetm.cxx.cdtor_returns_this ()))
812         {
813           /* Similarly, all destructors must run destructors for
814              base-classes before returning.  So, all returns in a
815              destructor get sent to the DTOR_LABEL; finish_function emits
816              code to return a value there.  */
817           return finish_goto_stmt (cdtor_label);
818         }
819     }
820
821   r = build_stmt (input_location, RETURN_EXPR, expr);
822   TREE_NO_WARNING (r) |= no_warning;
823   r = maybe_cleanup_point_expr_void (r);
824   r = add_stmt (r);
825   finish_stmt ();
826
827   return r;
828 }
829
830 /* Begin the scope of a for-statement or a range-for-statement.
831    Both the returned trees are to be used in a call to
832    begin_for_stmt or begin_range_for_stmt.  */
833
834 tree
835 begin_for_scope (tree *init)
836 {
837   tree scope = NULL_TREE;
838   if (flag_new_for_scope > 0)
839     scope = do_pushlevel (sk_for);
840
841   if (processing_template_decl)
842     *init = push_stmt_list ();
843   else
844     *init = NULL_TREE;
845
846   return scope;
847 }
848
849 /* Begin a for-statement.  Returns a new FOR_STMT.
850    SCOPE and INIT should be the return of begin_for_scope,
851    or both NULL_TREE  */
852
853 tree
854 begin_for_stmt (tree scope, tree init)
855 {
856   tree r;
857
858   r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
859                   NULL_TREE, NULL_TREE);
860
861   if (scope == NULL_TREE)
862     {
863       gcc_assert (!init || !(flag_new_for_scope > 0));
864       if (!init)
865         scope = begin_for_scope (&init);
866     }
867   FOR_INIT_STMT (r) = init;
868   TREE_CHAIN (r) = scope;
869
870   return r;
871 }
872
873 /* Finish the for-init-statement of a for-statement, which may be
874    given by FOR_STMT.  */
875
876 void
877 finish_for_init_stmt (tree for_stmt)
878 {
879   if (processing_template_decl)
880     FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
881   add_stmt (for_stmt);
882   FOR_BODY (for_stmt) = do_pushlevel (sk_block);
883   begin_cond (&FOR_COND (for_stmt));
884 }
885
886 /* Finish the COND of a for-statement, which may be given by
887    FOR_STMT.  */
888
889 void
890 finish_for_cond (tree cond, tree for_stmt)
891 {
892   finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
893   simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
894 }
895
896 /* Finish the increment-EXPRESSION in a for-statement, which may be
897    given by FOR_STMT.  */
898
899 void
900 finish_for_expr (tree expr, tree for_stmt)
901 {
902   if (!expr)
903     return;
904   /* If EXPR is an overloaded function, issue an error; there is no
905      context available to use to perform overload resolution.  */
906   if (type_unknown_p (expr))
907     {
908       cxx_incomplete_type_error (expr, TREE_TYPE (expr));
909       expr = error_mark_node;
910     }
911   if (!processing_template_decl)
912     {
913       if (warn_sequence_point)
914         verify_sequence_points (expr);
915       expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
916                               tf_warning_or_error);
917     }
918   else if (!type_dependent_expression_p (expr))
919     convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
920                      tf_warning_or_error);
921   expr = maybe_cleanup_point_expr_void (expr);
922   if (check_for_bare_parameter_packs (expr))
923     expr = error_mark_node;
924   FOR_EXPR (for_stmt) = expr;
925 }
926
927 /* Finish the body of a for-statement, which may be given by
928    FOR_STMT.  The increment-EXPR for the loop must be
929    provided.
930    It can also finish RANGE_FOR_STMT. */
931
932 void
933 finish_for_stmt (tree for_stmt)
934 {
935   if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
936     RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
937   else
938     FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
939
940   /* Pop the scope for the body of the loop.  */
941   if (flag_new_for_scope > 0)
942     {
943       tree scope = TREE_CHAIN (for_stmt);
944       TREE_CHAIN (for_stmt) = NULL;
945       add_stmt (do_poplevel (scope));
946     }
947
948   finish_stmt ();
949 }
950
951 /* Begin a range-for-statement.  Returns a new RANGE_FOR_STMT.
952    SCOPE and INIT should be the return of begin_for_scope,
953    or both NULL_TREE  .
954    To finish it call finish_for_stmt(). */
955
956 tree
957 begin_range_for_stmt (tree scope, tree init)
958 {
959   tree r;
960
961   r = build_stmt (input_location, RANGE_FOR_STMT,
962                   NULL_TREE, NULL_TREE, NULL_TREE);
963
964   if (scope == NULL_TREE)
965     {
966       gcc_assert (!init || !(flag_new_for_scope > 0));
967       if (!init)
968         scope = begin_for_scope (&init);
969     }
970
971   /* RANGE_FOR_STMTs do not use nor save the init tree, so we
972      pop it now.  */
973   if (init)
974     pop_stmt_list (init);
975   TREE_CHAIN (r) = scope;
976
977   return r;
978 }
979
980 /* Finish the head of a range-based for statement, which may
981    be given by RANGE_FOR_STMT. DECL must be the declaration
982    and EXPR must be the loop expression. */
983
984 void
985 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
986 {
987   RANGE_FOR_DECL (range_for_stmt) = decl;
988   RANGE_FOR_EXPR (range_for_stmt) = expr;
989   add_stmt (range_for_stmt);
990   RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
991 }
992
993 /* Finish a break-statement.  */
994
995 tree
996 finish_break_stmt (void)
997 {
998   return add_stmt (build_stmt (input_location, BREAK_STMT));
999 }
1000
1001 /* Finish a continue-statement.  */
1002
1003 tree
1004 finish_continue_stmt (void)
1005 {
1006   return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1007 }
1008
1009 /* Begin a switch-statement.  Returns a new SWITCH_STMT if
1010    appropriate.  */
1011
1012 tree
1013 begin_switch_stmt (void)
1014 {
1015   tree r, scope;
1016
1017   r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
1018
1019   scope = do_pushlevel (sk_block);
1020   TREE_CHAIN (r) = scope;
1021   begin_cond (&SWITCH_STMT_COND (r));
1022
1023   return r;
1024 }
1025
1026 /* Finish the cond of a switch-statement.  */
1027
1028 void
1029 finish_switch_cond (tree cond, tree switch_stmt)
1030 {
1031   tree orig_type = NULL;
1032   if (!processing_template_decl)
1033     {
1034       /* Convert the condition to an integer or enumeration type.  */
1035       cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1036       if (cond == NULL_TREE)
1037         {
1038           error ("switch quantity not an integer");
1039           cond = error_mark_node;
1040         }
1041       orig_type = TREE_TYPE (cond);
1042       if (cond != error_mark_node)
1043         {
1044           /* [stmt.switch]
1045
1046              Integral promotions are performed.  */
1047           cond = perform_integral_promotions (cond);
1048           cond = maybe_cleanup_point_expr (cond);
1049         }
1050     }
1051   if (check_for_bare_parameter_packs (cond))
1052     cond = error_mark_node;
1053   else if (!processing_template_decl && warn_sequence_point)
1054     verify_sequence_points (cond);
1055
1056   finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1057   SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1058   add_stmt (switch_stmt);
1059   push_switch (switch_stmt);
1060   SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1061 }
1062
1063 /* Finish the body of a switch-statement, which may be given by
1064    SWITCH_STMT.  The COND to switch on is indicated.  */
1065
1066 void
1067 finish_switch_stmt (tree switch_stmt)
1068 {
1069   tree scope;
1070
1071   SWITCH_STMT_BODY (switch_stmt) =
1072     pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1073   pop_switch ();
1074   finish_stmt ();
1075
1076   scope = TREE_CHAIN (switch_stmt);
1077   TREE_CHAIN (switch_stmt) = NULL;
1078   add_stmt (do_poplevel (scope));
1079 }
1080
1081 /* Begin a try-block.  Returns a newly-created TRY_BLOCK if
1082    appropriate.  */
1083
1084 tree
1085 begin_try_block (void)
1086 {
1087   tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1088   add_stmt (r);
1089   TRY_STMTS (r) = push_stmt_list ();
1090   return r;
1091 }
1092
1093 /* Likewise, for a function-try-block.  The block returned in
1094    *COMPOUND_STMT is an artificial outer scope, containing the
1095    function-try-block.  */
1096
1097 tree
1098 begin_function_try_block (tree *compound_stmt)
1099 {
1100   tree r;
1101   /* This outer scope does not exist in the C++ standard, but we need
1102      a place to put __FUNCTION__ and similar variables.  */
1103   *compound_stmt = begin_compound_stmt (0);
1104   r = begin_try_block ();
1105   FN_TRY_BLOCK_P (r) = 1;
1106   return r;
1107 }
1108
1109 /* Finish a try-block, which may be given by TRY_BLOCK.  */
1110
1111 void
1112 finish_try_block (tree try_block)
1113 {
1114   TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1115   TRY_HANDLERS (try_block) = push_stmt_list ();
1116 }
1117
1118 /* Finish the body of a cleanup try-block, which may be given by
1119    TRY_BLOCK.  */
1120
1121 void
1122 finish_cleanup_try_block (tree try_block)
1123 {
1124   TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1125 }
1126
1127 /* Finish an implicitly generated try-block, with a cleanup is given
1128    by CLEANUP.  */
1129
1130 void
1131 finish_cleanup (tree cleanup, tree try_block)
1132 {
1133   TRY_HANDLERS (try_block) = cleanup;
1134   CLEANUP_P (try_block) = 1;
1135 }
1136
1137 /* Likewise, for a function-try-block.  */
1138
1139 void
1140 finish_function_try_block (tree try_block)
1141 {
1142   finish_try_block (try_block);
1143   /* FIXME : something queer about CTOR_INITIALIZER somehow following
1144      the try block, but moving it inside.  */
1145   in_function_try_handler = 1;
1146 }
1147
1148 /* Finish a handler-sequence for a try-block, which may be given by
1149    TRY_BLOCK.  */
1150
1151 void
1152 finish_handler_sequence (tree try_block)
1153 {
1154   TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1155   check_handlers (TRY_HANDLERS (try_block));
1156 }
1157
1158 /* Finish the handler-seq for a function-try-block, given by
1159    TRY_BLOCK.  COMPOUND_STMT is the outer block created by
1160    begin_function_try_block.  */
1161
1162 void
1163 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1164 {
1165   in_function_try_handler = 0;
1166   finish_handler_sequence (try_block);
1167   finish_compound_stmt (compound_stmt);
1168 }
1169
1170 /* Begin a handler.  Returns a HANDLER if appropriate.  */
1171
1172 tree
1173 begin_handler (void)
1174 {
1175   tree r;
1176
1177   r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1178   add_stmt (r);
1179
1180   /* Create a binding level for the eh_info and the exception object
1181      cleanup.  */
1182   HANDLER_BODY (r) = do_pushlevel (sk_catch);
1183
1184   return r;
1185 }
1186
1187 /* Finish the handler-parameters for a handler, which may be given by
1188    HANDLER.  DECL is the declaration for the catch parameter, or NULL
1189    if this is a `catch (...)' clause.  */
1190
1191 void
1192 finish_handler_parms (tree decl, tree handler)
1193 {
1194   tree type = NULL_TREE;
1195   if (processing_template_decl)
1196     {
1197       if (decl)
1198         {
1199           decl = pushdecl (decl);
1200           decl = push_template_decl (decl);
1201           HANDLER_PARMS (handler) = decl;
1202           type = TREE_TYPE (decl);
1203         }
1204     }
1205   else
1206     type = expand_start_catch_block (decl);
1207   HANDLER_TYPE (handler) = type;
1208   if (!processing_template_decl && type)
1209     mark_used (eh_type_info (type));
1210 }
1211
1212 /* Finish a handler, which may be given by HANDLER.  The BLOCKs are
1213    the return value from the matching call to finish_handler_parms.  */
1214
1215 void
1216 finish_handler (tree handler)
1217 {
1218   if (!processing_template_decl)
1219     expand_end_catch_block ();
1220   HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1221 }
1222
1223 /* Begin a compound statement.  FLAGS contains some bits that control the
1224    behavior and context.  If BCS_NO_SCOPE is set, the compound statement
1225    does not define a scope.  If BCS_FN_BODY is set, this is the outermost
1226    block of a function.  If BCS_TRY_BLOCK is set, this is the block
1227    created on behalf of a TRY statement.  Returns a token to be passed to
1228    finish_compound_stmt.  */
1229
1230 tree
1231 begin_compound_stmt (unsigned int flags)
1232 {
1233   tree r;
1234
1235   if (flags & BCS_NO_SCOPE)
1236     {
1237       r = push_stmt_list ();
1238       STATEMENT_LIST_NO_SCOPE (r) = 1;
1239
1240       /* Normally, we try hard to keep the BLOCK for a statement-expression.
1241          But, if it's a statement-expression with a scopeless block, there's
1242          nothing to keep, and we don't want to accidentally keep a block
1243          *inside* the scopeless block.  */
1244       keep_next_level (false);
1245     }
1246   else
1247     r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1248
1249   /* When processing a template, we need to remember where the braces were,
1250      so that we can set up identical scopes when instantiating the template
1251      later.  BIND_EXPR is a handy candidate for this.
1252      Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1253      result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1254      processing templates.  */
1255   if (processing_template_decl)
1256     {
1257       r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1258       BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1259       BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1260       TREE_SIDE_EFFECTS (r) = 1;
1261     }
1262
1263   return r;
1264 }
1265
1266 /* Finish a compound-statement, which is given by STMT.  */
1267
1268 void
1269 finish_compound_stmt (tree stmt)
1270 {
1271   if (TREE_CODE (stmt) == BIND_EXPR)
1272     {
1273       tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1274       /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1275          discard the BIND_EXPR so it can be merged with the containing
1276          STATEMENT_LIST.  */
1277       if (TREE_CODE (body) == STATEMENT_LIST
1278           && STATEMENT_LIST_HEAD (body) == NULL
1279           && !BIND_EXPR_BODY_BLOCK (stmt)
1280           && !BIND_EXPR_TRY_BLOCK (stmt))
1281         stmt = body;
1282       else
1283         BIND_EXPR_BODY (stmt) = body;
1284     }
1285   else if (STATEMENT_LIST_NO_SCOPE (stmt))
1286     stmt = pop_stmt_list (stmt);
1287   else
1288     {
1289       /* Destroy any ObjC "super" receivers that may have been
1290          created.  */
1291       objc_clear_super_receiver ();
1292
1293       stmt = do_poplevel (stmt);
1294     }
1295
1296   /* ??? See c_end_compound_stmt wrt statement expressions.  */
1297   add_stmt (stmt);
1298   finish_stmt ();
1299 }
1300
1301 /* Finish an asm-statement, whose components are a STRING, some
1302    OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1303    LABELS.  Also note whether the asm-statement should be
1304    considered volatile.  */
1305
1306 tree
1307 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1308                  tree input_operands, tree clobbers, tree labels)
1309 {
1310   tree r;
1311   tree t;
1312   int ninputs = list_length (input_operands);
1313   int noutputs = list_length (output_operands);
1314
1315   if (!processing_template_decl)
1316     {
1317       const char *constraint;
1318       const char **oconstraints;
1319       bool allows_mem, allows_reg, is_inout;
1320       tree operand;
1321       int i;
1322
1323       oconstraints = XALLOCAVEC (const char *, noutputs);
1324
1325       string = resolve_asm_operand_names (string, output_operands,
1326                                           input_operands, labels);
1327
1328       for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1329         {
1330           operand = TREE_VALUE (t);
1331
1332           /* ??? Really, this should not be here.  Users should be using a
1333              proper lvalue, dammit.  But there's a long history of using
1334              casts in the output operands.  In cases like longlong.h, this
1335              becomes a primitive form of typechecking -- if the cast can be
1336              removed, then the output operand had a type of the proper width;
1337              otherwise we'll get an error.  Gross, but ...  */
1338           STRIP_NOPS (operand);
1339
1340           operand = mark_lvalue_use (operand);
1341
1342           if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1343             operand = error_mark_node;
1344
1345           if (operand != error_mark_node
1346               && (TREE_READONLY (operand)
1347                   || CP_TYPE_CONST_P (TREE_TYPE (operand))
1348                   /* Functions are not modifiable, even though they are
1349                      lvalues.  */
1350                   || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1351                   || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1352                   /* If it's an aggregate and any field is const, then it is
1353                      effectively const.  */
1354                   || (CLASS_TYPE_P (TREE_TYPE (operand))
1355                       && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1356             cxx_readonly_error (operand, lv_asm);
1357
1358           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1359           oconstraints[i] = constraint;
1360
1361           if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1362                                        &allows_mem, &allows_reg, &is_inout))
1363             {
1364               /* If the operand is going to end up in memory,
1365                  mark it addressable.  */
1366               if (!allows_reg && !cxx_mark_addressable (operand))
1367                 operand = error_mark_node;
1368             }
1369           else
1370             operand = error_mark_node;
1371
1372           TREE_VALUE (t) = operand;
1373         }
1374
1375       for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1376         {
1377           constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1378           operand = decay_conversion (TREE_VALUE (t));
1379
1380           /* If the type of the operand hasn't been determined (e.g.,
1381              because it involves an overloaded function), then issue
1382              an error message.  There's no context available to
1383              resolve the overloading.  */
1384           if (TREE_TYPE (operand) == unknown_type_node)
1385             {
1386               error ("type of asm operand %qE could not be determined",
1387                      TREE_VALUE (t));
1388               operand = error_mark_node;
1389             }
1390
1391           if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1392                                       oconstraints, &allows_mem, &allows_reg))
1393             {
1394               /* If the operand is going to end up in memory,
1395                  mark it addressable.  */
1396               if (!allows_reg && allows_mem)
1397                 {
1398                   /* Strip the nops as we allow this case.  FIXME, this really
1399                      should be rejected or made deprecated.  */
1400                   STRIP_NOPS (operand);
1401                   if (!cxx_mark_addressable (operand))
1402                     operand = error_mark_node;
1403                 }
1404             }
1405           else
1406             operand = error_mark_node;
1407
1408           TREE_VALUE (t) = operand;
1409         }
1410     }
1411
1412   r = build_stmt (input_location, ASM_EXPR, string,
1413                   output_operands, input_operands,
1414                   clobbers, labels);
1415   ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1416   r = maybe_cleanup_point_expr_void (r);
1417   return add_stmt (r);
1418 }
1419
1420 /* Finish a label with the indicated NAME.  Returns the new label.  */
1421
1422 tree
1423 finish_label_stmt (tree name)
1424 {
1425   tree decl = define_label (input_location, name);
1426
1427   if (decl == error_mark_node)
1428     return error_mark_node;
1429
1430   add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1431
1432   return decl;
1433 }
1434
1435 /* Finish a series of declarations for local labels.  G++ allows users
1436    to declare "local" labels, i.e., labels with scope.  This extension
1437    is useful when writing code involving statement-expressions.  */
1438
1439 void
1440 finish_label_decl (tree name)
1441 {
1442   if (!at_function_scope_p ())
1443     {
1444       error ("__label__ declarations are only allowed in function scopes");
1445       return;
1446     }
1447
1448   add_decl_expr (declare_local_label (name));
1449 }
1450
1451 /* When DECL goes out of scope, make sure that CLEANUP is executed.  */
1452
1453 void
1454 finish_decl_cleanup (tree decl, tree cleanup)
1455 {
1456   push_cleanup (decl, cleanup, false);
1457 }
1458
1459 /* If the current scope exits with an exception, run CLEANUP.  */
1460
1461 void
1462 finish_eh_cleanup (tree cleanup)
1463 {
1464   push_cleanup (NULL, cleanup, true);
1465 }
1466
1467 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1468    order they were written by the user.  Each node is as for
1469    emit_mem_initializers.  */
1470
1471 void
1472 finish_mem_initializers (tree mem_inits)
1473 {
1474   /* Reorder the MEM_INITS so that they are in the order they appeared
1475      in the source program.  */
1476   mem_inits = nreverse (mem_inits);
1477
1478   if (processing_template_decl)
1479     {
1480       tree mem;
1481
1482       for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1483         {
1484           /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1485              check for bare parameter packs in the TREE_VALUE, because
1486              any parameter packs in the TREE_VALUE have already been
1487              bound as part of the TREE_PURPOSE.  See
1488              make_pack_expansion for more information.  */
1489           if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1490               && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1491             TREE_VALUE (mem) = error_mark_node;
1492         }
1493
1494       add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
1495     }
1496   else
1497     emit_mem_initializers (mem_inits);
1498 }
1499
1500 /* Finish a parenthesized expression EXPR.  */
1501
1502 tree
1503 finish_parenthesized_expr (tree expr)
1504 {
1505   if (EXPR_P (expr))
1506     /* This inhibits warnings in c_common_truthvalue_conversion.  */
1507     TREE_NO_WARNING (expr) = 1;
1508
1509   if (TREE_CODE (expr) == OFFSET_REF)
1510     /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1511        enclosed in parentheses.  */
1512     PTRMEM_OK_P (expr) = 0;
1513
1514   if (TREE_CODE (expr) == STRING_CST)
1515     PAREN_STRING_LITERAL_P (expr) = 1;
1516
1517   return expr;
1518 }
1519
1520 /* Finish a reference to a non-static data member (DECL) that is not
1521    preceded by `.' or `->'.  */
1522
1523 tree
1524 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1525 {
1526   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1527
1528   if (!object)
1529     {
1530       tree scope = qualifying_scope;
1531       if (scope == NULL_TREE)
1532         scope = context_for_name_lookup (decl);
1533       object = maybe_dummy_object (scope, NULL);
1534     }
1535
1536   if (object == error_mark_node)
1537     return error_mark_node;
1538
1539   /* DR 613: Can use non-static data members without an associated
1540      object in sizeof/decltype/alignof.  */
1541   if (is_dummy_object (object) && cp_unevaluated_operand == 0
1542       && (!processing_template_decl || !current_class_ref))
1543     {
1544       if (current_function_decl
1545           && DECL_STATIC_FUNCTION_P (current_function_decl))
1546         error ("invalid use of member %q+D in static member function", decl);
1547       else
1548         error ("invalid use of non-static data member %q+D", decl);
1549       error ("from this location");
1550
1551       return error_mark_node;
1552     }
1553
1554   if (current_class_ptr)
1555     TREE_USED (current_class_ptr) = 1;
1556   if (processing_template_decl && !qualifying_scope)
1557     {
1558       tree type = TREE_TYPE (decl);
1559
1560       if (TREE_CODE (type) == REFERENCE_TYPE)
1561         type = TREE_TYPE (type);
1562       else
1563         {
1564           /* Set the cv qualifiers.  */
1565           int quals = (current_class_ref
1566                        ? cp_type_quals (TREE_TYPE (current_class_ref))
1567                        : TYPE_UNQUALIFIED);
1568
1569           if (DECL_MUTABLE_P (decl))
1570             quals &= ~TYPE_QUAL_CONST;
1571
1572           quals |= cp_type_quals (TREE_TYPE (decl));
1573           type = cp_build_qualified_type (type, quals);
1574         }
1575
1576       return build_min (COMPONENT_REF, type, object, decl, NULL_TREE);
1577     }
1578   /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1579      QUALIFYING_SCOPE is also non-null.  Wrap this in a SCOPE_REF
1580      for now.  */
1581   else if (processing_template_decl)
1582     return build_qualified_name (TREE_TYPE (decl),
1583                                  qualifying_scope,
1584                                  DECL_NAME (decl),
1585                                  /*template_p=*/false);
1586   else
1587     {
1588       tree access_type = TREE_TYPE (object);
1589
1590       perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1591                                      decl);
1592
1593       /* If the data member was named `C::M', convert `*this' to `C'
1594          first.  */
1595       if (qualifying_scope)
1596         {
1597           tree binfo = NULL_TREE;
1598           object = build_scoped_ref (object, qualifying_scope,
1599                                      &binfo);
1600         }
1601
1602       return build_class_member_access_expr (object, decl,
1603                                              /*access_path=*/NULL_TREE,
1604                                              /*preserve_reference=*/false,
1605                                              tf_warning_or_error);
1606     }
1607 }
1608
1609 /* If we are currently parsing a template and we encountered a typedef
1610    TYPEDEF_DECL that is being accessed though CONTEXT, this function
1611    adds the typedef to a list tied to the current template.
1612    At tempate instantiatin time, that list is walked and access check
1613    performed for each typedef.
1614    LOCATION is the location of the usage point of TYPEDEF_DECL.  */
1615
1616 void
1617 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1618                                                   tree context,
1619                                                   location_t location)
1620 {
1621     tree template_info = NULL;
1622     tree cs = current_scope ();
1623
1624     if (!is_typedef_decl (typedef_decl)
1625         || !context
1626         || !CLASS_TYPE_P (context)
1627         || !cs)
1628       return;
1629
1630     if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1631       template_info = get_template_info (cs);
1632
1633     if (template_info
1634         && TI_TEMPLATE (template_info)
1635         && !currently_open_class (context))
1636       append_type_to_template_for_access_check (cs, typedef_decl,
1637                                                 context, location);
1638 }
1639
1640 /* DECL was the declaration to which a qualified-id resolved.  Issue
1641    an error message if it is not accessible.  If OBJECT_TYPE is
1642    non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1643    type of `*x', or `x', respectively.  If the DECL was named as
1644    `A::B' then NESTED_NAME_SPECIFIER is `A'.  */
1645
1646 void
1647 check_accessibility_of_qualified_id (tree decl,
1648                                      tree object_type,
1649                                      tree nested_name_specifier)
1650 {
1651   tree scope;
1652   tree qualifying_type = NULL_TREE;
1653
1654   /* If we are parsing a template declaration and if decl is a typedef,
1655      add it to a list tied to the template.
1656      At template instantiation time, that list will be walked and
1657      access check performed.  */
1658   add_typedef_to_current_template_for_access_check (decl,
1659                                                     nested_name_specifier
1660                                                     ? nested_name_specifier
1661                                                     : DECL_CONTEXT (decl),
1662                                                     input_location);
1663
1664   /* If we're not checking, return immediately.  */
1665   if (deferred_access_no_check)
1666     return;
1667
1668   /* Determine the SCOPE of DECL.  */
1669   scope = context_for_name_lookup (decl);
1670   /* If the SCOPE is not a type, then DECL is not a member.  */
1671   if (!TYPE_P (scope))
1672     return;
1673   /* Compute the scope through which DECL is being accessed.  */
1674   if (object_type
1675       /* OBJECT_TYPE might not be a class type; consider:
1676
1677            class A { typedef int I; };
1678            I *p;
1679            p->A::I::~I();
1680
1681          In this case, we will have "A::I" as the DECL, but "I" as the
1682          OBJECT_TYPE.  */
1683       && CLASS_TYPE_P (object_type)
1684       && DERIVED_FROM_P (scope, object_type))
1685     /* If we are processing a `->' or `.' expression, use the type of the
1686        left-hand side.  */
1687     qualifying_type = object_type;
1688   else if (nested_name_specifier)
1689     {
1690       /* If the reference is to a non-static member of the
1691          current class, treat it as if it were referenced through
1692          `this'.  */
1693       if (DECL_NONSTATIC_MEMBER_P (decl)
1694           && current_class_ptr
1695           && DERIVED_FROM_P (scope, current_class_type))
1696         qualifying_type = current_class_type;
1697       /* Otherwise, use the type indicated by the
1698          nested-name-specifier.  */
1699       else
1700         qualifying_type = nested_name_specifier;
1701     }
1702   else
1703     /* Otherwise, the name must be from the current class or one of
1704        its bases.  */
1705     qualifying_type = currently_open_derived_class (scope);
1706
1707   if (qualifying_type 
1708       /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1709          or similar in a default argument value.  */
1710       && CLASS_TYPE_P (qualifying_type)
1711       && !dependent_type_p (qualifying_type))
1712     perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1713                                    decl);
1714 }
1715
1716 /* EXPR is the result of a qualified-id.  The QUALIFYING_CLASS was the
1717    class named to the left of the "::" operator.  DONE is true if this
1718    expression is a complete postfix-expression; it is false if this
1719    expression is followed by '->', '[', '(', etc.  ADDRESS_P is true
1720    iff this expression is the operand of '&'.  TEMPLATE_P is true iff
1721    the qualified-id was of the form "A::template B".  TEMPLATE_ARG_P
1722    is true iff this qualified name appears as a template argument.  */
1723
1724 tree
1725 finish_qualified_id_expr (tree qualifying_class,
1726                           tree expr,
1727                           bool done,
1728                           bool address_p,
1729                           bool template_p,
1730                           bool template_arg_p)
1731 {
1732   gcc_assert (TYPE_P (qualifying_class));
1733
1734   if (error_operand_p (expr))
1735     return error_mark_node;
1736
1737   if (DECL_P (expr) || BASELINK_P (expr))
1738     mark_used (expr);
1739
1740   if (template_p)
1741     check_template_keyword (expr);
1742
1743   /* If EXPR occurs as the operand of '&', use special handling that
1744      permits a pointer-to-member.  */
1745   if (address_p && done)
1746     {
1747       if (TREE_CODE (expr) == SCOPE_REF)
1748         expr = TREE_OPERAND (expr, 1);
1749       expr = build_offset_ref (qualifying_class, expr,
1750                                /*address_p=*/true);
1751       return expr;
1752     }
1753
1754   /* Within the scope of a class, turn references to non-static
1755      members into expression of the form "this->...".  */
1756   if (template_arg_p)
1757     /* But, within a template argument, we do not want make the
1758        transformation, as there is no "this" pointer.  */
1759     ;
1760   else if (TREE_CODE (expr) == FIELD_DECL)
1761     {
1762       push_deferring_access_checks (dk_no_check);
1763       expr = finish_non_static_data_member (expr, NULL_TREE,
1764                                             qualifying_class);
1765       pop_deferring_access_checks ();
1766     }
1767   else if (BASELINK_P (expr) && !processing_template_decl)
1768     {
1769       tree ob;
1770
1771       /* See if any of the functions are non-static members.  */
1772       /* If so, the expression may be relative to 'this'.  */
1773       if (!shared_member_p (expr)
1774           && (ob = maybe_dummy_object (qualifying_class, NULL),
1775               !is_dummy_object (ob)))
1776         expr = (build_class_member_access_expr
1777                 (ob,
1778                  expr,
1779                  BASELINK_ACCESS_BINFO (expr),
1780                  /*preserve_reference=*/false,
1781                  tf_warning_or_error));
1782       else if (done)
1783         /* The expression is a qualified name whose address is not
1784            being taken.  */
1785         expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1786     }
1787
1788   return expr;
1789 }
1790
1791 /* Begin a statement-expression.  The value returned must be passed to
1792    finish_stmt_expr.  */
1793
1794 tree
1795 begin_stmt_expr (void)
1796 {
1797   return push_stmt_list ();
1798 }
1799
1800 /* Process the final expression of a statement expression. EXPR can be
1801    NULL, if the final expression is empty.  Return a STATEMENT_LIST
1802    containing all the statements in the statement-expression, or
1803    ERROR_MARK_NODE if there was an error.  */
1804
1805 tree
1806 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1807 {
1808   if (error_operand_p (expr))
1809     {
1810       /* The type of the statement-expression is the type of the last
1811          expression.  */
1812       TREE_TYPE (stmt_expr) = error_mark_node;
1813       return error_mark_node;
1814     }
1815
1816   /* If the last statement does not have "void" type, then the value
1817      of the last statement is the value of the entire expression.  */
1818   if (expr)
1819     {
1820       tree type = TREE_TYPE (expr);
1821
1822       if (processing_template_decl)
1823         {
1824           expr = build_stmt (input_location, EXPR_STMT, expr);
1825           expr = add_stmt (expr);
1826           /* Mark the last statement so that we can recognize it as such at
1827              template-instantiation time.  */
1828           EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1829         }
1830       else if (VOID_TYPE_P (type))
1831         {
1832           /* Just treat this like an ordinary statement.  */
1833           expr = finish_expr_stmt (expr);
1834         }
1835       else
1836         {
1837           /* It actually has a value we need to deal with.  First, force it
1838              to be an rvalue so that we won't need to build up a copy
1839              constructor call later when we try to assign it to something.  */
1840           expr = force_rvalue (expr);
1841           if (error_operand_p (expr))
1842             return error_mark_node;
1843
1844           /* Update for array-to-pointer decay.  */
1845           type = TREE_TYPE (expr);
1846
1847           /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1848              normal statement, but don't convert to void or actually add
1849              the EXPR_STMT.  */
1850           if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1851             expr = maybe_cleanup_point_expr (expr);
1852           add_stmt (expr);
1853         }
1854
1855       /* The type of the statement-expression is the type of the last
1856          expression.  */
1857       TREE_TYPE (stmt_expr) = type;
1858     }
1859
1860   return stmt_expr;
1861 }
1862
1863 /* Finish a statement-expression.  EXPR should be the value returned
1864    by the previous begin_stmt_expr.  Returns an expression
1865    representing the statement-expression.  */
1866
1867 tree
1868 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1869 {
1870   tree type;
1871   tree result;
1872
1873   if (error_operand_p (stmt_expr))
1874     {
1875       pop_stmt_list (stmt_expr);
1876       return error_mark_node;
1877     }
1878
1879   gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
1880
1881   type = TREE_TYPE (stmt_expr);
1882   result = pop_stmt_list (stmt_expr);
1883   TREE_TYPE (result) = type;
1884
1885   if (processing_template_decl)
1886     {
1887       result = build_min (STMT_EXPR, type, result);
1888       TREE_SIDE_EFFECTS (result) = 1;
1889       STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1890     }
1891   else if (CLASS_TYPE_P (type))
1892     {
1893       /* Wrap the statement-expression in a TARGET_EXPR so that the
1894          temporary object created by the final expression is destroyed at
1895          the end of the full-expression containing the
1896          statement-expression.  */
1897       result = force_target_expr (type, result);
1898     }
1899
1900   return result;
1901 }
1902
1903 /* Returns the expression which provides the value of STMT_EXPR.  */
1904
1905 tree
1906 stmt_expr_value_expr (tree stmt_expr)
1907 {
1908   tree t = STMT_EXPR_STMT (stmt_expr);
1909
1910   if (TREE_CODE (t) == BIND_EXPR)
1911     t = BIND_EXPR_BODY (t);
1912
1913   if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
1914     t = STATEMENT_LIST_TAIL (t)->stmt;
1915
1916   if (TREE_CODE (t) == EXPR_STMT)
1917     t = EXPR_STMT_EXPR (t);
1918
1919   return t;
1920 }
1921
1922 /* Return TRUE iff EXPR_STMT is an empty list of
1923    expression statements.  */
1924
1925 bool
1926 empty_expr_stmt_p (tree expr_stmt)
1927 {
1928   tree body = NULL_TREE;
1929
1930   if (expr_stmt == void_zero_node)
1931     return true;
1932
1933   if (expr_stmt)
1934     {
1935       if (TREE_CODE (expr_stmt) == EXPR_STMT)
1936         body = EXPR_STMT_EXPR (expr_stmt);
1937       else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
1938         body = expr_stmt;
1939     }
1940
1941   if (body)
1942     {
1943       if (TREE_CODE (body) == STATEMENT_LIST)
1944         return tsi_end_p (tsi_start (body));
1945       else
1946         return empty_expr_stmt_p (body);
1947     }
1948   return false;
1949 }
1950
1951 /* Perform Koenig lookup.  FN is the postfix-expression representing
1952    the function (or functions) to call; ARGS are the arguments to the
1953    call; if INCLUDE_STD then the `std' namespace is automatically
1954    considered an associated namespace (used in range-based for loops).
1955    Returns the functions to be considered by overload resolution.  */
1956
1957 tree
1958 perform_koenig_lookup (tree fn, VEC(tree,gc) *args, bool include_std)
1959 {
1960   tree identifier = NULL_TREE;
1961   tree functions = NULL_TREE;
1962   tree tmpl_args = NULL_TREE;
1963   bool template_id = false;
1964
1965   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1966     {
1967       /* Use a separate flag to handle null args.  */
1968       template_id = true;
1969       tmpl_args = TREE_OPERAND (fn, 1);
1970       fn = TREE_OPERAND (fn, 0);
1971     }
1972
1973   /* Find the name of the overloaded function.  */
1974   if (TREE_CODE (fn) == IDENTIFIER_NODE)
1975     identifier = fn;
1976   else if (is_overloaded_fn (fn))
1977     {
1978       functions = fn;
1979       identifier = DECL_NAME (get_first_fn (functions));
1980     }
1981   else if (DECL_P (fn))
1982     {
1983       functions = fn;
1984       identifier = DECL_NAME (fn);
1985     }
1986
1987   /* A call to a namespace-scope function using an unqualified name.
1988
1989      Do Koenig lookup -- unless any of the arguments are
1990      type-dependent.  */
1991   if (!any_type_dependent_arguments_p (args)
1992       && !any_dependent_template_arguments_p (tmpl_args))
1993     {
1994       fn = lookup_arg_dependent (identifier, functions, args, include_std);
1995       if (!fn)
1996         /* The unqualified name could not be resolved.  */
1997         fn = unqualified_fn_lookup_error (identifier);
1998     }
1999
2000   if (fn && template_id)
2001     fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2002   
2003   return fn;
2004 }
2005
2006 /* Generate an expression for `FN (ARGS)'.  This may change the
2007    contents of ARGS.
2008
2009    If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2010    as a virtual call, even if FN is virtual.  (This flag is set when
2011    encountering an expression where the function name is explicitly
2012    qualified.  For example a call to `X::f' never generates a virtual
2013    call.)
2014
2015    Returns code for the call.  */
2016
2017 tree
2018 finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
2019                   bool koenig_p, tsubst_flags_t complain)
2020 {
2021   tree result;
2022   tree orig_fn;
2023   VEC(tree,gc) *orig_args = NULL;
2024
2025   if (fn == error_mark_node)
2026     return error_mark_node;
2027
2028   gcc_assert (!TYPE_P (fn));
2029
2030   orig_fn = fn;
2031
2032   if (processing_template_decl)
2033     {
2034       /* If the call expression is dependent, build a CALL_EXPR node
2035          with no type; type_dependent_expression_p recognizes
2036          expressions with no type as being dependent.  */
2037       if (type_dependent_expression_p (fn)
2038           || any_type_dependent_arguments_p (*args)
2039           /* For a non-static member function, we need to specifically
2040              test the type dependency of the "this" pointer because it
2041              is not included in *ARGS even though it is considered to
2042              be part of the list of arguments.  Note that this is
2043              related to CWG issues 515 and 1005.  */
2044           || ((TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE)
2045               && current_class_ref
2046               && type_dependent_expression_p (current_class_ref)))
2047         {
2048           result = build_nt_call_vec (fn, *args);
2049           KOENIG_LOOKUP_P (result) = koenig_p;
2050           if (cfun)
2051             {
2052               do
2053                 {
2054                   tree fndecl = OVL_CURRENT (fn);
2055                   if (TREE_CODE (fndecl) != FUNCTION_DECL
2056                       || !TREE_THIS_VOLATILE (fndecl))
2057                     break;
2058                   fn = OVL_NEXT (fn);
2059                 }
2060               while (fn);
2061               if (!fn)
2062                 current_function_returns_abnormally = 1;
2063             }
2064           return result;
2065         }
2066       orig_args = make_tree_vector_copy (*args);
2067       if (!BASELINK_P (fn)
2068           && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2069           && TREE_TYPE (fn) != unknown_type_node)
2070         fn = build_non_dependent_expr (fn);
2071       make_args_non_dependent (*args);
2072     }
2073
2074   if (is_overloaded_fn (fn))
2075     fn = baselink_for_fns (fn);
2076
2077   result = NULL_TREE;
2078   if (BASELINK_P (fn))
2079     {
2080       tree object;
2081
2082       /* A call to a member function.  From [over.call.func]:
2083
2084            If the keyword this is in scope and refers to the class of
2085            that member function, or a derived class thereof, then the
2086            function call is transformed into a qualified function call
2087            using (*this) as the postfix-expression to the left of the
2088            . operator.... [Otherwise] a contrived object of type T
2089            becomes the implied object argument.
2090
2091         In this situation:
2092
2093           struct A { void f(); };
2094           struct B : public A {};
2095           struct C : public A { void g() { B::f(); }};
2096
2097         "the class of that member function" refers to `A'.  But 11.2
2098         [class.access.base] says that we need to convert 'this' to B* as
2099         part of the access, so we pass 'B' to maybe_dummy_object.  */
2100
2101       object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2102                                    NULL);
2103
2104       if (processing_template_decl)
2105         {
2106           if (type_dependent_expression_p (object))
2107             {
2108               tree ret = build_nt_call_vec (orig_fn, orig_args);
2109               release_tree_vector (orig_args);
2110               return ret;
2111             }
2112           object = build_non_dependent_expr (object);
2113         }
2114
2115       result = build_new_method_call (object, fn, args, NULL_TREE,
2116                                       (disallow_virtual
2117                                        ? LOOKUP_NONVIRTUAL : 0),
2118                                       /*fn_p=*/NULL,
2119                                       complain);
2120     }
2121   else if (is_overloaded_fn (fn))
2122     {
2123       /* If the function is an overloaded builtin, resolve it.  */
2124       if (TREE_CODE (fn) == FUNCTION_DECL
2125           && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2126               || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2127         result = resolve_overloaded_builtin (input_location, fn, *args);
2128
2129       if (!result)
2130         /* A call to a namespace-scope function.  */
2131         result = build_new_function_call (fn, args, koenig_p, complain);
2132     }
2133   else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2134     {
2135       if (!VEC_empty (tree, *args))
2136         error ("arguments to destructor are not allowed");
2137       /* Mark the pseudo-destructor call as having side-effects so
2138          that we do not issue warnings about its use.  */
2139       result = build1 (NOP_EXPR,
2140                        void_type_node,
2141                        TREE_OPERAND (fn, 0));
2142       TREE_SIDE_EFFECTS (result) = 1;
2143     }
2144   else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2145     /* If the "function" is really an object of class type, it might
2146        have an overloaded `operator ()'.  */
2147     result = build_op_call (fn, args, complain);
2148
2149   if (!result)
2150     /* A call where the function is unknown.  */
2151     result = cp_build_function_call_vec (fn, args, complain);
2152
2153   if (processing_template_decl && result != error_mark_node)
2154     {
2155       if (TREE_CODE (result) == INDIRECT_REF)
2156         result = TREE_OPERAND (result, 0);
2157       gcc_assert (TREE_CODE (result) == CALL_EXPR
2158                   /* FIXME cp_build_function_call_vec should avoid argument
2159                      and return transformations like build_over_call does.  */
2160                   || TREE_CODE (result) == TARGET_EXPR
2161                   || TREE_CODE (fn) == PSEUDO_DTOR_EXPR
2162                   || errorcount);
2163       result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2164       KOENIG_LOOKUP_P (result) = koenig_p;
2165       release_tree_vector (orig_args);
2166       result = convert_from_reference (result);
2167     }
2168
2169   return result;
2170 }
2171
2172 /* Finish a call to a postfix increment or decrement or EXPR.  (Which
2173    is indicated by CODE, which should be POSTINCREMENT_EXPR or
2174    POSTDECREMENT_EXPR.)  */
2175
2176 tree
2177 finish_increment_expr (tree expr, enum tree_code code)
2178 {
2179   return build_x_unary_op (code, expr, tf_warning_or_error);
2180 }
2181
2182 /* Finish a use of `this'.  Returns an expression for `this'.  */
2183
2184 tree
2185 finish_this_expr (void)
2186 {
2187   tree result;
2188
2189   if (current_class_ptr)
2190     {
2191       tree type = TREE_TYPE (current_class_ref);
2192
2193       /* In a lambda expression, 'this' refers to the captured 'this'.  */
2194       if (LAMBDA_TYPE_P (type))
2195         result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type));
2196       else
2197         result = current_class_ptr;
2198
2199     }
2200   else if (current_function_decl
2201            && DECL_STATIC_FUNCTION_P (current_function_decl))
2202     {
2203       error ("%<this%> is unavailable for static member functions");
2204       result = error_mark_node;
2205     }
2206   else
2207     {
2208       if (current_function_decl)
2209         error ("invalid use of %<this%> in non-member function");
2210       else
2211         error ("invalid use of %<this%> at top level");
2212       result = error_mark_node;
2213     }
2214
2215   return result;
2216 }
2217
2218 /* Finish a pseudo-destructor expression.  If SCOPE is NULL, the
2219    expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2220    the TYPE for the type given.  If SCOPE is non-NULL, the expression
2221    was of the form `OBJECT.SCOPE::~DESTRUCTOR'.  */
2222
2223 tree
2224 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
2225 {
2226   if (object == error_mark_node || destructor == error_mark_node)
2227     return error_mark_node;
2228
2229   gcc_assert (TYPE_P (destructor));
2230
2231   if (!processing_template_decl)
2232     {
2233       if (scope == error_mark_node)
2234         {
2235           error ("invalid qualifying scope in pseudo-destructor name");
2236           return error_mark_node;
2237         }
2238       if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2239         {
2240           error ("qualified type %qT does not match destructor name ~%qT",
2241                  scope, destructor);
2242           return error_mark_node;
2243         }
2244
2245
2246       /* [expr.pseudo] says both:
2247
2248            The type designated by the pseudo-destructor-name shall be
2249            the same as the object type.
2250
2251          and:
2252
2253            The cv-unqualified versions of the object type and of the
2254            type designated by the pseudo-destructor-name shall be the
2255            same type.
2256
2257          We implement the more generous second sentence, since that is
2258          what most other compilers do.  */
2259       if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2260                                                       destructor))
2261         {
2262           error ("%qE is not of type %qT", object, destructor);
2263           return error_mark_node;
2264         }
2265     }
2266
2267   return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
2268 }
2269
2270 /* Finish an expression of the form CODE EXPR.  */
2271
2272 tree
2273 finish_unary_op_expr (enum tree_code code, tree expr)
2274 {
2275   tree result = build_x_unary_op (code, expr, tf_warning_or_error);
2276   /* Inside a template, build_x_unary_op does not fold the
2277      expression. So check whether the result is folded before
2278      setting TREE_NEGATED_INT.  */
2279   if (code == NEGATE_EXPR && TREE_CODE (expr) == INTEGER_CST
2280       && TREE_CODE (result) == INTEGER_CST
2281       && !TYPE_UNSIGNED (TREE_TYPE (result))
2282       && INT_CST_LT (result, integer_zero_node))
2283     {
2284       /* RESULT may be a cached INTEGER_CST, so we must copy it before
2285          setting TREE_NEGATED_INT.  */
2286       result = copy_node (result);
2287       TREE_NEGATED_INT (result) = 1;
2288     }
2289   if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2290     overflow_warning (input_location, result);
2291
2292   return result;
2293 }
2294
2295 /* Finish a compound-literal expression.  TYPE is the type to which
2296    the CONSTRUCTOR in COMPOUND_LITERAL is being cast.  */
2297
2298 tree
2299 finish_compound_literal (tree type, tree compound_literal)
2300 {
2301   if (type == error_mark_node)
2302     return error_mark_node;
2303
2304   if (!TYPE_OBJ_P (type))
2305     {
2306       error ("compound literal of non-object type %qT", type);
2307       return error_mark_node;
2308     }
2309
2310   if (processing_template_decl)
2311     {
2312       TREE_TYPE (compound_literal) = type;
2313       /* Mark the expression as a compound literal.  */
2314       TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2315       return compound_literal;
2316     }
2317
2318   type = complete_type (type);
2319
2320   if (TYPE_NON_AGGREGATE_CLASS (type))
2321     {
2322       /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2323          everywhere that deals with function arguments would be a pain, so
2324          just wrap it in a TREE_LIST.  The parser set a flag so we know
2325          that it came from T{} rather than T({}).  */
2326       CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2327       compound_literal = build_tree_list (NULL_TREE, compound_literal);
2328       return build_functional_cast (type, compound_literal, tf_error);
2329     }
2330
2331   if (TREE_CODE (type) == ARRAY_TYPE
2332       && check_array_initializer (NULL_TREE, type, compound_literal))
2333     return error_mark_node;
2334   compound_literal = reshape_init (type, compound_literal);
2335   if (TREE_CODE (type) == ARRAY_TYPE)
2336     cp_complete_array_type (&type, compound_literal, false);
2337   compound_literal = digest_init (type, compound_literal);
2338   return get_target_expr (compound_literal);
2339 }
2340
2341 /* Return the declaration for the function-name variable indicated by
2342    ID.  */
2343
2344 tree
2345 finish_fname (tree id)
2346 {
2347   tree decl;
2348
2349   decl = fname_decl (input_location, C_RID_CODE (id), id);
2350   if (processing_template_decl && current_function_decl)
2351     decl = DECL_NAME (decl);
2352   return decl;
2353 }
2354
2355 /* Finish a translation unit.  */
2356
2357 void
2358 finish_translation_unit (void)
2359 {
2360   /* In case there were missing closebraces,
2361      get us back to the global binding level.  */
2362   pop_everything ();
2363   while (current_namespace != global_namespace)
2364     pop_namespace ();
2365
2366   /* Do file scope __FUNCTION__ et al.  */
2367   finish_fname_decls ();
2368 }
2369
2370 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2371    Returns the parameter.  */
2372
2373 tree
2374 finish_template_type_parm (tree aggr, tree identifier)
2375 {
2376   if (aggr != class_type_node)
2377     {
2378       permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2379       aggr = class_type_node;
2380     }
2381
2382   return build_tree_list (aggr, identifier);
2383 }
2384
2385 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2386    Returns the parameter.  */
2387
2388 tree
2389 finish_template_template_parm (tree aggr, tree identifier)
2390 {
2391   tree decl = build_decl (input_location,
2392                           TYPE_DECL, identifier, NULL_TREE);
2393   tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2394   DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2395   DECL_TEMPLATE_RESULT (tmpl) = decl;
2396   DECL_ARTIFICIAL (decl) = 1;
2397   end_template_decl ();
2398
2399   gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2400
2401   check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl), 
2402                            /*is_primary=*/true, /*is_partial=*/false,
2403                            /*is_friend=*/0);
2404
2405   return finish_template_type_parm (aggr, tmpl);
2406 }
2407
2408 /* ARGUMENT is the default-argument value for a template template
2409    parameter.  If ARGUMENT is invalid, issue error messages and return
2410    the ERROR_MARK_NODE.  Otherwise, ARGUMENT itself is returned.  */
2411
2412 tree
2413 check_template_template_default_arg (tree argument)
2414 {
2415   if (TREE_CODE (argument) != TEMPLATE_DECL
2416       && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2417       && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2418     {
2419       if (TREE_CODE (argument) == TYPE_DECL)
2420         error ("invalid use of type %qT as a default value for a template "
2421                "template-parameter", TREE_TYPE (argument));
2422       else
2423         error ("invalid default argument for a template template parameter");
2424       return error_mark_node;
2425     }
2426
2427   return argument;
2428 }
2429
2430 /* Begin a class definition, as indicated by T.  */
2431
2432 tree
2433 begin_class_definition (tree t, tree attributes)
2434 {
2435   if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2436     return error_mark_node;
2437
2438   if (processing_template_parmlist)
2439     {
2440       error ("definition of %q#T inside template parameter list", t);
2441       return error_mark_node;
2442     }
2443
2444   /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2445      are passed the same as decimal scalar types.  */
2446   if (TREE_CODE (t) == RECORD_TYPE
2447       && !processing_template_decl)
2448     {
2449       tree ns = TYPE_CONTEXT (t);
2450       if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2451           && DECL_CONTEXT (ns) == std_node
2452           && DECL_NAME (ns)
2453           && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2454         {
2455           const char *n = TYPE_NAME_STRING (t);
2456           if ((strcmp (n, "decimal32") == 0)
2457               || (strcmp (n, "decimal64") == 0)
2458               || (strcmp (n, "decimal128") == 0))
2459             TYPE_TRANSPARENT_AGGR (t) = 1;
2460         }
2461     }
2462
2463   /* A non-implicit typename comes from code like:
2464
2465        template <typename T> struct A {
2466          template <typename U> struct A<T>::B ...
2467
2468      This is erroneous.  */
2469   else if (TREE_CODE (t) == TYPENAME_TYPE)
2470     {
2471       error ("invalid definition of qualified type %qT", t);
2472       t = error_mark_node;
2473     }
2474
2475   if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2476     {
2477       t = make_class_type (RECORD_TYPE);
2478       pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2479     }
2480
2481   if (TYPE_BEING_DEFINED (t))
2482     {
2483       t = make_class_type (TREE_CODE (t));
2484       pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2485     }
2486   maybe_process_partial_specialization (t);
2487   pushclass (t);
2488   TYPE_BEING_DEFINED (t) = 1;
2489
2490   cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
2491   fixup_attribute_variants (t);
2492
2493   if (flag_pack_struct)
2494     {
2495       tree v;
2496       TYPE_PACKED (t) = 1;
2497       /* Even though the type is being defined for the first time
2498          here, there might have been a forward declaration, so there
2499          might be cv-qualified variants of T.  */
2500       for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2501         TYPE_PACKED (v) = 1;
2502     }
2503   /* Reset the interface data, at the earliest possible
2504      moment, as it might have been set via a class foo;
2505      before.  */
2506   if (! TYPE_ANONYMOUS_P (t))
2507     {
2508       struct c_fileinfo *finfo = get_fileinfo (input_filename);
2509       CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2510       SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2511         (t, finfo->interface_unknown);
2512     }
2513   reset_specialization();
2514
2515   /* Make a declaration for this class in its own scope.  */
2516   build_self_reference ();
2517
2518   return t;
2519 }
2520
2521 /* Finish the member declaration given by DECL.  */
2522
2523 void
2524 finish_member_declaration (tree decl)
2525 {
2526   if (decl == error_mark_node || decl == NULL_TREE)
2527     return;
2528
2529   if (decl == void_type_node)
2530     /* The COMPONENT was a friend, not a member, and so there's
2531        nothing for us to do.  */
2532     return;
2533
2534   /* We should see only one DECL at a time.  */
2535   gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2536
2537   /* Set up access control for DECL.  */
2538   TREE_PRIVATE (decl)
2539     = (current_access_specifier == access_private_node);
2540   TREE_PROTECTED (decl)
2541     = (current_access_specifier == access_protected_node);
2542   if (TREE_CODE (decl) == TEMPLATE_DECL)
2543     {
2544       TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2545       TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2546     }
2547
2548   /* Mark the DECL as a member of the current class.  */
2549   DECL_CONTEXT (decl) = current_class_type;
2550
2551   /* Check for bare parameter packs in the member variable declaration.  */
2552   if (TREE_CODE (decl) == FIELD_DECL)
2553     {
2554       if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2555         TREE_TYPE (decl) = error_mark_node;
2556       if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2557         DECL_ATTRIBUTES (decl) = NULL_TREE;
2558     }
2559
2560   /* [dcl.link]
2561
2562      A C language linkage is ignored for the names of class members
2563      and the member function type of class member functions.  */
2564   if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2565     SET_DECL_LANGUAGE (decl, lang_cplusplus);
2566
2567   /* Put functions on the TYPE_METHODS list and everything else on the
2568      TYPE_FIELDS list.  Note that these are built up in reverse order.
2569      We reverse them (to obtain declaration order) in finish_struct.  */
2570   if (TREE_CODE (decl) == FUNCTION_DECL
2571       || DECL_FUNCTION_TEMPLATE_P (decl))
2572     {
2573       /* We also need to add this function to the
2574          CLASSTYPE_METHOD_VEC.  */
2575       if (add_method (current_class_type, decl, NULL_TREE))
2576         {
2577           DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2578           TYPE_METHODS (current_class_type) = decl;
2579
2580           maybe_add_class_template_decl_list (current_class_type, decl,
2581                                               /*friend_p=*/0);
2582         }
2583     }
2584   /* Enter the DECL into the scope of the class.  */
2585   else if ((TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
2586            || pushdecl_class_level (decl))
2587     {
2588       /* All TYPE_DECLs go at the end of TYPE_FIELDS.  Ordinary fields
2589          go at the beginning.  The reason is that lookup_field_1
2590          searches the list in order, and we want a field name to
2591          override a type name so that the "struct stat hack" will
2592          work.  In particular:
2593
2594            struct S { enum E { }; int E } s;
2595            s.E = 3;
2596
2597          is valid.  In addition, the FIELD_DECLs must be maintained in
2598          declaration order so that class layout works as expected.
2599          However, we don't need that order until class layout, so we
2600          save a little time by putting FIELD_DECLs on in reverse order
2601          here, and then reversing them in finish_struct_1.  (We could
2602          also keep a pointer to the correct insertion points in the
2603          list.)  */
2604
2605       if (TREE_CODE (decl) == TYPE_DECL)
2606         TYPE_FIELDS (current_class_type)
2607           = chainon (TYPE_FIELDS (current_class_type), decl);
2608       else
2609         {
2610           DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2611           TYPE_FIELDS (current_class_type) = decl;
2612         }
2613
2614       maybe_add_class_template_decl_list (current_class_type, decl,
2615                                           /*friend_p=*/0);
2616     }
2617
2618   if (pch_file)
2619     note_decl_for_pch (decl);
2620 }
2621
2622 /* DECL has been declared while we are building a PCH file.  Perform
2623    actions that we might normally undertake lazily, but which can be
2624    performed now so that they do not have to be performed in
2625    translation units which include the PCH file.  */
2626
2627 void
2628 note_decl_for_pch (tree decl)
2629 {
2630   gcc_assert (pch_file);
2631
2632   /* There's a good chance that we'll have to mangle names at some
2633      point, even if only for emission in debugging information.  */
2634   if ((TREE_CODE (decl) == VAR_DECL
2635        || TREE_CODE (decl) == FUNCTION_DECL)
2636       && !processing_template_decl)
2637     mangle_decl (decl);
2638 }
2639
2640 /* Finish processing a complete template declaration.  The PARMS are
2641    the template parameters.  */
2642
2643 void
2644 finish_template_decl (tree parms)
2645 {
2646   if (parms)
2647     end_template_decl ();
2648   else
2649     end_specialization ();
2650 }
2651
2652 /* Finish processing a template-id (which names a type) of the form
2653    NAME < ARGS >.  Return the TYPE_DECL for the type named by the
2654    template-id.  If ENTERING_SCOPE is nonzero we are about to enter
2655    the scope of template-id indicated.  */
2656
2657 tree
2658 finish_template_type (tree name, tree args, int entering_scope)
2659 {
2660   tree decl;
2661
2662   decl = lookup_template_class (name, args,
2663                                 NULL_TREE, NULL_TREE, entering_scope,
2664                                 tf_warning_or_error | tf_user);
2665   if (decl != error_mark_node)
2666     decl = TYPE_STUB_DECL (decl);
2667
2668   return decl;
2669 }
2670
2671 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2672    Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2673    BASE_CLASS, or NULL_TREE if an error occurred.  The
2674    ACCESS_SPECIFIER is one of
2675    access_{default,public,protected_private}_node.  For a virtual base
2676    we set TREE_TYPE.  */
2677
2678 tree
2679 finish_base_specifier (tree base, tree access, bool virtual_p)
2680 {
2681   tree result;
2682
2683   if (base == error_mark_node)
2684     {
2685       error ("invalid base-class specification");
2686       result = NULL_TREE;
2687     }
2688   else if (! MAYBE_CLASS_TYPE_P (base))
2689     {
2690       error ("%qT is not a class type", base);
2691       result = NULL_TREE;
2692     }
2693   else
2694     {
2695       if (cp_type_quals (base) != 0)
2696         {
2697           error ("base class %qT has cv qualifiers", base);
2698           base = TYPE_MAIN_VARIANT (base);
2699         }
2700       result = build_tree_list (access, base);
2701       if (virtual_p)
2702         TREE_TYPE (result) = integer_type_node;
2703     }
2704
2705   return result;
2706 }
2707
2708 /* If FNS is a member function, a set of member functions, or a
2709    template-id referring to one or more member functions, return a
2710    BASELINK for FNS, incorporating the current access context.
2711    Otherwise, return FNS unchanged.  */
2712
2713 tree
2714 baselink_for_fns (tree fns)
2715 {
2716   tree fn;
2717   tree cl;
2718
2719   if (BASELINK_P (fns) 
2720       || error_operand_p (fns))
2721     return fns;
2722   
2723   fn = fns;
2724   if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2725     fn = TREE_OPERAND (fn, 0);
2726   fn = get_first_fn (fn);
2727   if (!DECL_FUNCTION_MEMBER_P (fn))
2728     return fns;
2729
2730   cl = currently_open_derived_class (DECL_CONTEXT (fn));
2731   if (!cl)
2732     cl = DECL_CONTEXT (fn);
2733   cl = TYPE_BINFO (cl);
2734   return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
2735 }
2736
2737 /* Returns true iff DECL is an automatic variable from a function outside
2738    the current one.  */
2739
2740 static bool
2741 outer_automatic_var_p (tree decl)
2742 {
2743   return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2744           && DECL_FUNCTION_SCOPE_P (decl)
2745           && !TREE_STATIC (decl)
2746           && DECL_CONTEXT (decl) != current_function_decl);
2747 }
2748
2749 /* Returns true iff DECL is a capture field from a lambda that is not our
2750    immediate context.  */
2751
2752 static bool
2753 outer_lambda_capture_p (tree decl)
2754 {
2755   return (TREE_CODE (decl) == FIELD_DECL
2756           && LAMBDA_TYPE_P (DECL_CONTEXT (decl))
2757           && (!current_class_type
2758               || !DERIVED_FROM_P (DECL_CONTEXT (decl), current_class_type)));
2759 }
2760
2761 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2762    id-expression.  (See cp_parser_id_expression for details.)  SCOPE,
2763    if non-NULL, is the type or namespace used to explicitly qualify
2764    ID_EXPRESSION.  DECL is the entity to which that name has been
2765    resolved.
2766
2767    *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2768    constant-expression.  In that case, *NON_CONSTANT_EXPRESSION_P will
2769    be set to true if this expression isn't permitted in a
2770    constant-expression, but it is otherwise not set by this function.
2771    *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2772    constant-expression, but a non-constant expression is also
2773    permissible.
2774
2775    DONE is true if this expression is a complete postfix-expression;
2776    it is false if this expression is followed by '->', '[', '(', etc.
2777    ADDRESS_P is true iff this expression is the operand of '&'.
2778    TEMPLATE_P is true iff the qualified-id was of the form
2779    "A::template B".  TEMPLATE_ARG_P is true iff this qualified name
2780    appears as a template argument.
2781
2782    If an error occurs, and it is the kind of error that might cause
2783    the parser to abort a tentative parse, *ERROR_MSG is filled in.  It
2784    is the caller's responsibility to issue the message.  *ERROR_MSG
2785    will be a string with static storage duration, so the caller need
2786    not "free" it.
2787
2788    Return an expression for the entity, after issuing appropriate
2789    diagnostics.  This function is also responsible for transforming a
2790    reference to a non-static member into a COMPONENT_REF that makes
2791    the use of "this" explicit.
2792
2793    Upon return, *IDK will be filled in appropriately.  */
2794 tree
2795 finish_id_expression (tree id_expression,
2796                       tree decl,
2797                       tree scope,
2798                       cp_id_kind *idk,
2799                       bool integral_constant_expression_p,
2800                       bool allow_non_integral_constant_expression_p,
2801                       bool *non_integral_constant_expression_p,
2802                       bool template_p,
2803                       bool done,
2804                       bool address_p,
2805                       bool template_arg_p,
2806                       const char **error_msg,
2807                       location_t location)
2808 {
2809   /* Initialize the output parameters.  */
2810   *idk = CP_ID_KIND_NONE;
2811   *error_msg = NULL;
2812
2813   if (id_expression == error_mark_node)
2814     return error_mark_node;
2815   /* If we have a template-id, then no further lookup is
2816      required.  If the template-id was for a template-class, we
2817      will sometimes have a TYPE_DECL at this point.  */
2818   else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2819            || TREE_CODE (decl) == TYPE_DECL)
2820     ;
2821   /* Look up the name.  */
2822   else
2823     {
2824       if (decl == error_mark_node)
2825         {
2826           /* Name lookup failed.  */
2827           if (scope
2828               && (!TYPE_P (scope)
2829                   || (!dependent_type_p (scope)
2830                       && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2831                            && IDENTIFIER_TYPENAME_P (id_expression)
2832                            && dependent_type_p (TREE_TYPE (id_expression))))))
2833             {
2834               /* If the qualifying type is non-dependent (and the name
2835                  does not name a conversion operator to a dependent
2836                  type), issue an error.  */
2837               qualified_name_lookup_error (scope, id_expression, decl, location);
2838               return error_mark_node;
2839             }
2840           else if (!scope)
2841             {
2842               /* It may be resolved via Koenig lookup.  */
2843               *idk = CP_ID_KIND_UNQUALIFIED;
2844               return id_expression;
2845             }
2846           else
2847             decl = id_expression;
2848         }
2849       /* If DECL is a variable that would be out of scope under
2850          ANSI/ISO rules, but in scope in the ARM, name lookup
2851          will succeed.  Issue a diagnostic here.  */
2852       else
2853         decl = check_for_out_of_scope_variable (decl);
2854
2855       /* Remember that the name was used in the definition of
2856          the current class so that we can check later to see if
2857          the meaning would have been different after the class
2858          was entirely defined.  */
2859       if (!scope && decl != error_mark_node
2860           && TREE_CODE (id_expression) == IDENTIFIER_NODE)
2861         maybe_note_name_used_in_class (id_expression, decl);
2862
2863       /* Disallow uses of local variables from containing functions, except
2864          within lambda-expressions.  */
2865       if ((outer_automatic_var_p (decl)
2866            || outer_lambda_capture_p (decl))
2867           /* It's not a use (3.2) if we're in an unevaluated context.  */
2868           && !cp_unevaluated_operand)
2869         {
2870           tree context = DECL_CONTEXT (decl);
2871           tree containing_function = current_function_decl;
2872           tree lambda_stack = NULL_TREE;
2873           tree lambda_expr = NULL_TREE;
2874           tree initializer = decl;
2875
2876           /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
2877              support for an approach in which a reference to a local
2878              [constant] automatic variable in a nested class or lambda body
2879              would enter the expression as an rvalue, which would reduce
2880              the complexity of the problem"
2881
2882              FIXME update for final resolution of core issue 696.  */
2883           if (decl_constant_var_p (decl))
2884             return integral_constant_value (decl);
2885
2886           if (TYPE_P (context))
2887             {
2888               /* Implicit capture of an explicit capture.  */
2889               context = lambda_function (context);
2890               initializer = thisify_lambda_field (decl);
2891             }
2892
2893           /* If we are in a lambda function, we can move out until we hit
2894              1. the context,
2895              2. a non-lambda function, or
2896              3. a non-default capturing lambda function.  */
2897           while (context != containing_function
2898                  && LAMBDA_FUNCTION_P (containing_function))
2899             {
2900               lambda_expr = CLASSTYPE_LAMBDA_EXPR
2901                 (DECL_CONTEXT (containing_function));
2902
2903               if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
2904                   == CPLD_NONE)
2905                 break;
2906
2907               lambda_stack = tree_cons (NULL_TREE,
2908                                         lambda_expr,
2909                                         lambda_stack);
2910
2911               containing_function
2912                 = decl_function_context (containing_function);
2913             }
2914
2915           if (context == containing_function)
2916             {
2917               decl = add_default_capture (lambda_stack,
2918                                           /*id=*/DECL_NAME (decl),
2919                                           initializer);
2920             }
2921           else if (lambda_expr)
2922             {
2923               error ("%qD is not captured", decl);
2924               return error_mark_node;
2925             }
2926           else
2927             {
2928               error (TREE_CODE (decl) == VAR_DECL
2929                      ? "use of %<auto%> variable from containing function"
2930                      : "use of parameter from containing function");
2931               error ("  %q+#D declared here", decl);
2932               return error_mark_node;
2933             }
2934         }
2935
2936       /* Also disallow uses of function parameters outside the function
2937          body, except inside an unevaluated context (i.e. decltype).  */
2938       if (TREE_CODE (decl) == PARM_DECL
2939           && DECL_CONTEXT (decl) == NULL_TREE
2940           && !cp_unevaluated_operand)
2941         {
2942           error ("use of parameter %qD outside function body", decl);
2943           return error_mark_node;
2944         }
2945     }
2946
2947   /* If we didn't find anything, or what we found was a type,
2948      then this wasn't really an id-expression.  */
2949   if (TREE_CODE (decl) == TEMPLATE_DECL
2950       && !DECL_FUNCTION_TEMPLATE_P (decl))
2951     {
2952       *error_msg = "missing template arguments";
2953       return error_mark_node;
2954     }
2955   else if (TREE_CODE (decl) == TYPE_DECL
2956            || TREE_CODE (decl) == NAMESPACE_DECL)
2957     {
2958       *error_msg = "expected primary-expression";
2959       return error_mark_node;
2960     }
2961
2962   /* If the name resolved to a template parameter, there is no
2963      need to look it up again later.  */
2964   if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
2965       || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2966     {
2967       tree r;
2968
2969       *idk = CP_ID_KIND_NONE;
2970       if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
2971         decl = TEMPLATE_PARM_DECL (decl);
2972       r = convert_from_reference (DECL_INITIAL (decl));
2973
2974       if (integral_constant_expression_p
2975           && !dependent_type_p (TREE_TYPE (decl))
2976           && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
2977         {
2978           if (!allow_non_integral_constant_expression_p)
2979             error ("template parameter %qD of type %qT is not allowed in "
2980                    "an integral constant expression because it is not of "
2981                    "integral or enumeration type", decl, TREE_TYPE (decl));
2982           *non_integral_constant_expression_p = true;
2983         }
2984       return r;
2985     }
2986   /* Similarly, we resolve enumeration constants to their
2987      underlying values.  */
2988   else if (TREE_CODE (decl) == CONST_DECL)
2989     {
2990       *idk = CP_ID_KIND_NONE;
2991       if (!processing_template_decl)
2992         {
2993           used_types_insert (TREE_TYPE (decl));
2994           return DECL_INITIAL (decl);
2995         }
2996       return decl;
2997     }
2998   else
2999     {
3000       bool dependent_p;
3001
3002       /* If the declaration was explicitly qualified indicate
3003          that.  The semantics of `A::f(3)' are different than
3004          `f(3)' if `f' is virtual.  */
3005       *idk = (scope
3006               ? CP_ID_KIND_QUALIFIED
3007               : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3008                  ? CP_ID_KIND_TEMPLATE_ID
3009                  : CP_ID_KIND_UNQUALIFIED));
3010
3011
3012       /* [temp.dep.expr]
3013
3014          An id-expression is type-dependent if it contains an
3015          identifier that was declared with a dependent type.
3016
3017          The standard is not very specific about an id-expression that
3018          names a set of overloaded functions.  What if some of them
3019          have dependent types and some of them do not?  Presumably,
3020          such a name should be treated as a dependent name.  */
3021       /* Assume the name is not dependent.  */
3022       dependent_p = false;
3023       if (!processing_template_decl)
3024         /* No names are dependent outside a template.  */
3025         ;
3026       /* A template-id where the name of the template was not resolved
3027          is definitely dependent.  */
3028       else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3029                && (TREE_CODE (TREE_OPERAND (decl, 0))
3030                    == IDENTIFIER_NODE))
3031         dependent_p = true;
3032       /* For anything except an overloaded function, just check its
3033          type.  */
3034       else if (!is_overloaded_fn (decl))
3035         dependent_p
3036           = dependent_type_p (TREE_TYPE (decl));
3037       /* For a set of overloaded functions, check each of the
3038          functions.  */
3039       else
3040         {
3041           tree fns = decl;
3042
3043           if (BASELINK_P (fns))
3044             fns = BASELINK_FUNCTIONS (fns);
3045
3046           /* For a template-id, check to see if the template
3047              arguments are dependent.  */
3048           if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3049             {
3050               tree args = TREE_OPERAND (fns, 1);
3051               dependent_p = any_dependent_template_arguments_p (args);
3052               /* The functions are those referred to by the
3053                  template-id.  */
3054               fns = TREE_OPERAND (fns, 0);
3055             }
3056
3057           /* If there are no dependent template arguments, go through
3058              the overloaded functions.  */
3059           while (fns && !dependent_p)
3060             {
3061               tree fn = OVL_CURRENT (fns);
3062
3063               /* Member functions of dependent classes are
3064                  dependent.  */
3065               if (TREE_CODE (fn) == FUNCTION_DECL
3066                   && type_dependent_expression_p (fn))
3067                 dependent_p = true;
3068               else if (TREE_CODE (fn) == TEMPLATE_DECL
3069                        && dependent_template_p (fn))
3070                 dependent_p = true;
3071
3072               fns = OVL_NEXT (fns);
3073             }
3074         }
3075
3076       /* If the name was dependent on a template parameter, we will
3077          resolve the name at instantiation time.  */
3078       if (dependent_p)
3079         {
3080           /* Create a SCOPE_REF for qualified names, if the scope is
3081              dependent.  */
3082           if (scope)
3083             {
3084               if (TYPE_P (scope))
3085                 {
3086                   if (address_p && done)
3087                     decl = finish_qualified_id_expr (scope, decl,
3088                                                      done, address_p,
3089                                                      template_p,
3090                                                      template_arg_p);
3091                   else
3092                     {
3093                       tree type = NULL_TREE;
3094                       if (DECL_P (decl) && !dependent_scope_p (scope))
3095                         type = TREE_TYPE (decl);
3096                       decl = build_qualified_name (type,
3097                                                    scope,
3098                                                    id_expression,
3099                                                    template_p);
3100                     }
3101                 }
3102               if (TREE_TYPE (decl))
3103                 decl = convert_from_reference (decl);
3104               return decl;
3105             }
3106           /* A TEMPLATE_ID already contains all the information we
3107              need.  */
3108           if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3109             return id_expression;
3110           *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3111           /* If we found a variable, then name lookup during the
3112              instantiation will always resolve to the same VAR_DECL
3113              (or an instantiation thereof).  */
3114           if (TREE_CODE (decl) == VAR_DECL
3115               || TREE_CODE (decl) == PARM_DECL)
3116             return convert_from_reference (decl);
3117           /* The same is true for FIELD_DECL, but we also need to
3118              make sure that the syntax is correct.  */
3119           else if (TREE_CODE (decl) == FIELD_DECL)
3120             {
3121               /* Since SCOPE is NULL here, this is an unqualified name.
3122                  Access checking has been performed during name lookup
3123                  already.  Turn off checking to avoid duplicate errors.  */
3124               push_deferring_access_checks (dk_no_check);
3125               decl = finish_non_static_data_member
3126                        (decl, NULL_TREE,
3127                         /*qualifying_scope=*/NULL_TREE);
3128               pop_deferring_access_checks ();
3129               return decl;
3130             }
3131           return id_expression;
3132         }
3133
3134       if (TREE_CODE (decl) == NAMESPACE_DECL)
3135         {
3136           error ("use of namespace %qD as expression", decl);
3137           return error_mark_node;
3138         }
3139       else if (DECL_CLASS_TEMPLATE_P (decl))
3140         {
3141           error ("use of class template %qT as expression", decl);
3142           return error_mark_node;
3143         }
3144       else if (TREE_CODE (decl) == TREE_LIST)
3145         {
3146           /* Ambiguous reference to base members.  */
3147           error ("request for member %qD is ambiguous in "
3148                  "multiple inheritance lattice", id_expression);
3149           print_candidates (decl);
3150           return error_mark_node;
3151         }
3152
3153       /* Mark variable-like entities as used.  Functions are similarly
3154          marked either below or after overload resolution.  */
3155       if (TREE_CODE (decl) == VAR_DECL
3156           || TREE_CODE (decl) == PARM_DECL
3157           || TREE_CODE (decl) == RESULT_DECL)
3158         mark_used (decl);
3159
3160       /* Only certain kinds of names are allowed in constant
3161          expression.  Enumerators and template parameters have already
3162          been handled above.  */
3163       if (! error_operand_p (decl)
3164           && integral_constant_expression_p
3165           && ! decl_constant_var_p (decl)
3166           && ! builtin_valid_in_constant_expr_p (decl))
3167         {
3168           if (!allow_non_integral_constant_expression_p)
3169             {
3170               error ("%qD cannot appear in a constant-expression", decl);
3171               return error_mark_node;
3172             }
3173           *non_integral_constant_expression_p = true;
3174         }
3175
3176       if (scope)
3177         {
3178           decl = (adjust_result_of_qualified_name_lookup
3179                   (decl, scope, current_class_type));
3180
3181           if (TREE_CODE (decl) == FUNCTION_DECL)
3182             mark_used (decl);
3183
3184           if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
3185             decl = finish_qualified_id_expr (scope,
3186                                              decl,
3187                                              done,
3188                                              address_p,
3189                                              template_p,
3190                                              template_arg_p);
3191           else
3192             {
3193               tree r = convert_from_reference (decl);
3194
3195               /* In a template, return a SCOPE_REF for most qualified-ids
3196                  so that we can check access at instantiation time.  But if
3197                  we're looking at a member of the current instantiation, we
3198                  know we have access and building up the SCOPE_REF confuses
3199                  non-type template argument handling.  */
3200               if (processing_template_decl && TYPE_P (scope)
3201                   && !currently_open_class (scope))
3202                 r = build_qualified_name (TREE_TYPE (r),
3203                                           scope, decl,
3204                                           template_p);
3205               decl = r;
3206             }
3207         }
3208       else if (TREE_CODE (decl) == FIELD_DECL)
3209         {
3210           /* Since SCOPE is NULL here, this is an unqualified name.
3211              Access checking has been performed during name lookup
3212              already.  Turn off checking to avoid duplicate errors.  */
3213           push_deferring_access_checks (dk_no_check);
3214           decl = finish_non_static_data_member (decl, NULL_TREE,
3215                                                 /*qualifying_scope=*/NULL_TREE);
3216           pop_deferring_access_checks ();
3217         }
3218       else if (is_overloaded_fn (decl))
3219         {
3220           tree first_fn;
3221
3222           first_fn = get_first_fn (decl);
3223           if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3224             first_fn = DECL_TEMPLATE_RESULT (first_fn);
3225
3226           if (!really_overloaded_fn (decl))
3227             mark_used (first_fn);
3228
3229           if (!template_arg_p
3230               && TREE_CODE (first_fn) == FUNCTION_DECL
3231               && DECL_FUNCTION_MEMBER_P (first_fn)
3232               && !shared_member_p (decl))
3233             {
3234               /* A set of member functions.  */
3235               decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3236               return finish_class_member_access_expr (decl, id_expression,
3237                                                       /*template_p=*/false,
3238                                                       tf_warning_or_error);
3239             }
3240
3241           decl = baselink_for_fns (decl);
3242         }
3243       else
3244         {
3245           if (DECL_P (decl) && DECL_NONLOCAL (decl)
3246               && DECL_CLASS_SCOPE_P (decl))
3247             {
3248               tree context = context_for_name_lookup (decl); 
3249               if (context != current_class_type)
3250                 {
3251                   tree path = currently_open_derived_class (context);
3252                   perform_or_defer_access_check (TYPE_BINFO (path),
3253                                                  decl, decl);
3254                 }
3255             }
3256
3257           decl = convert_from_reference (decl);
3258         }
3259     }
3260
3261   if (TREE_DEPRECATED (decl))
3262     warn_deprecated_use (decl, NULL_TREE);
3263
3264   return decl;
3265 }
3266
3267 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3268    use as a type-specifier.  */
3269
3270 tree
3271 finish_typeof (tree expr)
3272 {
3273   tree type;
3274
3275   if (type_dependent_expression_p (expr))
3276     {
3277       type = cxx_make_type (TYPEOF_TYPE);
3278       TYPEOF_TYPE_EXPR (type) = expr;
3279       SET_TYPE_STRUCTURAL_EQUALITY (type);
3280
3281       return type;
3282     }
3283
3284   expr = mark_type_use (expr);
3285
3286   type = unlowered_expr_type (expr);
3287
3288   if (!type || type == unknown_type_node)
3289     {
3290       error ("type of %qE is unknown", expr);
3291       return error_mark_node;
3292     }
3293
3294   return type;
3295 }
3296
3297 /* Perform C++-specific checks for __builtin_offsetof before calling
3298    fold_offsetof.  */
3299
3300 tree
3301 finish_offsetof (tree expr)
3302 {
3303   if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3304     {
3305       error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3306               TREE_OPERAND (expr, 2));
3307       return error_mark_node;
3308     }
3309   if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3310       || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3311       || TREE_TYPE (expr) == unknown_type_node)
3312     {
3313       if (TREE_CODE (expr) == COMPONENT_REF
3314           || TREE_CODE (expr) == COMPOUND_EXPR)
3315         expr = TREE_OPERAND (expr, 1);
3316       error ("cannot apply %<offsetof%> to member function %qD", expr);
3317       return error_mark_node;
3318     }
3319   if (TREE_CODE (expr) == INDIRECT_REF && REFERENCE_REF_P (expr))
3320     expr = TREE_OPERAND (expr, 0);
3321   return fold_offsetof (expr, NULL_TREE);
3322 }
3323
3324 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR.  This
3325    function is broken out from the above for the benefit of the tree-ssa
3326    project.  */
3327
3328 void
3329 simplify_aggr_init_expr (tree *tp)
3330 {
3331   tree aggr_init_expr = *tp;
3332
3333   /* Form an appropriate CALL_EXPR.  */
3334   tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3335   tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3336   tree type = TREE_TYPE (slot);
3337
3338   tree call_expr;
3339   enum style_t { ctor, arg, pcc } style;
3340
3341   if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3342     style = ctor;
3343 #ifdef PCC_STATIC_STRUCT_RETURN
3344   else if (1)
3345     style = pcc;
3346 #endif
3347   else
3348     {
3349       gcc_assert (TREE_ADDRESSABLE (type));
3350       style = arg;
3351     }
3352
3353   call_expr = build_call_array_loc (input_location,
3354                                     TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3355                                     fn,
3356                                     aggr_init_expr_nargs (aggr_init_expr),
3357                                     AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3358   TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3359
3360   if (style == ctor)
3361     {
3362       /* Replace the first argument to the ctor with the address of the
3363          slot.  */
3364       cxx_mark_addressable (slot);
3365       CALL_EXPR_ARG (call_expr, 0) =
3366         build1 (ADDR_EXPR, build_pointer_type (type), slot);
3367     }
3368   else if (style == arg)
3369     {
3370       /* Just mark it addressable here, and leave the rest to
3371          expand_call{,_inline}.  */
3372       cxx_mark_addressable (slot);
3373       CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3374       call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3375     }
3376   else if (style == pcc)
3377     {
3378       /* If we're using the non-reentrant PCC calling convention, then we
3379          need to copy the returned value out of the static buffer into the
3380          SLOT.  */
3381       push_deferring_access_checks (dk_no_check);
3382       call_expr = build_aggr_init (slot, call_expr,
3383                                    DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3384                                    tf_warning_or_error);
3385       pop_deferring_access_checks ();
3386       call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3387     }
3388
3389   if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3390     {
3391       tree init = build_zero_init (type, NULL_TREE,
3392                                    /*static_storage_p=*/false);
3393       init = build2 (INIT_EXPR, void_type_node, slot, init);
3394       call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3395                           init, call_expr);
3396     }
3397
3398   *tp = call_expr;
3399 }
3400
3401 /* Emit all thunks to FN that should be emitted when FN is emitted.  */
3402
3403 void
3404 emit_associated_thunks (tree fn)
3405 {
3406   /* When we use vcall offsets, we emit thunks with the virtual
3407      functions to which they thunk. The whole point of vcall offsets
3408      is so that you can know statically the entire set of thunks that
3409      will ever be needed for a given virtual function, thereby
3410      enabling you to output all the thunks with the function itself.  */
3411   if (DECL_VIRTUAL_P (fn)
3412       /* Do not emit thunks for extern template instantiations.  */
3413       && ! DECL_REALLY_EXTERN (fn))
3414     {
3415       tree thunk;
3416
3417       for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
3418         {
3419           if (!THUNK_ALIAS (thunk))
3420             {
3421               use_thunk (thunk, /*emit_p=*/1);
3422               if (DECL_RESULT_THUNK_P (thunk))
3423                 {
3424                   tree probe;
3425
3426                   for (probe = DECL_THUNKS (thunk);
3427                        probe; probe = DECL_CHAIN (probe))
3428                     use_thunk (probe, /*emit_p=*/1);
3429                 }
3430             }
3431           else
3432             gcc_assert (!DECL_THUNKS (thunk));
3433         }
3434     }
3435 }
3436
3437 /* Generate RTL for FN.  */
3438
3439 bool
3440 expand_or_defer_fn_1 (tree fn)
3441 {
3442   /* When the parser calls us after finishing the body of a template
3443      function, we don't really want to expand the body.  */
3444   if (processing_template_decl)
3445     {
3446       /* Normally, collection only occurs in rest_of_compilation.  So,
3447          if we don't collect here, we never collect junk generated
3448          during the processing of templates until we hit a
3449          non-template function.  It's not safe to do this inside a
3450          nested class, though, as the parser may have local state that
3451          is not a GC root.  */
3452       if (!function_depth)
3453         ggc_collect ();
3454       return false;
3455     }
3456
3457   gcc_assert (DECL_SAVED_TREE (fn));
3458
3459   /* If this is a constructor or destructor body, we have to clone
3460      it.  */
3461   if (maybe_clone_body (fn))
3462     {
3463       /* We don't want to process FN again, so pretend we've written
3464          it out, even though we haven't.  */
3465       TREE_ASM_WRITTEN (fn) = 1;
3466       DECL_SAVED_TREE (fn) = NULL_TREE;
3467       return false;
3468     }
3469
3470   /* We make a decision about linkage for these functions at the end
3471      of the compilation.  Until that point, we do not want the back
3472      end to output them -- but we do want it to see the bodies of
3473      these functions so that it can inline them as appropriate.  */
3474   if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3475     {
3476       if (DECL_INTERFACE_KNOWN (fn))
3477         /* We've already made a decision as to how this function will
3478            be handled.  */;
3479       else if (!at_eof)
3480         {
3481           DECL_EXTERNAL (fn) = 1;
3482           DECL_NOT_REALLY_EXTERN (fn) = 1;
3483           note_vague_linkage_fn (fn);
3484           /* A non-template inline function with external linkage will
3485              always be COMDAT.  As we must eventually determine the
3486              linkage of all functions, and as that causes writes to
3487              the data mapped in from the PCH file, it's advantageous
3488              to mark the functions at this point.  */
3489           if (!DECL_IMPLICIT_INSTANTIATION (fn))
3490             {
3491               /* This function must have external linkage, as
3492                  otherwise DECL_INTERFACE_KNOWN would have been
3493                  set.  */
3494               gcc_assert (TREE_PUBLIC (fn));
3495               comdat_linkage (fn);
3496               DECL_INTERFACE_KNOWN (fn) = 1;
3497             }
3498         }
3499       else
3500         import_export_decl (fn);
3501
3502       /* If the user wants us to keep all inline functions, then mark
3503          this function as needed so that finish_file will make sure to
3504          output it later.  Similarly, all dllexport'd functions must
3505          be emitted; there may be callers in other DLLs.  */
3506       if ((flag_keep_inline_functions
3507            && DECL_DECLARED_INLINE_P (fn)
3508            && !DECL_REALLY_EXTERN (fn))
3509           || (flag_keep_inline_dllexport
3510               && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn))))
3511         mark_needed (fn);
3512     }
3513
3514   /* There's no reason to do any of the work here if we're only doing
3515      semantic analysis; this code just generates RTL.  */
3516   if (flag_syntax_only)
3517     return false;
3518
3519   return true;
3520 }
3521
3522 void
3523 expand_or_defer_fn (tree fn)
3524 {
3525   if (expand_or_defer_fn_1 (fn))
3526     {
3527       function_depth++;
3528
3529       /* Expand or defer, at the whim of the compilation unit manager.  */
3530       cgraph_finalize_function (fn, function_depth > 1);
3531       emit_associated_thunks (fn);
3532
3533       function_depth--;
3534     }
3535 }
3536
3537 struct nrv_data
3538 {
3539   tree var;
3540   tree result;
3541   htab_t visited;
3542 };
3543
3544 /* Helper function for walk_tree, used by finalize_nrv below.  */
3545
3546 static tree
3547 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3548 {
3549   struct nrv_data *dp = (struct nrv_data *)data;
3550   void **slot;
3551
3552   /* No need to walk into types.  There wouldn't be any need to walk into
3553      non-statements, except that we have to consider STMT_EXPRs.  */
3554   if (TYPE_P (*tp))
3555     *walk_subtrees = 0;
3556   /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3557      but differs from using NULL_TREE in that it indicates that we care
3558      about the value of the RESULT_DECL.  */
3559   else if (TREE_CODE (*tp) == RETURN_EXPR)
3560     TREE_OPERAND (*tp, 0) = dp->result;
3561   /* Change all cleanups for the NRV to only run when an exception is
3562      thrown.  */
3563   else if (TREE_CODE (*tp) == CLEANUP_STMT
3564            && CLEANUP_DECL (*tp) == dp->var)
3565     CLEANUP_EH_ONLY (*tp) = 1;
3566   /* Replace the DECL_EXPR for the NRV with an initialization of the
3567      RESULT_DECL, if needed.  */
3568   else if (TREE_CODE (*tp) == DECL_EXPR
3569            && DECL_EXPR_DECL (*tp) == dp->var)
3570     {
3571       tree init;
3572       if (DECL_INITIAL (dp->var)
3573           && DECL_INITIAL (dp->var) != error_mark_node)
3574         init = build2 (INIT_EXPR, void_type_node, dp->result,
3575                        DECL_INITIAL (dp->var));
3576       else
3577         init = build_empty_stmt (EXPR_LOCATION (*tp));
3578       DECL_INITIAL (dp->var) = NULL_TREE;
3579       SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
3580       *tp = init;
3581     }
3582   /* And replace all uses of the NRV with the RESULT_DECL.  */
3583   else if (*tp == dp->var)
3584     *tp = dp->result;
3585
3586   /* Avoid walking into the same tree more than once.  Unfortunately, we
3587      can't just use walk_tree_without duplicates because it would only call
3588      us for the first occurrence of dp->var in the function body.  */
3589   slot = htab_find_slot (dp->visited, *tp, INSERT);
3590   if (*slot)
3591     *walk_subtrees = 0;
3592   else
3593     *slot = *tp;
3594
3595   /* Keep iterating.  */
3596   return NULL_TREE;
3597 }
3598
3599 /* Called from finish_function to implement the named return value
3600    optimization by overriding all the RETURN_EXPRs and pertinent
3601    CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3602    RESULT_DECL for the function.  */
3603
3604 void
3605 finalize_nrv (tree *tp, tree var, tree result)
3606 {
3607   struct nrv_data data;
3608
3609   /* Copy name from VAR to RESULT.  */
3610   DECL_NAME (result) = DECL_NAME (var);
3611   /* Don't forget that we take its address.  */
3612   TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3613   /* Finally set DECL_VALUE_EXPR to avoid assigning
3614      a stack slot at -O0 for the original var and debug info
3615      uses RESULT location for VAR.  */
3616   SET_DECL_VALUE_EXPR (var, result);
3617   DECL_HAS_VALUE_EXPR_P (var) = 1;
3618
3619   data.var = var;
3620   data.result = result;
3621   data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3622   cp_walk_tree (tp, finalize_nrv_r, &data, 0);
3623   htab_delete (data.visited);
3624 }
3625 \f
3626 /* Create CP_OMP_CLAUSE_INFO for clause C.  Returns true if it is invalid.  */
3627
3628 bool
3629 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3630                             bool need_copy_ctor, bool need_copy_assignment)
3631 {
3632   int save_errorcount = errorcount;
3633   tree info, t;
3634
3635   /* Always allocate 3 elements for simplicity.  These are the
3636      function decls for the ctor, dtor, and assignment op.
3637      This layout is known to the three lang hooks,
3638      cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3639      and cxx_omp_clause_assign_op.  */
3640   info = make_tree_vec (3);
3641   CP_OMP_CLAUSE_INFO (c) = info;
3642
3643   if (need_default_ctor || need_copy_ctor)
3644     {
3645       if (need_default_ctor)
3646         t = get_default_ctor (type);
3647       else
3648         t = get_copy_ctor (type);
3649
3650       if (t && !trivial_fn_p (t))
3651         TREE_VEC_ELT (info, 0) = t;
3652     }
3653
3654   if ((need_default_ctor || need_copy_ctor)
3655       && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3656     TREE_VEC_ELT (info, 1) = get_dtor (type);
3657
3658   if (need_copy_assignment)
3659     {
3660       t = get_copy_assign (type);
3661
3662       if (t && !trivial_fn_p (t))
3663         TREE_VEC_ELT (info, 2) = t;
3664     }
3665
3666   return errorcount != save_errorcount;
3667 }
3668
3669 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
3670    Remove any elements from the list that are invalid.  */
3671
3672 tree
3673 finish_omp_clauses (tree clauses)
3674 {
3675   bitmap_head generic_head, firstprivate_head, lastprivate_head;
3676   tree c, t, *pc = &clauses;
3677   const char *name;
3678
3679   bitmap_obstack_initialize (NULL);
3680   bitmap_initialize (&generic_head, &bitmap_default_obstack);
3681   bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
3682   bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
3683
3684   for (pc = &clauses, c = clauses; c ; c = *pc)
3685     {
3686       bool remove = false;
3687
3688       switch (OMP_CLAUSE_CODE (c))
3689         {
3690         case OMP_CLAUSE_SHARED:
3691           name = "shared";
3692           goto check_dup_generic;
3693         case OMP_CLAUSE_PRIVATE:
3694           name = "private";
3695           goto check_dup_generic;
3696         case OMP_CLAUSE_REDUCTION:
3697           name = "reduction";
3698           goto check_dup_generic;
3699         case OMP_CLAUSE_COPYPRIVATE:
3700           name = "copyprivate";
3701           goto check_dup_generic;
3702         case OMP_CLAUSE_COPYIN:
3703           name = "copyin";
3704           goto check_dup_generic;
3705         check_dup_generic:
3706           t = OMP_CLAUSE_DECL (c);
3707           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3708             {
3709               if (processing_template_decl)
3710                 break;
3711               if (DECL_P (t))
3712                 error ("%qD is not a variable in clause %qs", t, name);
3713               else
3714                 error ("%qE is not a variable in clause %qs", t, name);
3715               remove = true;
3716             }
3717           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3718                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
3719                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3720             {
3721               error ("%qD appears more than once in data clauses", t);
3722               remove = true;
3723             }
3724           else
3725             bitmap_set_bit (&generic_head, DECL_UID (t));
3726           break;
3727
3728         case OMP_CLAUSE_FIRSTPRIVATE:
3729           t = OMP_CLAUSE_DECL (c);
3730           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3731             {
3732               if (processing_template_decl)
3733                 break;
3734               if (DECL_P (t))
3735                 error ("%qD is not a variable in clause %<firstprivate%>", t);
3736               else
3737                 error ("%qE is not a variable in clause %<firstprivate%>", t);
3738               remove = true;
3739             }
3740           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3741                    || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3742             {
3743               error ("%qD appears more than once in data clauses", t);
3744               remove = true;
3745             }
3746           else
3747             bitmap_set_bit (&firstprivate_head, DECL_UID (t));
3748           break;
3749
3750         case OMP_CLAUSE_LASTPRIVATE:
3751           t = OMP_CLAUSE_DECL (c);
3752           if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3753             {
3754               if (processing_template_decl)
3755                 break;
3756               if (DECL_P (t))
3757                 error ("%qD is not a variable in clause %<lastprivate%>", t);
3758               else
3759                 error ("%qE is not a variable in clause %<lastprivate%>", t);
3760               remove = true;
3761             }
3762           else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3763                    || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3764             {
3765               error ("%qD appears more than once in data clauses", t);
3766               remove = true;
3767             }
3768           else
3769             bitmap_set_bit (&lastprivate_head, DECL_UID (t));
3770           break;
3771
3772         case OMP_CLAUSE_IF:
3773           t = OMP_CLAUSE_IF_EXPR (c);
3774           t = maybe_convert_cond (t);
3775           if (t == error_mark_node)
3776             remove = true;
3777           OMP_CLAUSE_IF_EXPR (c) = t;
3778           break;
3779
3780         case OMP_CLAUSE_NUM_THREADS:
3781           t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
3782           if (t == error_mark_node)
3783             remove = true;
3784           else if (!type_dependent_expression_p (t)
3785                    && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
3786             {
3787               error ("num_threads expression must be integral");
3788               remove = true;
3789             }
3790           break;
3791
3792         case OMP_CLAUSE_SCHEDULE:
3793           t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
3794           if (t == NULL)
3795             ;
3796           else if (t == error_mark_node)
3797             remove = true;
3798           else if (!type_dependent_expression_p (t)
3799                    && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
3800             {
3801               error ("schedule chunk size expression must be integral");
3802               remove = true;
3803             }
3804           break;
3805
3806         case OMP_CLAUSE_NOWAIT:
3807         case OMP_CLAUSE_ORDERED:
3808         case OMP_CLAUSE_DEFAULT:
3809         case OMP_CLAUSE_UNTIED:
3810         case OMP_CLAUSE_COLLAPSE:
3811           break;
3812
3813         default:
3814           gcc_unreachable ();
3815         }
3816
3817       if (remove)
3818         *pc = OMP_CLAUSE_CHAIN (c);
3819       else
3820         pc = &OMP_CLAUSE_CHAIN (c);
3821     }
3822
3823   for (pc = &clauses, c = clauses; c ; c = *pc)
3824     {
3825       enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
3826       bool remove = false;
3827       bool need_complete_non_reference = false;
3828       bool need_default_ctor = false;
3829       bool need_copy_ctor = false;
3830       bool need_copy_assignment = false;
3831       bool need_implicitly_determined = false;
3832       tree type, inner_type;
3833
3834       switch (c_kind)
3835         {
3836         case OMP_CLAUSE_SHARED:
3837           name = "shared";
3838           need_implicitly_determined = true;
3839           break;
3840         case OMP_CLAUSE_PRIVATE:
3841           name = "private";
3842           need_complete_non_reference = true;
3843           need_default_ctor = true;
3844           need_implicitly_determined = true;
3845           break;
3846         case OMP_CLAUSE_FIRSTPRIVATE:
3847           name = "firstprivate";
3848           need_complete_non_reference = true;
3849           need_copy_ctor = true;
3850           need_implicitly_determined = true;
3851           break;
3852         case OMP_CLAUSE_LASTPRIVATE:
3853           name = "lastprivate";
3854           need_complete_non_reference = true;
3855           need_copy_assignment = true;
3856           need_implicitly_determined = true;
3857           break;
3858         case OMP_CLAUSE_REDUCTION:
3859           name = "reduction";
3860           need_implicitly_determined = true;
3861           break;
3862         case OMP_CLAUSE_COPYPRIVATE:
3863           name = "copyprivate";
3864           need_copy_assignment = true;
3865           break;
3866         case OMP_CLAUSE_COPYIN:
3867           name = "copyin";
3868           need_copy_assignment = true;
3869           break;
3870         default:
3871           pc = &OMP_CLAUSE_CHAIN (c);
3872           continue;
3873         }
3874
3875       t = OMP_CLAUSE_DECL (c);
3876       if (processing_template_decl
3877           && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3878         {
3879           pc = &OMP_CLAUSE_CHAIN (c);
3880           continue;
3881         }
3882
3883       switch (c_kind)
3884         {
3885         case OMP_CLAUSE_LASTPRIVATE:
3886           if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
3887             need_default_ctor = true;
3888           break;
3889
3890         case OMP_CLAUSE_REDUCTION:
3891           if (AGGREGATE_TYPE_P (TREE_TYPE (t))
3892               || POINTER_TYPE_P (TREE_TYPE (t)))
3893             {
3894               error ("%qE has invalid type for %<reduction%>", t);
3895               remove = true;
3896             }
3897           else if (FLOAT_TYPE_P (TREE_TYPE (t)))
3898             {
3899               enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
3900               switch (r_code)
3901                 {
3902                 case PLUS_EXPR:
3903                 case MULT_EXPR:
3904                 case MINUS_EXPR:
3905                   break;
3906                 default:
3907                   error ("%qE has invalid type for %<reduction(%s)%>",
3908                          t, operator_name_info[r_code].name);
3909                   remove = true;
3910                 }
3911             }
3912           break;
3913
3914         case OMP_CLAUSE_COPYIN:
3915           if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
3916             {
3917               error ("%qE must be %<threadprivate%> for %<copyin%>", t);
3918               remove = true;
3919             }
3920           break;
3921
3922         default:
3923           break;
3924         }
3925
3926       if (need_complete_non_reference)
3927         {
3928           t = require_complete_type (t);
3929           if (t == error_mark_node)
3930             remove = true;
3931           else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
3932             {
3933               error ("%qE has reference type for %qs", t, name);
3934               remove = true;
3935             }
3936         }
3937       if (need_implicitly_determined)
3938         {
3939           const char *share_name = NULL;
3940
3941           if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
3942             share_name = "threadprivate";
3943           else switch (cxx_omp_predetermined_sharing (t))
3944             {
3945             case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
3946               break;
3947             case OMP_CLAUSE_DEFAULT_SHARED:
3948               share_name = "shared";
3949               break;
3950             case OMP_CLAUSE_DEFAULT_PRIVATE:
3951               share_name = "private";
3952               break;
3953             default:
3954               gcc_unreachable ();
3955             }
3956           if (share_name)
3957             {
3958               error ("%qE is predetermined %qs for %qs",
3959                      t, share_name, name);
3960               remove = true;
3961             }
3962         }
3963
3964       /* We're interested in the base element, not arrays.  */
3965       inner_type = type = TREE_TYPE (t);
3966       while (TREE_CODE (inner_type) == ARRAY_TYPE)
3967         inner_type = TREE_TYPE (inner_type);
3968
3969       /* Check for special function availability by building a call to one.
3970          Save the results, because later we won't be in the right context
3971          for making these queries.  */
3972       if (CLASS_TYPE_P (inner_type)
3973           && (need_default_ctor || need_copy_ctor || need_copy_assignment)
3974           && !type_dependent_expression_p (t)
3975           && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
3976                                          need_copy_ctor, need_copy_assignment))
3977         remove = true;
3978
3979       if (remove)
3980         *pc = OMP_CLAUSE_CHAIN (c);
3981       else
3982         pc = &OMP_CLAUSE_CHAIN (c);
3983     }
3984
3985   bitmap_obstack_release (NULL);
3986   return clauses;
3987 }
3988
3989 /* For all variables in the tree_list VARS, mark them as thread local.  */
3990
3991 void
3992 finish_omp_threadprivate (tree vars)
3993 {
3994   tree t;
3995
3996   /* Mark every variable in VARS to be assigned thread local storage.  */
3997   for (t = vars; t; t = TREE_CHAIN (t))
3998     {
3999       tree v = TREE_PURPOSE (t);
4000
4001       if (error_operand_p (v))
4002         ;
4003       else if (TREE_CODE (v) != VAR_DECL)
4004         error ("%<threadprivate%> %qD is not file, namespace "
4005                "or block scope variable", v);
4006       /* If V had already been marked threadprivate, it doesn't matter
4007          whether it had been used prior to this point.  */
4008       else if (TREE_USED (v)
4009           && (DECL_LANG_SPECIFIC (v) == NULL
4010               || !CP_DECL_THREADPRIVATE_P (v)))
4011         error ("%qE declared %<threadprivate%> after first use", v);
4012       else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
4013         error ("automatic variable %qE cannot be %<threadprivate%>", v);
4014       else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
4015         error ("%<threadprivate%> %qE has incomplete type", v);
4016       else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
4017                && CP_DECL_CONTEXT (v) != current_class_type)
4018         error ("%<threadprivate%> %qE directive not "
4019                "in %qT definition", v, CP_DECL_CONTEXT (v));
4020       else
4021         {
4022           /* Allocate a LANG_SPECIFIC structure for V, if needed.  */
4023           if (DECL_LANG_SPECIFIC (v) == NULL)
4024             {
4025               retrofit_lang_decl (v);
4026
4027               /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4028                  after the allocation of the lang_decl structure.  */
4029               if (DECL_DISCRIMINATOR_P (v))
4030                 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
4031             }
4032
4033           if (! DECL_THREAD_LOCAL_P (v))
4034             {
4035               DECL_TLS_MODEL (v) = decl_default_tls_model (v);
4036               /* If rtl has been already set for this var, call
4037                  make_decl_rtl once again, so that encode_section_info
4038                  has a chance to look at the new decl flags.  */
4039               if (DECL_RTL_SET_P (v))
4040                 make_decl_rtl (v);
4041             }
4042           CP_DECL_THREADPRIVATE_P (v) = 1;
4043         }
4044     }
4045 }
4046
4047 /* Build an OpenMP structured block.  */
4048
4049 tree
4050 begin_omp_structured_block (void)
4051 {
4052   return do_pushlevel (sk_omp);
4053 }
4054
4055 tree
4056 finish_omp_structured_block (tree block)
4057 {
4058   return do_poplevel (block);
4059 }
4060
4061 /* Similarly, except force the retention of the BLOCK.  */
4062
4063 tree
4064 begin_omp_parallel (void)
4065 {
4066   keep_next_level (true);
4067   return begin_omp_structured_block ();
4068 }
4069
4070 tree
4071 finish_omp_parallel (tree clauses, tree body)
4072 {
4073   tree stmt;
4074
4075   body = finish_omp_structured_block (body);
4076
4077   stmt = make_node (OMP_PARALLEL);
4078   TREE_TYPE (stmt) = void_type_node;
4079   OMP_PARALLEL_CLAUSES (stmt) = clauses;
4080   OMP_PARALLEL_BODY (stmt) = body;
4081
4082   return add_stmt (stmt);
4083 }
4084
4085 tree
4086 begin_omp_task (void)
4087 {
4088   keep_next_level (true);
4089   return begin_omp_structured_block ();
4090 }
4091
4092 tree
4093 finish_omp_task (tree clauses, tree body)
4094 {
4095   tree stmt;
4096
4097   body = finish_omp_structured_block (body);
4098
4099   stmt = make_node (OMP_TASK);
4100   TREE_TYPE (stmt) = void_type_node;
4101   OMP_TASK_CLAUSES (stmt) = clauses;
4102   OMP_TASK_BODY (stmt) = body;
4103
4104   return add_stmt (stmt);
4105 }
4106
4107 /* Helper function for finish_omp_for.  Convert Ith random access iterator
4108    into integral iterator.  Return FALSE if successful.  */
4109
4110 static bool
4111 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
4112                                tree condv, tree incrv, tree *body,
4113                                tree *pre_body, tree clauses)
4114 {
4115   tree diff, iter_init, iter_incr = NULL, last;
4116   tree incr_var = NULL, orig_pre_body, orig_body, c;
4117   tree decl = TREE_VEC_ELT (declv, i);
4118   tree init = TREE_VEC_ELT (initv, i);
4119   tree cond = TREE_VEC_ELT (condv, i);
4120   tree incr = TREE_VEC_ELT (incrv, i);
4121   tree iter = decl;
4122   location_t elocus = locus;
4123
4124   if (init && EXPR_HAS_LOCATION (init))
4125     elocus = EXPR_LOCATION (init);
4126
4127   switch (TREE_CODE (cond))
4128     {
4129     case GT_EXPR:
4130     case GE_EXPR:
4131     case LT_EXPR:
4132     case LE_EXPR:
4133       if (TREE_OPERAND (cond, 1) == iter)
4134         cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
4135                        TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
4136       if (TREE_OPERAND (cond, 0) != iter)
4137         cond = error_mark_node;
4138       else
4139         {
4140           tree tem = build_x_binary_op (TREE_CODE (cond), iter, ERROR_MARK,
4141                                         TREE_OPERAND (cond, 1), ERROR_MARK,
4142                                         NULL, tf_warning_or_error);
4143           if (error_operand_p (tem))
4144             return true;
4145         }
4146       break;
4147     default:
4148       cond = error_mark_node;
4149       break;
4150     }
4151   if (cond == error_mark_node)
4152     {
4153       error_at (elocus, "invalid controlling predicate");
4154       return true;
4155     }
4156   diff = build_x_binary_op (MINUS_EXPR, TREE_OPERAND (cond, 1),
4157                             ERROR_MARK, iter, ERROR_MARK, NULL,
4158                             tf_warning_or_error);
4159   if (error_operand_p (diff))
4160     return true;
4161   if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
4162     {
4163       error_at (elocus, "difference between %qE and %qD does not have integer type",
4164                 TREE_OPERAND (cond, 1), iter);
4165       return true;
4166     }
4167
4168   switch (TREE_CODE (incr))
4169     {
4170     case PREINCREMENT_EXPR:
4171     case PREDECREMENT_EXPR:
4172     case POSTINCREMENT_EXPR:
4173     case POSTDECREMENT_EXPR:
4174       if (TREE_OPERAND (incr, 0) != iter)
4175         {
4176           incr = error_mark_node;
4177           break;
4178         }
4179       iter_incr = build_x_unary_op (TREE_CODE (incr), iter,
4180                                     tf_warning_or_error);
4181       if (error_operand_p (iter_incr))
4182         return true;
4183       else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4184                || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4185         incr = integer_one_node;
4186       else
4187         incr = integer_minus_one_node;
4188       break;
4189     case MODIFY_EXPR:
4190       if (TREE_OPERAND (incr, 0) != iter)
4191         incr = error_mark_node;
4192       else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4193                || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4194         {
4195           tree rhs = TREE_OPERAND (incr, 1);
4196           if (TREE_OPERAND (rhs, 0) == iter)
4197             {
4198               if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4199                   != INTEGER_TYPE)
4200                 incr = error_mark_node;
4201               else
4202                 {
4203                   iter_incr = build_x_modify_expr (iter, TREE_CODE (rhs),
4204                                                    TREE_OPERAND (rhs, 1),
4205                                                    tf_warning_or_error);
4206                   if (error_operand_p (iter_incr))
4207                     return true;
4208                   incr = TREE_OPERAND (rhs, 1);
4209                   incr = cp_convert (TREE_TYPE (diff), incr);
4210                   if (TREE_CODE (rhs) == MINUS_EXPR)
4211                     {
4212                       incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4213                       incr = fold_if_not_in_template (incr);
4214                     }
4215                   if (TREE_CODE (incr) != INTEGER_CST
4216                       && (TREE_CODE (incr) != NOP_EXPR
4217                           || (TREE_CODE (TREE_OPERAND (incr, 0))
4218                               != INTEGER_CST)))
4219                     iter_incr = NULL;
4220                 }
4221             }
4222           else if (TREE_OPERAND (rhs, 1) == iter)
4223             {
4224               if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4225                   || TREE_CODE (rhs) != PLUS_EXPR)
4226                 incr = error_mark_node;
4227               else
4228                 {
4229                   iter_incr = build_x_binary_op (PLUS_EXPR,
4230                                                  TREE_OPERAND (rhs, 0),
4231                                                  ERROR_MARK, iter,
4232                                                  ERROR_MARK, NULL,
4233                                                  tf_warning_or_error);
4234                   if (error_operand_p (iter_incr))
4235                     return true;
4236                   iter_incr = build_x_modify_expr (iter, NOP_EXPR,
4237                                                    iter_incr,
4238                                                    tf_warning_or_error);
4239                   if (error_operand_p (iter_incr))
4240                     return true;
4241                   incr = TREE_OPERAND (rhs, 0);
4242                   iter_incr = NULL;
4243                 }
4244             }
4245           else
4246             incr = error_mark_node;
4247         }
4248       else
4249         incr = error_mark_node;
4250       break;
4251     default:
4252       incr = error_mark_node;
4253       break;
4254     }
4255
4256   if (incr == error_mark_node)
4257     {
4258       error_at (elocus, "invalid increment expression");
4259       return true;
4260     }
4261
4262   incr = cp_convert (TREE_TYPE (diff), incr);
4263   for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4264     if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4265         && OMP_CLAUSE_DECL (c) == iter)
4266       break;
4267
4268   decl = create_temporary_var (TREE_TYPE (diff));
4269   pushdecl (decl);
4270   add_decl_expr (decl);
4271   last = create_temporary_var (TREE_TYPE (diff));
4272   pushdecl (last);
4273   add_decl_expr (last);
4274   if (c && iter_incr == NULL)
4275     {
4276       incr_var = create_temporary_var (TREE_TYPE (diff));
4277       pushdecl (incr_var);
4278       add_decl_expr (incr_var);
4279     }
4280   gcc_assert (stmts_are_full_exprs_p ());
4281
4282   orig_pre_body = *pre_body;
4283   *pre_body = push_stmt_list ();
4284   if (orig_pre_body)
4285     add_stmt (orig_pre_body);
4286   if (init != NULL)
4287     finish_expr_stmt (build_x_modify_expr (iter, NOP_EXPR, init,
4288                                            tf_warning_or_error));
4289   init = build_int_cst (TREE_TYPE (diff), 0);
4290   if (c && iter_incr == NULL)
4291     {
4292       finish_expr_stmt (build_x_modify_expr (incr_var, NOP_EXPR,
4293                                              incr, tf_warning_or_error));
4294       incr = incr_var;
4295       iter_incr = build_x_modify_expr (iter, PLUS_EXPR, incr,
4296                                        tf_warning_or_error);
4297     }
4298   finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, init,
4299                                          tf_warning_or_error));
4300   *pre_body = pop_stmt_list (*pre_body);
4301
4302   cond = cp_build_binary_op (elocus,
4303                              TREE_CODE (cond), decl, diff,
4304                              tf_warning_or_error);
4305   incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
4306                             elocus, incr, NULL_TREE);
4307
4308   orig_body = *body;
4309   *body = push_stmt_list ();
4310   iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4311   iter_init = build_x_modify_expr (iter, PLUS_EXPR, iter_init,
4312                                    tf_warning_or_error);
4313   iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4314   finish_expr_stmt (iter_init);
4315   finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, decl,
4316                                          tf_warning_or_error));
4317   add_stmt (orig_body);
4318   *body = pop_stmt_list (*body);
4319
4320   if (c)
4321     {
4322       OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4323       finish_expr_stmt (iter_incr);
4324       OMP_CLAUSE_LASTPRIVATE_STMT (c)
4325         = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4326     }
4327
4328   TREE_VEC_ELT (declv, i) = decl;
4329   TREE_VEC_ELT (initv, i) = init;
4330   TREE_VEC_ELT (condv, i) = cond;
4331   TREE_VEC_ELT (incrv, i) = incr;
4332
4333   return false;
4334 }
4335
4336 /* Build and validate an OMP_FOR statement.  CLAUSES, BODY, COND, INCR
4337    are directly for their associated operands in the statement.  DECL
4338    and INIT are a combo; if DECL is NULL then INIT ought to be a
4339    MODIFY_EXPR, and the DECL should be extracted.  PRE_BODY are
4340    optional statements that need to go before the loop into its
4341    sk_omp scope.  */
4342
4343 tree
4344 finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4345                 tree incrv, tree body, tree pre_body, tree clauses)
4346 {
4347   tree omp_for = NULL, orig_incr = NULL;
4348   tree decl, init, cond, incr;
4349   location_t elocus;
4350   int i;
4351
4352   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4353   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4354   gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4355   for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4356     {
4357       decl = TREE_VEC_ELT (declv, i);
4358       init = TREE_VEC_ELT (initv, i);
4359       cond = TREE_VEC_ELT (condv, i);
4360       incr = TREE_VEC_ELT (incrv, i);
4361       elocus = locus;
4362
4363       if (decl == NULL)
4364         {
4365           if (init != NULL)
4366             switch (TREE_CODE (init))
4367               {
4368               case MODIFY_EXPR:
4369                 decl = TREE_OPERAND (init, 0);
4370                 init = TREE_OPERAND (init, 1);
4371                 break;
4372               case MODOP_EXPR:
4373                 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4374                   {
4375                     decl = TREE_OPERAND (init, 0);
4376                     init = TREE_OPERAND (init, 2);
4377                   }
4378                 break;
4379               default:
4380                 break;
4381               }
4382
4383           if (decl == NULL)
4384             {
4385               error_at (locus,
4386                         "expected iteration declaration or initialization");
4387               return NULL;
4388             }
4389         }
4390
4391       if (init && EXPR_HAS_LOCATION (init))
4392         elocus = EXPR_LOCATION (init);
4393
4394       if (cond == NULL)
4395         {
4396           error_at (elocus, "missing controlling predicate");
4397           return NULL;
4398         }
4399
4400       if (incr == NULL)
4401         {
4402           error_at (elocus, "missing increment expression");
4403           return NULL;
4404         }
4405
4406       TREE_VEC_ELT (declv, i) = decl;
4407       TREE_VEC_ELT (initv, i) = init;
4408     }
4409
4410   if (dependent_omp_for_p (declv, initv, condv, incrv))
4411     {
4412       tree stmt;
4413
4414       stmt = make_node (OMP_FOR);
4415
4416       for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4417         {
4418           /* This is really just a place-holder.  We'll be decomposing this
4419              again and going through the cp_build_modify_expr path below when
4420              we instantiate the thing.  */
4421           TREE_VEC_ELT (initv, i)
4422             = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4423                       TREE_VEC_ELT (initv, i));
4424         }
4425
4426       TREE_TYPE (stmt) = void_type_node;
4427       OMP_FOR_INIT (stmt) = initv;
4428       OMP_FOR_COND (stmt) = condv;
4429       OMP_FOR_INCR (stmt) = incrv;
4430       OMP_FOR_BODY (stmt) = body;
4431       OMP_FOR_PRE_BODY (stmt) = pre_body;
4432       OMP_FOR_CLAUSES (stmt) = clauses;
4433
4434       SET_EXPR_LOCATION (stmt, locus);
4435       return add_stmt (stmt);
4436     }
4437
4438   if (processing_template_decl)
4439     orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
4440
4441   for (i = 0; i < TREE_VEC_LENGTH (declv); )
4442     {
4443       decl = TREE_VEC_ELT (declv, i);
4444       init = TREE_VEC_ELT (initv, i);
4445       cond = TREE_VEC_ELT (condv, i);
4446       incr = TREE_VEC_ELT (incrv, i);
4447       if (orig_incr)
4448         TREE_VEC_ELT (orig_incr, i) = incr;
4449       elocus = locus;
4450
4451       if (init && EXPR_HAS_LOCATION (init))
4452         elocus = EXPR_LOCATION (init);
4453
4454       if (!DECL_P (decl))
4455         {
4456           error_at (elocus, "expected iteration declaration or initialization");
4457           return NULL;
4458         }
4459
4460       if (incr && TREE_CODE (incr) == MODOP_EXPR)
4461         {
4462           if (orig_incr)
4463             TREE_VEC_ELT (orig_incr, i) = incr;
4464           incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4465                                        TREE_CODE (TREE_OPERAND (incr, 1)),
4466                                        TREE_OPERAND (incr, 2),
4467                                        tf_warning_or_error);
4468         }
4469
4470       if (CLASS_TYPE_P (TREE_TYPE (decl)))
4471         {
4472           if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4473                                              incrv, &body, &pre_body, clauses))
4474             return NULL;
4475           continue;
4476         }
4477
4478       if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4479           && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4480         {
4481           error_at (elocus, "invalid type for iteration variable %qE", decl);
4482           return NULL;
4483         }
4484
4485       if (!processing_template_decl)
4486         {
4487           init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4488           init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4489         }
4490       else
4491         init = build2 (MODIFY_EXPR, void_type_node, decl, init);
4492       if (cond
4493           && TREE_SIDE_EFFECTS (cond)
4494           && COMPARISON_CLASS_P (cond)
4495           && !processing_template_decl)
4496         {
4497           tree t = TREE_OPERAND (cond, 0);
4498           if (TREE_SIDE_EFFECTS (t)
4499               && t != decl
4500               && (TREE_CODE (t) != NOP_EXPR
4501                   || TREE_OPERAND (t, 0) != decl))
4502             TREE_OPERAND (cond, 0)
4503               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4504
4505           t = TREE_OPERAND (cond, 1);
4506           if (TREE_SIDE_EFFECTS (t)
4507               && t != decl
4508               && (TREE_CODE (t) != NOP_EXPR
4509                   || TREE_OPERAND (t, 0) != decl))
4510             TREE_OPERAND (cond, 1)
4511               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4512         }
4513       if (decl == error_mark_node || init == error_mark_node)
4514         return NULL;
4515
4516       TREE_VEC_ELT (declv, i) = decl;
4517       TREE_VEC_ELT (initv, i) = init;
4518       TREE_VEC_ELT (condv, i) = cond;
4519       TREE_VEC_ELT (incrv, i) = incr;
4520       i++;
4521     }
4522
4523   if (IS_EMPTY_STMT (pre_body))
4524     pre_body = NULL;
4525
4526   omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4527                               body, pre_body);
4528
4529   if (omp_for == NULL)
4530     return NULL;
4531
4532   for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
4533     {
4534       decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4535       incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
4536
4537       if (TREE_CODE (incr) != MODIFY_EXPR)
4538         continue;
4539
4540       if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
4541           && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4542           && !processing_template_decl)
4543         {
4544           tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4545           if (TREE_SIDE_EFFECTS (t)
4546               && t != decl
4547               && (TREE_CODE (t) != NOP_EXPR
4548                   || TREE_OPERAND (t, 0) != decl))
4549             TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4550               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4551
4552           t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4553           if (TREE_SIDE_EFFECTS (t)
4554               && t != decl
4555               && (TREE_CODE (t) != NOP_EXPR
4556                   || TREE_OPERAND (t, 0) != decl))
4557             TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4558               = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4559         }
4560
4561       if (orig_incr)
4562         TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
4563     }
4564   if (omp_for != NULL)
4565     OMP_FOR_CLAUSES (omp_for) = clauses;
4566   return omp_for;
4567 }
4568
4569 void
4570 finish_omp_atomic (enum tree_code code, tree lhs, tree rhs)
4571 {
4572   tree orig_lhs;
4573   tree orig_rhs;
4574   bool dependent_p;
4575   tree stmt;
4576
4577   orig_lhs = lhs;
4578   orig_rhs = rhs;
4579   dependent_p = false;
4580   stmt = NULL_TREE;
4581
4582   /* Even in a template, we can detect invalid uses of the atomic
4583      pragma if neither LHS nor RHS is type-dependent.  */
4584   if (processing_template_decl)
4585     {
4586       dependent_p = (type_dependent_expression_p (lhs)
4587                      || type_dependent_expression_p (rhs));
4588       if (!dependent_p)
4589         {
4590           lhs = build_non_dependent_expr (lhs);
4591           rhs = build_non_dependent_expr (rhs);
4592         }
4593     }
4594   if (!dependent_p)
4595     {
4596       stmt = c_finish_omp_atomic (input_location, code, lhs, rhs);
4597       if (stmt == error_mark_node)
4598         return;
4599     }
4600   if (processing_template_decl)
4601     stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node,
4602                    build2 (code, void_type_node, orig_lhs, orig_rhs));
4603   add_stmt (stmt);
4604 }
4605
4606 void
4607 finish_omp_barrier (void)
4608 {
4609   tree fn = built_in_decls[BUILT_IN_GOMP_BARRIER];
4610   VEC(tree,gc) *vec = make_tree_vector ();
4611   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4612   release_tree_vector (vec);
4613   finish_expr_stmt (stmt);
4614 }
4615
4616 void
4617 finish_omp_flush (void)
4618 {
4619   tree fn = built_in_decls[BUILT_IN_SYNCHRONIZE];
4620   VEC(tree,gc) *vec = make_tree_vector ();
4621   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4622   release_tree_vector (vec);
4623   finish_expr_stmt (stmt);
4624 }
4625
4626 void
4627 finish_omp_taskwait (void)
4628 {
4629   tree fn = built_in_decls[BUILT_IN_GOMP_TASKWAIT];
4630   VEC(tree,gc) *vec = make_tree_vector ();
4631   tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4632   release_tree_vector (vec);
4633   finish_expr_stmt (stmt);
4634 }
4635 \f
4636 void
4637 init_cp_semantics (void)
4638 {
4639 }
4640 \f
4641 /* Build a STATIC_ASSERT for a static assertion with the condition
4642    CONDITION and the message text MESSAGE.  LOCATION is the location
4643    of the static assertion in the source code.  When MEMBER_P, this
4644    static assertion is a member of a class.  */
4645 void 
4646 finish_static_assert (tree condition, tree message, location_t location, 
4647                       bool member_p)
4648 {
4649   if (check_for_bare_parameter_packs (condition))
4650     condition = error_mark_node;
4651
4652   if (type_dependent_expression_p (condition) 
4653       || value_dependent_expression_p (condition))
4654     {
4655       /* We're in a template; build a STATIC_ASSERT and put it in
4656          the right place. */
4657       tree assertion;
4658
4659       assertion = make_node (STATIC_ASSERT);
4660       STATIC_ASSERT_CONDITION (assertion) = condition;
4661       STATIC_ASSERT_MESSAGE (assertion) = message;
4662       STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
4663
4664       if (member_p)
4665         maybe_add_class_template_decl_list (current_class_type, 
4666                                             assertion,
4667                                             /*friend_p=*/0);
4668       else
4669         add_stmt (assertion);
4670
4671       return;
4672     }
4673
4674   /* Fold the expression and convert it to a boolean value. */
4675   condition = fold_non_dependent_expr (condition);
4676   condition = cp_convert (boolean_type_node, condition);
4677   condition = maybe_constant_value (condition);
4678
4679   if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
4680     /* Do nothing; the condition is satisfied. */
4681     ;
4682   else 
4683     {
4684       location_t saved_loc = input_location;
4685
4686       input_location = location;
4687       if (TREE_CODE (condition) == INTEGER_CST 
4688           && integer_zerop (condition))
4689         /* Report the error. */
4690         error ("static assertion failed: %E", message);
4691       else if (condition && condition != error_mark_node)
4692         {
4693           error ("non-constant condition for static assertion");
4694           cxx_constant_value (condition);
4695         }
4696       input_location = saved_loc;
4697     }
4698 }
4699 \f
4700 /* Returns the type of EXPR for cases where we can determine it even though
4701    EXPR is a type-dependent expression.  */
4702
4703 tree
4704 describable_type (tree expr)
4705 {
4706   tree type = NULL_TREE;
4707
4708   if (! type_dependent_expression_p (expr)
4709       && ! type_unknown_p (expr))
4710     {
4711       type = unlowered_expr_type (expr);
4712       if (real_lvalue_p (expr))
4713         type = build_reference_type (type);
4714     }
4715
4716   if (type)
4717     return type;
4718
4719   switch (TREE_CODE (expr))
4720     {
4721     case VAR_DECL:
4722     case PARM_DECL:
4723     case RESULT_DECL:
4724     case FUNCTION_DECL:
4725       return TREE_TYPE (expr);
4726       break;
4727
4728     case NEW_EXPR:
4729     case CONST_DECL:
4730     case TEMPLATE_PARM_INDEX:
4731     case CAST_EXPR:
4732     case STATIC_CAST_EXPR:
4733     case REINTERPRET_CAST_EXPR:
4734     case CONST_CAST_EXPR:
4735     case DYNAMIC_CAST_EXPR:
4736       type = TREE_TYPE (expr);
4737       break;
4738
4739     case INDIRECT_REF:
4740       {
4741         tree ptrtype = describable_type (TREE_OPERAND (expr, 0));
4742         if (ptrtype && POINTER_TYPE_P (ptrtype))
4743           type = build_reference_type (TREE_TYPE (ptrtype));
4744       }
4745       break;
4746
4747     default:
4748       if (TREE_CODE_CLASS (TREE_CODE (expr)) == tcc_constant)
4749         type = TREE_TYPE (expr);
4750       break;
4751     }
4752
4753   if (type && type_uses_auto (type))
4754     return NULL_TREE;
4755   else
4756     return type;
4757 }
4758
4759 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
4760    suitable for use as a type-specifier.
4761
4762    ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
4763    id-expression or a class member access, FALSE when it was parsed as
4764    a full expression.  */
4765
4766 tree
4767 finish_decltype_type (tree expr, bool id_expression_or_member_access_p)
4768 {
4769   tree orig_expr = expr;
4770   tree type = NULL_TREE;
4771
4772   if (!expr || error_operand_p (expr))
4773     return error_mark_node;
4774
4775   if (TYPE_P (expr)
4776       || TREE_CODE (expr) == TYPE_DECL
4777       || (TREE_CODE (expr) == BIT_NOT_EXPR
4778           && TYPE_P (TREE_OPERAND (expr, 0))))
4779     {
4780       error ("argument to decltype must be an expression");
4781       return error_mark_node;
4782     }
4783
4784   /* FIXME instantiation-dependent  */
4785   if (type_dependent_expression_p (expr)
4786       /* In a template, a COMPONENT_REF has an IDENTIFIER_NODE for op1 even
4787          if it isn't dependent, so that we can check access control at
4788          instantiation time, so defer the decltype as well (PR 42277).  */
4789       || (id_expression_or_member_access_p
4790           && processing_template_decl
4791           && TREE_CODE (expr) == COMPONENT_REF))
4792     {
4793       type = cxx_make_type (DECLTYPE_TYPE);
4794       DECLTYPE_TYPE_EXPR (type) = expr;
4795       DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
4796         = id_expression_or_member_access_p;
4797       SET_TYPE_STRUCTURAL_EQUALITY (type);
4798
4799       return type;
4800     }
4801
4802   /* The type denoted by decltype(e) is defined as follows:  */
4803
4804   expr = resolve_nondeduced_context (expr);
4805
4806   /* To get the size of a static data member declared as an array of
4807      unknown bound, we need to instantiate it.  */
4808   if (TREE_CODE (expr) == VAR_DECL
4809       && VAR_HAD_UNKNOWN_BOUND (expr)
4810       && DECL_TEMPLATE_INSTANTIATION (expr))
4811     instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
4812
4813   if (id_expression_or_member_access_p)
4814     {
4815       /* If e is an id-expression or a class member access (5.2.5
4816          [expr.ref]), decltype(e) is defined as the type of the entity
4817          named by e. If there is no such entity, or e names a set of
4818          overloaded functions, the program is ill-formed.  */
4819       if (TREE_CODE (expr) == IDENTIFIER_NODE)
4820         expr = lookup_name (expr);
4821
4822       if (TREE_CODE (expr) == INDIRECT_REF)
4823         /* This can happen when the expression is, e.g., "a.b". Just
4824            look at the underlying operand.  */
4825         expr = TREE_OPERAND (expr, 0);
4826
4827       if (TREE_CODE (expr) == OFFSET_REF
4828           || TREE_CODE (expr) == MEMBER_REF)
4829         /* We're only interested in the field itself. If it is a
4830            BASELINK, we will need to see through it in the next
4831            step.  */
4832         expr = TREE_OPERAND (expr, 1);
4833
4834       if (TREE_CODE (expr) == BASELINK)
4835         /* See through BASELINK nodes to the underlying functions.  */
4836         expr = BASELINK_FUNCTIONS (expr);
4837
4838       if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
4839         expr = TREE_OPERAND (expr, 0);
4840
4841       if (TREE_CODE (expr) == OVERLOAD)
4842         {
4843           if (OVL_CHAIN (expr)
4844               || TREE_CODE (OVL_FUNCTION (expr)) == TEMPLATE_DECL)
4845             {
4846               error ("%qE refers to a set of overloaded functions", orig_expr);
4847               return error_mark_node;
4848             }
4849           else
4850             /* An overload set containing only one function: just look
4851                at that function.  */
4852             expr = OVL_FUNCTION (expr);
4853         }
4854
4855       switch (TREE_CODE (expr))
4856         {
4857         case FIELD_DECL:
4858           if (DECL_BIT_FIELD_TYPE (expr))
4859             {
4860               type = DECL_BIT_FIELD_TYPE (expr);
4861               break;
4862             }
4863           /* Fall through for fields that aren't bitfields.  */
4864
4865         case FUNCTION_DECL:
4866         case VAR_DECL:
4867         case CONST_DECL:
4868         case PARM_DECL:
4869         case RESULT_DECL:
4870         case TEMPLATE_PARM_INDEX:
4871           expr = mark_type_use (expr);
4872           type = TREE_TYPE (expr);
4873           break;
4874
4875         case ERROR_MARK:
4876           type = error_mark_node;
4877           break;
4878
4879         case COMPONENT_REF:
4880           mark_type_use (expr);
4881           type = is_bitfield_expr_with_lowered_type (expr);
4882           if (!type)
4883             type = TREE_TYPE (TREE_OPERAND (expr, 1));
4884           break;
4885
4886         case BIT_FIELD_REF:
4887           gcc_unreachable ();
4888
4889         case INTEGER_CST:
4890           /* We can get here when the id-expression refers to an
4891              enumerator.  */
4892           type = TREE_TYPE (expr);
4893           break;
4894
4895         default:
4896           gcc_assert (TYPE_P (expr) || DECL_P (expr)
4897                       || TREE_CODE (expr) == SCOPE_REF);
4898           error ("argument to decltype must be an expression");
4899           return error_mark_node;
4900         }
4901     }
4902   else
4903     {
4904       /* Within a lambda-expression:
4905
4906          Every occurrence of decltype((x)) where x is a possibly
4907          parenthesized id-expression that names an entity of
4908          automatic storage duration is treated as if x were
4909          transformed into an access to a corresponding data member
4910          of the closure type that would have been declared if x
4911          were a use of the denoted entity.  */
4912       if (outer_automatic_var_p (expr)
4913           && current_function_decl
4914           && LAMBDA_FUNCTION_P (current_function_decl))
4915         type = capture_decltype (expr);
4916       else if (error_operand_p (expr))
4917         type = error_mark_node;
4918       else if (expr == current_class_ptr)
4919         /* If the expression is just "this", we want the
4920            cv-unqualified pointer for the "this" type.  */
4921         type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
4922       else
4923         {
4924           /* Otherwise, where T is the type of e, if e is an lvalue,
4925              decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
4926           cp_lvalue_kind clk = lvalue_kind (expr);
4927           type = unlowered_expr_type (expr);
4928           gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
4929           if (clk != clk_none && !(clk & clk_class))
4930             type = cp_build_reference_type (type, (clk & clk_rvalueref));
4931         }
4932     }
4933
4934   if (!type || type == unknown_type_node)
4935     {
4936       error ("type of %qE is unknown", expr);
4937       return error_mark_node;
4938     }
4939
4940   return type;
4941 }
4942
4943 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or 
4944    __has_nothrow_copy, depending on assign_p.  */
4945
4946 static bool
4947 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
4948 {
4949   tree fns;
4950
4951   if (assign_p)
4952     {
4953       int ix;
4954       ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
4955       if (ix < 0)
4956         return false;
4957       fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
4958     } 
4959   else if (TYPE_HAS_COPY_CTOR (type))
4960     {
4961       /* If construction of the copy constructor was postponed, create
4962          it now.  */
4963       if (CLASSTYPE_LAZY_COPY_CTOR (type))
4964         lazily_declare_fn (sfk_copy_constructor, type);
4965       if (CLASSTYPE_LAZY_MOVE_CTOR (type))
4966         lazily_declare_fn (sfk_move_constructor, type);
4967       fns = CLASSTYPE_CONSTRUCTORS (type);
4968     }
4969   else
4970     return false;
4971
4972   for (; fns; fns = OVL_NEXT (fns))
4973     {
4974       tree fn = OVL_CURRENT (fns);
4975  
4976       if (assign_p)
4977         {
4978           if (copy_fn_p (fn) == 0)
4979             continue;
4980         }
4981       else if (copy_fn_p (fn) <= 0)
4982         continue;
4983
4984       if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
4985         return false;
4986     }
4987
4988   return true;
4989 }
4990
4991 /* Actually evaluates the trait.  */
4992
4993 static bool
4994 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
4995 {
4996   enum tree_code type_code1;
4997   tree t;
4998
4999   type_code1 = TREE_CODE (type1);
5000
5001   switch (kind)
5002     {
5003     case CPTK_HAS_NOTHROW_ASSIGN:
5004       type1 = strip_array_types (type1);
5005       return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5006               && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
5007                   || (CLASS_TYPE_P (type1)
5008                       && classtype_has_nothrow_assign_or_copy_p (type1,
5009                                                                  true))));
5010
5011     case CPTK_HAS_TRIVIAL_ASSIGN:
5012       /* ??? The standard seems to be missing the "or array of such a class
5013          type" wording for this trait.  */
5014       type1 = strip_array_types (type1);
5015       return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5016               && (trivial_type_p (type1)
5017                     || (CLASS_TYPE_P (type1)
5018                         && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
5019
5020     case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5021       type1 = strip_array_types (type1);
5022       return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2) 
5023               || (CLASS_TYPE_P (type1)
5024                   && (t = locate_ctor (type1))
5025                   && TYPE_NOTHROW_P (TREE_TYPE (t))));
5026
5027     case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5028       type1 = strip_array_types (type1);
5029       return (trivial_type_p (type1)
5030               || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
5031
5032     case CPTK_HAS_NOTHROW_COPY:
5033       type1 = strip_array_types (type1);
5034       return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
5035               || (CLASS_TYPE_P (type1)
5036                   && classtype_has_nothrow_assign_or_copy_p (type1, false)));
5037
5038     case CPTK_HAS_TRIVIAL_COPY:
5039       /* ??? The standard seems to be missing the "or array of such a class
5040          type" wording for this trait.  */
5041       type1 = strip_array_types (type1);
5042       return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5043               || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
5044
5045     case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5046       type1 = strip_array_types (type1);
5047       return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5048               || (CLASS_TYPE_P (type1)
5049                   && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
5050
5051     case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5052       return type_has_virtual_destructor (type1);
5053
5054     case CPTK_IS_ABSTRACT:
5055       return (CLASS_TYPE_P (type1) && CLASSTYPE_PURE_VIRTUALS (type1));
5056
5057     case CPTK_IS_BASE_OF:
5058       return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5059               && DERIVED_FROM_P (type1, type2));
5060
5061     case CPTK_IS_CLASS:
5062       return (NON_UNION_CLASS_TYPE_P (type1));
5063
5064     case CPTK_IS_CONVERTIBLE_TO:
5065       /* TODO  */
5066       return false;
5067
5068     case CPTK_IS_EMPTY:
5069       return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
5070
5071     case CPTK_IS_ENUM:
5072       return (type_code1 == ENUMERAL_TYPE);
5073
5074     case CPTK_IS_POD:
5075       return (pod_type_p (type1));
5076
5077     case CPTK_IS_POLYMORPHIC:
5078       return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
5079
5080     case CPTK_IS_STD_LAYOUT:
5081       return (std_layout_type_p (type1));
5082
5083     case CPTK_IS_TRIVIAL:
5084       return (trivial_type_p (type1));
5085
5086     case CPTK_IS_UNION:
5087       return (type_code1 == UNION_TYPE);
5088
5089     case CPTK_IS_LITERAL_TYPE:
5090       return (literal_type_p (type1));
5091
5092     default:
5093       gcc_unreachable ();
5094       return false;
5095     }
5096 }
5097
5098 /* Returns true if TYPE is a complete type, an array of unknown bound,
5099    or (possibly cv-qualified) void, returns false otherwise.  */
5100
5101 static bool
5102 check_trait_type (tree type)
5103 {
5104   if (COMPLETE_TYPE_P (type))
5105     return true;
5106
5107   if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
5108       && COMPLETE_TYPE_P (TREE_TYPE (type)))
5109     return true;
5110
5111   if (VOID_TYPE_P (type))
5112     return true;
5113
5114   return false;
5115 }
5116
5117 /* Process a trait expression.  */
5118
5119 tree
5120 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
5121 {
5122   gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
5123               || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
5124               || kind == CPTK_HAS_NOTHROW_COPY
5125               || kind == CPTK_HAS_TRIVIAL_ASSIGN
5126               || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
5127               || kind == CPTK_HAS_TRIVIAL_COPY
5128               || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
5129               || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR          
5130               || kind == CPTK_IS_ABSTRACT
5131               || kind == CPTK_IS_BASE_OF
5132               || kind == CPTK_IS_CLASS
5133               || kind == CPTK_IS_CONVERTIBLE_TO
5134               || kind == CPTK_IS_EMPTY
5135               || kind == CPTK_IS_ENUM
5136               || kind == CPTK_IS_POD
5137               || kind == CPTK_IS_POLYMORPHIC
5138               || kind == CPTK_IS_STD_LAYOUT
5139               || kind == CPTK_IS_TRIVIAL
5140               || kind == CPTK_IS_LITERAL_TYPE
5141               || kind == CPTK_IS_UNION);
5142
5143   if (kind == CPTK_IS_CONVERTIBLE_TO)
5144     {
5145       sorry ("__is_convertible_to");
5146       return error_mark_node;
5147     }
5148
5149   if (type1 == error_mark_node
5150       || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5151           && type2 == error_mark_node))
5152     return error_mark_node;
5153
5154   if (processing_template_decl)
5155     {
5156       tree trait_expr = make_node (TRAIT_EXPR);
5157       TREE_TYPE (trait_expr) = boolean_type_node;
5158       TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5159       TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5160       TRAIT_EXPR_KIND (trait_expr) = kind;
5161       return trait_expr;
5162     }
5163
5164   complete_type (type1);
5165   if (type2)
5166     complete_type (type2);
5167
5168   switch (kind)
5169     {
5170     case CPTK_HAS_NOTHROW_ASSIGN:
5171     case CPTK_HAS_TRIVIAL_ASSIGN:
5172     case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5173     case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5174     case CPTK_HAS_NOTHROW_COPY:
5175     case CPTK_HAS_TRIVIAL_COPY:
5176     case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5177     case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5178     case CPTK_IS_ABSTRACT:
5179     case CPTK_IS_EMPTY:
5180     case CPTK_IS_POD:
5181     case CPTK_IS_POLYMORPHIC:
5182     case CPTK_IS_STD_LAYOUT:
5183     case CPTK_IS_TRIVIAL:
5184     case CPTK_IS_LITERAL_TYPE:
5185       if (!check_trait_type (type1))
5186         {
5187           error ("incomplete type %qT not allowed", type1);
5188           return error_mark_node;
5189         }
5190       break;
5191
5192     case CPTK_IS_BASE_OF:
5193       if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5194           && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5195           && !COMPLETE_TYPE_P (type2))
5196         {
5197           error ("incomplete type %qT not allowed", type2);
5198           return error_mark_node;
5199         }
5200       break;
5201
5202     case CPTK_IS_CLASS:
5203     case CPTK_IS_ENUM:
5204     case CPTK_IS_UNION:
5205       break;
5206     
5207     case CPTK_IS_CONVERTIBLE_TO:
5208     default:
5209       gcc_unreachable ();
5210     }
5211
5212   return (trait_expr_value (kind, type1, type2)
5213           ? boolean_true_node : boolean_false_node);
5214 }
5215
5216 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5217    which is ignored for C++.  */
5218
5219 void
5220 set_float_const_decimal64 (void)
5221 {
5222 }
5223
5224 void
5225 clear_float_const_decimal64 (void)
5226 {
5227 }
5228
5229 bool
5230 float_const_decimal64_p (void)
5231 {
5232   return 0;
5233 }
5234
5235 \f
5236 /* Return true if T is a literal type.   */
5237
5238 bool
5239 literal_type_p (tree t)
5240 {
5241   if (SCALAR_TYPE_P (t))
5242     return true;
5243   if (CLASS_TYPE_P (t))
5244     return CLASSTYPE_LITERAL_P (t);
5245   if (TREE_CODE (t) == ARRAY_TYPE)
5246     return literal_type_p (strip_array_types (t));
5247   return false;
5248 }
5249
5250 /* If DECL is a variable declared `constexpr', require its type
5251    be literal.  Return the DECL if OK, otherwise NULL.  */
5252
5253 tree
5254 ensure_literal_type_for_constexpr_object (tree decl)
5255 {
5256   tree type = TREE_TYPE (decl);
5257   if (TREE_CODE (decl) == VAR_DECL && DECL_DECLARED_CONSTEXPR_P (decl)
5258       && !processing_template_decl
5259       /* The call to complete_type is just for initializer_list.  */
5260       && !literal_type_p (complete_type (type)))
5261     {
5262       error ("the type %qT of constexpr variable %qD is not literal",
5263              type, decl);
5264       return NULL;
5265     }
5266   return decl;
5267 }
5268
5269 /* Representation of entries in the constexpr function definition table.  */
5270
5271 typedef struct GTY(()) constexpr_fundef {
5272   tree decl;
5273   tree body;
5274 } constexpr_fundef;
5275
5276 /* This table holds all constexpr function definitions seen in
5277    the current translation unit.  */
5278
5279 static GTY ((param_is (constexpr_fundef))) htab_t constexpr_fundef_table;
5280
5281 /* Utility function used for managing the constexpr function table.
5282    Return true if the entries pointed to by P and Q are for the
5283    same constexpr function.  */
5284
5285 static inline int
5286 constexpr_fundef_equal (const void *p, const void *q)
5287 {
5288   const constexpr_fundef *lhs = (const constexpr_fundef *) p;
5289   const constexpr_fundef *rhs = (const constexpr_fundef *) q;
5290   return lhs->decl == rhs->decl;
5291 }
5292
5293 /* Utility function used for managing the constexpr function table.
5294    Return a hash value for the entry pointed to by Q.  */
5295
5296 static inline hashval_t
5297 constexpr_fundef_hash (const void *p)
5298 {
5299   const constexpr_fundef *fundef = (const constexpr_fundef *) p;
5300   return DECL_UID (fundef->decl);
5301 }
5302
5303 /* Return a previously saved definition of function FUN.   */
5304
5305 static constexpr_fundef *
5306 retrieve_constexpr_fundef (tree fun)
5307 {
5308   constexpr_fundef fundef = { NULL, NULL };
5309   if (constexpr_fundef_table == NULL)
5310     return NULL;
5311
5312   fundef.decl = fun;
5313   return (constexpr_fundef *) htab_find (constexpr_fundef_table, &fundef);
5314 }
5315
5316 /* Return true if type expression T is a valid parameter type, or
5317    a valid return type, of a constexpr function.  */
5318
5319 static bool
5320 valid_type_in_constexpr_fundecl_p (tree t)
5321 {
5322   return (literal_type_p (t)
5323           /* FIXME we allow ref to non-literal; should change standard to
5324              match, or change back if not.  */
5325           || TREE_CODE (t) == REFERENCE_TYPE);
5326 }
5327
5328 /* Check whether the parameter and return types of FUN are valid for a
5329    constexpr function, and complain if COMPLAIN.  */
5330
5331 static bool
5332 is_valid_constexpr_fn (tree fun, bool complain)
5333 {
5334   tree parm = FUNCTION_FIRST_USER_PARM (fun);
5335   bool ret = true;
5336   for (; parm != NULL; parm = TREE_CHAIN (parm))
5337     if (!valid_type_in_constexpr_fundecl_p (TREE_TYPE (parm)))
5338       {
5339         ret = false;
5340         if (complain)
5341           error ("invalid type for parameter %q#D of constexpr function",
5342                  parm);
5343       }
5344
5345   if (!DECL_CONSTRUCTOR_P (fun))
5346     {
5347       tree rettype = TREE_TYPE (TREE_TYPE (fun));
5348       if (!valid_type_in_constexpr_fundecl_p (rettype))
5349         {
5350           ret = false;
5351           if (complain)
5352             error ("invalid return type %qT of constexpr function %qD",
5353                    rettype, fun);
5354         }
5355
5356       if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5357           && COMPLETE_TYPE_P (DECL_CONTEXT (fun))
5358           && !valid_type_in_constexpr_fundecl_p (DECL_CONTEXT (fun)))
5359         {
5360           ret = false;
5361           if (complain)
5362             error ("enclosing class of %q#D is not a literal type", fun);
5363         }
5364     }
5365
5366   return ret;
5367 }
5368
5369 /* Return non-null if FUN certainly designates a valid constexpr function
5370    declaration.  Otherwise return NULL.  Issue appropriate diagnostics
5371    if necessary.  Note that we only check the declaration, not the body
5372    of the function.  */
5373
5374 tree
5375 validate_constexpr_fundecl (tree fun)
5376 {
5377   constexpr_fundef entry;
5378   constexpr_fundef **slot;
5379
5380   if (processing_template_decl || !DECL_DECLARED_CONSTEXPR_P (fun))
5381     return NULL;
5382   else if (DECL_CLONED_FUNCTION_P (fun))
5383     /* We already checked the original function.  */
5384     return fun;
5385
5386   if (!is_valid_constexpr_fn (fun, !DECL_TEMPLATE_INSTANTIATION (fun)))
5387     {
5388       DECL_DECLARED_CONSTEXPR_P (fun) = false;
5389       return NULL;
5390     }
5391
5392   /* Create the constexpr function table if necessary.  */
5393   if (constexpr_fundef_table == NULL)
5394     constexpr_fundef_table = htab_create_ggc (101,
5395                                               constexpr_fundef_hash,
5396                                               constexpr_fundef_equal,
5397                                               ggc_free);
5398   entry.decl = fun;
5399   entry.body = NULL;
5400   slot = (constexpr_fundef **)
5401     htab_find_slot (constexpr_fundef_table, &entry, INSERT);
5402   if (*slot == NULL)
5403     {
5404       *slot = ggc_alloc_constexpr_fundef ();
5405       **slot = entry;
5406     }
5407   return fun;
5408 }
5409
5410 /* Subroutine of  build_constexpr_constructor_member_initializers.
5411    The expression tree T represents a data member initialization
5412    in a (constexpr) constructor definition.  Build a pairing of
5413    the data member with its initializer, and prepend that pair
5414    to the existing initialization pair INITS.  */
5415
5416 static bool
5417 build_data_member_initialization (tree t, VEC(constructor_elt,gc) **vec)
5418 {
5419   tree member, init;
5420   if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
5421     t = TREE_OPERAND (t, 0);
5422   if (TREE_CODE (t) == EXPR_STMT)
5423     t = TREE_OPERAND (t, 0);
5424   if (t == error_mark_node)
5425     return false;
5426   if (TREE_CODE (t) == STATEMENT_LIST)
5427     {
5428       tree_stmt_iterator i;
5429       for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5430         {
5431           if (! build_data_member_initialization (tsi_stmt (i), vec))
5432             return false;
5433         }
5434       return true;
5435     }
5436   if (TREE_CODE (t) == CLEANUP_STMT)
5437     {
5438       /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5439          but we can in a constexpr constructor for a non-literal class.  Just
5440          ignore it; either all the initialization will be constant, in which
5441          case the cleanup can't run, or it can't be constexpr.
5442          Still recurse into CLEANUP_BODY.  */
5443       return build_data_member_initialization (CLEANUP_BODY (t), vec);
5444     }
5445   if (TREE_CODE (t) == CONVERT_EXPR)
5446     t = TREE_OPERAND (t, 0);
5447   if (TREE_CODE (t) == INIT_EXPR
5448       || TREE_CODE (t) == MODIFY_EXPR)
5449     {
5450       member = TREE_OPERAND (t, 0);
5451       init = unshare_expr (TREE_OPERAND (t, 1));
5452     }
5453   else
5454     {
5455       gcc_assert (TREE_CODE (t) == CALL_EXPR);
5456       member = CALL_EXPR_ARG (t, 0);
5457       /* We don't use build_cplus_new here because it complains about
5458          abstract bases.  Leaving the call unwrapped means that it has the
5459          wrong type, but cxx_eval_constant_expression doesn't care.  */
5460       init = unshare_expr (t);
5461     }
5462   if (TREE_CODE (member) == INDIRECT_REF)
5463     member = TREE_OPERAND (member, 0);
5464   if (TREE_CODE (member) == NOP_EXPR)
5465     {
5466       tree op = member;
5467       STRIP_NOPS (op);
5468       if (TREE_CODE (op) == ADDR_EXPR)
5469         {
5470           gcc_assert (same_type_ignoring_top_level_qualifiers_p
5471                       (TREE_TYPE (TREE_TYPE (op)),
5472                        TREE_TYPE (TREE_TYPE (member))));
5473           /* Initializing a cv-qualified member; we need to look through
5474              the const_cast.  */
5475           member = op;
5476         }
5477       else
5478         {
5479           /* We don't put out anything for an empty base.  */
5480           gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
5481           /* But if the initializer isn't constexpr, leave it in so we
5482              complain later.  */
5483           if (potential_constant_expression (init))
5484             return true;
5485         }
5486     }
5487   if (TREE_CODE (member) == ADDR_EXPR)
5488     member = TREE_OPERAND (member, 0);
5489   if (TREE_CODE (member) == COMPONENT_REF
5490       /* If we're initializing a member of a subaggregate, it's a vtable
5491          pointer.  Leave it as COMPONENT_REF so we remember the path to get
5492          to the vfield.  */
5493       && TREE_CODE (TREE_OPERAND (member, 0)) != COMPONENT_REF)
5494     member = TREE_OPERAND (member, 1);
5495   CONSTRUCTOR_APPEND_ELT (*vec, member, init);
5496   return true;
5497 }
5498
5499 /* Make sure that there are no statements after LAST in the constructor
5500    body represented by LIST.  */
5501
5502 bool
5503 check_constexpr_ctor_body (tree last, tree list)
5504 {
5505   bool ok = true;
5506   if (TREE_CODE (list) == STATEMENT_LIST)
5507     {
5508       tree_stmt_iterator i = tsi_last (list);
5509       for (; !tsi_end_p (i); tsi_prev (&i))
5510         {
5511           tree t = tsi_stmt (i);
5512           if (t == last)
5513             break;
5514           if (TREE_CODE (t) == BIND_EXPR)
5515             {
5516               if (!check_constexpr_ctor_body (last, BIND_EXPR_BODY (t)))
5517                 return false;
5518               else
5519                 continue;
5520             }
5521           /* We currently allow typedefs and static_assert.
5522              FIXME allow them in the standard, too.  */
5523           if (TREE_CODE (t) != STATIC_ASSERT)
5524             {
5525               ok = false;
5526               break;
5527             }
5528         }
5529     }
5530   else if (list != last
5531            && TREE_CODE (list) != STATIC_ASSERT)
5532     ok = false;
5533   if (!ok)
5534     {
5535       error ("constexpr constructor does not have empty body");
5536       DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
5537     }
5538   return ok;
5539 }
5540
5541 /* Build compile-time evalable representations of member-initializer list
5542    for a constexpr constructor.  */
5543
5544 static tree
5545 build_constexpr_constructor_member_initializers (tree type, tree body)
5546 {
5547   VEC(constructor_elt,gc) *vec = NULL;
5548   bool ok = true;
5549   if (TREE_CODE (body) == MUST_NOT_THROW_EXPR
5550       || TREE_CODE (body) == EH_SPEC_BLOCK)
5551     body = TREE_OPERAND (body, 0);
5552   if (TREE_CODE (body) == STATEMENT_LIST)
5553     body = STATEMENT_LIST_HEAD (body)->stmt;
5554   body = BIND_EXPR_BODY (body);
5555   if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5556     {
5557       body = TREE_OPERAND (body, 0);
5558       if (TREE_CODE (body) == EXPR_STMT)
5559         body = TREE_OPERAND (body, 0);
5560       if (TREE_CODE (body) == INIT_EXPR
5561           && (same_type_ignoring_top_level_qualifiers_p
5562               (TREE_TYPE (TREE_OPERAND (body, 0)),
5563                current_class_type)))
5564         {
5565           /* Trivial copy.  */
5566           return TREE_OPERAND (body, 1);
5567         }
5568       ok = build_data_member_initialization (body, &vec);
5569     }
5570   else if (TREE_CODE (body) == STATEMENT_LIST)
5571     {
5572       tree_stmt_iterator i;
5573       for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5574         {
5575           ok = build_data_member_initialization (tsi_stmt (i), &vec);
5576           if (!ok)
5577             break;
5578         }
5579     }
5580   else
5581     gcc_assert (errorcount > 0);
5582   if (ok)
5583     return build_constructor (type, vec);
5584   else
5585     return error_mark_node;
5586 }
5587
5588 /* Subroutine of register_constexpr_fundef.  BODY is the body of a function
5589    declared to be constexpr, or a sub-statement thereof.  Returns the
5590    return value if suitable, error_mark_node for a statement not allowed in
5591    a constexpr function, or NULL_TREE if no return value was found.  */
5592
5593 static tree
5594 constexpr_fn_retval (tree body)
5595 {
5596   switch (TREE_CODE (body))
5597     {
5598     case STATEMENT_LIST:
5599       {
5600         tree_stmt_iterator i;
5601         tree expr = NULL_TREE;
5602         for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5603           {
5604             tree s = constexpr_fn_retval (tsi_stmt (i));
5605             if (s == error_mark_node)
5606               return error_mark_node;
5607             else if (s == NULL_TREE)
5608               /* Keep iterating.  */;
5609             else if (expr)
5610               /* Multiple return statements.  */
5611               return error_mark_node;
5612             else
5613               expr = s;
5614           }
5615         return expr;
5616       }
5617
5618     case RETURN_EXPR:
5619       return unshare_expr (TREE_OPERAND (body, 0));
5620
5621     case DECL_EXPR:
5622       if (TREE_CODE (DECL_EXPR_DECL (body)) == USING_DECL)
5623         return NULL_TREE;
5624       return error_mark_node;
5625
5626     case USING_STMT:
5627       return NULL_TREE;
5628
5629     default:
5630       return error_mark_node;
5631     }
5632 }
5633
5634 /* We are processing the definition of the constexpr function FUN.
5635    Check that its BODY fulfills the propriate requirements and
5636    enter it in the constexpr function definition table.
5637    For constructor BODY is actually the TREE_LIST of the
5638    member-initializer list.  */
5639
5640 tree
5641 register_constexpr_fundef (tree fun, tree body)
5642 {
5643   constexpr_fundef *fundef = retrieve_constexpr_fundef (fun);
5644   gcc_assert (fundef != NULL && fundef->body == NULL);
5645
5646   if (DECL_CONSTRUCTOR_P (fun))
5647     body = build_constexpr_constructor_member_initializers
5648       (DECL_CONTEXT (fun), body);
5649   else
5650     {
5651       if (TREE_CODE (body) == BIND_EXPR)
5652         body = BIND_EXPR_BODY (body);
5653       if (TREE_CODE (body) == EH_SPEC_BLOCK)
5654         body = EH_SPEC_STMTS (body);
5655       if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
5656         body = TREE_OPERAND (body, 0);
5657       if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5658         body = TREE_OPERAND (body, 0);
5659       body = constexpr_fn_retval (body);
5660       if (body == NULL_TREE || body == error_mark_node)
5661         {
5662           error ("body of constexpr function %qD not a return-statement", fun);
5663           DECL_DECLARED_CONSTEXPR_P (fun) = false;
5664           return NULL;
5665         }
5666     }
5667
5668   if (!potential_rvalue_constant_expression (body))
5669     {
5670       DECL_DECLARED_CONSTEXPR_P (fun) = false;
5671       if (!DECL_TEMPLATE_INSTANTIATION (fun))
5672         require_potential_rvalue_constant_expression (body);
5673       return NULL;
5674     }
5675   fundef->body = body;
5676   return fun;
5677 }
5678
5679 /* Objects of this type represent calls to constexpr functions
5680    along with the bindings of parameters to their arguments, for
5681    the purpose of compile time evaluation.  */
5682
5683 typedef struct GTY(()) constexpr_call {
5684   /* Description of the constexpr function definition.  */
5685   constexpr_fundef *fundef;
5686   /* Parameter bindings enironment.  A TREE_LIST where each TREE_PURPOSE
5687      is a parameter _DECL and the TREE_VALUE is the value of the parameter.
5688      Note: This arrangement is made to accomodate the use of
5689      iterative_hash_template_arg (see pt.c).  If you change this
5690      representation, also change the hash calculation in
5691      cxx_eval_call_expression.  */
5692   tree bindings;
5693   /* Result of the call.
5694        NULL means the call is being evaluated.
5695        error_mark_node means that the evaluation was erroneous;
5696        otherwise, the actuall value of the call.  */
5697   tree result;
5698   /* The hash of this call; we remember it here to avoid having to
5699      recalculate it when expanding the hash table.  */
5700   hashval_t hash;
5701 } constexpr_call;
5702
5703 /* A table of all constexpr calls that have been evaluated by the
5704    compiler in this translation unit.  */
5705
5706 static GTY ((param_is (constexpr_call))) htab_t constexpr_call_table;
5707
5708 static tree cxx_eval_constant_expression (const constexpr_call *, tree,
5709                                           bool, bool, bool *);
5710
5711 /* Compute a hash value for a constexpr call representation.  */
5712
5713 static hashval_t
5714 constexpr_call_hash (const void *p)
5715 {
5716   const constexpr_call *info = (const constexpr_call *) p;
5717   return info->hash;
5718 }
5719
5720 /* Return 1 if the objects pointed to by P and Q represent calls
5721    to the same constexpr function with the same arguments.
5722    Otherwise, return 0.  */
5723
5724 static int
5725 constexpr_call_equal (const void *p, const void *q)
5726 {
5727   const constexpr_call *lhs = (const constexpr_call *) p;
5728   const constexpr_call *rhs = (const constexpr_call *) q;
5729   tree lhs_bindings;
5730   tree rhs_bindings;
5731   if (lhs == rhs)
5732     return 1;
5733   if (!constexpr_fundef_equal (lhs->fundef, rhs->fundef))
5734     return 0;
5735   lhs_bindings = lhs->bindings;
5736   rhs_bindings = rhs->bindings;
5737   while (lhs_bindings != NULL && rhs_bindings != NULL)
5738     {
5739       tree lhs_arg = TREE_VALUE (lhs_bindings);
5740       tree rhs_arg = TREE_VALUE (rhs_bindings);
5741       gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
5742       if (!cp_tree_equal (lhs_arg, rhs_arg))
5743         return 0;
5744       lhs_bindings = TREE_CHAIN (lhs_bindings);
5745       rhs_bindings = TREE_CHAIN (rhs_bindings);
5746     }
5747   return lhs_bindings == rhs_bindings;
5748 }
5749
5750 /* Initialize the constexpr call table, if needed.  */
5751
5752 static void
5753 maybe_initialize_constexpr_call_table (void)
5754 {
5755   if (constexpr_call_table == NULL)
5756     constexpr_call_table = htab_create_ggc (101,
5757                                             constexpr_call_hash,
5758                                             constexpr_call_equal,
5759                                             ggc_free);
5760 }
5761
5762 /* Return true if T designates the implied `this' parameter.  */
5763
5764 static inline bool
5765 is_this_parameter (tree t)
5766 {
5767   return t == current_class_ptr;
5768 }
5769
5770 /* We have an expression tree T that represents a call, either CALL_EXPR
5771    or AGGR_INIT_EXPR.  If the call is lexically to a named function,
5772    retrun the _DECL for that function.  */
5773
5774 static tree
5775 get_function_named_in_call (tree t)
5776 {
5777   tree fun = NULL;
5778   switch (TREE_CODE (t))
5779     {
5780     case CALL_EXPR:
5781       fun = CALL_EXPR_FN (t);
5782       break;
5783
5784     case AGGR_INIT_EXPR:
5785       fun = AGGR_INIT_EXPR_FN (t);
5786       break;
5787
5788     default:
5789       gcc_unreachable();
5790       break;
5791     }
5792   if (TREE_CODE (fun) == ADDR_EXPR
5793       && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
5794     fun = TREE_OPERAND (fun, 0);
5795   return fun;
5796 }
5797
5798 /* We have an expression tree T that represents a call, either CALL_EXPR
5799    or AGGR_INIT_EXPR.  Return the Nth argument.  */
5800
5801 static inline tree
5802 get_nth_callarg (tree t, int n)
5803 {
5804   switch (TREE_CODE (t))
5805     {
5806     case CALL_EXPR:
5807       return CALL_EXPR_ARG (t, n);
5808
5809     case AGGR_INIT_EXPR:
5810       return AGGR_INIT_EXPR_ARG (t, n);
5811
5812     default:
5813       gcc_unreachable ();
5814       return NULL;
5815     }
5816 }
5817
5818 /* Look up the binding of the function parameter T in a constexpr
5819    function call context CALL.  */
5820
5821 static tree
5822 lookup_parameter_binding (const constexpr_call *call, tree t)
5823 {
5824   tree b = purpose_member (t, call->bindings);
5825   return TREE_VALUE (b);
5826 }
5827
5828 /* Attempt to evaluate T which represents a call to a builtin function.
5829    We assume here that all builtin functions evaluate to scalar types
5830    represented by _CST nodes.  */
5831
5832 static tree
5833 cxx_eval_builtin_function_call (const constexpr_call *call, tree t,
5834                                 bool allow_non_constant, bool addr,
5835                                 bool *non_constant_p)
5836 {
5837   const int nargs = call_expr_nargs (t);
5838   tree *args = (tree *) alloca (nargs * sizeof (tree));
5839   tree new_call;
5840   int i;
5841   for (i = 0; i < nargs; ++i)
5842     {
5843       args[i] = cxx_eval_constant_expression (call, CALL_EXPR_ARG (t, i),
5844                                               allow_non_constant, addr,
5845                                               non_constant_p);
5846       if (allow_non_constant && *non_constant_p)
5847         return t;
5848     }
5849   if (*non_constant_p)
5850     return t;
5851   new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
5852                                    CALL_EXPR_FN (t), nargs, args);
5853   return fold (new_call);
5854 }
5855
5856 /* TEMP is the constant value of a temporary object of type TYPE.  Adjust
5857    the type of the value to match.  */
5858
5859 static tree
5860 adjust_temp_type (tree type, tree temp)
5861 {
5862   if (TREE_TYPE (temp) == type)
5863     return temp;
5864   /* Avoid wrapping an aggregate value in a NOP_EXPR.  */
5865   if (TREE_CODE (temp) == CONSTRUCTOR)
5866     return build_constructor (type, CONSTRUCTOR_ELTS (temp));
5867   gcc_assert (SCALAR_TYPE_P (type));
5868   return cp_fold_convert (type, temp);
5869 }
5870
5871 /* Subroutine of cxx_eval_call_expression.
5872    We are processing a call expression (either CALL_EXPR or
5873    AGGR_INIT_EXPR) in the call context of OLD_CALL.  Evaluate
5874    all arguments and bind their values to correspondings
5875    parameters, making up the NEW_CALL context.  */
5876
5877 static void
5878 cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t,
5879                              constexpr_call *new_call,
5880                              bool allow_non_constant,
5881                              bool *non_constant_p)
5882 {
5883   const int nargs = call_expr_nargs (t);
5884   tree fun = new_call->fundef->decl;
5885   tree parms = DECL_ARGUMENTS (fun);
5886   int i;
5887   for (i = 0; i < nargs; ++i)
5888     {
5889       tree x, arg;
5890       tree type = parms ? TREE_TYPE (parms) : void_type_node;
5891       /* For member function, the first argument is a pointer to the implied
5892          object.  And for an object contruction, don't bind `this' before
5893          it is fully constructed.  */
5894       if (i == 0 && DECL_CONSTRUCTOR_P (fun))
5895         goto next;
5896       x = get_nth_callarg (t, i);
5897       arg = cxx_eval_constant_expression (old_call, x, allow_non_constant,
5898                                           TREE_CODE (type) == REFERENCE_TYPE,
5899                                           non_constant_p);
5900       /* Don't VERIFY_CONSTANT here.  */
5901       if (*non_constant_p && allow_non_constant)
5902         return;
5903       /* Just discard ellipsis args after checking their constantitude.  */
5904       if (!parms)
5905         continue;
5906       if (*non_constant_p)
5907         /* Don't try to adjust the type of non-constant args.  */
5908         goto next;
5909
5910       /* Make sure the binding has the same type as the parm.  */
5911       if (TREE_CODE (type) != REFERENCE_TYPE)
5912         arg = adjust_temp_type (type, arg);
5913       new_call->bindings = tree_cons (parms, arg, new_call->bindings);
5914     next:
5915       parms = TREE_CHAIN (parms);
5916     }
5917 }
5918
5919 /* Variables and functions to manage constexpr call expansion context.
5920    These do not need to be marked for PCH or GC.  */
5921
5922 /* FIXME remember and print actual constant arguments.  */
5923 static VEC(tree,heap) *call_stack = NULL;
5924 static int call_stack_tick;
5925 static int last_cx_error_tick;
5926
5927 static bool
5928 push_cx_call_context (tree call)
5929 {
5930   ++call_stack_tick;
5931   if (!EXPR_HAS_LOCATION (call))
5932     SET_EXPR_LOCATION (call, input_location);
5933   VEC_safe_push (tree, heap, call_stack, call);
5934   if (VEC_length (tree, call_stack) > (unsigned) max_constexpr_depth)
5935     return false;
5936   return true;
5937 }
5938
5939 static void
5940 pop_cx_call_context (void)
5941 {
5942   ++call_stack_tick;
5943   VEC_pop (tree, call_stack);
5944 }
5945
5946 VEC(tree,heap) *
5947 cx_error_context (void)
5948 {
5949   VEC(tree,heap) *r = NULL;
5950   if (call_stack_tick != last_cx_error_tick
5951       && !VEC_empty (tree, call_stack))
5952     r = call_stack;
5953   last_cx_error_tick = call_stack_tick;
5954   return r;
5955 }
5956
5957 /* Subroutine of cxx_eval_constant_expression.
5958    Evaluate the call expression tree T in the context of OLD_CALL expression
5959    evaluation.  */
5960
5961 static tree
5962 cxx_eval_call_expression (const constexpr_call *old_call, tree t,
5963                           bool allow_non_constant, bool addr,
5964                           bool *non_constant_p)
5965 {
5966   location_t loc = EXPR_LOC_OR_HERE (t);
5967   tree fun = get_function_named_in_call (t);
5968   tree result;
5969   constexpr_call new_call = { NULL, NULL, NULL, 0 };
5970   constexpr_call **slot;
5971   constexpr_call *entry;
5972   bool depth_ok;
5973
5974   if (TREE_CODE (fun) != FUNCTION_DECL)
5975     {
5976       /* Might be a constexpr function pointer.  */
5977       fun = cxx_eval_constant_expression (old_call, fun, allow_non_constant,
5978                                           /*addr*/false, non_constant_p);
5979       if (TREE_CODE (fun) == ADDR_EXPR)
5980         fun = TREE_OPERAND (fun, 0);
5981     }
5982   if (TREE_CODE (fun) != FUNCTION_DECL)
5983     {
5984       if (!allow_non_constant)
5985         error_at (loc, "expression %qE does not designate a constexpr "
5986                   "function", fun);
5987       *non_constant_p = true;
5988       return t;
5989     }
5990   if (DECL_CLONED_FUNCTION_P (fun))
5991     fun = DECL_CLONED_FUNCTION (fun);
5992   if (is_builtin_fn (fun))
5993     return cxx_eval_builtin_function_call (old_call, t, allow_non_constant,
5994                                            addr, non_constant_p);
5995   if (!DECL_DECLARED_CONSTEXPR_P (fun))
5996     {
5997       if (!allow_non_constant)
5998         {
5999           error_at (loc, "%qD is not a constexpr function", fun);
6000           if (DECL_TEMPLATE_INSTANTIATION (fun)
6001               && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
6002                                             (DECL_TI_TEMPLATE (fun))))
6003             is_valid_constexpr_fn (fun, true);
6004         }
6005       *non_constant_p = true;
6006       return t;
6007     }
6008
6009   /* Shortcut trivial copy constructor/op=.  */
6010   if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
6011     {
6012       tree arg = convert_from_reference (get_nth_callarg (t, 1));
6013       return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
6014                                            addr, non_constant_p);
6015     }
6016
6017   /* If in direct recursive call, optimize definition search.  */
6018   if (old_call != NULL && old_call->fundef->decl == fun)
6019     new_call.fundef = old_call->fundef;
6020   else
6021     {
6022       new_call.fundef = retrieve_constexpr_fundef (fun);
6023       if (new_call.fundef == NULL || new_call.fundef->body == NULL)
6024         {
6025           if (!allow_non_constant)
6026             error_at (loc, "%qD used before its definition", fun);
6027           *non_constant_p = true;
6028           return t;
6029         }
6030     }
6031   cxx_bind_parameters_in_call (old_call, t, &new_call,
6032                                allow_non_constant, non_constant_p);
6033   if (*non_constant_p)
6034     return t;
6035
6036   depth_ok = push_cx_call_context (t);
6037
6038   new_call.hash
6039     = iterative_hash_template_arg (new_call.bindings,
6040                                    constexpr_fundef_hash (new_call.fundef));
6041
6042   /* If we have seen this call before, we are done.  */
6043   maybe_initialize_constexpr_call_table ();
6044   slot = (constexpr_call **)
6045     htab_find_slot (constexpr_call_table, &new_call, INSERT);
6046   entry = *slot;
6047   if (entry == NULL)
6048     {
6049       /* We need to keep a pointer to the entry, not just the slot, as the
6050          slot can move in the call to cxx_eval_builtin_function_call.  */
6051       *slot = entry = ggc_alloc_constexpr_call ();
6052       *entry = new_call;
6053     }
6054   /* Calls which are in progress have their result set to NULL
6055      so that we can detect circular dependencies.  */
6056   else if (entry->result == NULL)
6057     {
6058       if (!allow_non_constant)
6059         error ("call has circular dependency");
6060       *non_constant_p = true;
6061       entry->result = result = error_mark_node;
6062     }
6063
6064   if (!depth_ok)
6065     {
6066       if (!allow_non_constant)
6067         error ("constexpr evaluation depth exceeds maximum of %d (use "
6068                "-fconstexpr-depth= to increase the maximum)",
6069                max_constexpr_depth);
6070       *non_constant_p = true;
6071       entry->result = result = error_mark_node;
6072     }
6073   else
6074     {
6075       result = entry->result;
6076       if (!result || (result == error_mark_node && !allow_non_constant))
6077         result = (cxx_eval_constant_expression
6078                   (&new_call, new_call.fundef->body,
6079                    allow_non_constant, addr,
6080                    non_constant_p));
6081       if (result == error_mark_node)
6082         *non_constant_p = true;
6083       if (*non_constant_p)
6084         entry->result = result = error_mark_node;
6085       else
6086         {
6087           /* If this was a call to initialize an object, set the type of
6088              the CONSTRUCTOR to the type of that object.  */
6089           if (DECL_CONSTRUCTOR_P (fun))
6090             {
6091               tree ob_arg = get_nth_callarg (t, 0);
6092               STRIP_NOPS (ob_arg);
6093               gcc_assert (TREE_CODE (TREE_TYPE (ob_arg)) == POINTER_TYPE
6094                           && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg))));
6095               result = adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg)),
6096                                          result);
6097             }
6098           entry->result = result;
6099         }
6100     }
6101
6102   pop_cx_call_context ();
6103   return unshare_expr (result);
6104 }
6105
6106 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase.  */
6107
6108 bool
6109 reduced_constant_expression_p (tree t)
6110 {
6111   if (TREE_OVERFLOW_P (t))
6112     /* Integer overflow makes this not a constant expression.  */
6113     return false;
6114   /* FIXME are we calling this too much?  */
6115   return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
6116 }
6117
6118 /* Some expressions may have constant operands but are not constant
6119    themselves, such as 1/0.  Call this function (or rather, the macro
6120    following it) to check for that condition.
6121
6122    We only call this in places that require an arithmetic constant, not in
6123    places where we might have a non-constant expression that can be a
6124    component of a constant expression, such as the address of a constexpr
6125    variable that might be dereferenced later.  */
6126
6127 static bool
6128 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p)
6129 {
6130   if (!*non_constant_p && !reduced_constant_expression_p (t))
6131     {
6132       if (!allow_non_constant)
6133         {
6134           /* If T was already folded to a _CST with TREE_OVERFLOW set,
6135              printing the folded constant isn't helpful.  */
6136           if (TREE_OVERFLOW_P (t))
6137             {
6138               permerror (input_location, "overflow in constant expression");
6139               /* If we're being permissive (and are in an enforcing
6140                  context), consider this constant.  */
6141               if (flag_permissive)
6142                 return false;
6143             }
6144           else
6145             error ("%q+E is not a constant expression", t);
6146         }
6147       *non_constant_p = true;
6148     }
6149   return *non_constant_p;
6150 }
6151 #define VERIFY_CONSTANT(X)                                              \
6152 do {                                                                    \
6153   if (verify_constant ((X), allow_non_constant, non_constant_p))        \
6154     return t;                                                           \
6155  } while (0)
6156
6157 /* Subroutine of cxx_eval_constant_expression.
6158    Attempt to reduce the unary expression tree T to a compile time value.
6159    If successful, return the value.  Otherwise issue a diagnostic
6160    and return error_mark_node.  */
6161
6162 static tree
6163 cxx_eval_unary_expression (const constexpr_call *call, tree t,
6164                            bool allow_non_constant, bool addr,
6165                            bool *non_constant_p)
6166 {
6167   tree r;
6168   tree orig_arg = TREE_OPERAND (t, 0);
6169   tree arg = cxx_eval_constant_expression (call, orig_arg, allow_non_constant,
6170                                            addr, non_constant_p);
6171   VERIFY_CONSTANT (arg);
6172   if (arg == orig_arg)
6173     return t;
6174   r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), arg);
6175   VERIFY_CONSTANT (r);
6176   return r;
6177 }
6178
6179 /* Subroutine of cxx_eval_constant_expression.
6180    Like cxx_eval_unary_expression, except for binary expressions.  */
6181
6182 static tree
6183 cxx_eval_binary_expression (const constexpr_call *call, tree t,
6184                             bool allow_non_constant, bool addr,
6185                             bool *non_constant_p)
6186 {
6187   tree r;
6188   tree orig_lhs = TREE_OPERAND (t, 0);
6189   tree orig_rhs = TREE_OPERAND (t, 1);
6190   tree lhs, rhs;
6191   lhs = cxx_eval_constant_expression (call, orig_lhs,
6192                                       allow_non_constant, addr,
6193                                       non_constant_p);
6194   VERIFY_CONSTANT (lhs);
6195   rhs = cxx_eval_constant_expression (call, orig_rhs,
6196                                       allow_non_constant, addr,
6197                                       non_constant_p);
6198   VERIFY_CONSTANT (rhs);
6199   if (lhs == orig_lhs && rhs == orig_rhs)
6200     return t;
6201   r = fold_build2 (TREE_CODE (t), TREE_TYPE (t), lhs, rhs);
6202   VERIFY_CONSTANT (r);
6203   return r;
6204 }
6205
6206 /* Subroutine of cxx_eval_constant_expression.
6207    Attempt to evaluate condition expressions.  Dead branches are not
6208    looked into.  */
6209
6210 static tree
6211 cxx_eval_conditional_expression (const constexpr_call *call, tree t,
6212                                  bool allow_non_constant, bool addr,
6213                                  bool *non_constant_p)
6214 {
6215   tree val = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6216                                            allow_non_constant, addr,
6217                                            non_constant_p);
6218   VERIFY_CONSTANT (val);
6219   if (val == boolean_true_node)
6220     return cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6221                                          allow_non_constant, addr,
6222                                          non_constant_p);
6223   gcc_assert (val == boolean_false_node);
6224   /* Don't VERIFY_CONSTANT here.  */
6225   return cxx_eval_constant_expression (call, TREE_OPERAND (t, 2),
6226                                        allow_non_constant, addr,
6227                                        non_constant_p);
6228 }
6229
6230 /* Subroutine of cxx_eval_constant_expression.
6231    Attempt to reduce a reference to an array slot.  */
6232
6233 static tree
6234 cxx_eval_array_reference (const constexpr_call *call, tree t,
6235                           bool allow_non_constant, bool addr,
6236                           bool *non_constant_p)
6237 {
6238   tree oldary = TREE_OPERAND (t, 0);
6239   tree ary = cxx_eval_constant_expression (call, oldary,
6240                                            allow_non_constant, addr,
6241                                            non_constant_p);
6242   tree index, oldidx;
6243   HOST_WIDE_INT i;
6244   unsigned len;
6245   if (*non_constant_p)
6246     return t;
6247   oldidx = TREE_OPERAND (t, 1);
6248   index = cxx_eval_constant_expression (call, oldidx,
6249                                         allow_non_constant, false,
6250                                         non_constant_p);
6251   VERIFY_CONSTANT (index);
6252   if (addr && ary == oldary && index == oldidx)
6253     return t;
6254   else if (addr)
6255     return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
6256   len = (TREE_CODE (ary) == CONSTRUCTOR
6257          ? CONSTRUCTOR_NELTS (ary)
6258          : (unsigned)TREE_STRING_LENGTH (ary));
6259   if (compare_tree_int (index, len) >= 0)
6260     {
6261       if (!allow_non_constant)
6262         error ("array subscript out of bound");
6263       *non_constant_p = true;
6264       return t;
6265     }
6266   i = tree_low_cst (index, 0);
6267   if (TREE_CODE (ary) == CONSTRUCTOR)
6268     return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ary), i)->value;
6269   else
6270     return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary))),
6271                           TREE_STRING_POINTER (ary)[i]);
6272   /* Don't VERIFY_CONSTANT here.  */
6273 }
6274
6275 /* Subroutine of cxx_eval_constant_expression.
6276    Attempt to reduce a field access of a value of class type.  */
6277
6278 static tree
6279 cxx_eval_component_reference (const constexpr_call *call, tree t,
6280                               bool allow_non_constant, bool addr,
6281                               bool *non_constant_p)
6282 {
6283   unsigned HOST_WIDE_INT i;
6284   tree field;
6285   tree value;
6286   tree part = TREE_OPERAND (t, 1);
6287   tree orig_whole = TREE_OPERAND (t, 0);
6288   tree whole = cxx_eval_constant_expression (call, orig_whole,
6289                                              allow_non_constant, addr,
6290                                              non_constant_p);
6291   if (whole == orig_whole)
6292     return t;
6293   if (addr)
6294     return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
6295                         whole, part, NULL_TREE);
6296   /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6297      CONSTRUCTOR.  */
6298   if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6299     {
6300       if (!allow_non_constant)
6301         error ("%qE is not a constant expression", orig_whole);
6302       *non_constant_p = true;
6303     }
6304   if (*non_constant_p)
6305     return t;
6306   FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6307     {
6308       if (field == part)
6309         return value;
6310     }
6311   if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE)
6312     {
6313       /* FIXME Mike Miller wants this to be OK.  */
6314       if (!allow_non_constant)
6315         error ("accessing %qD member instead of initialized %qD member in "
6316                "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
6317       *non_constant_p = true;
6318       return t;
6319     }
6320   gcc_unreachable();
6321   return error_mark_node;
6322 }
6323
6324 /* Subroutine of cxx_eval_constant_expression.
6325    Attempt to reduce a field access of a value of class type that is
6326    expressed as a BIT_FIELD_REF.  */
6327
6328 static tree
6329 cxx_eval_bit_field_ref (const constexpr_call *call, tree t,
6330                         bool allow_non_constant, bool addr,
6331                         bool *non_constant_p)
6332 {
6333   tree orig_whole = TREE_OPERAND (t, 0);
6334   tree whole = cxx_eval_constant_expression (call, orig_whole,
6335                                              allow_non_constant, addr,
6336                                              non_constant_p);
6337   tree start, field, value;
6338   unsigned HOST_WIDE_INT i;
6339
6340   if (whole == orig_whole)
6341     return t;
6342   /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6343      CONSTRUCTOR.  */
6344   if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6345     {
6346       if (!allow_non_constant)
6347         error ("%qE is not a constant expression", orig_whole);
6348       *non_constant_p = true;
6349     }
6350   if (*non_constant_p)
6351     return t;
6352
6353   start = TREE_OPERAND (t, 2);
6354   FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6355     {
6356       if (bit_position (field) == start)
6357         return value;
6358     }
6359   gcc_unreachable();
6360   return error_mark_node;
6361 }
6362
6363 /* Subroutine of cxx_eval_constant_expression.
6364    Evaluate a short-circuited logical expression T in the context
6365    of a given constexpr CALL.  BAILOUT_VALUE is the value for
6366    early return.  CONTINUE_VALUE is used here purely for
6367    sanity check purposes.  */
6368
6369 static tree
6370 cxx_eval_logical_expression (const constexpr_call *call, tree t,
6371                              tree bailout_value, tree continue_value,
6372                              bool allow_non_constant, bool addr,
6373                              bool *non_constant_p)
6374 {
6375   tree r;
6376   tree lhs = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6377                                            allow_non_constant, addr,
6378                                            non_constant_p);
6379   VERIFY_CONSTANT (lhs);
6380   if (lhs == bailout_value)
6381     return lhs;
6382   gcc_assert (lhs == continue_value);
6383   r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6384                                     allow_non_constant, addr, non_constant_p);
6385   VERIFY_CONSTANT (r);
6386   return r;
6387 }
6388
6389 /* REF is a COMPONENT_REF designating a particular field.  V is a vector of
6390    CONSTRUCTOR elements to initialize (part of) an object containing that
6391    field.  Return a pointer to the constructor_elt corresponding to the
6392    initialization of the field.  */
6393
6394 static constructor_elt *
6395 base_field_constructor_elt (VEC(constructor_elt,gc) *v, tree ref)
6396 {
6397   tree aggr = TREE_OPERAND (ref, 0);
6398   tree field = TREE_OPERAND (ref, 1);
6399   HOST_WIDE_INT i;
6400   constructor_elt *ce;
6401
6402   gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
6403
6404   if (TREE_CODE (aggr) == COMPONENT_REF)
6405     {
6406       constructor_elt *base_ce
6407         = base_field_constructor_elt (v, aggr);
6408       v = CONSTRUCTOR_ELTS (base_ce->value);
6409     }
6410
6411   for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6412     if (ce->index == field)
6413       return ce;
6414
6415   gcc_unreachable ();
6416   return NULL;
6417 }
6418
6419 /* Subroutine of cxx_eval_constant_expression.
6420    The expression tree T denotes a C-style array or a C-style
6421    aggregate.  Reduce it to a constant expression.  */
6422
6423 static tree
6424 cxx_eval_bare_aggregate (const constexpr_call *call, tree t,
6425                          bool allow_non_constant, bool addr,
6426                          bool *non_constant_p)
6427 {
6428   VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (t);
6429   VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc,
6430                                           VEC_length (constructor_elt, v));
6431   constructor_elt *ce;
6432   HOST_WIDE_INT i;
6433   bool changed = false;
6434   gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
6435   for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6436     {
6437       tree elt = cxx_eval_constant_expression (call, ce->value,
6438                                                allow_non_constant, addr,
6439                                                non_constant_p);
6440       /* Don't VERIFY_CONSTANT here.  */
6441       if (allow_non_constant && *non_constant_p)
6442         goto fail;
6443       if (elt != ce->value)
6444         changed = true;
6445       if (TREE_CODE (ce->index) == COMPONENT_REF)
6446         {
6447           /* This is an initialization of a vfield inside a base
6448              subaggregate that we already initialized; push this
6449              initialization into the previous initialization.  */
6450           constructor_elt *inner = base_field_constructor_elt (n, ce->index);
6451           inner->value = elt;
6452         }
6453       else
6454         CONSTRUCTOR_APPEND_ELT (n, ce->index, elt);
6455     }
6456   if (*non_constant_p || !changed)
6457     {
6458     fail:
6459       VEC_free (constructor_elt, gc, n);
6460       return t;
6461     }
6462   t = build_constructor (TREE_TYPE (t), n);
6463   TREE_CONSTANT (t) = true;
6464   return t;
6465 }
6466
6467 /* Subroutine of cxx_eval_constant_expression.
6468    The expression tree T is a VEC_INIT_EXPR which denotes the desired
6469    initialization of a non-static data member of array type.  Reduce it to a
6470    CONSTRUCTOR.
6471
6472    Note that apart from value-initialization (when VALUE_INIT is true),
6473    this is only intended to support value-initialization and the
6474    initializations done by defaulted constructors for classes with
6475    non-static data members of array type.  In this case, VEC_INIT_EXPR_INIT
6476    will either be NULL_TREE for the default constructor, or a COMPONENT_REF
6477    for the copy/move constructor.  */
6478
6479 static tree
6480 cxx_eval_vec_init_1 (const constexpr_call *call, tree atype, tree init,
6481                      bool value_init, bool allow_non_constant, bool addr,
6482                      bool *non_constant_p)
6483 {
6484   tree elttype = TREE_TYPE (atype);
6485   int max = tree_low_cst (array_type_nelts (atype), 0);
6486   VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc, max + 1);
6487   int i;
6488
6489   /* For the default constructor, build up a call to the default
6490      constructor of the element type.  We only need to handle class types
6491      here, as for a constructor to be constexpr, all members must be
6492      initialized, which for a defaulted default constructor means they must
6493      be of a class type with a constexpr default constructor.  */
6494   if (value_init)
6495     gcc_assert (!init);
6496   else if (!init)
6497     {
6498       VEC(tree,gc) *argvec = make_tree_vector ();
6499       init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6500                                         &argvec, elttype, LOOKUP_NORMAL,
6501                                         tf_warning_or_error);
6502       release_tree_vector (argvec);
6503       init = cxx_eval_constant_expression (call, init, allow_non_constant,
6504                                            addr, non_constant_p);
6505     }
6506
6507   if (*non_constant_p && !allow_non_constant)
6508     goto fail;
6509
6510   for (i = 0; i <= max; ++i)
6511     {
6512       tree idx = build_int_cst (size_type_node, i);
6513       tree eltinit;
6514       if (TREE_CODE (elttype) == ARRAY_TYPE)
6515         {
6516           /* A multidimensional array; recurse.  */
6517           if (value_init)
6518             eltinit = NULL_TREE;
6519           else
6520             eltinit = cp_build_array_ref (input_location, init, idx,
6521                                           tf_warning_or_error);
6522           eltinit = cxx_eval_vec_init_1 (call, elttype, eltinit, value_init,
6523                                          allow_non_constant, addr,
6524                                          non_constant_p);
6525         }
6526       else if (value_init)
6527         {
6528           eltinit = build_value_init (elttype, tf_warning_or_error);
6529           eltinit = cxx_eval_constant_expression
6530             (call, eltinit, allow_non_constant, addr, non_constant_p);
6531         }
6532       else if (TREE_CODE (init) == CONSTRUCTOR)
6533         {
6534           /* Initializing an element using the call to the default
6535              constructor we just built above.  */
6536           eltinit = unshare_expr (init);
6537         }
6538       else
6539         {
6540           /* Copying an element.  */
6541           VEC(tree,gc) *argvec;
6542           gcc_assert (same_type_ignoring_top_level_qualifiers_p
6543                       (atype, TREE_TYPE (init)));
6544           eltinit = cp_build_array_ref (input_location, init, idx,
6545                                         tf_warning_or_error);
6546           if (!real_lvalue_p (init))
6547             eltinit = move (eltinit);
6548           argvec = make_tree_vector ();
6549           VEC_quick_push (tree, argvec, eltinit);
6550           eltinit = (build_special_member_call
6551                      (NULL_TREE, complete_ctor_identifier, &argvec,
6552                       elttype, LOOKUP_NORMAL, tf_warning_or_error));
6553           release_tree_vector (argvec);
6554           eltinit = cxx_eval_constant_expression
6555             (call, eltinit, allow_non_constant, addr, non_constant_p);
6556         }
6557       if (*non_constant_p && !allow_non_constant)
6558         goto fail;
6559       CONSTRUCTOR_APPEND_ELT (n, idx, eltinit);
6560     }
6561
6562   if (!*non_constant_p)
6563     {
6564       init = build_constructor (TREE_TYPE (atype), n);
6565       TREE_CONSTANT (init) = true;
6566       return init;
6567     }
6568
6569  fail:
6570   VEC_free (constructor_elt, gc, n);
6571   return init;
6572 }
6573
6574 static tree
6575 cxx_eval_vec_init (const constexpr_call *call, tree t,
6576                    bool allow_non_constant, bool addr,
6577                    bool *non_constant_p)
6578 {
6579   tree atype = TREE_TYPE (t);
6580   tree init = VEC_INIT_EXPR_INIT (t);
6581   tree r = cxx_eval_vec_init_1 (call, atype, init,
6582                                 VEC_INIT_EXPR_VALUE_INIT (t),
6583                                 allow_non_constant, addr, non_constant_p);
6584   if (*non_constant_p)
6585     return t;
6586   else
6587     return r;
6588 }
6589
6590 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
6591    match.  We want to be less strict for simple *& folding; if we have a
6592    non-const temporary that we access through a const pointer, that should
6593    work.  We handle this here rather than change fold_indirect_ref_1
6594    because we're dealing with things like ADDR_EXPR of INTEGER_CST which
6595    don't really make sense outside of constant expression evaluation.  Also
6596    we want to allow folding to COMPONENT_REF, which could cause trouble
6597    with TBAA in fold_indirect_ref_1.  */
6598
6599 static tree
6600 cxx_eval_indirect_ref (const constexpr_call *call, tree t,
6601                        bool allow_non_constant, bool addr,
6602                        bool *non_constant_p)
6603 {
6604   tree orig_op0 = TREE_OPERAND (t, 0);
6605   tree op0 = cxx_eval_constant_expression (call, orig_op0, allow_non_constant,
6606                                            /*addr*/false, non_constant_p);
6607   tree type, sub, subtype, r;
6608   bool empty_base;
6609
6610   /* Don't VERIFY_CONSTANT here.  */
6611   if (*non_constant_p)
6612     return t;
6613
6614   type = TREE_TYPE (t);
6615   sub = op0;
6616   r = NULL_TREE;
6617   empty_base = false;
6618
6619   STRIP_NOPS (sub);
6620   subtype = TREE_TYPE (sub);
6621   gcc_assert (POINTER_TYPE_P (subtype));
6622
6623   if (TREE_CODE (sub) == ADDR_EXPR)
6624     {
6625       tree op = TREE_OPERAND (sub, 0);
6626       tree optype = TREE_TYPE (op);
6627
6628       if (same_type_ignoring_top_level_qualifiers_p (optype, type))
6629         r = op;
6630       /* Also handle conversion to an empty base class, which
6631          is represented with a NOP_EXPR.  */
6632       else if (!addr && is_empty_class (type)
6633                && CLASS_TYPE_P (optype)
6634                && DERIVED_FROM_P (type, optype))
6635         {
6636           r = op;
6637           empty_base = true;
6638         }
6639       /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
6640       else if (RECORD_OR_UNION_TYPE_P (optype))
6641         {
6642           tree field = TYPE_FIELDS (optype);
6643           for (; field; field = DECL_CHAIN (field))
6644             if (TREE_CODE (field) == FIELD_DECL
6645                 && integer_zerop (byte_position (field))
6646                 && (same_type_ignoring_top_level_qualifiers_p
6647                     (TREE_TYPE (field), type)))
6648               {
6649                 r = fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
6650                 break;
6651               }
6652         }
6653     }
6654   else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
6655            && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
6656     {
6657       tree op00 = TREE_OPERAND (sub, 0);
6658       tree op01 = TREE_OPERAND (sub, 1);
6659
6660       STRIP_NOPS (op00);
6661       if (TREE_CODE (op00) == ADDR_EXPR)
6662         {
6663           tree op00type;
6664           op00 = TREE_OPERAND (op00, 0);
6665           op00type = TREE_TYPE (op00);
6666
6667           /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
6668           if (RECORD_OR_UNION_TYPE_P (op00type))
6669             {
6670               tree field = TYPE_FIELDS (op00type);
6671               for (; field; field = DECL_CHAIN (field))
6672                 if (TREE_CODE (field) == FIELD_DECL
6673                     && tree_int_cst_equal (byte_position (field), op01)
6674                     && (same_type_ignoring_top_level_qualifiers_p
6675                         (TREE_TYPE (field), type)))
6676                   {
6677                     r = fold_build3 (COMPONENT_REF, type, op00,
6678                                      field, NULL_TREE);
6679                     break;
6680                   }
6681             }
6682         }
6683     }
6684
6685   /* Let build_fold_indirect_ref handle the cases it does fine with.  */
6686   if (r == NULL_TREE)
6687     r = build_fold_indirect_ref (op0);
6688   if (TREE_CODE (r) != INDIRECT_REF)
6689     r = cxx_eval_constant_expression (call, r, allow_non_constant,
6690                                       addr, non_constant_p);
6691   else if (TREE_CODE (sub) == ADDR_EXPR
6692            || TREE_CODE (sub) == POINTER_PLUS_EXPR)
6693     {
6694       gcc_assert (!same_type_ignoring_top_level_qualifiers_p
6695                   (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
6696       /* FIXME Mike Miller wants this to be OK.  */
6697       if (!allow_non_constant)
6698         error ("accessing value of %qE through a %qT glvalue in a "
6699                "constant expression", build_fold_indirect_ref (sub),
6700                TREE_TYPE (t));
6701       *non_constant_p = true;
6702       return t;
6703     }
6704
6705   /* If we're pulling out the value of an empty base, make sure
6706      that the whole object is constant and then return an empty
6707      CONSTRUCTOR.  */
6708   if (empty_base)
6709     {
6710       VERIFY_CONSTANT (r);
6711       r = build_constructor (TREE_TYPE (t), NULL);
6712       TREE_CONSTANT (r) = true;
6713     }
6714
6715   if (TREE_CODE (r) == INDIRECT_REF && TREE_OPERAND (r, 0) == orig_op0)
6716     return t;
6717   return r;
6718 }
6719
6720 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
6721    Shared between potential_constant_expression and
6722    cxx_eval_constant_expression.  */
6723
6724 static void
6725 non_const_var_error (tree r)
6726 {
6727   tree type = TREE_TYPE (r);
6728   error ("the value of %qD is not usable in a constant "
6729          "expression", r);
6730   if (DECL_DECLARED_CONSTEXPR_P (r))
6731     inform (DECL_SOURCE_LOCATION (r),
6732             "%qD used in its own initializer", r);
6733   else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6734     {
6735       if (!CP_TYPE_CONST_P (type))
6736         inform (DECL_SOURCE_LOCATION (r),
6737                 "%q#D is not const", r);
6738       else if (CP_TYPE_VOLATILE_P (type))
6739         inform (DECL_SOURCE_LOCATION (r),
6740                 "%q#D is volatile", r);
6741       else if (!DECL_INITIAL (r))
6742         inform (DECL_SOURCE_LOCATION (r),
6743                 "%qD was not initialized with a constant "
6744                 "expression", r);
6745       else
6746         gcc_unreachable ();
6747     }
6748   else
6749     {
6750       if (cxx_dialect >= cxx0x && !DECL_DECLARED_CONSTEXPR_P (r))
6751         inform (DECL_SOURCE_LOCATION (r),
6752                 "%qD was not declared %<constexpr%>", r);
6753       else
6754         inform (DECL_SOURCE_LOCATION (r),
6755                 "%qD does not have integral or enumeration type",
6756                 r);
6757     }
6758 }
6759
6760 /* Attempt to reduce the expression T to a constant value.
6761    On failure, issue diagnostic and return error_mark_node.  */
6762 /* FIXME unify with c_fully_fold */
6763
6764 static tree
6765 cxx_eval_constant_expression (const constexpr_call *call, tree t,
6766                               bool allow_non_constant, bool addr,
6767                               bool *non_constant_p)
6768 {
6769   tree r = t;
6770
6771   if (t == error_mark_node)
6772     {
6773       *non_constant_p = true;
6774       return t;
6775     }
6776   if (CONSTANT_CLASS_P (t))
6777     {
6778       if (TREE_CODE (t) == PTRMEM_CST)
6779         t = cplus_expand_constant (t);
6780       return t;
6781     }
6782   if (TREE_CODE (t) != NOP_EXPR
6783       && reduced_constant_expression_p (t))
6784     return fold (t);
6785
6786   switch (TREE_CODE (t))
6787     {
6788     case VAR_DECL:
6789       if (addr)
6790         return t;
6791       /* else fall through. */
6792     case CONST_DECL:
6793       r = integral_constant_value (t);
6794       if (TREE_CODE (r) == TARGET_EXPR
6795           && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
6796         r = TARGET_EXPR_INITIAL (r);
6797       if (DECL_P (r))
6798         {
6799           if (!allow_non_constant)
6800             non_const_var_error (r);
6801           *non_constant_p = true;
6802         }
6803       break;
6804
6805     case FUNCTION_DECL:
6806     case LABEL_DECL:
6807       return t;
6808
6809     case PARM_DECL:
6810       if (call && DECL_CONTEXT (t) == call->fundef->decl)
6811         r = lookup_parameter_binding (call, t);
6812       else if (addr)
6813         /* Defer in case this is only used for its type.  */;
6814       else
6815         {
6816           if (!allow_non_constant)
6817             error ("%qE is not a constant expression", t);
6818           *non_constant_p = true;
6819         }
6820       break;
6821
6822     case CALL_EXPR:
6823     case AGGR_INIT_EXPR:
6824       r = cxx_eval_call_expression (call, t, allow_non_constant, addr,
6825                                     non_constant_p);
6826       break;
6827
6828     case TARGET_EXPR:
6829     case INIT_EXPR:
6830       /* Pass false for 'addr' because these codes indicate
6831          initialization of a temporary.  */
6832       r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6833                                         allow_non_constant, false,
6834                                         non_constant_p);
6835       if (!*non_constant_p)
6836         /* Adjust the type of the result to the type of the temporary.  */
6837         r = adjust_temp_type (TREE_TYPE (t), r);
6838       break;
6839
6840     case SCOPE_REF:
6841       r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6842                                         allow_non_constant, addr,
6843                                         non_constant_p);
6844       break;
6845
6846     case RETURN_EXPR:
6847     case NON_LVALUE_EXPR:
6848     case TRY_CATCH_EXPR:
6849     case CLEANUP_POINT_EXPR:
6850     case MUST_NOT_THROW_EXPR:
6851     case SAVE_EXPR:
6852       r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6853                                         allow_non_constant, addr,
6854                                         non_constant_p);
6855       break;
6856
6857       /* These differ from cxx_eval_unary_expression in that this doesn't
6858          check for a constant operand or result; an address can be
6859          constant without its operand being, and vice versa.  */
6860     case INDIRECT_REF:
6861       r = cxx_eval_indirect_ref (call, t, allow_non_constant, addr,
6862                                  non_constant_p);
6863       break;
6864
6865     case ADDR_EXPR:
6866       {
6867         tree oldop = TREE_OPERAND (t, 0);
6868         tree op = cxx_eval_constant_expression (call, oldop,
6869                                                 allow_non_constant,
6870                                                 /*addr*/true,
6871                                                 non_constant_p);
6872         /* Don't VERIFY_CONSTANT here.  */
6873         if (*non_constant_p)
6874           return t;
6875         /* This function does more aggressive folding than fold itself.  */
6876         r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
6877         if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
6878           return t;
6879         break;
6880       }
6881
6882     case REALPART_EXPR:
6883     case IMAGPART_EXPR:
6884     case CONJ_EXPR:
6885     case FIX_TRUNC_EXPR:
6886     case FLOAT_EXPR:
6887     case NEGATE_EXPR:
6888     case ABS_EXPR:
6889     case BIT_NOT_EXPR:
6890     case TRUTH_NOT_EXPR:
6891     case FIXED_CONVERT_EXPR:
6892       r = cxx_eval_unary_expression (call, t, allow_non_constant, addr,
6893                                      non_constant_p);
6894       break;
6895
6896     case COMPOUND_EXPR:
6897       {
6898         /* check_return_expr sometimes wraps a TARGET_EXPR in a
6899            COMPOUND_EXPR; don't get confused.  Also handle EMPTY_CLASS_EXPR
6900            introduced by build_call_a.  */
6901         tree op0 = TREE_OPERAND (t, 0);
6902         tree op1 = TREE_OPERAND (t, 1);
6903         STRIP_NOPS (op1);
6904         if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
6905             || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
6906           r = cxx_eval_constant_expression (call, op0, allow_non_constant,
6907                                             addr, non_constant_p);
6908         else
6909           {
6910             /* Check that the LHS is constant and then discard it.  */
6911             cxx_eval_constant_expression (call, op0, allow_non_constant,
6912                                           false, non_constant_p);
6913             r = cxx_eval_constant_expression (call, op1, allow_non_constant,
6914                                               addr, non_constant_p);
6915           }
6916       }
6917       break;
6918
6919     case POINTER_PLUS_EXPR:
6920     case PLUS_EXPR:
6921     case MINUS_EXPR:
6922     case MULT_EXPR:
6923     case TRUNC_DIV_EXPR:
6924     case CEIL_DIV_EXPR:
6925     case FLOOR_DIV_EXPR:
6926     case ROUND_DIV_EXPR:
6927     case TRUNC_MOD_EXPR:
6928     case CEIL_MOD_EXPR:
6929     case ROUND_MOD_EXPR:
6930     case RDIV_EXPR:
6931     case EXACT_DIV_EXPR:
6932     case MIN_EXPR:
6933     case MAX_EXPR:
6934     case LSHIFT_EXPR:
6935     case RSHIFT_EXPR:
6936     case LROTATE_EXPR:
6937     case RROTATE_EXPR:
6938     case BIT_IOR_EXPR:
6939     case BIT_XOR_EXPR:
6940     case BIT_AND_EXPR:
6941     case TRUTH_XOR_EXPR:
6942     case LT_EXPR:
6943     case LE_EXPR:
6944     case GT_EXPR:
6945     case GE_EXPR:
6946     case EQ_EXPR:
6947     case NE_EXPR:
6948     case UNORDERED_EXPR:
6949     case ORDERED_EXPR:
6950     case UNLT_EXPR:
6951     case UNLE_EXPR:
6952     case UNGT_EXPR:
6953     case UNGE_EXPR:
6954     case UNEQ_EXPR:
6955     case RANGE_EXPR:
6956     case COMPLEX_EXPR:
6957       r = cxx_eval_binary_expression (call, t, allow_non_constant, addr,
6958                                       non_constant_p);
6959       break;
6960
6961       /* fold can introduce non-IF versions of these; still treat them as
6962          short-circuiting.  */
6963     case TRUTH_AND_EXPR:
6964     case TRUTH_ANDIF_EXPR:
6965       r = cxx_eval_logical_expression (call, t, boolean_false_node,
6966                                        boolean_true_node,
6967                                        allow_non_constant, addr,
6968                                        non_constant_p);
6969       break;
6970
6971     case TRUTH_OR_EXPR:
6972     case TRUTH_ORIF_EXPR:
6973       r = cxx_eval_logical_expression (call, t, boolean_true_node,
6974                                        boolean_false_node,
6975                                        allow_non_constant, addr,
6976                                        non_constant_p);
6977       break;
6978
6979     case ARRAY_REF:
6980       r = cxx_eval_array_reference (call, t, allow_non_constant, addr,
6981                                     non_constant_p);
6982       break;
6983
6984     case COMPONENT_REF:
6985       r = cxx_eval_component_reference (call, t, allow_non_constant, addr,
6986                                         non_constant_p);
6987       break;
6988
6989     case BIT_FIELD_REF:
6990       r = cxx_eval_bit_field_ref (call, t, allow_non_constant, addr,
6991                                   non_constant_p);
6992       break;
6993
6994     case COND_EXPR:
6995     case VEC_COND_EXPR:
6996       r = cxx_eval_conditional_expression (call, t, allow_non_constant, addr,
6997                                            non_constant_p);
6998       break;
6999
7000     case CONSTRUCTOR:
7001       r = cxx_eval_bare_aggregate (call, t, allow_non_constant, addr,
7002                                    non_constant_p);
7003       break;
7004
7005     case VEC_INIT_EXPR:
7006       /* We can get this in a defaulted constructor for a class with a
7007          non-static data member of array type.  Either the initializer will
7008          be NULL, meaning default-initialization, or it will be an lvalue
7009          or xvalue of the same type, meaning direct-initialization from the
7010          corresponding member.  */
7011       r = cxx_eval_vec_init (call, t, allow_non_constant, addr,
7012                              non_constant_p);
7013       break;
7014
7015     case CONVERT_EXPR:
7016     case VIEW_CONVERT_EXPR:
7017     case NOP_EXPR:
7018       {
7019         tree oldop = TREE_OPERAND (t, 0);
7020         tree op = oldop;
7021         tree to = TREE_TYPE (t);
7022         tree source = TREE_TYPE (op);
7023         if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (to)
7024             && !(TREE_CODE (op) == COMPONENT_REF
7025                  && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (op, 0)))))
7026           {
7027             if (!allow_non_constant)
7028               error ("conversion of expression %qE of pointer type "
7029                      "cannot yield a constant expression", op);
7030             *non_constant_p = true;
7031             return t;
7032           }
7033         op = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7034                                            allow_non_constant, addr,
7035                                            non_constant_p);
7036         if (*non_constant_p)
7037           return t;
7038         if (op == oldop)
7039           /* We didn't fold at the top so we could check for ptr-int
7040              conversion.  */
7041           return fold (t);
7042         r = fold_build1 (TREE_CODE (t), to, op);
7043         /* Conversion of an out-of-range value has implementation-defined
7044            behavior; the language considers it different from arithmetic
7045            overflow, which is undefined.  */
7046         if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
7047           TREE_OVERFLOW (r) = false;
7048       }
7049       break;
7050
7051     case EMPTY_CLASS_EXPR:
7052       /* This is good enough for a function argument that might not get
7053          used, and they can't do anything with it, so just return it.  */
7054       return t;
7055
7056     case LAMBDA_EXPR:
7057     case DYNAMIC_CAST_EXPR:
7058     case PSEUDO_DTOR_EXPR:
7059     case PREINCREMENT_EXPR:
7060     case POSTINCREMENT_EXPR:
7061     case PREDECREMENT_EXPR:
7062     case POSTDECREMENT_EXPR:
7063     case NEW_EXPR:
7064     case VEC_NEW_EXPR:
7065     case DELETE_EXPR:
7066     case VEC_DELETE_EXPR:
7067     case THROW_EXPR:
7068     case MODIFY_EXPR:
7069     case MODOP_EXPR:
7070       /* GCC internal stuff.  */
7071     case VA_ARG_EXPR:
7072     case OBJ_TYPE_REF:
7073     case WITH_CLEANUP_EXPR:
7074     case STATEMENT_LIST:
7075     case BIND_EXPR:
7076     case NON_DEPENDENT_EXPR:
7077     case BASELINK:
7078     case EXPR_STMT:
7079     case OFFSET_REF:
7080       if (!allow_non_constant)
7081         error_at (EXPR_LOC_OR_HERE (t),
7082                   "expression %qE is not a constant-expression", t);
7083       *non_constant_p = true;
7084       break;
7085
7086     default:
7087       internal_error ("unexpected expression %qE of kind %s", t,
7088                       tree_code_name[TREE_CODE (t)]);
7089       *non_constant_p = true;
7090       break;
7091     }
7092
7093   if (r == error_mark_node)
7094     *non_constant_p = true;
7095
7096   if (*non_constant_p)
7097     return t;
7098   else
7099     return r;
7100 }
7101
7102 static tree
7103 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant)
7104 {
7105   bool non_constant_p = false;
7106   tree r = cxx_eval_constant_expression (NULL, t, allow_non_constant,
7107                                          false, &non_constant_p);
7108
7109   verify_constant (r, allow_non_constant, &non_constant_p);
7110
7111   if (non_constant_p && !allow_non_constant)
7112     return error_mark_node;
7113   else if (non_constant_p && TREE_CONSTANT (t))
7114     {
7115       /* This isn't actually constant, so unset TREE_CONSTANT.  */
7116       if (EXPR_P (t) || TREE_CODE (t) == CONSTRUCTOR)
7117         r = copy_node (t);
7118       else
7119         r = build_nop (TREE_TYPE (t), t);
7120       TREE_CONSTANT (r) = false;
7121       return r;
7122     }
7123   else if (non_constant_p || r == t)
7124     return t;
7125   else if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
7126     {
7127       if (TREE_CODE (t) == TARGET_EXPR
7128           && TARGET_EXPR_INITIAL (t) == r)
7129         return t;
7130       else
7131         {
7132           r = get_target_expr (r);
7133           TREE_CONSTANT (r) = true;
7134           return r;
7135         }
7136     }
7137   else
7138     return r;
7139 }
7140
7141 /* Returns true if T is a valid subexpression of a constant expression,
7142    even if it isn't itself a constant expression.  */
7143
7144 bool
7145 is_sub_constant_expr (tree t)
7146 {
7147   bool non_constant_p = false;
7148   cxx_eval_constant_expression (NULL, t, true, false, &non_constant_p);
7149   return !non_constant_p;
7150 }
7151
7152 /* If T represents a constant expression returns its reduced value.
7153    Otherwise return error_mark_node.  If T is dependent, then
7154    return NULL.  */
7155
7156 tree
7157 cxx_constant_value (tree t)
7158 {
7159   return cxx_eval_outermost_constant_expr (t, false);
7160 }
7161
7162 /* If T is a constant expression, returns its reduced value.
7163    Otherwise, if T does not have TREE_CONSTANT set, returns T.
7164    Otherwise, returns a version of T without TREE_CONSTANT.  */
7165
7166 tree
7167 maybe_constant_value (tree t)
7168 {
7169   tree r;
7170
7171   if (type_dependent_expression_p (t)
7172       || type_unknown_p (t)
7173       || !potential_constant_expression (t)
7174       || value_dependent_expression_p (t))
7175     return t;
7176
7177   r = cxx_eval_outermost_constant_expr (t, true);
7178 #ifdef ENABLE_CHECKING
7179   /* cp_tree_equal looks through NOPs, so allow them.  */
7180   gcc_assert (r == t
7181               || CONVERT_EXPR_P (t)
7182               || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
7183               || !cp_tree_equal (r, t));
7184 #endif
7185   return r;
7186 }
7187
7188 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
7189    than wrapped in a TARGET_EXPR.  */
7190
7191 tree
7192 maybe_constant_init (tree t)
7193 {
7194   t = maybe_constant_value (t);
7195   if (TREE_CODE (t) == TARGET_EXPR)
7196     {
7197       tree init = TARGET_EXPR_INITIAL (t);
7198       if (TREE_CODE (init) == CONSTRUCTOR
7199           && TREE_CONSTANT (init))
7200         t = init;
7201     }
7202   return t;
7203 }
7204
7205 #if 0
7206 /* FIXME see ADDR_EXPR section in potential_constant_expression_1.  */
7207 /* Return true if the object referred to by REF has automatic or thread
7208    local storage.  */
7209
7210 enum { ck_ok, ck_bad, ck_unknown };
7211 static int
7212 check_automatic_or_tls (tree ref)
7213 {
7214   enum machine_mode mode;
7215   HOST_WIDE_INT bitsize, bitpos;
7216   tree offset;
7217   int volatilep = 0, unsignedp = 0;
7218   tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
7219                                    &mode, &unsignedp, &volatilep, false);
7220   duration_kind dk;
7221
7222   /* If there isn't a decl in the middle, we don't know the linkage here,
7223      and this isn't a constant expression anyway.  */
7224   if (!DECL_P (decl))
7225     return ck_unknown;
7226   dk = decl_storage_duration (decl);
7227   return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
7228 }
7229 #endif
7230
7231 /* Return true if the DECL designates a builtin function that is
7232    morally constexpr, in the sense that its parameter types and
7233    return type are literal types and the compiler is allowed to
7234    fold its invocations.  */
7235
7236 static bool
7237 morally_constexpr_builtin_function_p (tree decl)
7238 {
7239   tree funtype = TREE_TYPE (decl);
7240   tree t;
7241
7242   if (!is_builtin_fn (decl))
7243     return false;
7244   if (!literal_type_p (TREE_TYPE (funtype)))
7245     return false;
7246   for (t = TYPE_ARG_TYPES (funtype); t != NULL ; t = TREE_CHAIN (t))
7247     {
7248       if (t == void_list_node)
7249         return true;
7250       if (!literal_type_p (TREE_VALUE (t)))
7251         return false;
7252     }
7253   /* We assume no varargs builtins are suitable.  */
7254   return t != NULL;
7255 }
7256
7257 /* Return true if T denotes a potentially constant expression.  Issue
7258    diagnostic as appropriate under control of FLAGS.  If WANT_RVAL is true,
7259    an lvalue-rvalue conversion is implied.
7260
7261    C++0x [expr.const] used to say
7262
7263    6 An expression is a potential constant expression if it is
7264      a constant expression where all occurences of function
7265      parameters are replaced by arbitrary constant expressions
7266      of the appropriate type.
7267
7268    2  A conditional expression is a constant expression unless it
7269       involves one of the following as a potentially evaluated
7270       subexpression (3.2), but subexpressions of logical AND (5.14),
7271       logical OR (5.15), and conditional (5.16) operations that are
7272       not evaluated are not considered.   */
7273
7274 static bool
7275 potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
7276 {
7277   enum { any = false, rval = true };
7278   int i;
7279   tree tmp;
7280
7281   /* C++98 has different rules for the form of a constant expression that
7282      are enforced in the parser, so we can assume that anything that gets
7283      this far is suitable.  */
7284   if (cxx_dialect < cxx0x)
7285     return true;
7286
7287   if (t == error_mark_node)
7288     return false;
7289   if (t == NULL_TREE)
7290     return true;
7291   if (TREE_THIS_VOLATILE (t))
7292     {
7293       if (flags & tf_error)
7294         error ("expression %qE has side-effects", t);
7295       return false;
7296     }
7297   if (CONSTANT_CLASS_P (t))
7298     {
7299       if (TREE_OVERFLOW (t))
7300         {
7301           if (flags & tf_error)
7302             {
7303               permerror (EXPR_LOC_OR_HERE (t),
7304                          "overflow in constant expression");
7305               if (flag_permissive)
7306                 return true;
7307             }
7308           return false;
7309         }
7310       return true;
7311     }
7312
7313   switch (TREE_CODE (t))
7314     {
7315     case FUNCTION_DECL:
7316     case BASELINK:
7317     case TEMPLATE_DECL:
7318     case OVERLOAD:
7319     case TEMPLATE_ID_EXPR:
7320     case LABEL_DECL:
7321     case CONST_DECL:
7322     case SIZEOF_EXPR:
7323     case ALIGNOF_EXPR:
7324     case OFFSETOF_EXPR:
7325     case NOEXCEPT_EXPR:
7326     case TEMPLATE_PARM_INDEX:
7327     case TRAIT_EXPR:
7328     case IDENTIFIER_NODE:
7329       return true;
7330
7331     case PARM_DECL:
7332       /* -- this (5.1) unless it appears as the postfix-expression in a
7333             class member access expression, including the result of the
7334             implicit transformation in the body of the non-static
7335             member function (9.3.1);  */
7336       if (is_this_parameter (t))
7337         {
7338           if (flags & tf_error)
7339             error ("%qE is not a potential constant expression", t);
7340           return false;
7341         }
7342       return true;
7343
7344     case AGGR_INIT_EXPR:
7345     case CALL_EXPR:
7346       /* -- an invocation of a function other than a constexpr function
7347             or a constexpr constructor.  */
7348       {
7349         tree fun = get_function_named_in_call (t);
7350         const int nargs = call_expr_nargs (t);
7351         if (TREE_CODE (fun) != FUNCTION_DECL)
7352           {
7353             if (potential_constant_expression_1 (fun, rval, flags))
7354               /* Might end up being a constant function pointer.  */
7355               return true;
7356             if (flags & tf_error)
7357               error ("%qE is not a function name", fun);
7358             return false;
7359           }
7360         /* Skip initial arguments to base constructors.  */
7361         if (DECL_BASE_CONSTRUCTOR_P (fun))
7362           i = num_artificial_parms_for (fun);
7363         else
7364           i = 0;
7365         fun = DECL_ORIGIN (fun);
7366         if (builtin_valid_in_constant_expr_p (fun))
7367           return true;
7368         if (!DECL_DECLARED_CONSTEXPR_P (fun)
7369             && !morally_constexpr_builtin_function_p (fun))
7370           {
7371             if (flags & tf_error)
7372               error ("%qD is not %<constexpr%>", fun);
7373             return false;
7374           }
7375         for (; i < nargs; ++i)
7376           {
7377             tree x = get_nth_callarg (t, i);
7378             /* A call to a non-static member function takes the
7379                address of the object as the first argument.
7380                But in a constant expression the address will be folded
7381                away, so look through it now.  */
7382             if (i == 0 && DECL_NONSTATIC_MEMBER_P (fun)
7383                 && !DECL_CONSTRUCTOR_P (fun))
7384               {
7385                 if (is_this_parameter (x))
7386                   /* OK.  */;
7387                 else if (!potential_constant_expression_1 (x, rval, flags))
7388                   {
7389                     if (flags & tf_error)
7390                       error ("object argument is not a potential constant "
7391                              "expression");
7392                     return false;
7393                   }
7394               }
7395             else if (!potential_constant_expression_1 (x, rval, flags))
7396               {
7397                 if (flags & tf_error)
7398                   error ("argument in position %qP is not a "
7399                          "potential constant expression", i);
7400                 return false;
7401               }
7402           }
7403         return true;
7404       }
7405
7406     case NON_LVALUE_EXPR:
7407       /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
7408             -- an lvalue of integral type that refers to a non-volatile
7409                const variable or static data member initialized with
7410                constant expressions, or
7411
7412             -- an lvalue of literal type that refers to non-volatile
7413                object defined with constexpr, or that refers to a
7414                sub-object of such an object;  */
7415       return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
7416
7417     case VAR_DECL:
7418       if (want_rval && !decl_constant_var_p (t)
7419           && !dependent_type_p (TREE_TYPE (t)))
7420         {
7421           if (flags & tf_error)
7422             non_const_var_error (t);
7423           return false;
7424         }
7425       return true;
7426
7427     case NOP_EXPR:
7428     case CONVERT_EXPR:
7429     case VIEW_CONVERT_EXPR:
7430       /* -- an array-to-pointer conversion that is applied to an lvalue
7431             that designates an object with thread or automatic storage
7432             duration;  FIXME not implemented as it breaks constexpr arrays;
7433             need to fix the standard
7434          -- a type conversion from a pointer or pointer-to-member type
7435             to a literal type.  */
7436       {
7437         tree from = TREE_OPERAND (t, 0);
7438         tree source = TREE_TYPE (from);
7439         tree target = TREE_TYPE (t);
7440         if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (target)
7441             && !(TREE_CODE (from) == COMPONENT_REF
7442                  && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (from, 0)))))
7443           {
7444             if (flags & tf_error)
7445               error ("conversion of expression %qE of pointer type "
7446                      "cannot yield a constant expression", from);
7447             return false;
7448           }
7449         return (potential_constant_expression_1
7450                 (from, TREE_CODE (t) != VIEW_CONVERT_EXPR, flags));
7451       }
7452
7453     case ADDR_EXPR:
7454       /* -- a unary operator & that is applied to an lvalue that
7455             designates an object with thread or automatic storage
7456             duration;  */
7457       t = TREE_OPERAND (t, 0);
7458 #if 0
7459       /* FIXME adjust when issue 1197 is fully resolved.  For now don't do
7460          any checking here, as we might dereference the pointer later.  If
7461          we remove this code, also remove check_automatic_or_tls.  */
7462       i = check_automatic_or_tls (t);
7463       if (i == ck_ok)
7464         return true;
7465       if (i == ck_bad)
7466         {
7467           if (flags & tf_error)
7468             error ("address-of an object %qE with thread local or "
7469                    "automatic storage is not a constant expression", t);
7470           return false;
7471         }
7472 #endif
7473       return potential_constant_expression_1 (t, any, flags);
7474
7475     case COMPONENT_REF:
7476     case BIT_FIELD_REF:
7477     case ARROW_EXPR:
7478     case OFFSET_REF:
7479       /* -- a class member access unless its postfix-expression is
7480             of literal type or of pointer to literal type.  */
7481       /* This test would be redundant, as it follows from the
7482          postfix-expression being a potential constant expression.  */
7483       return potential_constant_expression_1 (TREE_OPERAND (t, 0),
7484                                               want_rval, flags);
7485
7486     case EXPR_PACK_EXPANSION:
7487       return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t),
7488                                               want_rval, flags);
7489
7490     case INDIRECT_REF:
7491       {
7492         tree x = TREE_OPERAND (t, 0);
7493         STRIP_NOPS (x);
7494         if (is_this_parameter (x))
7495           {
7496             if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)) && want_rval)
7497               {
7498                 if (flags & tf_error)
7499                   error ("the value of the object being constructed is "
7500                          "not a constant expression");
7501                 return false;
7502               }
7503             return true;
7504           }
7505         return potential_constant_expression_1 (x, rval, flags);
7506       }
7507
7508     case LAMBDA_EXPR:
7509     case DYNAMIC_CAST_EXPR:
7510     case PSEUDO_DTOR_EXPR:
7511     case PREINCREMENT_EXPR:
7512     case POSTINCREMENT_EXPR:
7513     case PREDECREMENT_EXPR:
7514     case POSTDECREMENT_EXPR:
7515     case NEW_EXPR:
7516     case VEC_NEW_EXPR:
7517     case DELETE_EXPR:
7518     case VEC_DELETE_EXPR:
7519     case THROW_EXPR:
7520     case MODIFY_EXPR:
7521     case MODOP_EXPR:
7522       /* GCC internal stuff.  */
7523     case VA_ARG_EXPR:
7524     case OBJ_TYPE_REF:
7525     case WITH_CLEANUP_EXPR:
7526     case CLEANUP_POINT_EXPR:
7527     case MUST_NOT_THROW_EXPR:
7528     case TRY_CATCH_EXPR:
7529     case STATEMENT_LIST:
7530       /* Don't bother trying to define a subset of statement-expressions to
7531          be constant-expressions, at least for now.  */
7532     case STMT_EXPR:
7533     case EXPR_STMT:
7534     case BIND_EXPR:
7535       if (flags & tf_error)
7536         error ("expression %qE is not a constant-expression", t);
7537       return false;
7538
7539     case TYPEID_EXPR:
7540       /* -- a typeid expression whose operand is of polymorphic
7541             class type;  */
7542       {
7543         tree e = TREE_OPERAND (t, 0);
7544         if (!TYPE_P (e) && !type_dependent_expression_p (e)
7545             && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
7546           {
7547             if (flags & tf_error)
7548               error ("typeid-expression is not a constant expression "
7549                      "because %qE is of polymorphic type", e);
7550             return false;
7551           }
7552         return true;
7553       }
7554
7555     case MINUS_EXPR:
7556       /* -- a subtraction where both operands are pointers.   */
7557       if (TYPE_PTR_P (TREE_OPERAND (t, 0))
7558           && TYPE_PTR_P (TREE_OPERAND (t, 1)))
7559         {
7560           if (flags & tf_error)
7561             error ("difference of two pointer expressions is not "
7562                    "a constant expression");
7563           return false;
7564         }
7565       want_rval = true;
7566       goto binary;
7567
7568     case LT_EXPR:
7569     case LE_EXPR:
7570     case GT_EXPR:
7571     case GE_EXPR:
7572     case EQ_EXPR:
7573     case NE_EXPR:
7574       /* -- a relational or equality operator where at least
7575             one of the operands is a pointer.  */
7576       if (TYPE_PTR_P (TREE_OPERAND (t, 0))
7577           || TYPE_PTR_P (TREE_OPERAND (t, 1)))
7578         {
7579           if (flags & tf_error)
7580             error ("pointer comparison expression is not a "
7581                    "constant expression");
7582           return false;
7583         }
7584       want_rval = true;
7585       goto binary;
7586
7587     case REALPART_EXPR:
7588     case IMAGPART_EXPR:
7589     case CONJ_EXPR:
7590     case SAVE_EXPR:
7591     case FIX_TRUNC_EXPR:
7592     case FLOAT_EXPR:
7593     case NEGATE_EXPR:
7594     case ABS_EXPR:
7595     case BIT_NOT_EXPR:
7596     case TRUTH_NOT_EXPR:
7597     case FIXED_CONVERT_EXPR:
7598     case UNARY_PLUS_EXPR:
7599       return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval,
7600                                               flags);
7601
7602     case CAST_EXPR:
7603     case CONST_CAST_EXPR:
7604     case STATIC_CAST_EXPR:
7605     case REINTERPRET_CAST_EXPR:
7606       return (potential_constant_expression_1
7607               (TREE_OPERAND (t, 0),
7608                TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE, flags));
7609
7610     case PAREN_EXPR:
7611     case NON_DEPENDENT_EXPR:
7612       /* For convenience.  */
7613     case RETURN_EXPR:
7614       return potential_constant_expression_1 (TREE_OPERAND (t, 0),
7615                                               want_rval, flags);
7616
7617     case SCOPE_REF:
7618       return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7619                                               want_rval, flags);
7620
7621     case INIT_EXPR:
7622     case TARGET_EXPR:
7623       return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7624                                               rval, flags);
7625
7626     case CONSTRUCTOR:
7627       {
7628         VEC(constructor_elt, gc) *v = CONSTRUCTOR_ELTS (t);
7629         constructor_elt *ce;
7630         for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
7631           if (!potential_constant_expression_1 (ce->value, want_rval, flags))
7632             return false;
7633         return true;
7634       }
7635
7636     case TREE_LIST:
7637       {
7638         gcc_assert (TREE_PURPOSE (t) == NULL_TREE
7639                     || DECL_P (TREE_PURPOSE (t)));
7640         if (!potential_constant_expression_1 (TREE_VALUE (t), want_rval,
7641                                               flags))
7642           return false;
7643         if (TREE_CHAIN (t) == NULL_TREE)
7644           return true;
7645         return potential_constant_expression_1 (TREE_CHAIN (t), want_rval,
7646                                                 flags);
7647       }
7648
7649     case TRUNC_DIV_EXPR:
7650     case CEIL_DIV_EXPR:
7651     case FLOOR_DIV_EXPR:
7652     case ROUND_DIV_EXPR:
7653     case TRUNC_MOD_EXPR:
7654     case CEIL_MOD_EXPR:
7655     case ROUND_MOD_EXPR:
7656       {
7657         tree denom = TREE_OPERAND (t, 1);
7658         /* We can't call maybe_constant_value on an expression
7659            that hasn't been through fold_non_dependent_expr yet.  */
7660         if (!processing_template_decl)
7661           denom = maybe_constant_value (denom);
7662         if (integer_zerop (denom))
7663           {
7664             if (flags & tf_error)
7665               error ("division by zero is not a constant-expression");
7666             return false;
7667           }
7668         else
7669           {
7670             want_rval = true;
7671             goto binary;
7672           }
7673       }
7674
7675     case COMPOUND_EXPR:
7676       {
7677         /* check_return_expr sometimes wraps a TARGET_EXPR in a
7678            COMPOUND_EXPR; don't get confused.  Also handle EMPTY_CLASS_EXPR
7679            introduced by build_call_a.  */
7680         tree op0 = TREE_OPERAND (t, 0);
7681         tree op1 = TREE_OPERAND (t, 1);
7682         STRIP_NOPS (op1);
7683         if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
7684             || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
7685           return potential_constant_expression_1 (op0, want_rval, flags);
7686         else
7687           goto binary;
7688       }
7689
7690       /* If the first operand is the non-short-circuit constant, look at
7691          the second operand; otherwise we only care about the first one for
7692          potentiality.  */
7693     case TRUTH_AND_EXPR:
7694     case TRUTH_ANDIF_EXPR:
7695       tmp = boolean_true_node;
7696       goto truth;
7697     case TRUTH_OR_EXPR:
7698     case TRUTH_ORIF_EXPR:
7699       tmp = boolean_false_node;
7700     truth:
7701       if (TREE_OPERAND (t, 0) == tmp)
7702         return potential_constant_expression_1 (TREE_OPERAND (t, 1), rval, flags);
7703       else
7704         return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
7705
7706     case PLUS_EXPR:
7707     case MULT_EXPR:
7708     case POINTER_PLUS_EXPR:
7709     case RDIV_EXPR:
7710     case EXACT_DIV_EXPR:
7711     case MIN_EXPR:
7712     case MAX_EXPR:
7713     case LSHIFT_EXPR:
7714     case RSHIFT_EXPR:
7715     case LROTATE_EXPR:
7716     case RROTATE_EXPR:
7717     case BIT_IOR_EXPR:
7718     case BIT_XOR_EXPR:
7719     case BIT_AND_EXPR:
7720     case TRUTH_XOR_EXPR:
7721     case UNLT_EXPR:
7722     case UNLE_EXPR:
7723     case UNGT_EXPR:
7724     case UNGE_EXPR:
7725     case UNEQ_EXPR:
7726     case RANGE_EXPR:
7727     case COMPLEX_EXPR:
7728       want_rval = true;
7729       /* Fall through.  */
7730     case ARRAY_REF:
7731     case ARRAY_RANGE_REF:
7732     case MEMBER_REF:
7733     case DOTSTAR_EXPR:
7734     binary:
7735       for (i = 0; i < 2; ++i)
7736         if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
7737                                               want_rval, flags))
7738           return false;
7739       return true;
7740
7741     case COND_EXPR:
7742     case VEC_COND_EXPR:
7743       /* If the condition is a known constant, we know which of the legs we
7744          care about; otherwise we only require that the condition and
7745          either of the legs be potentially constant.  */
7746       tmp = TREE_OPERAND (t, 0);
7747       if (!potential_constant_expression_1 (tmp, rval, flags))
7748         return false;
7749       else if (tmp == boolean_true_node)
7750         return potential_constant_expression_1 (TREE_OPERAND (t, 1),
7751                                                 want_rval, flags);
7752       else if (tmp == boolean_false_node)
7753         return potential_constant_expression_1 (TREE_OPERAND (t, 2),
7754                                                 want_rval, flags);
7755       for (i = 1; i < 3; ++i)
7756         if (potential_constant_expression_1 (TREE_OPERAND (t, i),
7757                                              want_rval, tf_none))
7758           return true;
7759       if (flags & tf_error)
7760         error ("expression %qE is not a constant-expression", t);
7761       return false;
7762
7763     case VEC_INIT_EXPR:
7764       if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
7765         return true;
7766       if (flags & tf_error)
7767         {
7768           error ("non-constant array initialization");
7769           diagnose_non_constexpr_vec_init (t);
7770         }
7771       return false;
7772
7773     default:
7774       sorry ("unexpected ast of kind %s", tree_code_name[TREE_CODE (t)]);
7775       gcc_unreachable();
7776       return false;
7777     }
7778 }
7779
7780 /* The main entry point to the above.  */
7781
7782 bool
7783 potential_constant_expression (tree t)
7784 {
7785   return potential_constant_expression_1 (t, false, tf_none);
7786 }
7787
7788 /* As above, but require a constant rvalue.  */
7789
7790 bool
7791 potential_rvalue_constant_expression (tree t)
7792 {
7793   return potential_constant_expression_1 (t, true, tf_none);
7794 }
7795
7796 /* Like above, but complain about non-constant expressions.  */
7797
7798 bool
7799 require_potential_constant_expression (tree t)
7800 {
7801   return potential_constant_expression_1 (t, false, tf_warning_or_error);
7802 }
7803
7804 /* Cross product of the above.  */
7805
7806 bool
7807 require_potential_rvalue_constant_expression (tree t)
7808 {
7809   return potential_constant_expression_1 (t, true, tf_warning_or_error);
7810 }
7811 \f
7812 /* Constructor for a lambda expression.  */
7813
7814 tree
7815 build_lambda_expr (void)
7816 {
7817   tree lambda = make_node (LAMBDA_EXPR);
7818   LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
7819   LAMBDA_EXPR_CAPTURE_LIST         (lambda) = NULL_TREE;
7820   LAMBDA_EXPR_THIS_CAPTURE         (lambda) = NULL_TREE;
7821   LAMBDA_EXPR_RETURN_TYPE          (lambda) = NULL_TREE;
7822   LAMBDA_EXPR_MUTABLE_P            (lambda) = false;
7823   return lambda;
7824 }
7825
7826 /* Create the closure object for a LAMBDA_EXPR.  */
7827
7828 tree
7829 build_lambda_object (tree lambda_expr)
7830 {
7831   /* Build aggregate constructor call.
7832      - cp_parser_braced_list
7833      - cp_parser_functional_cast  */
7834   VEC(constructor_elt,gc) *elts = NULL;
7835   tree node, expr, type;
7836   location_t saved_loc;
7837
7838   if (processing_template_decl)
7839     return lambda_expr;
7840
7841   /* Make sure any error messages refer to the lambda-introducer.  */
7842   saved_loc = input_location;
7843   input_location = LAMBDA_EXPR_LOCATION (lambda_expr);
7844
7845   for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
7846        node;
7847        node = TREE_CHAIN (node))
7848     {
7849       tree field = TREE_PURPOSE (node);
7850       tree val = TREE_VALUE (node);
7851
7852       if (field == error_mark_node)
7853         {
7854           expr = error_mark_node;
7855           goto out;
7856         }
7857
7858       if (DECL_P (val))
7859         mark_used (val);
7860
7861       /* Mere mortals can't copy arrays with aggregate initialization, so
7862          do some magic to make it work here.  */
7863       if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
7864         val = build_array_copy (val);
7865       else if (DECL_NORMAL_CAPTURE_P (field)
7866                && TREE_CODE (TREE_TYPE (field)) != REFERENCE_TYPE)
7867         {
7868           /* "the entities that are captured by copy are used to
7869              direct-initialize each corresponding non-static data
7870              member of the resulting closure object."
7871
7872              There's normally no way to express direct-initialization
7873              from an element of a CONSTRUCTOR, so we build up a special
7874              TARGET_EXPR to bypass the usual copy-initialization.  */
7875           val = force_rvalue (val);
7876           if (TREE_CODE (val) == TARGET_EXPR)
7877             TARGET_EXPR_DIRECT_INIT_P (val) = true;
7878         }
7879
7880       CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
7881     }
7882
7883   expr = build_constructor (init_list_type_node, elts);
7884   CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
7885
7886   /* N2927: "[The closure] class type is not an aggregate."
7887      But we briefly treat it as an aggregate to make this simpler.  */
7888   type = TREE_TYPE (lambda_expr);
7889   CLASSTYPE_NON_AGGREGATE (type) = 0;
7890   expr = finish_compound_literal (type, expr);
7891   CLASSTYPE_NON_AGGREGATE (type) = 1;
7892
7893  out:
7894   input_location = saved_loc;
7895   return expr;
7896 }
7897
7898 /* Return an initialized RECORD_TYPE for LAMBDA.
7899    LAMBDA must have its explicit captures already.  */
7900
7901 tree
7902 begin_lambda_type (tree lambda)
7903 {
7904   tree type;
7905
7906   {
7907     /* Unique name.  This is just like an unnamed class, but we cannot use
7908        make_anon_name because of certain checks against TYPE_ANONYMOUS_P.  */
7909     tree name;
7910     name = make_lambda_name ();
7911
7912     /* Create the new RECORD_TYPE for this lambda.  */
7913     type = xref_tag (/*tag_code=*/record_type,
7914                      name,
7915                      /*scope=*/ts_within_enclosing_non_class,
7916                      /*template_header_p=*/false);
7917   }
7918
7919   /* Designate it as a struct so that we can use aggregate initialization.  */
7920   CLASSTYPE_DECLARED_CLASS (type) = false;
7921
7922   /* Clear base types.  */
7923   xref_basetypes (type, /*bases=*/NULL_TREE);
7924
7925   /* Start the class.  */
7926   type = begin_class_definition (type, /*attributes=*/NULL_TREE);
7927
7928   /* Cross-reference the expression and the type.  */
7929   TREE_TYPE (lambda) = type;
7930   CLASSTYPE_LAMBDA_EXPR (type) = lambda;
7931
7932   return type;
7933 }
7934
7935 /* Returns the type to use for the return type of the operator() of a
7936    closure class.  */
7937
7938 tree
7939 lambda_return_type (tree expr)
7940 {
7941   tree type;
7942   if (BRACE_ENCLOSED_INITIALIZER_P (expr))
7943     {
7944       warning (0, "cannot deduce lambda return type from a braced-init-list");
7945       return void_type_node;
7946     }
7947   if (type_dependent_expression_p (expr))
7948     {
7949       type = cxx_make_type (DECLTYPE_TYPE);
7950       DECLTYPE_TYPE_EXPR (type) = expr;
7951       DECLTYPE_FOR_LAMBDA_RETURN (type) = true;
7952       SET_TYPE_STRUCTURAL_EQUALITY (type);
7953     }
7954   else
7955     type = type_decays_to (unlowered_expr_type (expr));
7956   return type;
7957 }
7958
7959 /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
7960    closure type.  */
7961
7962 tree
7963 lambda_function (tree lambda)
7964 {
7965   tree type;
7966   if (TREE_CODE (lambda) == LAMBDA_EXPR)
7967     type = TREE_TYPE (lambda);
7968   else
7969     type = lambda;
7970   gcc_assert (LAMBDA_TYPE_P (type));
7971   /* Don't let debug_tree cause instantiation.  */
7972   if (CLASSTYPE_TEMPLATE_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
7973     return NULL_TREE;
7974   lambda = lookup_member (type, ansi_opname (CALL_EXPR),
7975                           /*protect=*/0, /*want_type=*/false);
7976   if (lambda)
7977     lambda = BASELINK_FUNCTIONS (lambda);
7978   return lambda;
7979 }
7980
7981 /* Returns the type to use for the FIELD_DECL corresponding to the
7982    capture of EXPR.
7983    The caller should add REFERENCE_TYPE for capture by reference.  */
7984
7985 tree
7986 lambda_capture_field_type (tree expr)
7987 {
7988   tree type;
7989   if (type_dependent_expression_p (expr))
7990     {
7991       type = cxx_make_type (DECLTYPE_TYPE);
7992       DECLTYPE_TYPE_EXPR (type) = expr;
7993       DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
7994       SET_TYPE_STRUCTURAL_EQUALITY (type);
7995     }
7996   else
7997     type = non_reference (unlowered_expr_type (expr));
7998   return type;
7999 }
8000
8001 /* Recompute the return type for LAMBDA with body of the form:
8002      { return EXPR ; }  */
8003
8004 void
8005 apply_lambda_return_type (tree lambda, tree return_type)
8006 {
8007   tree fco = lambda_function (lambda);
8008   tree result;
8009
8010   LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
8011
8012   /* If we got a DECLTYPE_TYPE, don't stick it in the function yet,
8013      it would interfere with instantiating the closure type.  */
8014   if (dependent_type_p (return_type))
8015     return;
8016   if (return_type == error_mark_node)
8017     return;
8018
8019   /* TREE_TYPE (FUNCTION_DECL) == METHOD_TYPE
8020      TREE_TYPE (METHOD_TYPE)   == return-type  */
8021   TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
8022
8023   result = DECL_RESULT (fco);
8024   if (result == NULL_TREE)
8025     return;
8026
8027   /* We already have a DECL_RESULT from start_preparsed_function.
8028      Now we need to redo the work it and allocate_struct_function
8029      did to reflect the new type.  */
8030   result = build_decl (input_location, RESULT_DECL, NULL_TREE,
8031                        TYPE_MAIN_VARIANT (return_type));
8032   DECL_ARTIFICIAL (result) = 1;
8033   DECL_IGNORED_P (result) = 1;
8034   cp_apply_type_quals_to_decl (cp_type_quals (return_type),
8035                                result);
8036
8037   DECL_RESULT (fco) = result;
8038
8039   if (!processing_template_decl && aggregate_value_p (result, fco))
8040     {
8041 #ifdef PCC_STATIC_STRUCT_RETURN
8042       cfun->returns_pcc_struct = 1;
8043 #endif
8044       cfun->returns_struct = 1;
8045     }
8046
8047 }
8048
8049 /* DECL is a local variable or parameter from the surrounding scope of a
8050    lambda-expression.  Returns the decltype for a use of the capture field
8051    for DECL even if it hasn't been captured yet.  */
8052
8053 static tree
8054 capture_decltype (tree decl)
8055 {
8056   tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8057   /* FIXME do lookup instead of list walk? */
8058   tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
8059   tree type;
8060
8061   if (cap)
8062     type = TREE_TYPE (TREE_PURPOSE (cap));
8063   else
8064     switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
8065       {
8066       case CPLD_NONE:
8067         error ("%qD is not captured", decl);
8068         return error_mark_node;
8069
8070       case CPLD_COPY:
8071         type = TREE_TYPE (decl);
8072         if (TREE_CODE (type) == REFERENCE_TYPE
8073             && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
8074           type = TREE_TYPE (type);
8075         break;
8076
8077       case CPLD_REFERENCE:
8078         type = TREE_TYPE (decl);
8079         if (TREE_CODE (type) != REFERENCE_TYPE)
8080           type = build_reference_type (TREE_TYPE (decl));
8081         break;
8082
8083       default:
8084         gcc_unreachable ();
8085       }
8086
8087   if (TREE_CODE (type) != REFERENCE_TYPE)
8088     {
8089       if (!LAMBDA_EXPR_MUTABLE_P (lam))
8090         type = cp_build_qualified_type (type, (cp_type_quals (type)
8091                                                |TYPE_QUAL_CONST));
8092       type = build_reference_type (type);
8093     }
8094   return type;
8095 }
8096
8097 /* From an ID and INITIALIZER, create a capture (by reference if
8098    BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
8099    and return it.  */
8100
8101 tree
8102 add_capture (tree lambda, tree id, tree initializer, bool by_reference_p,
8103              bool explicit_init_p)
8104 {
8105   tree type;
8106   tree member;
8107
8108   type = lambda_capture_field_type (initializer);
8109   if (by_reference_p)
8110     {
8111       type = build_reference_type (type);
8112       if (!real_lvalue_p (initializer))
8113         error ("cannot capture %qE by reference", initializer);
8114     }
8115
8116   /* Make member variable.  */
8117   member = build_lang_decl (FIELD_DECL, id, type);
8118   if (!explicit_init_p)
8119     /* Normal captures are invisible to name lookup but uses are replaced
8120        with references to the capture field; we implement this by only
8121        really making them invisible in unevaluated context; see
8122        qualify_lookup.  For now, let's make explicitly initialized captures
8123        always visible.  */
8124     DECL_NORMAL_CAPTURE_P (member) = true;
8125
8126   /* Add it to the appropriate closure class if we've started it.  */
8127   if (current_class_type && current_class_type == TREE_TYPE (lambda))
8128     finish_member_declaration (member);
8129
8130   LAMBDA_EXPR_CAPTURE_LIST (lambda)
8131     = tree_cons (member, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
8132
8133   if (id == get_identifier ("__this"))
8134     {
8135       if (LAMBDA_EXPR_CAPTURES_THIS_P (lambda))
8136         error ("already captured %<this%> in lambda expression");
8137       LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
8138     }
8139
8140   return member;
8141 }
8142
8143 /* Register all the capture members on the list CAPTURES, which is the
8144    LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer.  */
8145
8146 void register_capture_members (tree captures)
8147 {
8148   if (captures)
8149     {
8150       register_capture_members (TREE_CHAIN (captures));
8151       finish_member_declaration (TREE_PURPOSE (captures));
8152     }
8153 }
8154
8155 /* Given a FIELD_DECL decl belonging to a closure type, return a
8156    COMPONENT_REF of it relative to the 'this' parameter of the op() for
8157    that type.  */
8158
8159 static tree
8160 thisify_lambda_field (tree decl)
8161 {
8162   tree context = lambda_function (DECL_CONTEXT (decl));
8163   tree object = cp_build_indirect_ref (DECL_ARGUMENTS (context),
8164                                        RO_NULL,
8165                                        tf_warning_or_error);
8166   return finish_non_static_data_member (decl, object,
8167                                         /*qualifying_scope*/NULL_TREE);
8168 }
8169
8170 /* Similar to add_capture, except this works on a stack of nested lambdas.
8171    BY_REFERENCE_P in this case is derived from the default capture mode.
8172    Returns the capture for the lambda at the bottom of the stack.  */
8173
8174 tree
8175 add_default_capture (tree lambda_stack, tree id, tree initializer)
8176 {
8177   bool this_capture_p = (id == get_identifier ("__this"));
8178
8179   tree member = NULL_TREE;
8180
8181   tree saved_class_type = current_class_type;
8182
8183   tree node;
8184
8185   for (node = lambda_stack;
8186        node;
8187        node = TREE_CHAIN (node))
8188     {
8189       tree lambda = TREE_VALUE (node);
8190
8191       current_class_type = TREE_TYPE (lambda);
8192       member = add_capture (lambda,
8193                             id,
8194                             initializer,
8195                             /*by_reference_p=*/
8196                             (!this_capture_p
8197                              && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
8198                                  == CPLD_REFERENCE)),
8199                             /*explicit_init_p=*/false);
8200       initializer = thisify_lambda_field (member);
8201     }
8202
8203   current_class_type = saved_class_type;
8204
8205   return member;
8206 }
8207
8208 /* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
8209    INDIRECT_REF, possibly adding it through default capturing.  */
8210
8211 tree
8212 lambda_expr_this_capture (tree lambda)
8213 {
8214   tree result;
8215
8216   tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
8217
8218   /* Try to default capture 'this' if we can.  */
8219   if (!this_capture
8220       && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE)
8221     {
8222       tree containing_function = TYPE_CONTEXT (TREE_TYPE (lambda));
8223       tree lambda_stack = tree_cons (NULL_TREE, lambda, NULL_TREE);
8224       tree init = NULL_TREE;
8225
8226       /* If we are in a lambda function, we can move out until we hit:
8227            1. a non-lambda function,
8228            2. a lambda function capturing 'this', or
8229            3. a non-default capturing lambda function.  */
8230       while (LAMBDA_FUNCTION_P (containing_function))
8231         {
8232           tree lambda
8233             = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
8234
8235           if (LAMBDA_EXPR_THIS_CAPTURE (lambda))
8236             {
8237               /* An outer lambda has already captured 'this'.  */
8238               tree cap = LAMBDA_EXPR_THIS_CAPTURE (lambda);
8239               init = thisify_lambda_field (cap);
8240               break;
8241             }
8242
8243           if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_NONE)
8244             /* An outer lambda won't let us capture 'this'.  */
8245             break;
8246
8247           lambda_stack = tree_cons (NULL_TREE,
8248                                     lambda,
8249                                     lambda_stack);
8250
8251           containing_function = decl_function_context (containing_function);
8252         }
8253
8254       if (!init && DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function)
8255           && !LAMBDA_FUNCTION_P (containing_function))
8256         /* First parameter is 'this'.  */
8257         init = DECL_ARGUMENTS (containing_function);
8258
8259       if (init)
8260         this_capture = add_default_capture (lambda_stack,
8261                                             /*id=*/get_identifier ("__this"),
8262                                             init);
8263     }
8264
8265   if (!this_capture)
8266     {
8267       error ("%<this%> was not captured for this lambda function");
8268       result = error_mark_node;
8269     }
8270   else
8271     {
8272       /* To make sure that current_class_ref is for the lambda.  */
8273       gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref)) == TREE_TYPE (lambda));
8274
8275       result = finish_non_static_data_member (this_capture,
8276                                               NULL_TREE,
8277                                               /*qualifying_scope=*/NULL_TREE);
8278
8279       /* If 'this' is captured, each use of 'this' is transformed into an
8280          access to the corresponding unnamed data member of the closure
8281          type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
8282          ensures that the transformed expression is an rvalue. ] */
8283       result = rvalue (result);
8284     }
8285
8286   return result;
8287 }
8288
8289 /* Returns the method basetype of the innermost non-lambda function, or
8290    NULL_TREE if none.  */
8291
8292 tree
8293 nonlambda_method_basetype (void)
8294 {
8295   tree fn, type;
8296   if (!current_class_ref)
8297     return NULL_TREE;
8298
8299   type = current_class_type;
8300   if (!LAMBDA_TYPE_P (type))
8301     return type;
8302
8303   /* Find the nearest enclosing non-lambda function.  */
8304   fn = TYPE_NAME (type);
8305   do
8306     fn = decl_function_context (fn);
8307   while (fn && LAMBDA_FUNCTION_P (fn));
8308
8309   if (!fn || !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
8310     return NULL_TREE;
8311
8312   return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
8313 }
8314
8315 /* If the closure TYPE has a static op(), also add a conversion to function
8316    pointer.  */
8317
8318 void
8319 maybe_add_lambda_conv_op (tree type)
8320 {
8321   bool nested = (current_function_decl != NULL_TREE);
8322   tree callop = lambda_function (type);
8323   tree rettype, name, fntype, fn, body, compound_stmt;
8324   tree thistype, stattype, statfn, convfn, call, arg;
8325   VEC (tree, gc) *argvec;
8326
8327   if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type)) != NULL_TREE)
8328     return;
8329
8330   stattype = build_function_type (TREE_TYPE (TREE_TYPE (callop)),
8331                                   FUNCTION_ARG_CHAIN (callop));
8332
8333   /* First build up the conversion op.  */
8334
8335   rettype = build_pointer_type (stattype);
8336   name = mangle_conv_op_name_for_type (rettype);
8337   thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
8338   fntype = build_method_type_directly (thistype, rettype, void_list_node);
8339   fn = convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
8340   DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
8341
8342   if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
8343       && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
8344     DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
8345
8346   SET_OVERLOADED_OPERATOR_CODE (fn, TYPE_EXPR);
8347   grokclassfn (type, fn, NO_SPECIAL);
8348   set_linkage_according_to_type (type, fn);
8349   rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
8350   DECL_IN_AGGR_P (fn) = 1;
8351   DECL_ARTIFICIAL (fn) = 1;
8352   DECL_NOT_REALLY_EXTERN (fn) = 1;
8353   DECL_DECLARED_INLINE_P (fn) = 1;
8354   DECL_ARGUMENTS (fn) = build_this_parm (fntype, TYPE_QUAL_CONST);
8355   if (nested)
8356     DECL_INTERFACE_KNOWN (fn) = 1;
8357
8358   add_method (type, fn, NULL_TREE);
8359
8360   /* Generic thunk code fails for varargs; we'll complain in mark_used if
8361      the conversion op is used.  */
8362   if (varargs_function_p (callop))
8363     {
8364       DECL_DELETED_FN (fn) = 1;
8365       return;
8366     }
8367
8368   /* Now build up the thunk to be returned.  */
8369
8370   name = get_identifier ("_FUN");
8371   fn = statfn = build_lang_decl (FUNCTION_DECL, name, stattype);
8372   DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
8373   if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
8374       && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
8375     DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
8376   grokclassfn (type, fn, NO_SPECIAL);
8377   set_linkage_according_to_type (type, fn);
8378   rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
8379   DECL_IN_AGGR_P (fn) = 1;
8380   DECL_ARTIFICIAL (fn) = 1;
8381   DECL_NOT_REALLY_EXTERN (fn) = 1;
8382   DECL_DECLARED_INLINE_P (fn) = 1;
8383   DECL_STATIC_FUNCTION_P (fn) = 1;
8384   DECL_ARGUMENTS (fn) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop)));
8385   for (arg = DECL_ARGUMENTS (fn); arg; arg = DECL_CHAIN (arg))
8386     DECL_CONTEXT (arg) = fn;
8387   if (nested)
8388     DECL_INTERFACE_KNOWN (fn) = 1;
8389
8390   add_method (type, fn, NULL_TREE);
8391
8392   if (nested)
8393     push_function_context ();
8394
8395   /* Generate the body of the thunk.  */
8396
8397   start_preparsed_function (statfn, NULL_TREE,
8398                             SF_PRE_PARSED | SF_INCLASS_INLINE);
8399   if (DECL_ONE_ONLY (statfn))
8400     {
8401       /* Put the thunk in the same comdat group as the call op.  */
8402       struct cgraph_node *callop_node, *thunk_node;
8403       DECL_COMDAT_GROUP (statfn) = DECL_COMDAT_GROUP (callop);
8404       callop_node = cgraph_node (callop);
8405       thunk_node = cgraph_node (statfn);
8406       gcc_assert (callop_node->same_comdat_group == NULL);
8407       gcc_assert (thunk_node->same_comdat_group == NULL);
8408       callop_node->same_comdat_group = thunk_node;
8409       thunk_node->same_comdat_group = callop_node;
8410     }
8411   body = begin_function_body ();
8412   compound_stmt = begin_compound_stmt (0);
8413
8414   arg = build1 (NOP_EXPR, TREE_TYPE (DECL_ARGUMENTS (callop)),
8415                 null_pointer_node);
8416   argvec = make_tree_vector ();
8417   VEC_quick_push (tree, argvec, arg);
8418   for (arg = DECL_ARGUMENTS (statfn); arg; arg = DECL_CHAIN (arg))
8419     VEC_safe_push (tree, gc, argvec, arg);
8420   call = build_call_a (callop, VEC_length (tree, argvec),
8421                        VEC_address (tree, argvec));
8422   CALL_FROM_THUNK_P (call) = 1;
8423   if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
8424     call = build_cplus_new (TREE_TYPE (call), call);
8425   call = convert_from_reference (call);
8426   finish_return_stmt (call);
8427
8428   finish_compound_stmt (compound_stmt);
8429   finish_function_body (body);
8430
8431   expand_or_defer_fn (finish_function (2));
8432
8433   /* Generate the body of the conversion op.  */
8434
8435   start_preparsed_function (convfn, NULL_TREE,
8436                             SF_PRE_PARSED | SF_INCLASS_INLINE);
8437   body = begin_function_body ();
8438   compound_stmt = begin_compound_stmt (0);
8439
8440   finish_return_stmt (decay_conversion (statfn));
8441
8442   finish_compound_stmt (compound_stmt);
8443   finish_function_body (body);
8444
8445   expand_or_defer_fn (finish_function (2));
8446
8447   if (nested)
8448     pop_function_context ();
8449 }
8450 #include "gt-cp-semantics.h"