OSDN Git Service

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