re PR rtl-optimization/53589 (ICE in maybe_record_trace_start with asm goto)
[official-gcc.git] / gcc / cp / semantics.c
blob7769bbaa36fba4babb417379d6926637e4c9e225
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.
6 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
7 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
8 Written by Mark Mitchell (mmitchell@usa.net) based on code found
9 formerly in parse.y and pt.c.
11 This file is part of GCC.
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.
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.
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/>. */
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 "intl.h"
37 #include "toplev.h"
38 #include "flags.h"
39 #include "timevar.h"
40 #include "diagnostic.h"
41 #include "cgraph.h"
42 #include "tree-iterator.h"
43 #include "vec.h"
44 #include "target.h"
45 #include "gimple.h"
46 #include "bitmap.h"
48 /* There routines provide a modular interface to perform many parsing
49 operations. They may therefore be used during actual parsing, or
50 during template instantiation, which may be regarded as a
51 degenerate form of parsing. */
53 static tree maybe_convert_cond (tree);
54 static tree finalize_nrv_r (tree *, int *, void *);
55 static tree capture_decltype (tree);
58 /* Deferred Access Checking Overview
59 ---------------------------------
61 Most C++ expressions and declarations require access checking
62 to be performed during parsing. However, in several cases,
63 this has to be treated differently.
65 For member declarations, access checking has to be deferred
66 until more information about the declaration is known. For
67 example:
69 class A {
70 typedef int X;
71 public:
72 X f();
75 A::X A::f();
76 A::X g();
78 When we are parsing the function return type `A::X', we don't
79 really know if this is allowed until we parse the function name.
81 Furthermore, some contexts require that access checking is
82 never performed at all. These include class heads, and template
83 instantiations.
85 Typical use of access checking functions is described here:
87 1. When we enter a context that requires certain access checking
88 mode, the function `push_deferring_access_checks' is called with
89 DEFERRING argument specifying the desired mode. Access checking
90 may be performed immediately (dk_no_deferred), deferred
91 (dk_deferred), or not performed (dk_no_check).
93 2. When a declaration such as a type, or a variable, is encountered,
94 the function `perform_or_defer_access_check' is called. It
95 maintains a VEC of all deferred checks.
97 3. The global `current_class_type' or `current_function_decl' is then
98 setup by the parser. `enforce_access' relies on these information
99 to check access.
101 4. Upon exiting the context mentioned in step 1,
102 `perform_deferred_access_checks' is called to check all declaration
103 stored in the VEC. `pop_deferring_access_checks' is then
104 called to restore the previous access checking mode.
106 In case of parsing error, we simply call `pop_deferring_access_checks'
107 without `perform_deferred_access_checks'. */
109 typedef struct GTY(()) deferred_access {
110 /* A VEC representing name-lookups for which we have deferred
111 checking access controls. We cannot check the accessibility of
112 names used in a decl-specifier-seq until we know what is being
113 declared because code like:
115 class A {
116 class B {};
117 B* f();
120 A::B* A::f() { return 0; }
122 is valid, even though `A::B' is not generally accessible. */
123 VEC (deferred_access_check,gc)* GTY(()) deferred_access_checks;
125 /* The current mode of access checks. */
126 enum deferring_kind deferring_access_checks_kind;
128 } deferred_access;
129 DEF_VEC_O (deferred_access);
130 DEF_VEC_ALLOC_O (deferred_access,gc);
132 /* Data for deferred access checking. */
133 static GTY(()) VEC(deferred_access,gc) *deferred_access_stack;
134 static GTY(()) unsigned deferred_access_no_check;
136 /* Save the current deferred access states and start deferred
137 access checking iff DEFER_P is true. */
139 void
140 push_deferring_access_checks (deferring_kind deferring)
142 /* For context like template instantiation, access checking
143 disabling applies to all nested context. */
144 if (deferred_access_no_check || deferring == dk_no_check)
145 deferred_access_no_check++;
146 else
148 deferred_access *ptr;
150 ptr = VEC_safe_push (deferred_access, gc, deferred_access_stack, NULL);
151 ptr->deferred_access_checks = NULL;
152 ptr->deferring_access_checks_kind = deferring;
156 /* Resume deferring access checks again after we stopped doing
157 this previously. */
159 void
160 resume_deferring_access_checks (void)
162 if (!deferred_access_no_check)
163 VEC_last (deferred_access, deferred_access_stack)
164 ->deferring_access_checks_kind = dk_deferred;
167 /* Stop deferring access checks. */
169 void
170 stop_deferring_access_checks (void)
172 if (!deferred_access_no_check)
173 VEC_last (deferred_access, deferred_access_stack)
174 ->deferring_access_checks_kind = dk_no_deferred;
177 /* Discard the current deferred access checks and restore the
178 previous states. */
180 void
181 pop_deferring_access_checks (void)
183 if (deferred_access_no_check)
184 deferred_access_no_check--;
185 else
186 VEC_pop (deferred_access, deferred_access_stack);
189 /* Returns a TREE_LIST representing the deferred checks.
190 The TREE_PURPOSE of each node is the type through which the
191 access occurred; the TREE_VALUE is the declaration named.
194 VEC (deferred_access_check,gc)*
195 get_deferred_access_checks (void)
197 if (deferred_access_no_check)
198 return NULL;
199 else
200 return (VEC_last (deferred_access, deferred_access_stack)
201 ->deferred_access_checks);
204 /* Take current deferred checks and combine with the
205 previous states if we also defer checks previously.
206 Otherwise perform checks now. */
208 void
209 pop_to_parent_deferring_access_checks (void)
211 if (deferred_access_no_check)
212 deferred_access_no_check--;
213 else
215 VEC (deferred_access_check,gc) *checks;
216 deferred_access *ptr;
218 checks = (VEC_last (deferred_access, deferred_access_stack)
219 ->deferred_access_checks);
221 VEC_pop (deferred_access, deferred_access_stack);
222 ptr = VEC_last (deferred_access, deferred_access_stack);
223 if (ptr->deferring_access_checks_kind == dk_no_deferred)
225 /* Check access. */
226 perform_access_checks (checks);
228 else
230 /* Merge with parent. */
231 int i, j;
232 deferred_access_check *chk, *probe;
234 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
236 FOR_EACH_VEC_ELT (deferred_access_check,
237 ptr->deferred_access_checks, j, probe)
239 if (probe->binfo == chk->binfo &&
240 probe->decl == chk->decl &&
241 probe->diag_decl == chk->diag_decl)
242 goto found;
244 /* Insert into parent's checks. */
245 VEC_safe_push (deferred_access_check, gc,
246 ptr->deferred_access_checks, chk);
247 found:;
253 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
254 is the BINFO indicating the qualifying scope used to access the
255 DECL node stored in the TREE_VALUE of the node. */
257 void
258 perform_access_checks (VEC (deferred_access_check,gc)* checks)
260 int i;
261 deferred_access_check *chk;
263 if (!checks)
264 return;
266 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
267 enforce_access (chk->binfo, chk->decl, chk->diag_decl);
270 /* Perform the deferred access checks.
272 After performing the checks, we still have to keep the list
273 `deferred_access_stack->deferred_access_checks' since we may want
274 to check access for them again later in a different context.
275 For example:
277 class A {
278 typedef int X;
279 static X a;
281 A::X A::a, x; // No error for `A::a', error for `x'
283 We have to perform deferred access of `A::X', first with `A::a',
284 next with `x'. */
286 void
287 perform_deferred_access_checks (void)
289 perform_access_checks (get_deferred_access_checks ());
292 /* Defer checking the accessibility of DECL, when looked up in
293 BINFO. DIAG_DECL is the declaration to use to print diagnostics. */
295 void
296 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl)
298 int i;
299 deferred_access *ptr;
300 deferred_access_check *chk;
301 deferred_access_check *new_access;
304 /* Exit if we are in a context that no access checking is performed.
306 if (deferred_access_no_check)
307 return;
309 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
311 ptr = VEC_last (deferred_access, deferred_access_stack);
313 /* If we are not supposed to defer access checks, just check now. */
314 if (ptr->deferring_access_checks_kind == dk_no_deferred)
316 enforce_access (binfo, decl, diag_decl);
317 return;
320 /* See if we are already going to perform this check. */
321 FOR_EACH_VEC_ELT (deferred_access_check,
322 ptr->deferred_access_checks, i, chk)
324 if (chk->decl == decl && chk->binfo == binfo &&
325 chk->diag_decl == diag_decl)
327 return;
330 /* If not, record the check. */
331 new_access =
332 VEC_safe_push (deferred_access_check, gc,
333 ptr->deferred_access_checks, 0);
334 new_access->binfo = binfo;
335 new_access->decl = decl;
336 new_access->diag_decl = diag_decl;
339 /* Used by build_over_call in LOOKUP_SPECULATIVE mode: return whether DECL
340 is accessible in BINFO, and possibly complain if not. If we're not
341 checking access, everything is accessible. */
343 bool
344 speculative_access_check (tree binfo, tree decl, tree diag_decl,
345 bool complain)
347 if (deferred_access_no_check)
348 return true;
350 /* If we're checking for implicit delete, we don't want access
351 control errors. */
352 if (!accessible_p (binfo, decl, true))
354 /* Unless we're under maybe_explain_implicit_delete. */
355 if (complain)
356 enforce_access (binfo, decl, diag_decl);
357 return false;
360 return true;
363 /* Returns nonzero if the current statement is a full expression,
364 i.e. temporaries created during that statement should be destroyed
365 at the end of the statement. */
368 stmts_are_full_exprs_p (void)
370 return current_stmt_tree ()->stmts_are_full_exprs_p;
373 /* T is a statement. Add it to the statement-tree. This is the C++
374 version. The C/ObjC frontends have a slightly different version of
375 this function. */
377 tree
378 add_stmt (tree t)
380 enum tree_code code = TREE_CODE (t);
382 if (EXPR_P (t) && code != LABEL_EXPR)
384 if (!EXPR_HAS_LOCATION (t))
385 SET_EXPR_LOCATION (t, input_location);
387 /* When we expand a statement-tree, we must know whether or not the
388 statements are full-expressions. We record that fact here. */
389 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
392 /* Add T to the statement-tree. Non-side-effect statements need to be
393 recorded during statement expressions. */
394 gcc_checking_assert (!VEC_empty (tree, stmt_list_stack));
395 append_to_statement_list_force (t, &cur_stmt_list);
397 return t;
400 /* Returns the stmt_tree to which statements are currently being added. */
402 stmt_tree
403 current_stmt_tree (void)
405 return (cfun
406 ? &cfun->language->base.x_stmt_tree
407 : &scope_chain->x_stmt_tree);
410 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
412 static tree
413 maybe_cleanup_point_expr (tree expr)
415 if (!processing_template_decl && stmts_are_full_exprs_p ())
416 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
417 return expr;
420 /* Like maybe_cleanup_point_expr except have the type of the new expression be
421 void so we don't need to create a temporary variable to hold the inner
422 expression. The reason why we do this is because the original type might be
423 an aggregate and we cannot create a temporary variable for that type. */
425 tree
426 maybe_cleanup_point_expr_void (tree expr)
428 if (!processing_template_decl && stmts_are_full_exprs_p ())
429 expr = fold_build_cleanup_point_expr (void_type_node, expr);
430 return expr;
435 /* Create a declaration statement for the declaration given by the DECL. */
437 void
438 add_decl_expr (tree decl)
440 tree r = build_stmt (input_location, DECL_EXPR, decl);
441 if (DECL_INITIAL (decl)
442 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
443 r = maybe_cleanup_point_expr_void (r);
444 add_stmt (r);
447 /* Finish a scope. */
449 tree
450 do_poplevel (tree stmt_list)
452 tree block = NULL;
454 if (stmts_are_full_exprs_p ())
455 block = poplevel (kept_level_p (), 1, 0);
457 stmt_list = pop_stmt_list (stmt_list);
459 if (!processing_template_decl)
461 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
462 /* ??? See c_end_compound_stmt re statement expressions. */
465 return stmt_list;
468 /* Begin a new scope. */
470 static tree
471 do_pushlevel (scope_kind sk)
473 tree ret = push_stmt_list ();
474 if (stmts_are_full_exprs_p ())
475 begin_scope (sk, NULL);
476 return ret;
479 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
480 when the current scope is exited. EH_ONLY is true when this is not
481 meant to apply to normal control flow transfer. */
483 void
484 push_cleanup (tree decl, tree cleanup, bool eh_only)
486 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
487 CLEANUP_EH_ONLY (stmt) = eh_only;
488 add_stmt (stmt);
489 CLEANUP_BODY (stmt) = push_stmt_list ();
492 /* Begin a conditional that might contain a declaration. When generating
493 normal code, we want the declaration to appear before the statement
494 containing the conditional. When generating template code, we want the
495 conditional to be rendered as the raw DECL_EXPR. */
497 static void
498 begin_cond (tree *cond_p)
500 if (processing_template_decl)
501 *cond_p = push_stmt_list ();
504 /* Finish such a conditional. */
506 static void
507 finish_cond (tree *cond_p, tree expr)
509 if (processing_template_decl)
511 tree cond = pop_stmt_list (*cond_p);
512 if (TREE_CODE (cond) == DECL_EXPR)
513 expr = cond;
515 if (check_for_bare_parameter_packs (expr))
516 *cond_p = error_mark_node;
518 *cond_p = expr;
521 /* If *COND_P specifies a conditional with a declaration, transform the
522 loop such that
523 while (A x = 42) { }
524 for (; A x = 42;) { }
525 becomes
526 while (true) { A x = 42; if (!x) break; }
527 for (;;) { A x = 42; if (!x) break; }
528 The statement list for BODY will be empty if the conditional did
529 not declare anything. */
531 static void
532 simplify_loop_decl_cond (tree *cond_p, tree body)
534 tree cond, if_stmt;
536 if (!TREE_SIDE_EFFECTS (body))
537 return;
539 cond = *cond_p;
540 *cond_p = boolean_true_node;
542 if_stmt = begin_if_stmt ();
543 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
544 finish_if_stmt_cond (cond, if_stmt);
545 finish_break_stmt ();
546 finish_then_clause (if_stmt);
547 finish_if_stmt (if_stmt);
550 /* Finish a goto-statement. */
552 tree
553 finish_goto_stmt (tree destination)
555 if (TREE_CODE (destination) == IDENTIFIER_NODE)
556 destination = lookup_label (destination);
558 /* We warn about unused labels with -Wunused. That means we have to
559 mark the used labels as used. */
560 if (TREE_CODE (destination) == LABEL_DECL)
561 TREE_USED (destination) = 1;
562 else
564 destination = mark_rvalue_use (destination);
565 if (!processing_template_decl)
567 destination = cp_convert (ptr_type_node, destination,
568 tf_warning_or_error);
569 if (error_operand_p (destination))
570 return NULL_TREE;
574 check_goto (destination);
576 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
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. */
583 static tree
584 maybe_convert_cond (tree cond)
586 /* Empty conditions remain empty. */
587 if (!cond)
588 return NULL_TREE;
590 /* Wait until we instantiate templates before doing conversion. */
591 if (processing_template_decl)
592 return cond;
594 if (warn_sequence_point)
595 verify_sequence_points (cond);
597 /* Do the conversion. */
598 cond = convert_from_reference (cond);
600 if (TREE_CODE (cond) == MODIFY_EXPR
601 && !TREE_NO_WARNING (cond)
602 && warn_parentheses)
604 warning (OPT_Wparentheses,
605 "suggest parentheses around assignment used as truth value");
606 TREE_NO_WARNING (cond) = 1;
609 return condition_conversion (cond);
612 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
614 tree
615 finish_expr_stmt (tree expr)
617 tree r = NULL_TREE;
619 if (expr != NULL_TREE)
621 if (!processing_template_decl)
623 if (warn_sequence_point)
624 verify_sequence_points (expr);
625 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
627 else if (!type_dependent_expression_p (expr))
628 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
629 tf_warning_or_error);
631 if (check_for_bare_parameter_packs (expr))
632 expr = error_mark_node;
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)
638 if (TREE_CODE (expr) != EXPR_STMT)
639 expr = build_stmt (input_location, EXPR_STMT, expr);
640 expr = maybe_cleanup_point_expr_void (expr);
643 r = add_stmt (expr);
646 finish_stmt ();
648 return r;
652 /* Begin an if-statement. Returns a newly created IF_STMT if
653 appropriate. */
655 tree
656 begin_if_stmt (void)
658 tree r, scope;
659 scope = do_pushlevel (sk_cond);
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;
666 /* Process the COND of an if-statement, which may be given by
667 IF_STMT. */
669 void
670 finish_if_stmt_cond (tree cond, tree if_stmt)
672 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
673 add_stmt (if_stmt);
674 THEN_CLAUSE (if_stmt) = push_stmt_list ();
677 /* Finish the then-clause of an if-statement, which may be given by
678 IF_STMT. */
680 tree
681 finish_then_clause (tree if_stmt)
683 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
684 return if_stmt;
687 /* Begin the else-clause of an if-statement. */
689 void
690 begin_else_clause (tree if_stmt)
692 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
695 /* Finish the else-clause of an if-statement, which may be given by
696 IF_STMT. */
698 void
699 finish_else_clause (tree if_stmt)
701 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
704 /* Finish an if-statement. */
706 void
707 finish_if_stmt (tree if_stmt)
709 tree scope = IF_SCOPE (if_stmt);
710 IF_SCOPE (if_stmt) = NULL;
711 add_stmt (do_poplevel (scope));
712 finish_stmt ();
715 /* Begin a while-statement. Returns a newly created WHILE_STMT if
716 appropriate. */
718 tree
719 begin_while_stmt (void)
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;
729 /* Process the COND of a while-statement, which may be given by
730 WHILE_STMT. */
732 void
733 finish_while_stmt_cond (tree cond, tree while_stmt)
735 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
736 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
739 /* Finish a while-statement, which may be given by WHILE_STMT. */
741 void
742 finish_while_stmt (tree while_stmt)
744 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
745 finish_stmt ();
748 /* Begin a do-statement. Returns a newly created DO_STMT if
749 appropriate. */
751 tree
752 begin_do_stmt (void)
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;
760 /* Finish the body of a do-statement, which may be given by DO_STMT. */
762 void
763 finish_do_body (tree do_stmt)
765 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
767 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
768 body = STATEMENT_LIST_TAIL (body)->stmt;
770 if (IS_EMPTY_STMT (body))
771 warning (OPT_Wempty_body,
772 "suggest explicit braces around empty body in %<do%> statement");
775 /* Finish a do-statement, which may be given by DO_STMT, and whose
776 COND is as indicated. */
778 void
779 finish_do_stmt (tree cond, tree do_stmt)
781 cond = maybe_convert_cond (cond);
782 DO_COND (do_stmt) = cond;
783 finish_stmt ();
786 /* Finish a return-statement. The EXPRESSION returned, if any, is as
787 indicated. */
789 tree
790 finish_return_stmt (tree expr)
792 tree r;
793 bool no_warning;
795 expr = check_return_expr (expr, &no_warning);
797 if (flag_openmp && !check_omp_return ())
798 return error_mark_node;
799 if (!processing_template_decl)
801 if (warn_sequence_point)
802 verify_sequence_points (expr);
804 if (DECL_DESTRUCTOR_P (current_function_decl)
805 || (DECL_CONSTRUCTOR_P (current_function_decl)
806 && targetm.cxx.cdtor_returns_this ()))
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);
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 ();
822 return r;
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. */
829 tree
830 begin_for_scope (tree *init)
832 tree scope = NULL_TREE;
833 if (flag_new_for_scope > 0)
834 scope = do_pushlevel (sk_for);
836 if (processing_template_decl)
837 *init = push_stmt_list ();
838 else
839 *init = NULL_TREE;
841 return scope;
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 */
848 tree
849 begin_for_stmt (tree scope, tree init)
851 tree r;
853 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
854 NULL_TREE, NULL_TREE, NULL_TREE);
856 if (scope == NULL_TREE)
858 gcc_assert (!init || !(flag_new_for_scope > 0));
859 if (!init)
860 scope = begin_for_scope (&init);
862 FOR_INIT_STMT (r) = init;
863 FOR_SCOPE (r) = scope;
865 return r;
868 /* Finish the for-init-statement of a for-statement, which may be
869 given by FOR_STMT. */
871 void
872 finish_for_init_stmt (tree for_stmt)
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));
881 /* Finish the COND of a for-statement, which may be given by
882 FOR_STMT. */
884 void
885 finish_for_cond (tree cond, tree for_stmt)
887 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
888 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
891 /* Finish the increment-EXPRESSION in a for-statement, which may be
892 given by FOR_STMT. */
894 void
895 finish_for_expr (tree expr, tree for_stmt)
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))
903 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
904 expr = error_mark_node;
906 if (!processing_template_decl)
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);
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;
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. */
927 void
928 finish_for_stmt (tree for_stmt)
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));
935 /* Pop the scope for the body of the loop. */
936 if (flag_new_for_scope > 0)
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));
947 finish_stmt ();
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(). */
955 tree
956 begin_range_for_stmt (tree scope, tree init)
958 tree r;
960 r = build_stmt (input_location, RANGE_FOR_STMT,
961 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
963 if (scope == NULL_TREE)
965 gcc_assert (!init || !(flag_new_for_scope > 0));
966 if (!init)
967 scope = begin_for_scope (&init);
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;
976 return r;
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. */
983 void
984 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
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);
992 /* Finish a break-statement. */
994 tree
995 finish_break_stmt (void)
997 /* In switch statements break is sometimes stylistically used after
998 a return statement. This can lead to spurious warnings about
999 control reaching the end of a non-void function when it is
1000 inlined. Note that we are calling block_may_fallthru with
1001 language specific tree nodes; this works because
1002 block_may_fallthru returns true when given something it does not
1003 understand. */
1004 if (!block_may_fallthru (cur_stmt_list))
1005 return void_zero_node;
1006 return add_stmt (build_stmt (input_location, BREAK_STMT));
1009 /* Finish a continue-statement. */
1011 tree
1012 finish_continue_stmt (void)
1014 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1017 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1018 appropriate. */
1020 tree
1021 begin_switch_stmt (void)
1023 tree r, scope;
1025 scope = do_pushlevel (sk_cond);
1026 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1028 begin_cond (&SWITCH_STMT_COND (r));
1030 return r;
1033 /* Finish the cond of a switch-statement. */
1035 void
1036 finish_switch_cond (tree cond, tree switch_stmt)
1038 tree orig_type = NULL;
1039 if (!processing_template_decl)
1041 /* Convert the condition to an integer or enumeration type. */
1042 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1043 if (cond == NULL_TREE)
1045 error ("switch quantity not an integer");
1046 cond = error_mark_node;
1048 orig_type = TREE_TYPE (cond);
1049 if (cond != error_mark_node)
1051 /* [stmt.switch]
1053 Integral promotions are performed. */
1054 cond = perform_integral_promotions (cond);
1055 cond = maybe_cleanup_point_expr (cond);
1058 if (check_for_bare_parameter_packs (cond))
1059 cond = error_mark_node;
1060 else if (!processing_template_decl && warn_sequence_point)
1061 verify_sequence_points (cond);
1063 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1064 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1065 add_stmt (switch_stmt);
1066 push_switch (switch_stmt);
1067 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1070 /* Finish the body of a switch-statement, which may be given by
1071 SWITCH_STMT. The COND to switch on is indicated. */
1073 void
1074 finish_switch_stmt (tree switch_stmt)
1076 tree scope;
1078 SWITCH_STMT_BODY (switch_stmt) =
1079 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1080 pop_switch ();
1081 finish_stmt ();
1083 scope = SWITCH_STMT_SCOPE (switch_stmt);
1084 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1085 add_stmt (do_poplevel (scope));
1088 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1089 appropriate. */
1091 tree
1092 begin_try_block (void)
1094 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1095 add_stmt (r);
1096 TRY_STMTS (r) = push_stmt_list ();
1097 return r;
1100 /* Likewise, for a function-try-block. The block returned in
1101 *COMPOUND_STMT is an artificial outer scope, containing the
1102 function-try-block. */
1104 tree
1105 begin_function_try_block (tree *compound_stmt)
1107 tree r;
1108 /* This outer scope does not exist in the C++ standard, but we need
1109 a place to put __FUNCTION__ and similar variables. */
1110 *compound_stmt = begin_compound_stmt (0);
1111 r = begin_try_block ();
1112 FN_TRY_BLOCK_P (r) = 1;
1113 return r;
1116 /* Finish a try-block, which may be given by TRY_BLOCK. */
1118 void
1119 finish_try_block (tree try_block)
1121 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1122 TRY_HANDLERS (try_block) = push_stmt_list ();
1125 /* Finish the body of a cleanup try-block, which may be given by
1126 TRY_BLOCK. */
1128 void
1129 finish_cleanup_try_block (tree try_block)
1131 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1134 /* Finish an implicitly generated try-block, with a cleanup is given
1135 by CLEANUP. */
1137 void
1138 finish_cleanup (tree cleanup, tree try_block)
1140 TRY_HANDLERS (try_block) = cleanup;
1141 CLEANUP_P (try_block) = 1;
1144 /* Likewise, for a function-try-block. */
1146 void
1147 finish_function_try_block (tree try_block)
1149 finish_try_block (try_block);
1150 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1151 the try block, but moving it inside. */
1152 in_function_try_handler = 1;
1155 /* Finish a handler-sequence for a try-block, which may be given by
1156 TRY_BLOCK. */
1158 void
1159 finish_handler_sequence (tree try_block)
1161 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1162 check_handlers (TRY_HANDLERS (try_block));
1165 /* Finish the handler-seq for a function-try-block, given by
1166 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1167 begin_function_try_block. */
1169 void
1170 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1172 in_function_try_handler = 0;
1173 finish_handler_sequence (try_block);
1174 finish_compound_stmt (compound_stmt);
1177 /* Begin a handler. Returns a HANDLER if appropriate. */
1179 tree
1180 begin_handler (void)
1182 tree r;
1184 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1185 add_stmt (r);
1187 /* Create a binding level for the eh_info and the exception object
1188 cleanup. */
1189 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1191 return r;
1194 /* Finish the handler-parameters for a handler, which may be given by
1195 HANDLER. DECL is the declaration for the catch parameter, or NULL
1196 if this is a `catch (...)' clause. */
1198 void
1199 finish_handler_parms (tree decl, tree handler)
1201 tree type = NULL_TREE;
1202 if (processing_template_decl)
1204 if (decl)
1206 decl = pushdecl (decl);
1207 decl = push_template_decl (decl);
1208 HANDLER_PARMS (handler) = decl;
1209 type = TREE_TYPE (decl);
1212 else
1213 type = expand_start_catch_block (decl);
1214 HANDLER_TYPE (handler) = type;
1215 if (!processing_template_decl && type)
1216 mark_used (eh_type_info (type));
1219 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1220 the return value from the matching call to finish_handler_parms. */
1222 void
1223 finish_handler (tree handler)
1225 if (!processing_template_decl)
1226 expand_end_catch_block ();
1227 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1230 /* Begin a compound statement. FLAGS contains some bits that control the
1231 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1232 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1233 block of a function. If BCS_TRY_BLOCK is set, this is the block
1234 created on behalf of a TRY statement. Returns a token to be passed to
1235 finish_compound_stmt. */
1237 tree
1238 begin_compound_stmt (unsigned int flags)
1240 tree r;
1242 if (flags & BCS_NO_SCOPE)
1244 r = push_stmt_list ();
1245 STATEMENT_LIST_NO_SCOPE (r) = 1;
1247 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1248 But, if it's a statement-expression with a scopeless block, there's
1249 nothing to keep, and we don't want to accidentally keep a block
1250 *inside* the scopeless block. */
1251 keep_next_level (false);
1253 else
1254 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1256 /* When processing a template, we need to remember where the braces were,
1257 so that we can set up identical scopes when instantiating the template
1258 later. BIND_EXPR is a handy candidate for this.
1259 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1260 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1261 processing templates. */
1262 if (processing_template_decl)
1264 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1265 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1266 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1267 TREE_SIDE_EFFECTS (r) = 1;
1270 return r;
1273 /* Finish a compound-statement, which is given by STMT. */
1275 void
1276 finish_compound_stmt (tree stmt)
1278 if (TREE_CODE (stmt) == BIND_EXPR)
1280 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1281 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1282 discard the BIND_EXPR so it can be merged with the containing
1283 STATEMENT_LIST. */
1284 if (TREE_CODE (body) == STATEMENT_LIST
1285 && STATEMENT_LIST_HEAD (body) == NULL
1286 && !BIND_EXPR_BODY_BLOCK (stmt)
1287 && !BIND_EXPR_TRY_BLOCK (stmt))
1288 stmt = body;
1289 else
1290 BIND_EXPR_BODY (stmt) = body;
1292 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1293 stmt = pop_stmt_list (stmt);
1294 else
1296 /* Destroy any ObjC "super" receivers that may have been
1297 created. */
1298 objc_clear_super_receiver ();
1300 stmt = do_poplevel (stmt);
1303 /* ??? See c_end_compound_stmt wrt statement expressions. */
1304 add_stmt (stmt);
1305 finish_stmt ();
1308 /* Finish an asm-statement, whose components are a STRING, some
1309 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1310 LABELS. Also note whether the asm-statement should be
1311 considered volatile. */
1313 tree
1314 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1315 tree input_operands, tree clobbers, tree labels)
1317 tree r;
1318 tree t;
1319 int ninputs = list_length (input_operands);
1320 int noutputs = list_length (output_operands);
1322 if (!processing_template_decl)
1324 const char *constraint;
1325 const char **oconstraints;
1326 bool allows_mem, allows_reg, is_inout;
1327 tree operand;
1328 int i;
1330 oconstraints = XALLOCAVEC (const char *, noutputs);
1332 string = resolve_asm_operand_names (string, output_operands,
1333 input_operands, labels);
1335 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1337 operand = TREE_VALUE (t);
1339 /* ??? Really, this should not be here. Users should be using a
1340 proper lvalue, dammit. But there's a long history of using
1341 casts in the output operands. In cases like longlong.h, this
1342 becomes a primitive form of typechecking -- if the cast can be
1343 removed, then the output operand had a type of the proper width;
1344 otherwise we'll get an error. Gross, but ... */
1345 STRIP_NOPS (operand);
1347 operand = mark_lvalue_use (operand);
1349 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1350 operand = error_mark_node;
1352 if (operand != error_mark_node
1353 && (TREE_READONLY (operand)
1354 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1355 /* Functions are not modifiable, even though they are
1356 lvalues. */
1357 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1358 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1359 /* If it's an aggregate and any field is const, then it is
1360 effectively const. */
1361 || (CLASS_TYPE_P (TREE_TYPE (operand))
1362 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1363 cxx_readonly_error (operand, lv_asm);
1365 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1366 oconstraints[i] = constraint;
1368 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1369 &allows_mem, &allows_reg, &is_inout))
1371 /* If the operand is going to end up in memory,
1372 mark it addressable. */
1373 if (!allows_reg && !cxx_mark_addressable (operand))
1374 operand = error_mark_node;
1376 else
1377 operand = error_mark_node;
1379 TREE_VALUE (t) = operand;
1382 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1384 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1385 operand = decay_conversion (TREE_VALUE (t), tf_warning_or_error);
1387 /* If the type of the operand hasn't been determined (e.g.,
1388 because it involves an overloaded function), then issue
1389 an error message. There's no context available to
1390 resolve the overloading. */
1391 if (TREE_TYPE (operand) == unknown_type_node)
1393 error ("type of asm operand %qE could not be determined",
1394 TREE_VALUE (t));
1395 operand = error_mark_node;
1398 if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1399 oconstraints, &allows_mem, &allows_reg))
1401 /* If the operand is going to end up in memory,
1402 mark it addressable. */
1403 if (!allows_reg && allows_mem)
1405 /* Strip the nops as we allow this case. FIXME, this really
1406 should be rejected or made deprecated. */
1407 STRIP_NOPS (operand);
1408 if (!cxx_mark_addressable (operand))
1409 operand = error_mark_node;
1412 else
1413 operand = error_mark_node;
1415 TREE_VALUE (t) = operand;
1419 r = build_stmt (input_location, ASM_EXPR, string,
1420 output_operands, input_operands,
1421 clobbers, labels);
1422 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1423 r = maybe_cleanup_point_expr_void (r);
1424 return add_stmt (r);
1427 /* Finish a label with the indicated NAME. Returns the new label. */
1429 tree
1430 finish_label_stmt (tree name)
1432 tree decl = define_label (input_location, name);
1434 if (decl == error_mark_node)
1435 return error_mark_node;
1437 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1439 return decl;
1442 /* Finish a series of declarations for local labels. G++ allows users
1443 to declare "local" labels, i.e., labels with scope. This extension
1444 is useful when writing code involving statement-expressions. */
1446 void
1447 finish_label_decl (tree name)
1449 if (!at_function_scope_p ())
1451 error ("__label__ declarations are only allowed in function scopes");
1452 return;
1455 add_decl_expr (declare_local_label (name));
1458 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1460 void
1461 finish_decl_cleanup (tree decl, tree cleanup)
1463 push_cleanup (decl, cleanup, false);
1466 /* If the current scope exits with an exception, run CLEANUP. */
1468 void
1469 finish_eh_cleanup (tree cleanup)
1471 push_cleanup (NULL, cleanup, true);
1474 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1475 order they were written by the user. Each node is as for
1476 emit_mem_initializers. */
1478 void
1479 finish_mem_initializers (tree mem_inits)
1481 /* Reorder the MEM_INITS so that they are in the order they appeared
1482 in the source program. */
1483 mem_inits = nreverse (mem_inits);
1485 if (processing_template_decl)
1487 tree mem;
1489 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1491 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1492 check for bare parameter packs in the TREE_VALUE, because
1493 any parameter packs in the TREE_VALUE have already been
1494 bound as part of the TREE_PURPOSE. See
1495 make_pack_expansion for more information. */
1496 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1497 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1498 TREE_VALUE (mem) = error_mark_node;
1501 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION,
1502 CTOR_INITIALIZER, mem_inits));
1504 else
1505 emit_mem_initializers (mem_inits);
1508 /* Finish a parenthesized expression EXPR. */
1510 tree
1511 finish_parenthesized_expr (tree expr)
1513 if (EXPR_P (expr))
1514 /* This inhibits warnings in c_common_truthvalue_conversion. */
1515 TREE_NO_WARNING (expr) = 1;
1517 if (TREE_CODE (expr) == OFFSET_REF
1518 || TREE_CODE (expr) == SCOPE_REF)
1519 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1520 enclosed in parentheses. */
1521 PTRMEM_OK_P (expr) = 0;
1523 if (TREE_CODE (expr) == STRING_CST)
1524 PAREN_STRING_LITERAL_P (expr) = 1;
1526 return expr;
1529 /* Finish a reference to a non-static data member (DECL) that is not
1530 preceded by `.' or `->'. */
1532 tree
1533 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1535 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1537 if (!object)
1539 tree scope = qualifying_scope;
1540 if (scope == NULL_TREE)
1541 scope = context_for_name_lookup (decl);
1542 object = maybe_dummy_object (scope, NULL);
1545 if (object == error_mark_node)
1546 return error_mark_node;
1548 /* DR 613: Can use non-static data members without an associated
1549 object in sizeof/decltype/alignof. */
1550 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1551 && (!processing_template_decl || !current_class_ref))
1553 if (current_function_decl
1554 && DECL_STATIC_FUNCTION_P (current_function_decl))
1555 error ("invalid use of member %q+D in static member function", decl);
1556 else
1557 error ("invalid use of non-static data member %q+D", decl);
1558 error ("from this location");
1560 return error_mark_node;
1563 if (current_class_ptr)
1564 TREE_USED (current_class_ptr) = 1;
1565 if (processing_template_decl && !qualifying_scope)
1567 tree type = TREE_TYPE (decl);
1569 if (TREE_CODE (type) == REFERENCE_TYPE)
1570 /* Quals on the object don't matter. */;
1571 else
1573 /* Set the cv qualifiers. */
1574 int quals = (current_class_ref
1575 ? cp_type_quals (TREE_TYPE (current_class_ref))
1576 : TYPE_UNQUALIFIED);
1578 if (DECL_MUTABLE_P (decl))
1579 quals &= ~TYPE_QUAL_CONST;
1581 quals |= cp_type_quals (TREE_TYPE (decl));
1582 type = cp_build_qualified_type (type, quals);
1585 return (convert_from_reference
1586 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1588 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1589 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1590 for now. */
1591 else if (processing_template_decl)
1592 return build_qualified_name (TREE_TYPE (decl),
1593 qualifying_scope,
1594 decl,
1595 /*template_p=*/false);
1596 else
1598 tree access_type = TREE_TYPE (object);
1600 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1601 decl);
1603 /* If the data member was named `C::M', convert `*this' to `C'
1604 first. */
1605 if (qualifying_scope)
1607 tree binfo = NULL_TREE;
1608 object = build_scoped_ref (object, qualifying_scope,
1609 &binfo);
1612 return build_class_member_access_expr (object, decl,
1613 /*access_path=*/NULL_TREE,
1614 /*preserve_reference=*/false,
1615 tf_warning_or_error);
1619 /* If we are currently parsing a template and we encountered a typedef
1620 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1621 adds the typedef to a list tied to the current template.
1622 At tempate instantiatin time, that list is walked and access check
1623 performed for each typedef.
1624 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1626 void
1627 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1628 tree context,
1629 location_t location)
1631 tree template_info = NULL;
1632 tree cs = current_scope ();
1634 if (!is_typedef_decl (typedef_decl)
1635 || !context
1636 || !CLASS_TYPE_P (context)
1637 || !cs)
1638 return;
1640 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1641 template_info = get_template_info (cs);
1643 if (template_info
1644 && TI_TEMPLATE (template_info)
1645 && !currently_open_class (context))
1646 append_type_to_template_for_access_check (cs, typedef_decl,
1647 context, location);
1650 /* DECL was the declaration to which a qualified-id resolved. Issue
1651 an error message if it is not accessible. If OBJECT_TYPE is
1652 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1653 type of `*x', or `x', respectively. If the DECL was named as
1654 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1656 void
1657 check_accessibility_of_qualified_id (tree decl,
1658 tree object_type,
1659 tree nested_name_specifier)
1661 tree scope;
1662 tree qualifying_type = NULL_TREE;
1664 /* If we are parsing a template declaration and if decl is a typedef,
1665 add it to a list tied to the template.
1666 At template instantiation time, that list will be walked and
1667 access check performed. */
1668 add_typedef_to_current_template_for_access_check (decl,
1669 nested_name_specifier
1670 ? nested_name_specifier
1671 : DECL_CONTEXT (decl),
1672 input_location);
1674 /* If we're not checking, return immediately. */
1675 if (deferred_access_no_check)
1676 return;
1678 /* Determine the SCOPE of DECL. */
1679 scope = context_for_name_lookup (decl);
1680 /* If the SCOPE is not a type, then DECL is not a member. */
1681 if (!TYPE_P (scope))
1682 return;
1683 /* Compute the scope through which DECL is being accessed. */
1684 if (object_type
1685 /* OBJECT_TYPE might not be a class type; consider:
1687 class A { typedef int I; };
1688 I *p;
1689 p->A::I::~I();
1691 In this case, we will have "A::I" as the DECL, but "I" as the
1692 OBJECT_TYPE. */
1693 && CLASS_TYPE_P (object_type)
1694 && DERIVED_FROM_P (scope, object_type))
1695 /* If we are processing a `->' or `.' expression, use the type of the
1696 left-hand side. */
1697 qualifying_type = object_type;
1698 else if (nested_name_specifier)
1700 /* If the reference is to a non-static member of the
1701 current class, treat it as if it were referenced through
1702 `this'. */
1703 if (DECL_NONSTATIC_MEMBER_P (decl)
1704 && current_class_ptr
1705 && DERIVED_FROM_P (scope, current_class_type))
1706 qualifying_type = current_class_type;
1707 /* Otherwise, use the type indicated by the
1708 nested-name-specifier. */
1709 else
1710 qualifying_type = nested_name_specifier;
1712 else
1713 /* Otherwise, the name must be from the current class or one of
1714 its bases. */
1715 qualifying_type = currently_open_derived_class (scope);
1717 if (qualifying_type
1718 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1719 or similar in a default argument value. */
1720 && CLASS_TYPE_P (qualifying_type)
1721 && !dependent_type_p (qualifying_type))
1722 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1723 decl);
1726 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1727 class named to the left of the "::" operator. DONE is true if this
1728 expression is a complete postfix-expression; it is false if this
1729 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1730 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1731 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1732 is true iff this qualified name appears as a template argument. */
1734 tree
1735 finish_qualified_id_expr (tree qualifying_class,
1736 tree expr,
1737 bool done,
1738 bool address_p,
1739 bool template_p,
1740 bool template_arg_p)
1742 gcc_assert (TYPE_P (qualifying_class));
1744 if (error_operand_p (expr))
1745 return error_mark_node;
1747 if (DECL_P (expr) || BASELINK_P (expr))
1748 mark_used (expr);
1750 if (template_p)
1751 check_template_keyword (expr);
1753 /* If EXPR occurs as the operand of '&', use special handling that
1754 permits a pointer-to-member. */
1755 if (address_p && done)
1757 if (TREE_CODE (expr) == SCOPE_REF)
1758 expr = TREE_OPERAND (expr, 1);
1759 expr = build_offset_ref (qualifying_class, expr,
1760 /*address_p=*/true);
1761 return expr;
1764 /* Within the scope of a class, turn references to non-static
1765 members into expression of the form "this->...". */
1766 if (template_arg_p)
1767 /* But, within a template argument, we do not want make the
1768 transformation, as there is no "this" pointer. */
1770 else if (TREE_CODE (expr) == FIELD_DECL)
1772 push_deferring_access_checks (dk_no_check);
1773 expr = finish_non_static_data_member (expr, NULL_TREE,
1774 qualifying_class);
1775 pop_deferring_access_checks ();
1777 else if (BASELINK_P (expr) && !processing_template_decl)
1779 tree ob;
1781 /* See if any of the functions are non-static members. */
1782 /* If so, the expression may be relative to 'this'. */
1783 if (!shared_member_p (expr)
1784 && (ob = maybe_dummy_object (qualifying_class, NULL),
1785 !is_dummy_object (ob)))
1786 expr = (build_class_member_access_expr
1787 (ob,
1788 expr,
1789 BASELINK_ACCESS_BINFO (expr),
1790 /*preserve_reference=*/false,
1791 tf_warning_or_error));
1792 else if (done)
1793 /* The expression is a qualified name whose address is not
1794 being taken. */
1795 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1798 return expr;
1801 /* Begin a statement-expression. The value returned must be passed to
1802 finish_stmt_expr. */
1804 tree
1805 begin_stmt_expr (void)
1807 return push_stmt_list ();
1810 /* Process the final expression of a statement expression. EXPR can be
1811 NULL, if the final expression is empty. Return a STATEMENT_LIST
1812 containing all the statements in the statement-expression, or
1813 ERROR_MARK_NODE if there was an error. */
1815 tree
1816 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1818 if (error_operand_p (expr))
1820 /* The type of the statement-expression is the type of the last
1821 expression. */
1822 TREE_TYPE (stmt_expr) = error_mark_node;
1823 return error_mark_node;
1826 /* If the last statement does not have "void" type, then the value
1827 of the last statement is the value of the entire expression. */
1828 if (expr)
1830 tree type = TREE_TYPE (expr);
1832 if (processing_template_decl)
1834 expr = build_stmt (input_location, EXPR_STMT, expr);
1835 expr = add_stmt (expr);
1836 /* Mark the last statement so that we can recognize it as such at
1837 template-instantiation time. */
1838 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1840 else if (VOID_TYPE_P (type))
1842 /* Just treat this like an ordinary statement. */
1843 expr = finish_expr_stmt (expr);
1845 else
1847 /* It actually has a value we need to deal with. First, force it
1848 to be an rvalue so that we won't need to build up a copy
1849 constructor call later when we try to assign it to something. */
1850 expr = force_rvalue (expr, tf_warning_or_error);
1851 if (error_operand_p (expr))
1852 return error_mark_node;
1854 /* Update for array-to-pointer decay. */
1855 type = TREE_TYPE (expr);
1857 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1858 normal statement, but don't convert to void or actually add
1859 the EXPR_STMT. */
1860 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1861 expr = maybe_cleanup_point_expr (expr);
1862 add_stmt (expr);
1865 /* The type of the statement-expression is the type of the last
1866 expression. */
1867 TREE_TYPE (stmt_expr) = type;
1870 return stmt_expr;
1873 /* Finish a statement-expression. EXPR should be the value returned
1874 by the previous begin_stmt_expr. Returns an expression
1875 representing the statement-expression. */
1877 tree
1878 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1880 tree type;
1881 tree result;
1883 if (error_operand_p (stmt_expr))
1885 pop_stmt_list (stmt_expr);
1886 return error_mark_node;
1889 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
1891 type = TREE_TYPE (stmt_expr);
1892 result = pop_stmt_list (stmt_expr);
1893 TREE_TYPE (result) = type;
1895 if (processing_template_decl)
1897 result = build_min (STMT_EXPR, type, result);
1898 TREE_SIDE_EFFECTS (result) = 1;
1899 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1901 else if (CLASS_TYPE_P (type))
1903 /* Wrap the statement-expression in a TARGET_EXPR so that the
1904 temporary object created by the final expression is destroyed at
1905 the end of the full-expression containing the
1906 statement-expression. */
1907 result = force_target_expr (type, result, tf_warning_or_error);
1910 return result;
1913 /* Returns the expression which provides the value of STMT_EXPR. */
1915 tree
1916 stmt_expr_value_expr (tree stmt_expr)
1918 tree t = STMT_EXPR_STMT (stmt_expr);
1920 if (TREE_CODE (t) == BIND_EXPR)
1921 t = BIND_EXPR_BODY (t);
1923 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
1924 t = STATEMENT_LIST_TAIL (t)->stmt;
1926 if (TREE_CODE (t) == EXPR_STMT)
1927 t = EXPR_STMT_EXPR (t);
1929 return t;
1932 /* Return TRUE iff EXPR_STMT is an empty list of
1933 expression statements. */
1935 bool
1936 empty_expr_stmt_p (tree expr_stmt)
1938 tree body = NULL_TREE;
1940 if (expr_stmt == void_zero_node)
1941 return true;
1943 if (expr_stmt)
1945 if (TREE_CODE (expr_stmt) == EXPR_STMT)
1946 body = EXPR_STMT_EXPR (expr_stmt);
1947 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
1948 body = expr_stmt;
1951 if (body)
1953 if (TREE_CODE (body) == STATEMENT_LIST)
1954 return tsi_end_p (tsi_start (body));
1955 else
1956 return empty_expr_stmt_p (body);
1958 return false;
1961 /* Perform Koenig lookup. FN is the postfix-expression representing
1962 the function (or functions) to call; ARGS are the arguments to the
1963 call; if INCLUDE_STD then the `std' namespace is automatically
1964 considered an associated namespace (used in range-based for loops).
1965 Returns the functions to be considered by overload resolution. */
1967 tree
1968 perform_koenig_lookup (tree fn, VEC(tree,gc) *args, bool include_std,
1969 tsubst_flags_t complain)
1971 tree identifier = NULL_TREE;
1972 tree functions = NULL_TREE;
1973 tree tmpl_args = NULL_TREE;
1974 bool template_id = false;
1976 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1978 /* Use a separate flag to handle null args. */
1979 template_id = true;
1980 tmpl_args = TREE_OPERAND (fn, 1);
1981 fn = TREE_OPERAND (fn, 0);
1984 /* Find the name of the overloaded function. */
1985 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1986 identifier = fn;
1987 else if (is_overloaded_fn (fn))
1989 functions = fn;
1990 identifier = DECL_NAME (get_first_fn (functions));
1992 else if (DECL_P (fn))
1994 functions = fn;
1995 identifier = DECL_NAME (fn);
1998 /* A call to a namespace-scope function using an unqualified name.
2000 Do Koenig lookup -- unless any of the arguments are
2001 type-dependent. */
2002 if (!any_type_dependent_arguments_p (args)
2003 && !any_dependent_template_arguments_p (tmpl_args))
2005 fn = lookup_arg_dependent (identifier, functions, args, include_std);
2006 if (!fn)
2008 /* The unqualified name could not be resolved. */
2009 if (complain)
2010 fn = unqualified_fn_lookup_error (identifier);
2011 else
2012 fn = identifier;
2016 if (fn && template_id)
2017 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2019 return fn;
2022 /* Generate an expression for `FN (ARGS)'. This may change the
2023 contents of ARGS.
2025 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2026 as a virtual call, even if FN is virtual. (This flag is set when
2027 encountering an expression where the function name is explicitly
2028 qualified. For example a call to `X::f' never generates a virtual
2029 call.)
2031 Returns code for the call. */
2033 tree
2034 finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
2035 bool koenig_p, tsubst_flags_t complain)
2037 tree result;
2038 tree orig_fn;
2039 VEC(tree,gc) *orig_args = NULL;
2041 if (fn == error_mark_node)
2042 return error_mark_node;
2044 gcc_assert (!TYPE_P (fn));
2046 orig_fn = fn;
2048 if (processing_template_decl)
2050 /* If the call expression is dependent, build a CALL_EXPR node
2051 with no type; type_dependent_expression_p recognizes
2052 expressions with no type as being dependent. */
2053 if (type_dependent_expression_p (fn)
2054 || any_type_dependent_arguments_p (*args)
2055 /* For a non-static member function that doesn't have an
2056 explicit object argument, we need to specifically
2057 test the type dependency of the "this" pointer because it
2058 is not included in *ARGS even though it is considered to
2059 be part of the list of arguments. Note that this is
2060 related to CWG issues 515 and 1005. */
2061 || (TREE_CODE (fn) != COMPONENT_REF
2062 && non_static_member_function_p (fn)
2063 && current_class_ref
2064 && type_dependent_expression_p (current_class_ref)))
2066 result = build_nt_call_vec (fn, *args);
2067 KOENIG_LOOKUP_P (result) = koenig_p;
2068 if (cfun)
2072 tree fndecl = OVL_CURRENT (fn);
2073 if (TREE_CODE (fndecl) != FUNCTION_DECL
2074 || !TREE_THIS_VOLATILE (fndecl))
2075 break;
2076 fn = OVL_NEXT (fn);
2078 while (fn);
2079 if (!fn)
2080 current_function_returns_abnormally = 1;
2082 return result;
2084 orig_args = make_tree_vector_copy (*args);
2085 if (!BASELINK_P (fn)
2086 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2087 && TREE_TYPE (fn) != unknown_type_node)
2088 fn = build_non_dependent_expr (fn);
2089 make_args_non_dependent (*args);
2092 if (TREE_CODE (fn) == COMPONENT_REF)
2094 tree member = TREE_OPERAND (fn, 1);
2095 if (BASELINK_P (member))
2097 tree object = TREE_OPERAND (fn, 0);
2098 return build_new_method_call (object, member,
2099 args, NULL_TREE,
2100 (disallow_virtual
2101 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2102 : LOOKUP_NORMAL),
2103 /*fn_p=*/NULL,
2104 complain);
2108 if (is_overloaded_fn (fn))
2109 fn = baselink_for_fns (fn);
2111 result = NULL_TREE;
2112 if (BASELINK_P (fn))
2114 tree object;
2116 /* A call to a member function. From [over.call.func]:
2118 If the keyword this is in scope and refers to the class of
2119 that member function, or a derived class thereof, then the
2120 function call is transformed into a qualified function call
2121 using (*this) as the postfix-expression to the left of the
2122 . operator.... [Otherwise] a contrived object of type T
2123 becomes the implied object argument.
2125 In this situation:
2127 struct A { void f(); };
2128 struct B : public A {};
2129 struct C : public A { void g() { B::f(); }};
2131 "the class of that member function" refers to `A'. But 11.2
2132 [class.access.base] says that we need to convert 'this' to B* as
2133 part of the access, so we pass 'B' to maybe_dummy_object. */
2135 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2136 NULL);
2138 if (processing_template_decl)
2140 if (type_dependent_expression_p (object))
2142 tree ret = build_nt_call_vec (orig_fn, orig_args);
2143 release_tree_vector (orig_args);
2144 return ret;
2146 object = build_non_dependent_expr (object);
2149 result = build_new_method_call (object, fn, args, NULL_TREE,
2150 (disallow_virtual
2151 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2152 : LOOKUP_NORMAL),
2153 /*fn_p=*/NULL,
2154 complain);
2156 else if (is_overloaded_fn (fn))
2158 /* If the function is an overloaded builtin, resolve it. */
2159 if (TREE_CODE (fn) == FUNCTION_DECL
2160 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2161 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2162 result = resolve_overloaded_builtin (input_location, fn, *args);
2164 if (!result)
2165 /* A call to a namespace-scope function. */
2166 result = build_new_function_call (fn, args, koenig_p, complain);
2168 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2170 if (!VEC_empty (tree, *args))
2171 error ("arguments to destructor are not allowed");
2172 /* Mark the pseudo-destructor call as having side-effects so
2173 that we do not issue warnings about its use. */
2174 result = build1 (NOP_EXPR,
2175 void_type_node,
2176 TREE_OPERAND (fn, 0));
2177 TREE_SIDE_EFFECTS (result) = 1;
2179 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2180 /* If the "function" is really an object of class type, it might
2181 have an overloaded `operator ()'. */
2182 result = build_op_call (fn, args, complain);
2184 if (!result)
2185 /* A call where the function is unknown. */
2186 result = cp_build_function_call_vec (fn, args, complain);
2188 if (processing_template_decl && result != error_mark_node)
2190 if (TREE_CODE (result) == INDIRECT_REF)
2191 result = TREE_OPERAND (result, 0);
2192 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2193 SET_EXPR_LOCATION (result, input_location);
2194 KOENIG_LOOKUP_P (result) = koenig_p;
2195 release_tree_vector (orig_args);
2196 result = convert_from_reference (result);
2199 if (koenig_p)
2201 /* Free garbage OVERLOADs from arg-dependent lookup. */
2202 tree next = NULL_TREE;
2203 for (fn = orig_fn;
2204 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2205 fn = next)
2207 if (processing_template_decl)
2208 /* In a template, we'll re-use them at instantiation time. */
2209 OVL_ARG_DEPENDENT (fn) = false;
2210 else
2212 next = OVL_CHAIN (fn);
2213 ggc_free (fn);
2218 return result;
2221 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2222 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2223 POSTDECREMENT_EXPR.) */
2225 tree
2226 finish_increment_expr (tree expr, enum tree_code code)
2228 return build_x_unary_op (input_location, code, expr, tf_warning_or_error);
2231 /* Finish a use of `this'. Returns an expression for `this'. */
2233 tree
2234 finish_this_expr (void)
2236 tree result;
2238 if (current_class_ptr)
2240 tree type = TREE_TYPE (current_class_ref);
2242 /* In a lambda expression, 'this' refers to the captured 'this'. */
2243 if (LAMBDA_TYPE_P (type))
2244 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type));
2245 else
2246 result = current_class_ptr;
2249 else if (current_function_decl
2250 && DECL_STATIC_FUNCTION_P (current_function_decl))
2252 error ("%<this%> is unavailable for static member functions");
2253 result = error_mark_node;
2255 else
2257 if (current_function_decl)
2258 error ("invalid use of %<this%> in non-member function");
2259 else
2260 error ("invalid use of %<this%> at top level");
2261 result = error_mark_node;
2264 return result;
2267 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2268 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2269 the TYPE for the type given. If SCOPE is non-NULL, the expression
2270 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2272 tree
2273 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
2275 if (object == error_mark_node || destructor == error_mark_node)
2276 return error_mark_node;
2278 gcc_assert (TYPE_P (destructor));
2280 if (!processing_template_decl)
2282 if (scope == error_mark_node)
2284 error ("invalid qualifying scope in pseudo-destructor name");
2285 return error_mark_node;
2287 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2289 error ("qualified type %qT does not match destructor name ~%qT",
2290 scope, destructor);
2291 return error_mark_node;
2295 /* [expr.pseudo] says both:
2297 The type designated by the pseudo-destructor-name shall be
2298 the same as the object type.
2300 and:
2302 The cv-unqualified versions of the object type and of the
2303 type designated by the pseudo-destructor-name shall be the
2304 same type.
2306 We implement the more generous second sentence, since that is
2307 what most other compilers do. */
2308 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2309 destructor))
2311 error ("%qE is not of type %qT", object, destructor);
2312 return error_mark_node;
2316 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
2319 /* Finish an expression of the form CODE EXPR. */
2321 tree
2322 finish_unary_op_expr (location_t loc, enum tree_code code, tree expr)
2324 tree result = build_x_unary_op (loc, code, expr, tf_warning_or_error);
2325 if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2326 overflow_warning (input_location, result);
2328 return result;
2331 /* Finish a compound-literal expression. TYPE is the type to which
2332 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2334 tree
2335 finish_compound_literal (tree type, tree compound_literal,
2336 tsubst_flags_t complain)
2338 if (type == error_mark_node)
2339 return error_mark_node;
2341 if (TREE_CODE (type) == REFERENCE_TYPE)
2343 compound_literal
2344 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2345 complain);
2346 return cp_build_c_cast (type, compound_literal, complain);
2349 if (!TYPE_OBJ_P (type))
2351 if (complain & tf_error)
2352 error ("compound literal of non-object type %qT", type);
2353 return error_mark_node;
2356 if (processing_template_decl)
2358 TREE_TYPE (compound_literal) = type;
2359 /* Mark the expression as a compound literal. */
2360 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2361 return compound_literal;
2364 type = complete_type (type);
2366 if (TYPE_NON_AGGREGATE_CLASS (type))
2368 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2369 everywhere that deals with function arguments would be a pain, so
2370 just wrap it in a TREE_LIST. The parser set a flag so we know
2371 that it came from T{} rather than T({}). */
2372 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2373 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2374 return build_functional_cast (type, compound_literal, complain);
2377 if (TREE_CODE (type) == ARRAY_TYPE
2378 && check_array_initializer (NULL_TREE, type, compound_literal))
2379 return error_mark_node;
2380 compound_literal = reshape_init (type, compound_literal, complain);
2381 if (SCALAR_TYPE_P (type)
2382 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal)
2383 && (complain & tf_warning_or_error))
2384 check_narrowing (type, compound_literal);
2385 if (TREE_CODE (type) == ARRAY_TYPE
2386 && TYPE_DOMAIN (type) == NULL_TREE)
2388 cp_complete_array_type_or_error (&type, compound_literal,
2389 false, complain);
2390 if (type == error_mark_node)
2391 return error_mark_node;
2393 compound_literal = digest_init (type, compound_literal, complain);
2394 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2395 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2396 /* Put static/constant array temporaries in static variables, but always
2397 represent class temporaries with TARGET_EXPR so we elide copies. */
2398 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2399 && TREE_CODE (type) == ARRAY_TYPE
2400 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2401 && initializer_constant_valid_p (compound_literal, type))
2403 tree decl = create_temporary_var (type);
2404 DECL_INITIAL (decl) = compound_literal;
2405 TREE_STATIC (decl) = 1;
2406 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2408 /* 5.19 says that a constant expression can include an
2409 lvalue-rvalue conversion applied to "a glvalue of literal type
2410 that refers to a non-volatile temporary object initialized
2411 with a constant expression". Rather than try to communicate
2412 that this VAR_DECL is a temporary, just mark it constexpr. */
2413 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2414 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2415 TREE_CONSTANT (decl) = true;
2417 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2418 decl = pushdecl_top_level (decl);
2419 DECL_NAME (decl) = make_anon_name ();
2420 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2421 return decl;
2423 else
2424 return get_target_expr_sfinae (compound_literal, complain);
2427 /* Return the declaration for the function-name variable indicated by
2428 ID. */
2430 tree
2431 finish_fname (tree id)
2433 tree decl;
2435 decl = fname_decl (input_location, C_RID_CODE (id), id);
2436 if (processing_template_decl && current_function_decl)
2437 decl = DECL_NAME (decl);
2438 return decl;
2441 /* Finish a translation unit. */
2443 void
2444 finish_translation_unit (void)
2446 /* In case there were missing closebraces,
2447 get us back to the global binding level. */
2448 pop_everything ();
2449 while (current_namespace != global_namespace)
2450 pop_namespace ();
2452 /* Do file scope __FUNCTION__ et al. */
2453 finish_fname_decls ();
2456 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2457 Returns the parameter. */
2459 tree
2460 finish_template_type_parm (tree aggr, tree identifier)
2462 if (aggr != class_type_node)
2464 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2465 aggr = class_type_node;
2468 return build_tree_list (aggr, identifier);
2471 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2472 Returns the parameter. */
2474 tree
2475 finish_template_template_parm (tree aggr, tree identifier)
2477 tree decl = build_decl (input_location,
2478 TYPE_DECL, identifier, NULL_TREE);
2479 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2480 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2481 DECL_TEMPLATE_RESULT (tmpl) = decl;
2482 DECL_ARTIFICIAL (decl) = 1;
2483 end_template_decl ();
2485 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2487 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2488 /*is_primary=*/true, /*is_partial=*/false,
2489 /*is_friend=*/0);
2491 return finish_template_type_parm (aggr, tmpl);
2494 /* ARGUMENT is the default-argument value for a template template
2495 parameter. If ARGUMENT is invalid, issue error messages and return
2496 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2498 tree
2499 check_template_template_default_arg (tree argument)
2501 if (TREE_CODE (argument) != TEMPLATE_DECL
2502 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2503 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2505 if (TREE_CODE (argument) == TYPE_DECL)
2506 error ("invalid use of type %qT as a default value for a template "
2507 "template-parameter", TREE_TYPE (argument));
2508 else
2509 error ("invalid default argument for a template template parameter");
2510 return error_mark_node;
2513 return argument;
2516 /* Begin a class definition, as indicated by T. */
2518 tree
2519 begin_class_definition (tree t)
2521 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2522 return error_mark_node;
2524 if (processing_template_parmlist)
2526 error ("definition of %q#T inside template parameter list", t);
2527 return error_mark_node;
2530 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2531 are passed the same as decimal scalar types. */
2532 if (TREE_CODE (t) == RECORD_TYPE
2533 && !processing_template_decl)
2535 tree ns = TYPE_CONTEXT (t);
2536 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2537 && DECL_CONTEXT (ns) == std_node
2538 && DECL_NAME (ns)
2539 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2541 const char *n = TYPE_NAME_STRING (t);
2542 if ((strcmp (n, "decimal32") == 0)
2543 || (strcmp (n, "decimal64") == 0)
2544 || (strcmp (n, "decimal128") == 0))
2545 TYPE_TRANSPARENT_AGGR (t) = 1;
2549 /* A non-implicit typename comes from code like:
2551 template <typename T> struct A {
2552 template <typename U> struct A<T>::B ...
2554 This is erroneous. */
2555 else if (TREE_CODE (t) == TYPENAME_TYPE)
2557 error ("invalid definition of qualified type %qT", t);
2558 t = error_mark_node;
2561 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2563 t = make_class_type (RECORD_TYPE);
2564 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2567 if (TYPE_BEING_DEFINED (t))
2569 t = make_class_type (TREE_CODE (t));
2570 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2572 maybe_process_partial_specialization (t);
2573 pushclass (t);
2574 TYPE_BEING_DEFINED (t) = 1;
2576 if (flag_pack_struct)
2578 tree v;
2579 TYPE_PACKED (t) = 1;
2580 /* Even though the type is being defined for the first time
2581 here, there might have been a forward declaration, so there
2582 might be cv-qualified variants of T. */
2583 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2584 TYPE_PACKED (v) = 1;
2586 /* Reset the interface data, at the earliest possible
2587 moment, as it might have been set via a class foo;
2588 before. */
2589 if (! TYPE_ANONYMOUS_P (t))
2591 struct c_fileinfo *finfo = get_fileinfo (input_filename);
2592 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2593 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2594 (t, finfo->interface_unknown);
2596 reset_specialization();
2598 /* Make a declaration for this class in its own scope. */
2599 build_self_reference ();
2601 return t;
2604 /* Finish the member declaration given by DECL. */
2606 void
2607 finish_member_declaration (tree decl)
2609 if (decl == error_mark_node || decl == NULL_TREE)
2610 return;
2612 if (decl == void_type_node)
2613 /* The COMPONENT was a friend, not a member, and so there's
2614 nothing for us to do. */
2615 return;
2617 /* We should see only one DECL at a time. */
2618 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2620 /* Set up access control for DECL. */
2621 TREE_PRIVATE (decl)
2622 = (current_access_specifier == access_private_node);
2623 TREE_PROTECTED (decl)
2624 = (current_access_specifier == access_protected_node);
2625 if (TREE_CODE (decl) == TEMPLATE_DECL)
2627 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2628 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2631 /* Mark the DECL as a member of the current class. */
2632 DECL_CONTEXT (decl) = current_class_type;
2634 /* Check for bare parameter packs in the member variable declaration. */
2635 if (TREE_CODE (decl) == FIELD_DECL)
2637 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2638 TREE_TYPE (decl) = error_mark_node;
2639 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2640 DECL_ATTRIBUTES (decl) = NULL_TREE;
2643 /* [dcl.link]
2645 A C language linkage is ignored for the names of class members
2646 and the member function type of class member functions. */
2647 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2648 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2650 /* Put functions on the TYPE_METHODS list and everything else on the
2651 TYPE_FIELDS list. Note that these are built up in reverse order.
2652 We reverse them (to obtain declaration order) in finish_struct. */
2653 if (TREE_CODE (decl) == FUNCTION_DECL
2654 || DECL_FUNCTION_TEMPLATE_P (decl))
2656 /* We also need to add this function to the
2657 CLASSTYPE_METHOD_VEC. */
2658 if (add_method (current_class_type, decl, NULL_TREE))
2660 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2661 TYPE_METHODS (current_class_type) = decl;
2663 maybe_add_class_template_decl_list (current_class_type, decl,
2664 /*friend_p=*/0);
2667 /* Enter the DECL into the scope of the class. */
2668 else if (pushdecl_class_level (decl))
2670 if (TREE_CODE (decl) == USING_DECL)
2672 /* For now, ignore class-scope USING_DECLS, so that
2673 debugging backends do not see them. */
2674 DECL_IGNORED_P (decl) = 1;
2677 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2678 go at the beginning. The reason is that lookup_field_1
2679 searches the list in order, and we want a field name to
2680 override a type name so that the "struct stat hack" will
2681 work. In particular:
2683 struct S { enum E { }; int E } s;
2684 s.E = 3;
2686 is valid. In addition, the FIELD_DECLs must be maintained in
2687 declaration order so that class layout works as expected.
2688 However, we don't need that order until class layout, so we
2689 save a little time by putting FIELD_DECLs on in reverse order
2690 here, and then reversing them in finish_struct_1. (We could
2691 also keep a pointer to the correct insertion points in the
2692 list.) */
2694 if (TREE_CODE (decl) == TYPE_DECL)
2695 TYPE_FIELDS (current_class_type)
2696 = chainon (TYPE_FIELDS (current_class_type), decl);
2697 else
2699 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2700 TYPE_FIELDS (current_class_type) = decl;
2703 maybe_add_class_template_decl_list (current_class_type, decl,
2704 /*friend_p=*/0);
2707 if (pch_file)
2708 note_decl_for_pch (decl);
2711 /* DECL has been declared while we are building a PCH file. Perform
2712 actions that we might normally undertake lazily, but which can be
2713 performed now so that they do not have to be performed in
2714 translation units which include the PCH file. */
2716 void
2717 note_decl_for_pch (tree decl)
2719 gcc_assert (pch_file);
2721 /* There's a good chance that we'll have to mangle names at some
2722 point, even if only for emission in debugging information. */
2723 if ((TREE_CODE (decl) == VAR_DECL
2724 || TREE_CODE (decl) == FUNCTION_DECL)
2725 && !processing_template_decl)
2726 mangle_decl (decl);
2729 /* Finish processing a complete template declaration. The PARMS are
2730 the template parameters. */
2732 void
2733 finish_template_decl (tree parms)
2735 if (parms)
2736 end_template_decl ();
2737 else
2738 end_specialization ();
2741 /* Finish processing a template-id (which names a type) of the form
2742 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2743 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2744 the scope of template-id indicated. */
2746 tree
2747 finish_template_type (tree name, tree args, int entering_scope)
2749 tree type;
2751 type = lookup_template_class (name, args,
2752 NULL_TREE, NULL_TREE, entering_scope,
2753 tf_warning_or_error | tf_user);
2754 if (type == error_mark_node)
2755 return type;
2756 else if (CLASS_TYPE_P (type) && !alias_type_or_template_p (type))
2757 return TYPE_STUB_DECL (type);
2758 else
2759 return TYPE_NAME (type);
2762 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2763 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2764 BASE_CLASS, or NULL_TREE if an error occurred. The
2765 ACCESS_SPECIFIER is one of
2766 access_{default,public,protected_private}_node. For a virtual base
2767 we set TREE_TYPE. */
2769 tree
2770 finish_base_specifier (tree base, tree access, bool virtual_p)
2772 tree result;
2774 if (base == error_mark_node)
2776 error ("invalid base-class specification");
2777 result = NULL_TREE;
2779 else if (! MAYBE_CLASS_TYPE_P (base))
2781 error ("%qT is not a class type", base);
2782 result = NULL_TREE;
2784 else
2786 if (cp_type_quals (base) != 0)
2788 /* DR 484: Can a base-specifier name a cv-qualified
2789 class type? */
2790 base = TYPE_MAIN_VARIANT (base);
2792 result = build_tree_list (access, base);
2793 if (virtual_p)
2794 TREE_TYPE (result) = integer_type_node;
2797 return result;
2800 /* If FNS is a member function, a set of member functions, or a
2801 template-id referring to one or more member functions, return a
2802 BASELINK for FNS, incorporating the current access context.
2803 Otherwise, return FNS unchanged. */
2805 tree
2806 baselink_for_fns (tree fns)
2808 tree scope;
2809 tree cl;
2811 if (BASELINK_P (fns)
2812 || error_operand_p (fns))
2813 return fns;
2815 scope = ovl_scope (fns);
2816 if (!CLASS_TYPE_P (scope))
2817 return fns;
2819 cl = currently_open_derived_class (scope);
2820 if (!cl)
2821 cl = scope;
2822 cl = TYPE_BINFO (cl);
2823 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
2826 /* Returns true iff DECL is an automatic variable from a function outside
2827 the current one. */
2829 static bool
2830 outer_automatic_var_p (tree decl)
2832 return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2833 && DECL_FUNCTION_SCOPE_P (decl)
2834 && !TREE_STATIC (decl)
2835 && DECL_CONTEXT (decl) != current_function_decl);
2838 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2839 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2840 if non-NULL, is the type or namespace used to explicitly qualify
2841 ID_EXPRESSION. DECL is the entity to which that name has been
2842 resolved.
2844 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2845 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2846 be set to true if this expression isn't permitted in a
2847 constant-expression, but it is otherwise not set by this function.
2848 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2849 constant-expression, but a non-constant expression is also
2850 permissible.
2852 DONE is true if this expression is a complete postfix-expression;
2853 it is false if this expression is followed by '->', '[', '(', etc.
2854 ADDRESS_P is true iff this expression is the operand of '&'.
2855 TEMPLATE_P is true iff the qualified-id was of the form
2856 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
2857 appears as a template argument.
2859 If an error occurs, and it is the kind of error that might cause
2860 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2861 is the caller's responsibility to issue the message. *ERROR_MSG
2862 will be a string with static storage duration, so the caller need
2863 not "free" it.
2865 Return an expression for the entity, after issuing appropriate
2866 diagnostics. This function is also responsible for transforming a
2867 reference to a non-static member into a COMPONENT_REF that makes
2868 the use of "this" explicit.
2870 Upon return, *IDK will be filled in appropriately. */
2871 tree
2872 finish_id_expression (tree id_expression,
2873 tree decl,
2874 tree scope,
2875 cp_id_kind *idk,
2876 bool integral_constant_expression_p,
2877 bool allow_non_integral_constant_expression_p,
2878 bool *non_integral_constant_expression_p,
2879 bool template_p,
2880 bool done,
2881 bool address_p,
2882 bool template_arg_p,
2883 const char **error_msg,
2884 location_t location)
2886 decl = strip_using_decl (decl);
2888 /* Initialize the output parameters. */
2889 *idk = CP_ID_KIND_NONE;
2890 *error_msg = NULL;
2892 if (id_expression == error_mark_node)
2893 return error_mark_node;
2894 /* If we have a template-id, then no further lookup is
2895 required. If the template-id was for a template-class, we
2896 will sometimes have a TYPE_DECL at this point. */
2897 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2898 || TREE_CODE (decl) == TYPE_DECL)
2900 /* Look up the name. */
2901 else
2903 if (decl == error_mark_node)
2905 /* Name lookup failed. */
2906 if (scope
2907 && (!TYPE_P (scope)
2908 || (!dependent_type_p (scope)
2909 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2910 && IDENTIFIER_TYPENAME_P (id_expression)
2911 && dependent_type_p (TREE_TYPE (id_expression))))))
2913 /* If the qualifying type is non-dependent (and the name
2914 does not name a conversion operator to a dependent
2915 type), issue an error. */
2916 qualified_name_lookup_error (scope, id_expression, decl, location);
2917 return error_mark_node;
2919 else if (!scope)
2921 /* It may be resolved via Koenig lookup. */
2922 *idk = CP_ID_KIND_UNQUALIFIED;
2923 return id_expression;
2925 else
2926 decl = id_expression;
2928 /* If DECL is a variable that would be out of scope under
2929 ANSI/ISO rules, but in scope in the ARM, name lookup
2930 will succeed. Issue a diagnostic here. */
2931 else
2932 decl = check_for_out_of_scope_variable (decl);
2934 /* Remember that the name was used in the definition of
2935 the current class so that we can check later to see if
2936 the meaning would have been different after the class
2937 was entirely defined. */
2938 if (!scope && decl != error_mark_node
2939 && TREE_CODE (id_expression) == IDENTIFIER_NODE)
2940 maybe_note_name_used_in_class (id_expression, decl);
2942 /* Disallow uses of local variables from containing functions, except
2943 within lambda-expressions. */
2944 if (outer_automatic_var_p (decl)
2945 /* It's not a use (3.2) if we're in an unevaluated context. */
2946 && !cp_unevaluated_operand)
2948 tree context = DECL_CONTEXT (decl);
2949 tree containing_function = current_function_decl;
2950 tree lambda_stack = NULL_TREE;
2951 tree lambda_expr = NULL_TREE;
2952 tree initializer = convert_from_reference (decl);
2954 /* Mark it as used now even if the use is ill-formed. */
2955 mark_used (decl);
2957 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
2958 support for an approach in which a reference to a local
2959 [constant] automatic variable in a nested class or lambda body
2960 would enter the expression as an rvalue, which would reduce
2961 the complexity of the problem"
2963 FIXME update for final resolution of core issue 696. */
2964 if (decl_constant_var_p (decl))
2965 return integral_constant_value (decl);
2967 /* If we are in a lambda function, we can move out until we hit
2968 1. the context,
2969 2. a non-lambda function, or
2970 3. a non-default capturing lambda function. */
2971 while (context != containing_function
2972 && LAMBDA_FUNCTION_P (containing_function))
2974 lambda_expr = CLASSTYPE_LAMBDA_EXPR
2975 (DECL_CONTEXT (containing_function));
2977 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
2978 == CPLD_NONE)
2979 break;
2981 lambda_stack = tree_cons (NULL_TREE,
2982 lambda_expr,
2983 lambda_stack);
2985 containing_function
2986 = decl_function_context (containing_function);
2989 if (context == containing_function)
2991 decl = add_default_capture (lambda_stack,
2992 /*id=*/DECL_NAME (decl),
2993 initializer);
2995 else if (lambda_expr)
2997 error ("%qD is not captured", decl);
2998 return error_mark_node;
3000 else
3002 error (TREE_CODE (decl) == VAR_DECL
3003 ? G_("use of %<auto%> variable from containing function")
3004 : G_("use of parameter from containing function"));
3005 error (" %q+#D declared here", decl);
3006 return error_mark_node;
3010 /* Also disallow uses of function parameters outside the function
3011 body, except inside an unevaluated context (i.e. decltype). */
3012 if (TREE_CODE (decl) == PARM_DECL
3013 && DECL_CONTEXT (decl) == NULL_TREE
3014 && !cp_unevaluated_operand)
3016 error ("use of parameter %qD outside function body", decl);
3017 return error_mark_node;
3021 /* If we didn't find anything, or what we found was a type,
3022 then this wasn't really an id-expression. */
3023 if (TREE_CODE (decl) == TEMPLATE_DECL
3024 && !DECL_FUNCTION_TEMPLATE_P (decl))
3026 *error_msg = "missing template arguments";
3027 return error_mark_node;
3029 else if (TREE_CODE (decl) == TYPE_DECL
3030 || TREE_CODE (decl) == NAMESPACE_DECL)
3032 *error_msg = "expected primary-expression";
3033 return error_mark_node;
3036 /* If the name resolved to a template parameter, there is no
3037 need to look it up again later. */
3038 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3039 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3041 tree r;
3043 *idk = CP_ID_KIND_NONE;
3044 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3045 decl = TEMPLATE_PARM_DECL (decl);
3046 r = convert_from_reference (DECL_INITIAL (decl));
3048 if (integral_constant_expression_p
3049 && !dependent_type_p (TREE_TYPE (decl))
3050 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3052 if (!allow_non_integral_constant_expression_p)
3053 error ("template parameter %qD of type %qT is not allowed in "
3054 "an integral constant expression because it is not of "
3055 "integral or enumeration type", decl, TREE_TYPE (decl));
3056 *non_integral_constant_expression_p = true;
3058 return r;
3060 /* Similarly, we resolve enumeration constants to their
3061 underlying values. */
3062 else if (TREE_CODE (decl) == CONST_DECL)
3064 *idk = CP_ID_KIND_NONE;
3065 if (!processing_template_decl)
3067 used_types_insert (TREE_TYPE (decl));
3068 return DECL_INITIAL (decl);
3070 return decl;
3072 else
3074 bool dependent_p;
3076 /* If the declaration was explicitly qualified indicate
3077 that. The semantics of `A::f(3)' are different than
3078 `f(3)' if `f' is virtual. */
3079 *idk = (scope
3080 ? CP_ID_KIND_QUALIFIED
3081 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3082 ? CP_ID_KIND_TEMPLATE_ID
3083 : CP_ID_KIND_UNQUALIFIED));
3086 /* [temp.dep.expr]
3088 An id-expression is type-dependent if it contains an
3089 identifier that was declared with a dependent type.
3091 The standard is not very specific about an id-expression that
3092 names a set of overloaded functions. What if some of them
3093 have dependent types and some of them do not? Presumably,
3094 such a name should be treated as a dependent name. */
3095 /* Assume the name is not dependent. */
3096 dependent_p = false;
3097 if (!processing_template_decl)
3098 /* No names are dependent outside a template. */
3100 /* A template-id where the name of the template was not resolved
3101 is definitely dependent. */
3102 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3103 && (TREE_CODE (TREE_OPERAND (decl, 0))
3104 == IDENTIFIER_NODE))
3105 dependent_p = true;
3106 /* For anything except an overloaded function, just check its
3107 type. */
3108 else if (!is_overloaded_fn (decl))
3109 dependent_p
3110 = dependent_type_p (TREE_TYPE (decl));
3111 /* For a set of overloaded functions, check each of the
3112 functions. */
3113 else
3115 tree fns = decl;
3117 if (BASELINK_P (fns))
3118 fns = BASELINK_FUNCTIONS (fns);
3120 /* For a template-id, check to see if the template
3121 arguments are dependent. */
3122 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3124 tree args = TREE_OPERAND (fns, 1);
3125 dependent_p = any_dependent_template_arguments_p (args);
3126 /* The functions are those referred to by the
3127 template-id. */
3128 fns = TREE_OPERAND (fns, 0);
3131 /* If there are no dependent template arguments, go through
3132 the overloaded functions. */
3133 while (fns && !dependent_p)
3135 tree fn = OVL_CURRENT (fns);
3137 /* Member functions of dependent classes are
3138 dependent. */
3139 if (TREE_CODE (fn) == FUNCTION_DECL
3140 && type_dependent_expression_p (fn))
3141 dependent_p = true;
3142 else if (TREE_CODE (fn) == TEMPLATE_DECL
3143 && dependent_template_p (fn))
3144 dependent_p = true;
3146 fns = OVL_NEXT (fns);
3150 /* If the name was dependent on a template parameter, we will
3151 resolve the name at instantiation time. */
3152 if (dependent_p)
3154 /* Create a SCOPE_REF for qualified names, if the scope is
3155 dependent. */
3156 if (scope)
3158 if (TYPE_P (scope))
3160 if (address_p && done)
3161 decl = finish_qualified_id_expr (scope, decl,
3162 done, address_p,
3163 template_p,
3164 template_arg_p);
3165 else
3167 tree type = NULL_TREE;
3168 if (DECL_P (decl) && !dependent_scope_p (scope))
3169 type = TREE_TYPE (decl);
3170 decl = build_qualified_name (type,
3171 scope,
3172 id_expression,
3173 template_p);
3176 if (TREE_TYPE (decl))
3177 decl = convert_from_reference (decl);
3178 return decl;
3180 /* A TEMPLATE_ID already contains all the information we
3181 need. */
3182 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3183 return id_expression;
3184 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3185 /* If we found a variable, then name lookup during the
3186 instantiation will always resolve to the same VAR_DECL
3187 (or an instantiation thereof). */
3188 if (TREE_CODE (decl) == VAR_DECL
3189 || TREE_CODE (decl) == PARM_DECL)
3191 mark_used (decl);
3192 return convert_from_reference (decl);
3194 /* The same is true for FIELD_DECL, but we also need to
3195 make sure that the syntax is correct. */
3196 else if (TREE_CODE (decl) == FIELD_DECL)
3198 /* Since SCOPE is NULL here, this is an unqualified name.
3199 Access checking has been performed during name lookup
3200 already. Turn off checking to avoid duplicate errors. */
3201 push_deferring_access_checks (dk_no_check);
3202 decl = finish_non_static_data_member
3203 (decl, NULL_TREE,
3204 /*qualifying_scope=*/NULL_TREE);
3205 pop_deferring_access_checks ();
3206 return decl;
3208 return id_expression;
3211 if (TREE_CODE (decl) == NAMESPACE_DECL)
3213 error ("use of namespace %qD as expression", decl);
3214 return error_mark_node;
3216 else if (DECL_CLASS_TEMPLATE_P (decl))
3218 error ("use of class template %qT as expression", decl);
3219 return error_mark_node;
3221 else if (TREE_CODE (decl) == TREE_LIST)
3223 /* Ambiguous reference to base members. */
3224 error ("request for member %qD is ambiguous in "
3225 "multiple inheritance lattice", id_expression);
3226 print_candidates (decl);
3227 return error_mark_node;
3230 /* Mark variable-like entities as used. Functions are similarly
3231 marked either below or after overload resolution. */
3232 if (TREE_CODE (decl) == VAR_DECL
3233 || TREE_CODE (decl) == PARM_DECL
3234 || TREE_CODE (decl) == RESULT_DECL)
3235 mark_used (decl);
3237 /* Only certain kinds of names are allowed in constant
3238 expression. Enumerators and template parameters have already
3239 been handled above. */
3240 if (! error_operand_p (decl)
3241 && integral_constant_expression_p
3242 && ! decl_constant_var_p (decl)
3243 && ! builtin_valid_in_constant_expr_p (decl))
3245 if (!allow_non_integral_constant_expression_p)
3247 error ("%qD cannot appear in a constant-expression", decl);
3248 return error_mark_node;
3250 *non_integral_constant_expression_p = true;
3253 if (scope)
3255 decl = (adjust_result_of_qualified_name_lookup
3256 (decl, scope, current_nonlambda_class_type()));
3258 if (TREE_CODE (decl) == FUNCTION_DECL)
3259 mark_used (decl);
3261 if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
3262 decl = finish_qualified_id_expr (scope,
3263 decl,
3264 done,
3265 address_p,
3266 template_p,
3267 template_arg_p);
3268 else
3270 tree r = convert_from_reference (decl);
3272 /* In a template, return a SCOPE_REF for most qualified-ids
3273 so that we can check access at instantiation time. But if
3274 we're looking at a member of the current instantiation, we
3275 know we have access and building up the SCOPE_REF confuses
3276 non-type template argument handling. */
3277 if (processing_template_decl && TYPE_P (scope)
3278 && !currently_open_class (scope))
3279 r = build_qualified_name (TREE_TYPE (r),
3280 scope, decl,
3281 template_p);
3282 decl = r;
3285 else if (TREE_CODE (decl) == FIELD_DECL)
3287 /* Since SCOPE is NULL here, this is an unqualified name.
3288 Access checking has been performed during name lookup
3289 already. Turn off checking to avoid duplicate errors. */
3290 push_deferring_access_checks (dk_no_check);
3291 decl = finish_non_static_data_member (decl, NULL_TREE,
3292 /*qualifying_scope=*/NULL_TREE);
3293 pop_deferring_access_checks ();
3295 else if (is_overloaded_fn (decl))
3297 tree first_fn;
3299 first_fn = get_first_fn (decl);
3300 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3301 first_fn = DECL_TEMPLATE_RESULT (first_fn);
3303 if (!really_overloaded_fn (decl)
3304 && !mark_used (first_fn))
3305 return error_mark_node;
3307 if (!template_arg_p
3308 && TREE_CODE (first_fn) == FUNCTION_DECL
3309 && DECL_FUNCTION_MEMBER_P (first_fn)
3310 && !shared_member_p (decl))
3312 /* A set of member functions. */
3313 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3314 return finish_class_member_access_expr (decl, id_expression,
3315 /*template_p=*/false,
3316 tf_warning_or_error);
3319 decl = baselink_for_fns (decl);
3321 else
3323 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3324 && DECL_CLASS_SCOPE_P (decl))
3326 tree context = context_for_name_lookup (decl);
3327 if (context != current_class_type)
3329 tree path = currently_open_derived_class (context);
3330 perform_or_defer_access_check (TYPE_BINFO (path),
3331 decl, decl);
3335 decl = convert_from_reference (decl);
3339 if (TREE_DEPRECATED (decl))
3340 warn_deprecated_use (decl, NULL_TREE);
3342 return decl;
3345 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3346 use as a type-specifier. */
3348 tree
3349 finish_typeof (tree expr)
3351 tree type;
3353 if (type_dependent_expression_p (expr))
3355 type = cxx_make_type (TYPEOF_TYPE);
3356 TYPEOF_TYPE_EXPR (type) = expr;
3357 SET_TYPE_STRUCTURAL_EQUALITY (type);
3359 return type;
3362 expr = mark_type_use (expr);
3364 type = unlowered_expr_type (expr);
3366 if (!type || type == unknown_type_node)
3368 error ("type of %qE is unknown", expr);
3369 return error_mark_node;
3372 return type;
3375 /* Implement the __underlying_type keyword: Return the underlying
3376 type of TYPE, suitable for use as a type-specifier. */
3378 tree
3379 finish_underlying_type (tree type)
3381 tree underlying_type;
3383 if (processing_template_decl)
3385 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3386 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3387 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3389 return underlying_type;
3392 complete_type (type);
3394 if (TREE_CODE (type) != ENUMERAL_TYPE)
3396 error ("%qT is not an enumeration type", type);
3397 return error_mark_node;
3400 underlying_type = ENUM_UNDERLYING_TYPE (type);
3402 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3403 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3404 See finish_enum_value_list for details. */
3405 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3406 underlying_type
3407 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3408 TYPE_UNSIGNED (underlying_type));
3410 return underlying_type;
3413 /* Implement the __direct_bases keyword: Return the direct base classes
3414 of type */
3416 tree
3417 calculate_direct_bases (tree type)
3419 VEC(tree, gc) *vector = make_tree_vector();
3420 tree bases_vec = NULL_TREE;
3421 VEC(tree, none) *base_binfos;
3422 tree binfo;
3423 unsigned i;
3425 complete_type (type);
3427 if (!NON_UNION_CLASS_TYPE_P (type))
3428 return make_tree_vec (0);
3430 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3432 /* Virtual bases are initialized first */
3433 for (i = 0; VEC_iterate (tree, base_binfos, i, binfo); i++)
3435 if (BINFO_VIRTUAL_P (binfo))
3437 VEC_safe_push (tree, gc, vector, binfo);
3441 /* Now non-virtuals */
3442 for (i = 0; VEC_iterate (tree, base_binfos, i, binfo); i++)
3444 if (!BINFO_VIRTUAL_P (binfo))
3446 VEC_safe_push (tree, gc, vector, binfo);
3451 bases_vec = make_tree_vec (VEC_length (tree, vector));
3453 for (i = 0; i < VEC_length (tree, vector); ++i)
3455 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE (VEC_index (tree, vector, i));
3457 return bases_vec;
3460 /* Implement the __bases keyword: Return the base classes
3461 of type */
3463 /* Find morally non-virtual base classes by walking binfo hierarchy */
3464 /* Virtual base classes are handled separately in finish_bases */
3466 static tree
3467 dfs_calculate_bases_pre (tree binfo, ATTRIBUTE_UNUSED void *data_)
3469 /* Don't walk bases of virtual bases */
3470 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
3473 static tree
3474 dfs_calculate_bases_post (tree binfo, void *data_)
3476 VEC(tree, gc) **data = (VEC(tree, gc) **) data_;
3477 if (!BINFO_VIRTUAL_P (binfo))
3479 VEC_safe_push (tree, gc, *data, BINFO_TYPE (binfo));
3481 return NULL_TREE;
3484 /* Calculates the morally non-virtual base classes of a class */
3485 static VEC(tree, gc) *
3486 calculate_bases_helper (tree type)
3488 VEC(tree, gc) *vector = make_tree_vector();
3490 /* Now add non-virtual base classes in order of construction */
3491 dfs_walk_all (TYPE_BINFO (type),
3492 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
3493 return vector;
3496 tree
3497 calculate_bases (tree type)
3499 VEC(tree, gc) *vector = make_tree_vector();
3500 tree bases_vec = NULL_TREE;
3501 unsigned i;
3502 VEC(tree, gc) *vbases;
3503 VEC(tree, gc) *nonvbases;
3504 tree binfo;
3506 complete_type (type);
3508 if (!NON_UNION_CLASS_TYPE_P (type))
3509 return make_tree_vec (0);
3511 /* First go through virtual base classes */
3512 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
3513 VEC_iterate (tree, vbases, i, binfo); i++)
3515 VEC(tree, gc) *vbase_bases = calculate_bases_helper (BINFO_TYPE (binfo));
3516 VEC_safe_splice (tree, gc, vector, vbase_bases);
3517 release_tree_vector (vbase_bases);
3520 /* Now for the non-virtual bases */
3521 nonvbases = calculate_bases_helper (type);
3522 VEC_safe_splice (tree, gc, vector, nonvbases);
3523 release_tree_vector (nonvbases);
3525 /* Last element is entire class, so don't copy */
3526 bases_vec = make_tree_vec (VEC_length (tree, vector) - 1);
3528 for (i = 0; i < VEC_length (tree, vector) - 1; ++i)
3530 TREE_VEC_ELT (bases_vec, i) = VEC_index (tree, vector, i);
3532 release_tree_vector (vector);
3533 return bases_vec;
3536 tree
3537 finish_bases (tree type, bool direct)
3539 tree bases = NULL_TREE;
3541 if (!processing_template_decl)
3543 /* Parameter packs can only be used in templates */
3544 error ("Parameter pack __bases only valid in template declaration");
3545 return error_mark_node;
3548 bases = cxx_make_type (BASES);
3549 BASES_TYPE (bases) = type;
3550 BASES_DIRECT (bases) = direct;
3551 SET_TYPE_STRUCTURAL_EQUALITY (bases);
3553 return bases;
3556 /* Perform C++-specific checks for __builtin_offsetof before calling
3557 fold_offsetof. */
3559 tree
3560 finish_offsetof (tree expr)
3562 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3564 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3565 TREE_OPERAND (expr, 2));
3566 return error_mark_node;
3568 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3569 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3570 || TREE_TYPE (expr) == unknown_type_node)
3572 if (TREE_CODE (expr) == COMPONENT_REF
3573 || TREE_CODE (expr) == COMPOUND_EXPR)
3574 expr = TREE_OPERAND (expr, 1);
3575 error ("cannot apply %<offsetof%> to member function %qD", expr);
3576 return error_mark_node;
3578 if (REFERENCE_REF_P (expr))
3579 expr = TREE_OPERAND (expr, 0);
3580 if (TREE_CODE (expr) == COMPONENT_REF)
3582 tree object = TREE_OPERAND (expr, 0);
3583 if (!complete_type_or_else (TREE_TYPE (object), object))
3584 return error_mark_node;
3586 return fold_offsetof (expr);
3589 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3590 function is broken out from the above for the benefit of the tree-ssa
3591 project. */
3593 void
3594 simplify_aggr_init_expr (tree *tp)
3596 tree aggr_init_expr = *tp;
3598 /* Form an appropriate CALL_EXPR. */
3599 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3600 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3601 tree type = TREE_TYPE (slot);
3603 tree call_expr;
3604 enum style_t { ctor, arg, pcc } style;
3606 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3607 style = ctor;
3608 #ifdef PCC_STATIC_STRUCT_RETURN
3609 else if (1)
3610 style = pcc;
3611 #endif
3612 else
3614 gcc_assert (TREE_ADDRESSABLE (type));
3615 style = arg;
3618 call_expr = build_call_array_loc (input_location,
3619 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3621 aggr_init_expr_nargs (aggr_init_expr),
3622 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3623 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3625 if (style == ctor)
3627 /* Replace the first argument to the ctor with the address of the
3628 slot. */
3629 cxx_mark_addressable (slot);
3630 CALL_EXPR_ARG (call_expr, 0) =
3631 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3633 else if (style == arg)
3635 /* Just mark it addressable here, and leave the rest to
3636 expand_call{,_inline}. */
3637 cxx_mark_addressable (slot);
3638 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3639 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3641 else if (style == pcc)
3643 /* If we're using the non-reentrant PCC calling convention, then we
3644 need to copy the returned value out of the static buffer into the
3645 SLOT. */
3646 push_deferring_access_checks (dk_no_check);
3647 call_expr = build_aggr_init (slot, call_expr,
3648 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3649 tf_warning_or_error);
3650 pop_deferring_access_checks ();
3651 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3654 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3656 tree init = build_zero_init (type, NULL_TREE,
3657 /*static_storage_p=*/false);
3658 init = build2 (INIT_EXPR, void_type_node, slot, init);
3659 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3660 init, call_expr);
3663 *tp = call_expr;
3666 /* Emit all thunks to FN that should be emitted when FN is emitted. */
3668 void
3669 emit_associated_thunks (tree fn)
3671 /* When we use vcall offsets, we emit thunks with the virtual
3672 functions to which they thunk. The whole point of vcall offsets
3673 is so that you can know statically the entire set of thunks that
3674 will ever be needed for a given virtual function, thereby
3675 enabling you to output all the thunks with the function itself. */
3676 if (DECL_VIRTUAL_P (fn)
3677 /* Do not emit thunks for extern template instantiations. */
3678 && ! DECL_REALLY_EXTERN (fn))
3680 tree thunk;
3682 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
3684 if (!THUNK_ALIAS (thunk))
3686 use_thunk (thunk, /*emit_p=*/1);
3687 if (DECL_RESULT_THUNK_P (thunk))
3689 tree probe;
3691 for (probe = DECL_THUNKS (thunk);
3692 probe; probe = DECL_CHAIN (probe))
3693 use_thunk (probe, /*emit_p=*/1);
3696 else
3697 gcc_assert (!DECL_THUNKS (thunk));
3702 /* Returns true iff FUN is an instantiation of a constexpr function
3703 template. */
3705 static inline bool
3706 is_instantiation_of_constexpr (tree fun)
3708 return (DECL_TEMPLOID_INSTANTIATION (fun)
3709 && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
3710 (DECL_TI_TEMPLATE (fun))));
3713 /* Generate RTL for FN. */
3715 bool
3716 expand_or_defer_fn_1 (tree fn)
3718 /* When the parser calls us after finishing the body of a template
3719 function, we don't really want to expand the body. */
3720 if (processing_template_decl)
3722 /* Normally, collection only occurs in rest_of_compilation. So,
3723 if we don't collect here, we never collect junk generated
3724 during the processing of templates until we hit a
3725 non-template function. It's not safe to do this inside a
3726 nested class, though, as the parser may have local state that
3727 is not a GC root. */
3728 if (!function_depth)
3729 ggc_collect ();
3730 return false;
3733 gcc_assert (DECL_SAVED_TREE (fn));
3735 /* If this is a constructor or destructor body, we have to clone
3736 it. */
3737 if (maybe_clone_body (fn))
3739 /* We don't want to process FN again, so pretend we've written
3740 it out, even though we haven't. */
3741 TREE_ASM_WRITTEN (fn) = 1;
3742 /* If this is an instantiation of a constexpr function, keep
3743 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
3744 if (!is_instantiation_of_constexpr (fn))
3745 DECL_SAVED_TREE (fn) = NULL_TREE;
3746 return false;
3749 /* We make a decision about linkage for these functions at the end
3750 of the compilation. Until that point, we do not want the back
3751 end to output them -- but we do want it to see the bodies of
3752 these functions so that it can inline them as appropriate. */
3753 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3755 if (DECL_INTERFACE_KNOWN (fn))
3756 /* We've already made a decision as to how this function will
3757 be handled. */;
3758 else if (!at_eof)
3760 DECL_EXTERNAL (fn) = 1;
3761 DECL_NOT_REALLY_EXTERN (fn) = 1;
3762 note_vague_linkage_fn (fn);
3763 /* A non-template inline function with external linkage will
3764 always be COMDAT. As we must eventually determine the
3765 linkage of all functions, and as that causes writes to
3766 the data mapped in from the PCH file, it's advantageous
3767 to mark the functions at this point. */
3768 if (!DECL_IMPLICIT_INSTANTIATION (fn))
3770 /* This function must have external linkage, as
3771 otherwise DECL_INTERFACE_KNOWN would have been
3772 set. */
3773 gcc_assert (TREE_PUBLIC (fn));
3774 comdat_linkage (fn);
3775 DECL_INTERFACE_KNOWN (fn) = 1;
3778 else
3779 import_export_decl (fn);
3781 /* If the user wants us to keep all inline functions, then mark
3782 this function as needed so that finish_file will make sure to
3783 output it later. Similarly, all dllexport'd functions must
3784 be emitted; there may be callers in other DLLs. */
3785 if ((flag_keep_inline_functions
3786 && DECL_DECLARED_INLINE_P (fn)
3787 && !DECL_REALLY_EXTERN (fn))
3788 || (flag_keep_inline_dllexport
3789 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn))))
3791 mark_needed (fn);
3792 DECL_EXTERNAL (fn) = 0;
3796 /* There's no reason to do any of the work here if we're only doing
3797 semantic analysis; this code just generates RTL. */
3798 if (flag_syntax_only)
3799 return false;
3801 return true;
3804 void
3805 expand_or_defer_fn (tree fn)
3807 if (expand_or_defer_fn_1 (fn))
3809 function_depth++;
3811 /* Expand or defer, at the whim of the compilation unit manager. */
3812 cgraph_finalize_function (fn, function_depth > 1);
3813 emit_associated_thunks (fn);
3815 function_depth--;
3819 struct nrv_data
3821 tree var;
3822 tree result;
3823 htab_t visited;
3826 /* Helper function for walk_tree, used by finalize_nrv below. */
3828 static tree
3829 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3831 struct nrv_data *dp = (struct nrv_data *)data;
3832 void **slot;
3834 /* No need to walk into types. There wouldn't be any need to walk into
3835 non-statements, except that we have to consider STMT_EXPRs. */
3836 if (TYPE_P (*tp))
3837 *walk_subtrees = 0;
3838 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3839 but differs from using NULL_TREE in that it indicates that we care
3840 about the value of the RESULT_DECL. */
3841 else if (TREE_CODE (*tp) == RETURN_EXPR)
3842 TREE_OPERAND (*tp, 0) = dp->result;
3843 /* Change all cleanups for the NRV to only run when an exception is
3844 thrown. */
3845 else if (TREE_CODE (*tp) == CLEANUP_STMT
3846 && CLEANUP_DECL (*tp) == dp->var)
3847 CLEANUP_EH_ONLY (*tp) = 1;
3848 /* Replace the DECL_EXPR for the NRV with an initialization of the
3849 RESULT_DECL, if needed. */
3850 else if (TREE_CODE (*tp) == DECL_EXPR
3851 && DECL_EXPR_DECL (*tp) == dp->var)
3853 tree init;
3854 if (DECL_INITIAL (dp->var)
3855 && DECL_INITIAL (dp->var) != error_mark_node)
3856 init = build2 (INIT_EXPR, void_type_node, dp->result,
3857 DECL_INITIAL (dp->var));
3858 else
3859 init = build_empty_stmt (EXPR_LOCATION (*tp));
3860 DECL_INITIAL (dp->var) = NULL_TREE;
3861 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
3862 *tp = init;
3864 /* And replace all uses of the NRV with the RESULT_DECL. */
3865 else if (*tp == dp->var)
3866 *tp = dp->result;
3868 /* Avoid walking into the same tree more than once. Unfortunately, we
3869 can't just use walk_tree_without duplicates because it would only call
3870 us for the first occurrence of dp->var in the function body. */
3871 slot = htab_find_slot (dp->visited, *tp, INSERT);
3872 if (*slot)
3873 *walk_subtrees = 0;
3874 else
3875 *slot = *tp;
3877 /* Keep iterating. */
3878 return NULL_TREE;
3881 /* Called from finish_function to implement the named return value
3882 optimization by overriding all the RETURN_EXPRs and pertinent
3883 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3884 RESULT_DECL for the function. */
3886 void
3887 finalize_nrv (tree *tp, tree var, tree result)
3889 struct nrv_data data;
3891 /* Copy name from VAR to RESULT. */
3892 DECL_NAME (result) = DECL_NAME (var);
3893 /* Don't forget that we take its address. */
3894 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3895 /* Finally set DECL_VALUE_EXPR to avoid assigning
3896 a stack slot at -O0 for the original var and debug info
3897 uses RESULT location for VAR. */
3898 SET_DECL_VALUE_EXPR (var, result);
3899 DECL_HAS_VALUE_EXPR_P (var) = 1;
3901 data.var = var;
3902 data.result = result;
3903 data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3904 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
3905 htab_delete (data.visited);
3908 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
3910 bool
3911 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3912 bool need_copy_ctor, bool need_copy_assignment)
3914 int save_errorcount = errorcount;
3915 tree info, t;
3917 /* Always allocate 3 elements for simplicity. These are the
3918 function decls for the ctor, dtor, and assignment op.
3919 This layout is known to the three lang hooks,
3920 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3921 and cxx_omp_clause_assign_op. */
3922 info = make_tree_vec (3);
3923 CP_OMP_CLAUSE_INFO (c) = info;
3925 if (need_default_ctor || need_copy_ctor)
3927 if (need_default_ctor)
3928 t = get_default_ctor (type);
3929 else
3930 t = get_copy_ctor (type, tf_warning_or_error);
3932 if (t && !trivial_fn_p (t))
3933 TREE_VEC_ELT (info, 0) = t;
3936 if ((need_default_ctor || need_copy_ctor)
3937 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3938 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
3940 if (need_copy_assignment)
3942 t = get_copy_assign (type);
3944 if (t && !trivial_fn_p (t))
3945 TREE_VEC_ELT (info, 2) = t;
3948 return errorcount != save_errorcount;
3951 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
3952 Remove any elements from the list that are invalid. */
3954 tree
3955 finish_omp_clauses (tree clauses)
3957 bitmap_head generic_head, firstprivate_head, lastprivate_head;
3958 tree c, t, *pc = &clauses;
3959 const char *name;
3961 bitmap_obstack_initialize (NULL);
3962 bitmap_initialize (&generic_head, &bitmap_default_obstack);
3963 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
3964 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
3966 for (pc = &clauses, c = clauses; c ; c = *pc)
3968 bool remove = false;
3970 switch (OMP_CLAUSE_CODE (c))
3972 case OMP_CLAUSE_SHARED:
3973 name = "shared";
3974 goto check_dup_generic;
3975 case OMP_CLAUSE_PRIVATE:
3976 name = "private";
3977 goto check_dup_generic;
3978 case OMP_CLAUSE_REDUCTION:
3979 name = "reduction";
3980 goto check_dup_generic;
3981 case OMP_CLAUSE_COPYPRIVATE:
3982 name = "copyprivate";
3983 goto check_dup_generic;
3984 case OMP_CLAUSE_COPYIN:
3985 name = "copyin";
3986 goto check_dup_generic;
3987 check_dup_generic:
3988 t = OMP_CLAUSE_DECL (c);
3989 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3991 if (processing_template_decl)
3992 break;
3993 if (DECL_P (t))
3994 error ("%qD is not a variable in clause %qs", t, name);
3995 else
3996 error ("%qE is not a variable in clause %qs", t, name);
3997 remove = true;
3999 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4000 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
4001 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
4003 error ("%qD appears more than once in data clauses", t);
4004 remove = true;
4006 else
4007 bitmap_set_bit (&generic_head, DECL_UID (t));
4008 break;
4010 case OMP_CLAUSE_FIRSTPRIVATE:
4011 t = OMP_CLAUSE_DECL (c);
4012 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4014 if (processing_template_decl)
4015 break;
4016 if (DECL_P (t))
4017 error ("%qD is not a variable in clause %<firstprivate%>", t);
4018 else
4019 error ("%qE is not a variable in clause %<firstprivate%>", t);
4020 remove = true;
4022 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4023 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4025 error ("%qD appears more than once in data clauses", t);
4026 remove = true;
4028 else
4029 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
4030 break;
4032 case OMP_CLAUSE_LASTPRIVATE:
4033 t = OMP_CLAUSE_DECL (c);
4034 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4036 if (processing_template_decl)
4037 break;
4038 if (DECL_P (t))
4039 error ("%qD is not a variable in clause %<lastprivate%>", t);
4040 else
4041 error ("%qE is not a variable in clause %<lastprivate%>", t);
4042 remove = true;
4044 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4045 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
4047 error ("%qD appears more than once in data clauses", t);
4048 remove = true;
4050 else
4051 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
4052 break;
4054 case OMP_CLAUSE_IF:
4055 t = OMP_CLAUSE_IF_EXPR (c);
4056 t = maybe_convert_cond (t);
4057 if (t == error_mark_node)
4058 remove = true;
4059 else if (!processing_template_decl)
4060 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4061 OMP_CLAUSE_IF_EXPR (c) = t;
4062 break;
4064 case OMP_CLAUSE_FINAL:
4065 t = OMP_CLAUSE_FINAL_EXPR (c);
4066 t = maybe_convert_cond (t);
4067 if (t == error_mark_node)
4068 remove = true;
4069 else if (!processing_template_decl)
4070 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4071 OMP_CLAUSE_FINAL_EXPR (c) = t;
4072 break;
4074 case OMP_CLAUSE_NUM_THREADS:
4075 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
4076 if (t == error_mark_node)
4077 remove = true;
4078 else if (!type_dependent_expression_p (t)
4079 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4081 error ("num_threads expression must be integral");
4082 remove = true;
4084 else
4086 t = mark_rvalue_use (t);
4087 if (!processing_template_decl)
4088 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4089 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
4091 break;
4093 case OMP_CLAUSE_SCHEDULE:
4094 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
4095 if (t == NULL)
4097 else if (t == error_mark_node)
4098 remove = true;
4099 else if (!type_dependent_expression_p (t)
4100 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4102 error ("schedule chunk size expression must be integral");
4103 remove = true;
4105 else
4107 t = mark_rvalue_use (t);
4108 if (!processing_template_decl)
4109 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4110 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
4112 break;
4114 case OMP_CLAUSE_NOWAIT:
4115 case OMP_CLAUSE_ORDERED:
4116 case OMP_CLAUSE_DEFAULT:
4117 case OMP_CLAUSE_UNTIED:
4118 case OMP_CLAUSE_COLLAPSE:
4119 case OMP_CLAUSE_MERGEABLE:
4120 break;
4122 default:
4123 gcc_unreachable ();
4126 if (remove)
4127 *pc = OMP_CLAUSE_CHAIN (c);
4128 else
4129 pc = &OMP_CLAUSE_CHAIN (c);
4132 for (pc = &clauses, c = clauses; c ; c = *pc)
4134 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
4135 bool remove = false;
4136 bool need_complete_non_reference = false;
4137 bool need_default_ctor = false;
4138 bool need_copy_ctor = false;
4139 bool need_copy_assignment = false;
4140 bool need_implicitly_determined = false;
4141 tree type, inner_type;
4143 switch (c_kind)
4145 case OMP_CLAUSE_SHARED:
4146 name = "shared";
4147 need_implicitly_determined = true;
4148 break;
4149 case OMP_CLAUSE_PRIVATE:
4150 name = "private";
4151 need_complete_non_reference = true;
4152 need_default_ctor = true;
4153 need_implicitly_determined = true;
4154 break;
4155 case OMP_CLAUSE_FIRSTPRIVATE:
4156 name = "firstprivate";
4157 need_complete_non_reference = true;
4158 need_copy_ctor = true;
4159 need_implicitly_determined = true;
4160 break;
4161 case OMP_CLAUSE_LASTPRIVATE:
4162 name = "lastprivate";
4163 need_complete_non_reference = true;
4164 need_copy_assignment = true;
4165 need_implicitly_determined = true;
4166 break;
4167 case OMP_CLAUSE_REDUCTION:
4168 name = "reduction";
4169 need_implicitly_determined = true;
4170 break;
4171 case OMP_CLAUSE_COPYPRIVATE:
4172 name = "copyprivate";
4173 need_copy_assignment = true;
4174 break;
4175 case OMP_CLAUSE_COPYIN:
4176 name = "copyin";
4177 need_copy_assignment = true;
4178 break;
4179 default:
4180 pc = &OMP_CLAUSE_CHAIN (c);
4181 continue;
4184 t = OMP_CLAUSE_DECL (c);
4185 if (processing_template_decl
4186 && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4188 pc = &OMP_CLAUSE_CHAIN (c);
4189 continue;
4192 switch (c_kind)
4194 case OMP_CLAUSE_LASTPRIVATE:
4195 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4196 need_default_ctor = true;
4197 break;
4199 case OMP_CLAUSE_REDUCTION:
4200 if (AGGREGATE_TYPE_P (TREE_TYPE (t))
4201 || POINTER_TYPE_P (TREE_TYPE (t)))
4203 error ("%qE has invalid type for %<reduction%>", t);
4204 remove = true;
4206 else if (FLOAT_TYPE_P (TREE_TYPE (t)))
4208 enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
4209 switch (r_code)
4211 case PLUS_EXPR:
4212 case MULT_EXPR:
4213 case MINUS_EXPR:
4214 case MIN_EXPR:
4215 case MAX_EXPR:
4216 break;
4217 default:
4218 error ("%qE has invalid type for %<reduction(%s)%>",
4219 t, operator_name_info[r_code].name);
4220 remove = true;
4223 break;
4225 case OMP_CLAUSE_COPYIN:
4226 if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
4228 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
4229 remove = true;
4231 break;
4233 default:
4234 break;
4237 if (need_complete_non_reference || need_copy_assignment)
4239 t = require_complete_type (t);
4240 if (t == error_mark_node)
4241 remove = true;
4242 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
4243 && need_complete_non_reference)
4245 error ("%qE has reference type for %qs", t, name);
4246 remove = true;
4249 if (need_implicitly_determined)
4251 const char *share_name = NULL;
4253 if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
4254 share_name = "threadprivate";
4255 else switch (cxx_omp_predetermined_sharing (t))
4257 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
4258 break;
4259 case OMP_CLAUSE_DEFAULT_SHARED:
4260 /* const vars may be specified in firstprivate clause. */
4261 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
4262 && cxx_omp_const_qual_no_mutable (t))
4263 break;
4264 share_name = "shared";
4265 break;
4266 case OMP_CLAUSE_DEFAULT_PRIVATE:
4267 share_name = "private";
4268 break;
4269 default:
4270 gcc_unreachable ();
4272 if (share_name)
4274 error ("%qE is predetermined %qs for %qs",
4275 t, share_name, name);
4276 remove = true;
4280 /* We're interested in the base element, not arrays. */
4281 inner_type = type = TREE_TYPE (t);
4282 while (TREE_CODE (inner_type) == ARRAY_TYPE)
4283 inner_type = TREE_TYPE (inner_type);
4285 /* Check for special function availability by building a call to one.
4286 Save the results, because later we won't be in the right context
4287 for making these queries. */
4288 if (CLASS_TYPE_P (inner_type)
4289 && COMPLETE_TYPE_P (inner_type)
4290 && (need_default_ctor || need_copy_ctor || need_copy_assignment)
4291 && !type_dependent_expression_p (t)
4292 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
4293 need_copy_ctor, need_copy_assignment))
4294 remove = true;
4296 if (remove)
4297 *pc = OMP_CLAUSE_CHAIN (c);
4298 else
4299 pc = &OMP_CLAUSE_CHAIN (c);
4302 bitmap_obstack_release (NULL);
4303 return clauses;
4306 /* For all variables in the tree_list VARS, mark them as thread local. */
4308 void
4309 finish_omp_threadprivate (tree vars)
4311 tree t;
4313 /* Mark every variable in VARS to be assigned thread local storage. */
4314 for (t = vars; t; t = TREE_CHAIN (t))
4316 tree v = TREE_PURPOSE (t);
4318 if (error_operand_p (v))
4320 else if (TREE_CODE (v) != VAR_DECL)
4321 error ("%<threadprivate%> %qD is not file, namespace "
4322 "or block scope variable", v);
4323 /* If V had already been marked threadprivate, it doesn't matter
4324 whether it had been used prior to this point. */
4325 else if (TREE_USED (v)
4326 && (DECL_LANG_SPECIFIC (v) == NULL
4327 || !CP_DECL_THREADPRIVATE_P (v)))
4328 error ("%qE declared %<threadprivate%> after first use", v);
4329 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
4330 error ("automatic variable %qE cannot be %<threadprivate%>", v);
4331 else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
4332 error ("%<threadprivate%> %qE has incomplete type", v);
4333 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
4334 && CP_DECL_CONTEXT (v) != current_class_type)
4335 error ("%<threadprivate%> %qE directive not "
4336 "in %qT definition", v, CP_DECL_CONTEXT (v));
4337 else
4339 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
4340 if (DECL_LANG_SPECIFIC (v) == NULL)
4342 retrofit_lang_decl (v);
4344 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4345 after the allocation of the lang_decl structure. */
4346 if (DECL_DISCRIMINATOR_P (v))
4347 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
4350 if (! DECL_THREAD_LOCAL_P (v))
4352 DECL_TLS_MODEL (v) = decl_default_tls_model (v);
4353 /* If rtl has been already set for this var, call
4354 make_decl_rtl once again, so that encode_section_info
4355 has a chance to look at the new decl flags. */
4356 if (DECL_RTL_SET_P (v))
4357 make_decl_rtl (v);
4359 CP_DECL_THREADPRIVATE_P (v) = 1;
4364 /* Build an OpenMP structured block. */
4366 tree
4367 begin_omp_structured_block (void)
4369 return do_pushlevel (sk_omp);
4372 tree
4373 finish_omp_structured_block (tree block)
4375 return do_poplevel (block);
4378 /* Similarly, except force the retention of the BLOCK. */
4380 tree
4381 begin_omp_parallel (void)
4383 keep_next_level (true);
4384 return begin_omp_structured_block ();
4387 tree
4388 finish_omp_parallel (tree clauses, tree body)
4390 tree stmt;
4392 body = finish_omp_structured_block (body);
4394 stmt = make_node (OMP_PARALLEL);
4395 TREE_TYPE (stmt) = void_type_node;
4396 OMP_PARALLEL_CLAUSES (stmt) = clauses;
4397 OMP_PARALLEL_BODY (stmt) = body;
4399 return add_stmt (stmt);
4402 tree
4403 begin_omp_task (void)
4405 keep_next_level (true);
4406 return begin_omp_structured_block ();
4409 tree
4410 finish_omp_task (tree clauses, tree body)
4412 tree stmt;
4414 body = finish_omp_structured_block (body);
4416 stmt = make_node (OMP_TASK);
4417 TREE_TYPE (stmt) = void_type_node;
4418 OMP_TASK_CLAUSES (stmt) = clauses;
4419 OMP_TASK_BODY (stmt) = body;
4421 return add_stmt (stmt);
4424 /* Helper function for finish_omp_for. Convert Ith random access iterator
4425 into integral iterator. Return FALSE if successful. */
4427 static bool
4428 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
4429 tree condv, tree incrv, tree *body,
4430 tree *pre_body, tree clauses)
4432 tree diff, iter_init, iter_incr = NULL, last;
4433 tree incr_var = NULL, orig_pre_body, orig_body, c;
4434 tree decl = TREE_VEC_ELT (declv, i);
4435 tree init = TREE_VEC_ELT (initv, i);
4436 tree cond = TREE_VEC_ELT (condv, i);
4437 tree incr = TREE_VEC_ELT (incrv, i);
4438 tree iter = decl;
4439 location_t elocus = locus;
4441 if (init && EXPR_HAS_LOCATION (init))
4442 elocus = EXPR_LOCATION (init);
4444 switch (TREE_CODE (cond))
4446 case GT_EXPR:
4447 case GE_EXPR:
4448 case LT_EXPR:
4449 case LE_EXPR:
4450 if (TREE_OPERAND (cond, 1) == iter)
4451 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
4452 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
4453 if (TREE_OPERAND (cond, 0) != iter)
4454 cond = error_mark_node;
4455 else
4457 tree tem = build_x_binary_op (EXPR_LOCATION (cond),
4458 TREE_CODE (cond),
4459 iter, ERROR_MARK,
4460 TREE_OPERAND (cond, 1), ERROR_MARK,
4461 NULL, tf_warning_or_error);
4462 if (error_operand_p (tem))
4463 return true;
4465 break;
4466 default:
4467 cond = error_mark_node;
4468 break;
4470 if (cond == error_mark_node)
4472 error_at (elocus, "invalid controlling predicate");
4473 return true;
4475 diff = build_x_binary_op (elocus, MINUS_EXPR, TREE_OPERAND (cond, 1),
4476 ERROR_MARK, iter, ERROR_MARK, NULL,
4477 tf_warning_or_error);
4478 if (error_operand_p (diff))
4479 return true;
4480 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
4482 error_at (elocus, "difference between %qE and %qD does not have integer type",
4483 TREE_OPERAND (cond, 1), iter);
4484 return true;
4487 switch (TREE_CODE (incr))
4489 case PREINCREMENT_EXPR:
4490 case PREDECREMENT_EXPR:
4491 case POSTINCREMENT_EXPR:
4492 case POSTDECREMENT_EXPR:
4493 if (TREE_OPERAND (incr, 0) != iter)
4495 incr = error_mark_node;
4496 break;
4498 iter_incr = build_x_unary_op (EXPR_LOCATION (incr),
4499 TREE_CODE (incr), iter,
4500 tf_warning_or_error);
4501 if (error_operand_p (iter_incr))
4502 return true;
4503 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4504 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4505 incr = integer_one_node;
4506 else
4507 incr = integer_minus_one_node;
4508 break;
4509 case MODIFY_EXPR:
4510 if (TREE_OPERAND (incr, 0) != iter)
4511 incr = error_mark_node;
4512 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4513 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4515 tree rhs = TREE_OPERAND (incr, 1);
4516 if (TREE_OPERAND (rhs, 0) == iter)
4518 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4519 != INTEGER_TYPE)
4520 incr = error_mark_node;
4521 else
4523 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
4524 iter, TREE_CODE (rhs),
4525 TREE_OPERAND (rhs, 1),
4526 tf_warning_or_error);
4527 if (error_operand_p (iter_incr))
4528 return true;
4529 incr = TREE_OPERAND (rhs, 1);
4530 incr = cp_convert (TREE_TYPE (diff), incr,
4531 tf_warning_or_error);
4532 if (TREE_CODE (rhs) == MINUS_EXPR)
4534 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4535 incr = fold_if_not_in_template (incr);
4537 if (TREE_CODE (incr) != INTEGER_CST
4538 && (TREE_CODE (incr) != NOP_EXPR
4539 || (TREE_CODE (TREE_OPERAND (incr, 0))
4540 != INTEGER_CST)))
4541 iter_incr = NULL;
4544 else if (TREE_OPERAND (rhs, 1) == iter)
4546 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4547 || TREE_CODE (rhs) != PLUS_EXPR)
4548 incr = error_mark_node;
4549 else
4551 iter_incr = build_x_binary_op (EXPR_LOCATION (rhs),
4552 PLUS_EXPR,
4553 TREE_OPERAND (rhs, 0),
4554 ERROR_MARK, iter,
4555 ERROR_MARK, NULL,
4556 tf_warning_or_error);
4557 if (error_operand_p (iter_incr))
4558 return true;
4559 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
4560 iter, NOP_EXPR,
4561 iter_incr,
4562 tf_warning_or_error);
4563 if (error_operand_p (iter_incr))
4564 return true;
4565 incr = TREE_OPERAND (rhs, 0);
4566 iter_incr = NULL;
4569 else
4570 incr = error_mark_node;
4572 else
4573 incr = error_mark_node;
4574 break;
4575 default:
4576 incr = error_mark_node;
4577 break;
4580 if (incr == error_mark_node)
4582 error_at (elocus, "invalid increment expression");
4583 return true;
4586 incr = cp_convert (TREE_TYPE (diff), incr, tf_warning_or_error);
4587 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4588 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4589 && OMP_CLAUSE_DECL (c) == iter)
4590 break;
4592 decl = create_temporary_var (TREE_TYPE (diff));
4593 pushdecl (decl);
4594 add_decl_expr (decl);
4595 last = create_temporary_var (TREE_TYPE (diff));
4596 pushdecl (last);
4597 add_decl_expr (last);
4598 if (c && iter_incr == NULL)
4600 incr_var = create_temporary_var (TREE_TYPE (diff));
4601 pushdecl (incr_var);
4602 add_decl_expr (incr_var);
4604 gcc_assert (stmts_are_full_exprs_p ());
4606 orig_pre_body = *pre_body;
4607 *pre_body = push_stmt_list ();
4608 if (orig_pre_body)
4609 add_stmt (orig_pre_body);
4610 if (init != NULL)
4611 finish_expr_stmt (build_x_modify_expr (elocus,
4612 iter, NOP_EXPR, init,
4613 tf_warning_or_error));
4614 init = build_int_cst (TREE_TYPE (diff), 0);
4615 if (c && iter_incr == NULL)
4617 finish_expr_stmt (build_x_modify_expr (elocus,
4618 incr_var, NOP_EXPR,
4619 incr, tf_warning_or_error));
4620 incr = incr_var;
4621 iter_incr = build_x_modify_expr (elocus,
4622 iter, PLUS_EXPR, incr,
4623 tf_warning_or_error);
4625 finish_expr_stmt (build_x_modify_expr (elocus,
4626 last, NOP_EXPR, init,
4627 tf_warning_or_error));
4628 *pre_body = pop_stmt_list (*pre_body);
4630 cond = cp_build_binary_op (elocus,
4631 TREE_CODE (cond), decl, diff,
4632 tf_warning_or_error);
4633 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
4634 elocus, incr, NULL_TREE);
4636 orig_body = *body;
4637 *body = push_stmt_list ();
4638 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4639 iter_init = build_x_modify_expr (elocus,
4640 iter, PLUS_EXPR, iter_init,
4641 tf_warning_or_error);
4642 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4643 finish_expr_stmt (iter_init);
4644 finish_expr_stmt (build_x_modify_expr (elocus,
4645 last, NOP_EXPR, decl,
4646 tf_warning_or_error));
4647 add_stmt (orig_body);
4648 *body = pop_stmt_list (*body);
4650 if (c)
4652 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4653 finish_expr_stmt (iter_incr);
4654 OMP_CLAUSE_LASTPRIVATE_STMT (c)
4655 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4658 TREE_VEC_ELT (declv, i) = decl;
4659 TREE_VEC_ELT (initv, i) = init;
4660 TREE_VEC_ELT (condv, i) = cond;
4661 TREE_VEC_ELT (incrv, i) = incr;
4663 return false;
4666 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
4667 are directly for their associated operands in the statement. DECL
4668 and INIT are a combo; if DECL is NULL then INIT ought to be a
4669 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
4670 optional statements that need to go before the loop into its
4671 sk_omp scope. */
4673 tree
4674 finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4675 tree incrv, tree body, tree pre_body, tree clauses)
4677 tree omp_for = NULL, orig_incr = NULL;
4678 tree decl, init, cond, incr;
4679 location_t elocus;
4680 int i;
4682 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4683 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4684 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4685 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4687 decl = TREE_VEC_ELT (declv, i);
4688 init = TREE_VEC_ELT (initv, i);
4689 cond = TREE_VEC_ELT (condv, i);
4690 incr = TREE_VEC_ELT (incrv, i);
4691 elocus = locus;
4693 if (decl == NULL)
4695 if (init != NULL)
4696 switch (TREE_CODE (init))
4698 case MODIFY_EXPR:
4699 decl = TREE_OPERAND (init, 0);
4700 init = TREE_OPERAND (init, 1);
4701 break;
4702 case MODOP_EXPR:
4703 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4705 decl = TREE_OPERAND (init, 0);
4706 init = TREE_OPERAND (init, 2);
4708 break;
4709 default:
4710 break;
4713 if (decl == NULL)
4715 error_at (locus,
4716 "expected iteration declaration or initialization");
4717 return NULL;
4721 if (init && EXPR_HAS_LOCATION (init))
4722 elocus = EXPR_LOCATION (init);
4724 if (cond == NULL)
4726 error_at (elocus, "missing controlling predicate");
4727 return NULL;
4730 if (incr == NULL)
4732 error_at (elocus, "missing increment expression");
4733 return NULL;
4736 TREE_VEC_ELT (declv, i) = decl;
4737 TREE_VEC_ELT (initv, i) = init;
4740 if (dependent_omp_for_p (declv, initv, condv, incrv))
4742 tree stmt;
4744 stmt = make_node (OMP_FOR);
4746 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4748 /* This is really just a place-holder. We'll be decomposing this
4749 again and going through the cp_build_modify_expr path below when
4750 we instantiate the thing. */
4751 TREE_VEC_ELT (initv, i)
4752 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4753 TREE_VEC_ELT (initv, i));
4756 TREE_TYPE (stmt) = void_type_node;
4757 OMP_FOR_INIT (stmt) = initv;
4758 OMP_FOR_COND (stmt) = condv;
4759 OMP_FOR_INCR (stmt) = incrv;
4760 OMP_FOR_BODY (stmt) = body;
4761 OMP_FOR_PRE_BODY (stmt) = pre_body;
4762 OMP_FOR_CLAUSES (stmt) = clauses;
4764 SET_EXPR_LOCATION (stmt, locus);
4765 return add_stmt (stmt);
4768 if (processing_template_decl)
4769 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
4771 for (i = 0; i < TREE_VEC_LENGTH (declv); )
4773 decl = TREE_VEC_ELT (declv, i);
4774 init = TREE_VEC_ELT (initv, i);
4775 cond = TREE_VEC_ELT (condv, i);
4776 incr = TREE_VEC_ELT (incrv, i);
4777 if (orig_incr)
4778 TREE_VEC_ELT (orig_incr, i) = incr;
4779 elocus = locus;
4781 if (init && EXPR_HAS_LOCATION (init))
4782 elocus = EXPR_LOCATION (init);
4784 if (!DECL_P (decl))
4786 error_at (elocus, "expected iteration declaration or initialization");
4787 return NULL;
4790 if (incr && TREE_CODE (incr) == MODOP_EXPR)
4792 if (orig_incr)
4793 TREE_VEC_ELT (orig_incr, i) = incr;
4794 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4795 TREE_CODE (TREE_OPERAND (incr, 1)),
4796 TREE_OPERAND (incr, 2),
4797 tf_warning_or_error);
4800 if (CLASS_TYPE_P (TREE_TYPE (decl)))
4802 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4803 incrv, &body, &pre_body, clauses))
4804 return NULL;
4805 continue;
4808 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4809 && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4811 error_at (elocus, "invalid type for iteration variable %qE", decl);
4812 return NULL;
4815 if (!processing_template_decl)
4817 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4818 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4820 else
4821 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
4822 if (cond
4823 && TREE_SIDE_EFFECTS (cond)
4824 && COMPARISON_CLASS_P (cond)
4825 && !processing_template_decl)
4827 tree t = TREE_OPERAND (cond, 0);
4828 if (TREE_SIDE_EFFECTS (t)
4829 && t != decl
4830 && (TREE_CODE (t) != NOP_EXPR
4831 || TREE_OPERAND (t, 0) != decl))
4832 TREE_OPERAND (cond, 0)
4833 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4835 t = TREE_OPERAND (cond, 1);
4836 if (TREE_SIDE_EFFECTS (t)
4837 && t != decl
4838 && (TREE_CODE (t) != NOP_EXPR
4839 || TREE_OPERAND (t, 0) != decl))
4840 TREE_OPERAND (cond, 1)
4841 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4843 if (decl == error_mark_node || init == error_mark_node)
4844 return NULL;
4846 TREE_VEC_ELT (declv, i) = decl;
4847 TREE_VEC_ELT (initv, i) = init;
4848 TREE_VEC_ELT (condv, i) = cond;
4849 TREE_VEC_ELT (incrv, i) = incr;
4850 i++;
4853 if (IS_EMPTY_STMT (pre_body))
4854 pre_body = NULL;
4856 omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4857 body, pre_body);
4859 if (omp_for == NULL)
4860 return NULL;
4862 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
4864 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4865 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
4867 if (TREE_CODE (incr) != MODIFY_EXPR)
4868 continue;
4870 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
4871 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4872 && !processing_template_decl)
4874 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4875 if (TREE_SIDE_EFFECTS (t)
4876 && t != decl
4877 && (TREE_CODE (t) != NOP_EXPR
4878 || TREE_OPERAND (t, 0) != decl))
4879 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4880 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4882 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4883 if (TREE_SIDE_EFFECTS (t)
4884 && t != decl
4885 && (TREE_CODE (t) != NOP_EXPR
4886 || TREE_OPERAND (t, 0) != decl))
4887 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4888 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4891 if (orig_incr)
4892 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
4894 if (omp_for != NULL)
4895 OMP_FOR_CLAUSES (omp_for) = clauses;
4896 return omp_for;
4899 void
4900 finish_omp_atomic (enum tree_code code, enum tree_code opcode, tree lhs,
4901 tree rhs, tree v, tree lhs1, tree rhs1)
4903 tree orig_lhs;
4904 tree orig_rhs;
4905 tree orig_v;
4906 tree orig_lhs1;
4907 tree orig_rhs1;
4908 bool dependent_p;
4909 tree stmt;
4911 orig_lhs = lhs;
4912 orig_rhs = rhs;
4913 orig_v = v;
4914 orig_lhs1 = lhs1;
4915 orig_rhs1 = rhs1;
4916 dependent_p = false;
4917 stmt = NULL_TREE;
4919 /* Even in a template, we can detect invalid uses of the atomic
4920 pragma if neither LHS nor RHS is type-dependent. */
4921 if (processing_template_decl)
4923 dependent_p = (type_dependent_expression_p (lhs)
4924 || (rhs && type_dependent_expression_p (rhs))
4925 || (v && type_dependent_expression_p (v))
4926 || (lhs1 && type_dependent_expression_p (lhs1))
4927 || (rhs1 && type_dependent_expression_p (rhs1)));
4928 if (!dependent_p)
4930 lhs = build_non_dependent_expr (lhs);
4931 if (rhs)
4932 rhs = build_non_dependent_expr (rhs);
4933 if (v)
4934 v = build_non_dependent_expr (v);
4935 if (lhs1)
4936 lhs1 = build_non_dependent_expr (lhs1);
4937 if (rhs1)
4938 rhs1 = build_non_dependent_expr (rhs1);
4941 if (!dependent_p)
4943 stmt = c_finish_omp_atomic (input_location, code, opcode, lhs, rhs,
4944 v, lhs1, rhs1);
4945 if (stmt == error_mark_node)
4946 return;
4948 if (processing_template_decl)
4950 if (code == OMP_ATOMIC_READ)
4952 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs),
4953 OMP_ATOMIC_READ, orig_lhs);
4954 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
4956 else
4958 if (opcode == NOP_EXPR)
4959 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
4960 else
4961 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
4962 if (orig_rhs1)
4963 stmt = build_min_nt_loc (EXPR_LOCATION (orig_rhs1),
4964 COMPOUND_EXPR, orig_rhs1, stmt);
4965 if (code != OMP_ATOMIC)
4967 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs1),
4968 code, orig_lhs1, stmt);
4969 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
4972 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node, stmt);
4974 add_stmt (stmt);
4977 void
4978 finish_omp_barrier (void)
4980 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
4981 VEC(tree,gc) *vec = make_tree_vector ();
4982 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4983 release_tree_vector (vec);
4984 finish_expr_stmt (stmt);
4987 void
4988 finish_omp_flush (void)
4990 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
4991 VEC(tree,gc) *vec = make_tree_vector ();
4992 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4993 release_tree_vector (vec);
4994 finish_expr_stmt (stmt);
4997 void
4998 finish_omp_taskwait (void)
5000 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
5001 VEC(tree,gc) *vec = make_tree_vector ();
5002 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5003 release_tree_vector (vec);
5004 finish_expr_stmt (stmt);
5007 void
5008 finish_omp_taskyield (void)
5010 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
5011 VEC(tree,gc) *vec = make_tree_vector ();
5012 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5013 release_tree_vector (vec);
5014 finish_expr_stmt (stmt);
5017 /* Begin a __transaction_atomic or __transaction_relaxed statement.
5018 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
5019 should create an extra compound stmt. */
5021 tree
5022 begin_transaction_stmt (location_t loc, tree *pcompound, int flags)
5024 tree r;
5026 if (pcompound)
5027 *pcompound = begin_compound_stmt (0);
5029 r = build_stmt (loc, TRANSACTION_EXPR, NULL_TREE);
5031 /* Only add the statement to the function if support enabled. */
5032 if (flag_tm)
5033 add_stmt (r);
5034 else
5035 error_at (loc, ((flags & TM_STMT_ATTR_RELAXED) != 0
5036 ? G_("%<__transaction_relaxed%> without "
5037 "transactional memory support enabled")
5038 : G_("%<__transaction_atomic%> without "
5039 "transactional memory support enabled")));
5041 TRANSACTION_EXPR_BODY (r) = push_stmt_list ();
5042 return r;
5045 /* End a __transaction_atomic or __transaction_relaxed statement.
5046 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
5047 and we should end the compound. If NOEX is non-NULL, we wrap the body in
5048 a MUST_NOT_THROW_EXPR with NOEX as condition. */
5050 void
5051 finish_transaction_stmt (tree stmt, tree compound_stmt, int flags, tree noex)
5053 TRANSACTION_EXPR_BODY (stmt) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt));
5054 TRANSACTION_EXPR_OUTER (stmt) = (flags & TM_STMT_ATTR_OUTER) != 0;
5055 TRANSACTION_EXPR_RELAXED (stmt) = (flags & TM_STMT_ATTR_RELAXED) != 0;
5056 TRANSACTION_EXPR_IS_STMT (stmt) = 1;
5058 /* noexcept specifications are not allowed for function transactions. */
5059 gcc_assert (!(noex && compound_stmt));
5060 if (noex)
5062 tree body = build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt),
5063 noex);
5064 SET_EXPR_LOCATION (body, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt)));
5065 TREE_SIDE_EFFECTS (body) = 1;
5066 TRANSACTION_EXPR_BODY (stmt) = body;
5069 if (compound_stmt)
5070 finish_compound_stmt (compound_stmt);
5071 finish_stmt ();
5074 /* Build a __transaction_atomic or __transaction_relaxed expression. If
5075 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
5076 condition. */
5078 tree
5079 build_transaction_expr (location_t loc, tree expr, int flags, tree noex)
5081 tree ret;
5082 if (noex)
5084 expr = build_must_not_throw_expr (expr, noex);
5085 SET_EXPR_LOCATION (expr, loc);
5086 TREE_SIDE_EFFECTS (expr) = 1;
5088 ret = build1 (TRANSACTION_EXPR, TREE_TYPE (expr), expr);
5089 if (flags & TM_STMT_ATTR_RELAXED)
5090 TRANSACTION_EXPR_RELAXED (ret) = 1;
5091 SET_EXPR_LOCATION (ret, loc);
5092 return ret;
5095 void
5096 init_cp_semantics (void)
5100 /* Build a STATIC_ASSERT for a static assertion with the condition
5101 CONDITION and the message text MESSAGE. LOCATION is the location
5102 of the static assertion in the source code. When MEMBER_P, this
5103 static assertion is a member of a class. */
5104 void
5105 finish_static_assert (tree condition, tree message, location_t location,
5106 bool member_p)
5108 if (check_for_bare_parameter_packs (condition))
5109 condition = error_mark_node;
5111 if (type_dependent_expression_p (condition)
5112 || value_dependent_expression_p (condition))
5114 /* We're in a template; build a STATIC_ASSERT and put it in
5115 the right place. */
5116 tree assertion;
5118 assertion = make_node (STATIC_ASSERT);
5119 STATIC_ASSERT_CONDITION (assertion) = condition;
5120 STATIC_ASSERT_MESSAGE (assertion) = message;
5121 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
5123 if (member_p)
5124 maybe_add_class_template_decl_list (current_class_type,
5125 assertion,
5126 /*friend_p=*/0);
5127 else
5128 add_stmt (assertion);
5130 return;
5133 /* Fold the expression and convert it to a boolean value. */
5134 condition = fold_non_dependent_expr (condition);
5135 condition = cp_convert (boolean_type_node, condition, tf_warning_or_error);
5136 condition = maybe_constant_value (condition);
5138 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
5139 /* Do nothing; the condition is satisfied. */
5141 else
5143 location_t saved_loc = input_location;
5145 input_location = location;
5146 if (TREE_CODE (condition) == INTEGER_CST
5147 && integer_zerop (condition))
5148 /* Report the error. */
5149 error ("static assertion failed: %s", TREE_STRING_POINTER (message));
5150 else if (condition && condition != error_mark_node)
5152 error ("non-constant condition for static assertion");
5153 cxx_constant_value (condition);
5155 input_location = saved_loc;
5159 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
5160 suitable for use as a type-specifier.
5162 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
5163 id-expression or a class member access, FALSE when it was parsed as
5164 a full expression. */
5166 tree
5167 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
5168 tsubst_flags_t complain)
5170 tree type = NULL_TREE;
5172 if (!expr || error_operand_p (expr))
5173 return error_mark_node;
5175 if (TYPE_P (expr)
5176 || TREE_CODE (expr) == TYPE_DECL
5177 || (TREE_CODE (expr) == BIT_NOT_EXPR
5178 && TYPE_P (TREE_OPERAND (expr, 0))))
5180 if (complain & tf_error)
5181 error ("argument to decltype must be an expression");
5182 return error_mark_node;
5185 /* FIXME instantiation-dependent */
5186 if (type_dependent_expression_p (expr)
5187 /* In a template, a COMPONENT_REF has an IDENTIFIER_NODE for op1 even
5188 if it isn't dependent, so that we can check access control at
5189 instantiation time, so defer the decltype as well (PR 42277). */
5190 || (id_expression_or_member_access_p
5191 && processing_template_decl
5192 && TREE_CODE (expr) == COMPONENT_REF))
5194 type = cxx_make_type (DECLTYPE_TYPE);
5195 DECLTYPE_TYPE_EXPR (type) = expr;
5196 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
5197 = id_expression_or_member_access_p;
5198 SET_TYPE_STRUCTURAL_EQUALITY (type);
5200 return type;
5203 /* The type denoted by decltype(e) is defined as follows: */
5205 expr = resolve_nondeduced_context (expr);
5207 if (type_unknown_p (expr))
5209 if (complain & tf_error)
5210 error ("decltype cannot resolve address of overloaded function");
5211 return error_mark_node;
5214 if (invalid_nonstatic_memfn_p (expr, complain))
5215 return error_mark_node;
5217 /* To get the size of a static data member declared as an array of
5218 unknown bound, we need to instantiate it. */
5219 if (TREE_CODE (expr) == VAR_DECL
5220 && VAR_HAD_UNKNOWN_BOUND (expr)
5221 && DECL_TEMPLATE_INSTANTIATION (expr))
5222 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
5224 if (id_expression_or_member_access_p)
5226 /* If e is an id-expression or a class member access (5.2.5
5227 [expr.ref]), decltype(e) is defined as the type of the entity
5228 named by e. If there is no such entity, or e names a set of
5229 overloaded functions, the program is ill-formed. */
5230 if (TREE_CODE (expr) == IDENTIFIER_NODE)
5231 expr = lookup_name (expr);
5233 if (TREE_CODE (expr) == INDIRECT_REF)
5234 /* This can happen when the expression is, e.g., "a.b". Just
5235 look at the underlying operand. */
5236 expr = TREE_OPERAND (expr, 0);
5238 if (TREE_CODE (expr) == OFFSET_REF
5239 || TREE_CODE (expr) == MEMBER_REF)
5240 /* We're only interested in the field itself. If it is a
5241 BASELINK, we will need to see through it in the next
5242 step. */
5243 expr = TREE_OPERAND (expr, 1);
5245 if (BASELINK_P (expr))
5246 /* See through BASELINK nodes to the underlying function. */
5247 expr = BASELINK_FUNCTIONS (expr);
5249 switch (TREE_CODE (expr))
5251 case FIELD_DECL:
5252 if (DECL_BIT_FIELD_TYPE (expr))
5254 type = DECL_BIT_FIELD_TYPE (expr);
5255 break;
5257 /* Fall through for fields that aren't bitfields. */
5259 case FUNCTION_DECL:
5260 case VAR_DECL:
5261 case CONST_DECL:
5262 case PARM_DECL:
5263 case RESULT_DECL:
5264 case TEMPLATE_PARM_INDEX:
5265 expr = mark_type_use (expr);
5266 type = TREE_TYPE (expr);
5267 break;
5269 case ERROR_MARK:
5270 type = error_mark_node;
5271 break;
5273 case COMPONENT_REF:
5274 mark_type_use (expr);
5275 type = is_bitfield_expr_with_lowered_type (expr);
5276 if (!type)
5277 type = TREE_TYPE (TREE_OPERAND (expr, 1));
5278 break;
5280 case BIT_FIELD_REF:
5281 gcc_unreachable ();
5283 case INTEGER_CST:
5284 case PTRMEM_CST:
5285 /* We can get here when the id-expression refers to an
5286 enumerator or non-type template parameter. */
5287 type = TREE_TYPE (expr);
5288 break;
5290 default:
5291 gcc_unreachable ();
5292 return error_mark_node;
5295 else
5297 /* Within a lambda-expression:
5299 Every occurrence of decltype((x)) where x is a possibly
5300 parenthesized id-expression that names an entity of
5301 automatic storage duration is treated as if x were
5302 transformed into an access to a corresponding data member
5303 of the closure type that would have been declared if x
5304 were a use of the denoted entity. */
5305 if (outer_automatic_var_p (expr)
5306 && current_function_decl
5307 && LAMBDA_FUNCTION_P (current_function_decl))
5308 type = capture_decltype (expr);
5309 else if (error_operand_p (expr))
5310 type = error_mark_node;
5311 else if (expr == current_class_ptr)
5312 /* If the expression is just "this", we want the
5313 cv-unqualified pointer for the "this" type. */
5314 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
5315 else
5317 /* Otherwise, where T is the type of e, if e is an lvalue,
5318 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
5319 cp_lvalue_kind clk = lvalue_kind (expr);
5320 type = unlowered_expr_type (expr);
5321 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5322 if (clk != clk_none && !(clk & clk_class))
5323 type = cp_build_reference_type (type, (clk & clk_rvalueref));
5327 return type;
5330 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
5331 __has_nothrow_copy, depending on assign_p. */
5333 static bool
5334 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
5336 tree fns;
5338 if (assign_p)
5340 int ix;
5341 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
5342 if (ix < 0)
5343 return false;
5344 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
5346 else if (TYPE_HAS_COPY_CTOR (type))
5348 /* If construction of the copy constructor was postponed, create
5349 it now. */
5350 if (CLASSTYPE_LAZY_COPY_CTOR (type))
5351 lazily_declare_fn (sfk_copy_constructor, type);
5352 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
5353 lazily_declare_fn (sfk_move_constructor, type);
5354 fns = CLASSTYPE_CONSTRUCTORS (type);
5356 else
5357 return false;
5359 for (; fns; fns = OVL_NEXT (fns))
5361 tree fn = OVL_CURRENT (fns);
5363 if (assign_p)
5365 if (copy_fn_p (fn) == 0)
5366 continue;
5368 else if (copy_fn_p (fn) <= 0)
5369 continue;
5371 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
5372 return false;
5375 return true;
5378 /* Actually evaluates the trait. */
5380 static bool
5381 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
5383 enum tree_code type_code1;
5384 tree t;
5386 type_code1 = TREE_CODE (type1);
5388 switch (kind)
5390 case CPTK_HAS_NOTHROW_ASSIGN:
5391 type1 = strip_array_types (type1);
5392 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5393 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
5394 || (CLASS_TYPE_P (type1)
5395 && classtype_has_nothrow_assign_or_copy_p (type1,
5396 true))));
5398 case CPTK_HAS_TRIVIAL_ASSIGN:
5399 /* ??? The standard seems to be missing the "or array of such a class
5400 type" wording for this trait. */
5401 type1 = strip_array_types (type1);
5402 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5403 && (trivial_type_p (type1)
5404 || (CLASS_TYPE_P (type1)
5405 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
5407 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5408 type1 = strip_array_types (type1);
5409 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
5410 || (CLASS_TYPE_P (type1)
5411 && (t = locate_ctor (type1))
5412 && TYPE_NOTHROW_P (TREE_TYPE (t))));
5414 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5415 type1 = strip_array_types (type1);
5416 return (trivial_type_p (type1)
5417 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
5419 case CPTK_HAS_NOTHROW_COPY:
5420 type1 = strip_array_types (type1);
5421 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
5422 || (CLASS_TYPE_P (type1)
5423 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
5425 case CPTK_HAS_TRIVIAL_COPY:
5426 /* ??? The standard seems to be missing the "or array of such a class
5427 type" wording for this trait. */
5428 type1 = strip_array_types (type1);
5429 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5430 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
5432 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5433 type1 = strip_array_types (type1);
5434 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5435 || (CLASS_TYPE_P (type1)
5436 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
5438 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5439 return type_has_virtual_destructor (type1);
5441 case CPTK_IS_ABSTRACT:
5442 return (ABSTRACT_CLASS_TYPE_P (type1));
5444 case CPTK_IS_BASE_OF:
5445 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5446 && DERIVED_FROM_P (type1, type2));
5448 case CPTK_IS_CLASS:
5449 return (NON_UNION_CLASS_TYPE_P (type1));
5451 case CPTK_IS_CONVERTIBLE_TO:
5452 /* TODO */
5453 return false;
5455 case CPTK_IS_EMPTY:
5456 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
5458 case CPTK_IS_ENUM:
5459 return (type_code1 == ENUMERAL_TYPE);
5461 case CPTK_IS_FINAL:
5462 return (CLASS_TYPE_P (type1) && CLASSTYPE_FINAL (type1));
5464 case CPTK_IS_LITERAL_TYPE:
5465 return (literal_type_p (type1));
5467 case CPTK_IS_POD:
5468 return (pod_type_p (type1));
5470 case CPTK_IS_POLYMORPHIC:
5471 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
5473 case CPTK_IS_STD_LAYOUT:
5474 return (std_layout_type_p (type1));
5476 case CPTK_IS_TRIVIAL:
5477 return (trivial_type_p (type1));
5479 case CPTK_IS_UNION:
5480 return (type_code1 == UNION_TYPE);
5482 default:
5483 gcc_unreachable ();
5484 return false;
5488 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
5489 void, or a complete type, returns it, otherwise NULL_TREE. */
5491 static tree
5492 check_trait_type (tree type)
5494 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
5495 && COMPLETE_TYPE_P (TREE_TYPE (type)))
5496 return type;
5498 if (VOID_TYPE_P (type))
5499 return type;
5501 return complete_type_or_else (strip_array_types (type), NULL_TREE);
5504 /* Process a trait expression. */
5506 tree
5507 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
5509 gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
5510 || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
5511 || kind == CPTK_HAS_NOTHROW_COPY
5512 || kind == CPTK_HAS_TRIVIAL_ASSIGN
5513 || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
5514 || kind == CPTK_HAS_TRIVIAL_COPY
5515 || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
5516 || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR
5517 || kind == CPTK_IS_ABSTRACT
5518 || kind == CPTK_IS_BASE_OF
5519 || kind == CPTK_IS_CLASS
5520 || kind == CPTK_IS_CONVERTIBLE_TO
5521 || kind == CPTK_IS_EMPTY
5522 || kind == CPTK_IS_ENUM
5523 || kind == CPTK_IS_FINAL
5524 || kind == CPTK_IS_LITERAL_TYPE
5525 || kind == CPTK_IS_POD
5526 || kind == CPTK_IS_POLYMORPHIC
5527 || kind == CPTK_IS_STD_LAYOUT
5528 || kind == CPTK_IS_TRIVIAL
5529 || kind == CPTK_IS_UNION);
5531 if (kind == CPTK_IS_CONVERTIBLE_TO)
5533 sorry ("__is_convertible_to");
5534 return error_mark_node;
5537 if (type1 == error_mark_node
5538 || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5539 && type2 == error_mark_node))
5540 return error_mark_node;
5542 if (processing_template_decl)
5544 tree trait_expr = make_node (TRAIT_EXPR);
5545 TREE_TYPE (trait_expr) = boolean_type_node;
5546 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5547 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5548 TRAIT_EXPR_KIND (trait_expr) = kind;
5549 return trait_expr;
5552 switch (kind)
5554 case CPTK_HAS_NOTHROW_ASSIGN:
5555 case CPTK_HAS_TRIVIAL_ASSIGN:
5556 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5557 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5558 case CPTK_HAS_NOTHROW_COPY:
5559 case CPTK_HAS_TRIVIAL_COPY:
5560 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5561 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5562 case CPTK_IS_ABSTRACT:
5563 case CPTK_IS_EMPTY:
5564 case CPTK_IS_FINAL:
5565 case CPTK_IS_LITERAL_TYPE:
5566 case CPTK_IS_POD:
5567 case CPTK_IS_POLYMORPHIC:
5568 case CPTK_IS_STD_LAYOUT:
5569 case CPTK_IS_TRIVIAL:
5570 if (!check_trait_type (type1))
5571 return error_mark_node;
5572 break;
5574 case CPTK_IS_BASE_OF:
5575 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5576 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5577 && !complete_type_or_else (type2, NULL_TREE))
5578 /* We already issued an error. */
5579 return error_mark_node;
5580 break;
5582 case CPTK_IS_CLASS:
5583 case CPTK_IS_ENUM:
5584 case CPTK_IS_UNION:
5585 break;
5587 case CPTK_IS_CONVERTIBLE_TO:
5588 default:
5589 gcc_unreachable ();
5592 return (trait_expr_value (kind, type1, type2)
5593 ? boolean_true_node : boolean_false_node);
5596 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5597 which is ignored for C++. */
5599 void
5600 set_float_const_decimal64 (void)
5604 void
5605 clear_float_const_decimal64 (void)
5609 bool
5610 float_const_decimal64_p (void)
5612 return 0;
5616 /* Return true if T is a literal type. */
5618 bool
5619 literal_type_p (tree t)
5621 if (SCALAR_TYPE_P (t)
5622 || TREE_CODE (t) == REFERENCE_TYPE)
5623 return true;
5624 if (CLASS_TYPE_P (t))
5626 t = complete_type (t);
5627 gcc_assert (COMPLETE_TYPE_P (t) || errorcount);
5628 return CLASSTYPE_LITERAL_P (t);
5630 if (TREE_CODE (t) == ARRAY_TYPE)
5631 return literal_type_p (strip_array_types (t));
5632 return false;
5635 /* If DECL is a variable declared `constexpr', require its type
5636 be literal. Return the DECL if OK, otherwise NULL. */
5638 tree
5639 ensure_literal_type_for_constexpr_object (tree decl)
5641 tree type = TREE_TYPE (decl);
5642 if (TREE_CODE (decl) == VAR_DECL && DECL_DECLARED_CONSTEXPR_P (decl)
5643 && !processing_template_decl)
5645 if (CLASS_TYPE_P (type) && !COMPLETE_TYPE_P (complete_type (type)))
5646 /* Don't complain here, we'll complain about incompleteness
5647 when we try to initialize the variable. */;
5648 else if (!literal_type_p (type))
5650 error ("the type %qT of constexpr variable %qD is not literal",
5651 type, decl);
5652 explain_non_literal_class (type);
5653 return NULL;
5656 return decl;
5659 /* Representation of entries in the constexpr function definition table. */
5661 typedef struct GTY(()) constexpr_fundef {
5662 tree decl;
5663 tree body;
5664 } constexpr_fundef;
5666 /* This table holds all constexpr function definitions seen in
5667 the current translation unit. */
5669 static GTY ((param_is (constexpr_fundef))) htab_t constexpr_fundef_table;
5671 /* Utility function used for managing the constexpr function table.
5672 Return true if the entries pointed to by P and Q are for the
5673 same constexpr function. */
5675 static inline int
5676 constexpr_fundef_equal (const void *p, const void *q)
5678 const constexpr_fundef *lhs = (const constexpr_fundef *) p;
5679 const constexpr_fundef *rhs = (const constexpr_fundef *) q;
5680 return lhs->decl == rhs->decl;
5683 /* Utility function used for managing the constexpr function table.
5684 Return a hash value for the entry pointed to by Q. */
5686 static inline hashval_t
5687 constexpr_fundef_hash (const void *p)
5689 const constexpr_fundef *fundef = (const constexpr_fundef *) p;
5690 return DECL_UID (fundef->decl);
5693 /* Return a previously saved definition of function FUN. */
5695 static constexpr_fundef *
5696 retrieve_constexpr_fundef (tree fun)
5698 constexpr_fundef fundef = { NULL, NULL };
5699 if (constexpr_fundef_table == NULL)
5700 return NULL;
5702 fundef.decl = fun;
5703 return (constexpr_fundef *) htab_find (constexpr_fundef_table, &fundef);
5706 /* Check whether the parameter and return types of FUN are valid for a
5707 constexpr function, and complain if COMPLAIN. */
5709 static bool
5710 is_valid_constexpr_fn (tree fun, bool complain)
5712 tree parm = FUNCTION_FIRST_USER_PARM (fun);
5713 bool ret = true;
5714 for (; parm != NULL; parm = TREE_CHAIN (parm))
5715 if (!literal_type_p (TREE_TYPE (parm)))
5717 ret = false;
5718 if (complain)
5720 error ("invalid type for parameter %d of constexpr "
5721 "function %q+#D", DECL_PARM_INDEX (parm), fun);
5722 explain_non_literal_class (TREE_TYPE (parm));
5726 if (!DECL_CONSTRUCTOR_P (fun))
5728 tree rettype = TREE_TYPE (TREE_TYPE (fun));
5729 if (!literal_type_p (rettype))
5731 ret = false;
5732 if (complain)
5734 error ("invalid return type %qT of constexpr function %q+D",
5735 rettype, fun);
5736 explain_non_literal_class (rettype);
5740 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5741 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
5743 ret = false;
5744 if (complain)
5746 error ("enclosing class of constexpr non-static member "
5747 "function %q+#D is not a literal type", fun);
5748 explain_non_literal_class (DECL_CONTEXT (fun));
5752 else if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fun)))
5754 ret = false;
5755 if (complain)
5756 error ("%q#T has virtual base classes", DECL_CONTEXT (fun));
5759 return ret;
5762 /* Subroutine of build_constexpr_constructor_member_initializers.
5763 The expression tree T represents a data member initialization
5764 in a (constexpr) constructor definition. Build a pairing of
5765 the data member with its initializer, and prepend that pair
5766 to the existing initialization pair INITS. */
5768 static bool
5769 build_data_member_initialization (tree t, VEC(constructor_elt,gc) **vec)
5771 tree member, init;
5772 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
5773 t = TREE_OPERAND (t, 0);
5774 if (TREE_CODE (t) == EXPR_STMT)
5775 t = TREE_OPERAND (t, 0);
5776 if (t == error_mark_node)
5777 return false;
5778 if (TREE_CODE (t) == STATEMENT_LIST)
5780 tree_stmt_iterator i;
5781 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5783 if (! build_data_member_initialization (tsi_stmt (i), vec))
5784 return false;
5786 return true;
5788 if (TREE_CODE (t) == CLEANUP_STMT)
5790 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5791 but we can in a constexpr constructor for a non-literal class. Just
5792 ignore it; either all the initialization will be constant, in which
5793 case the cleanup can't run, or it can't be constexpr.
5794 Still recurse into CLEANUP_BODY. */
5795 return build_data_member_initialization (CLEANUP_BODY (t), vec);
5797 if (TREE_CODE (t) == CONVERT_EXPR)
5798 t = TREE_OPERAND (t, 0);
5799 if (TREE_CODE (t) == INIT_EXPR
5800 || TREE_CODE (t) == MODIFY_EXPR)
5802 member = TREE_OPERAND (t, 0);
5803 init = unshare_expr (TREE_OPERAND (t, 1));
5805 else
5807 gcc_assert (TREE_CODE (t) == CALL_EXPR);
5808 member = CALL_EXPR_ARG (t, 0);
5809 /* We don't use build_cplus_new here because it complains about
5810 abstract bases. Leaving the call unwrapped means that it has the
5811 wrong type, but cxx_eval_constant_expression doesn't care. */
5812 init = unshare_expr (t);
5814 if (TREE_CODE (member) == INDIRECT_REF)
5815 member = TREE_OPERAND (member, 0);
5816 if (TREE_CODE (member) == NOP_EXPR)
5818 tree op = member;
5819 STRIP_NOPS (op);
5820 if (TREE_CODE (op) == ADDR_EXPR)
5822 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5823 (TREE_TYPE (TREE_TYPE (op)),
5824 TREE_TYPE (TREE_TYPE (member))));
5825 /* Initializing a cv-qualified member; we need to look through
5826 the const_cast. */
5827 member = op;
5829 else if (op == current_class_ptr
5830 && (same_type_ignoring_top_level_qualifiers_p
5831 (TREE_TYPE (TREE_TYPE (member)),
5832 current_class_type)))
5833 /* Delegating constructor. */
5834 member = op;
5835 else
5837 /* We don't put out anything for an empty base. */
5838 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
5839 /* But if the initializer isn't constexpr, leave it in so we
5840 complain later. */
5841 if (potential_constant_expression (init))
5842 return true;
5845 if (TREE_CODE (member) == ADDR_EXPR)
5846 member = TREE_OPERAND (member, 0);
5847 if (TREE_CODE (member) == COMPONENT_REF
5848 /* If we're initializing a member of a subaggregate, it's a vtable
5849 pointer. Leave it as COMPONENT_REF so we remember the path to get
5850 to the vfield. */
5851 && TREE_CODE (TREE_OPERAND (member, 0)) != COMPONENT_REF)
5852 member = TREE_OPERAND (member, 1);
5853 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
5854 return true;
5857 /* Make sure that there are no statements after LAST in the constructor
5858 body represented by LIST. */
5860 bool
5861 check_constexpr_ctor_body (tree last, tree list)
5863 bool ok = true;
5864 if (TREE_CODE (list) == STATEMENT_LIST)
5866 tree_stmt_iterator i = tsi_last (list);
5867 for (; !tsi_end_p (i); tsi_prev (&i))
5869 tree t = tsi_stmt (i);
5870 if (t == last)
5871 break;
5872 if (TREE_CODE (t) == BIND_EXPR)
5874 if (!check_constexpr_ctor_body (last, BIND_EXPR_BODY (t)))
5875 return false;
5876 else
5877 continue;
5879 /* We currently allow typedefs and static_assert.
5880 FIXME allow them in the standard, too. */
5881 if (TREE_CODE (t) != STATIC_ASSERT)
5883 ok = false;
5884 break;
5888 else if (list != last
5889 && TREE_CODE (list) != STATIC_ASSERT)
5890 ok = false;
5891 if (!ok)
5893 error ("constexpr constructor does not have empty body");
5894 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
5896 return ok;
5899 /* Build compile-time evalable representations of member-initializer list
5900 for a constexpr constructor. */
5902 static tree
5903 build_constexpr_constructor_member_initializers (tree type, tree body)
5905 VEC(constructor_elt,gc) *vec = NULL;
5906 bool ok = true;
5907 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR
5908 || TREE_CODE (body) == EH_SPEC_BLOCK)
5909 body = TREE_OPERAND (body, 0);
5910 if (TREE_CODE (body) == STATEMENT_LIST)
5911 body = STATEMENT_LIST_HEAD (body)->stmt;
5912 body = BIND_EXPR_BODY (body);
5913 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5915 body = TREE_OPERAND (body, 0);
5916 if (TREE_CODE (body) == EXPR_STMT)
5917 body = TREE_OPERAND (body, 0);
5918 if (TREE_CODE (body) == INIT_EXPR
5919 && (same_type_ignoring_top_level_qualifiers_p
5920 (TREE_TYPE (TREE_OPERAND (body, 0)),
5921 current_class_type)))
5923 /* Trivial copy. */
5924 return TREE_OPERAND (body, 1);
5926 ok = build_data_member_initialization (body, &vec);
5928 else if (TREE_CODE (body) == STATEMENT_LIST)
5930 tree_stmt_iterator i;
5931 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5933 ok = build_data_member_initialization (tsi_stmt (i), &vec);
5934 if (!ok)
5935 break;
5938 else if (TREE_CODE (body) == TRY_BLOCK)
5940 error ("body of %<constexpr%> constructor cannot be "
5941 "a function-try-block");
5942 return error_mark_node;
5944 else if (EXPR_P (body))
5945 ok = build_data_member_initialization (body, &vec);
5946 else
5947 gcc_assert (errorcount > 0);
5948 if (ok)
5950 if (VEC_length (constructor_elt, vec) > 0)
5952 /* In a delegating constructor, return the target. */
5953 constructor_elt *ce = VEC_index (constructor_elt, vec, 0);
5954 if (ce->index == current_class_ptr)
5956 body = ce->value;
5957 VEC_free (constructor_elt, gc, vec);
5958 return body;
5961 return build_constructor (type, vec);
5963 else
5964 return error_mark_node;
5967 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
5968 declared to be constexpr, or a sub-statement thereof. Returns the
5969 return value if suitable, error_mark_node for a statement not allowed in
5970 a constexpr function, or NULL_TREE if no return value was found. */
5972 static tree
5973 constexpr_fn_retval (tree body)
5975 switch (TREE_CODE (body))
5977 case STATEMENT_LIST:
5979 tree_stmt_iterator i;
5980 tree expr = NULL_TREE;
5981 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5983 tree s = constexpr_fn_retval (tsi_stmt (i));
5984 if (s == error_mark_node)
5985 return error_mark_node;
5986 else if (s == NULL_TREE)
5987 /* Keep iterating. */;
5988 else if (expr)
5989 /* Multiple return statements. */
5990 return error_mark_node;
5991 else
5992 expr = s;
5994 return expr;
5997 case RETURN_EXPR:
5998 return unshare_expr (TREE_OPERAND (body, 0));
6000 case DECL_EXPR:
6001 if (TREE_CODE (DECL_EXPR_DECL (body)) == USING_DECL)
6002 return NULL_TREE;
6003 return error_mark_node;
6005 case CLEANUP_POINT_EXPR:
6006 return constexpr_fn_retval (TREE_OPERAND (body, 0));
6008 case USING_STMT:
6009 return NULL_TREE;
6011 default:
6012 return error_mark_node;
6016 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
6017 FUN; do the necessary transformations to turn it into a single expression
6018 that we can store in the hash table. */
6020 static tree
6021 massage_constexpr_body (tree fun, tree body)
6023 if (DECL_CONSTRUCTOR_P (fun))
6024 body = build_constexpr_constructor_member_initializers
6025 (DECL_CONTEXT (fun), body);
6026 else
6028 if (TREE_CODE (body) == EH_SPEC_BLOCK)
6029 body = EH_SPEC_STMTS (body);
6030 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
6031 body = TREE_OPERAND (body, 0);
6032 if (TREE_CODE (body) == BIND_EXPR)
6033 body = BIND_EXPR_BODY (body);
6034 body = constexpr_fn_retval (body);
6036 return body;
6039 /* FUN is a constexpr constructor with massaged body BODY. Return true
6040 if some bases/fields are uninitialized, and complain if COMPLAIN. */
6042 static bool
6043 cx_check_missing_mem_inits (tree fun, tree body, bool complain)
6045 bool bad;
6046 tree field;
6047 unsigned i, nelts;
6048 tree ctype;
6050 if (TREE_CODE (body) != CONSTRUCTOR)
6051 return false;
6053 nelts = CONSTRUCTOR_NELTS (body);
6054 ctype = DECL_CONTEXT (fun);
6055 field = TYPE_FIELDS (ctype);
6057 if (TREE_CODE (ctype) == UNION_TYPE)
6059 if (nelts == 0 && next_initializable_field (field))
6061 if (complain)
6062 error ("%<constexpr%> constructor for union %qT must "
6063 "initialize exactly one non-static data member", ctype);
6064 return true;
6066 return false;
6069 bad = false;
6070 for (i = 0; i <= nelts; ++i)
6072 tree index;
6073 if (i == nelts)
6074 index = NULL_TREE;
6075 else
6077 index = CONSTRUCTOR_ELT (body, i)->index;
6078 /* Skip base and vtable inits. */
6079 if (TREE_CODE (index) != FIELD_DECL)
6080 continue;
6082 for (; field != index; field = DECL_CHAIN (field))
6084 tree ftype;
6085 if (TREE_CODE (field) != FIELD_DECL
6086 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field)))
6087 continue;
6088 ftype = strip_array_types (TREE_TYPE (field));
6089 if (type_has_constexpr_default_constructor (ftype))
6091 /* It's OK to skip a member with a trivial constexpr ctor.
6092 A constexpr ctor that isn't trivial should have been
6093 added in by now. */
6094 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype)
6095 || errorcount != 0);
6096 continue;
6098 if (!complain)
6099 return true;
6100 error ("uninitialized member %qD in %<constexpr%> constructor",
6101 field);
6102 bad = true;
6104 if (field == NULL_TREE)
6105 break;
6106 field = DECL_CHAIN (field);
6109 return bad;
6112 /* We are processing the definition of the constexpr function FUN.
6113 Check that its BODY fulfills the propriate requirements and
6114 enter it in the constexpr function definition table.
6115 For constructor BODY is actually the TREE_LIST of the
6116 member-initializer list. */
6118 tree
6119 register_constexpr_fundef (tree fun, tree body)
6121 constexpr_fundef entry;
6122 constexpr_fundef **slot;
6124 if (!is_valid_constexpr_fn (fun, !DECL_GENERATED_P (fun)))
6125 return NULL;
6127 body = massage_constexpr_body (fun, body);
6128 if (body == NULL_TREE || body == error_mark_node)
6130 if (!DECL_CONSTRUCTOR_P (fun))
6131 error ("body of constexpr function %qD not a return-statement", fun);
6132 return NULL;
6135 if (!potential_rvalue_constant_expression (body))
6137 if (!DECL_GENERATED_P (fun))
6138 require_potential_rvalue_constant_expression (body);
6139 return NULL;
6142 if (DECL_CONSTRUCTOR_P (fun)
6143 && cx_check_missing_mem_inits (fun, body, !DECL_GENERATED_P (fun)))
6144 return NULL;
6146 /* Create the constexpr function table if necessary. */
6147 if (constexpr_fundef_table == NULL)
6148 constexpr_fundef_table = htab_create_ggc (101,
6149 constexpr_fundef_hash,
6150 constexpr_fundef_equal,
6151 ggc_free);
6152 entry.decl = fun;
6153 entry.body = body;
6154 slot = (constexpr_fundef **)
6155 htab_find_slot (constexpr_fundef_table, &entry, INSERT);
6157 gcc_assert (*slot == NULL);
6158 *slot = ggc_alloc_constexpr_fundef ();
6159 **slot = entry;
6161 return fun;
6164 /* FUN is a non-constexpr function called in a context that requires a
6165 constant expression. If it comes from a constexpr template, explain why
6166 the instantiation isn't constexpr. */
6168 void
6169 explain_invalid_constexpr_fn (tree fun)
6171 static struct pointer_set_t *diagnosed;
6172 tree body;
6173 location_t save_loc;
6174 /* Only diagnose defaulted functions or instantiations. */
6175 if (!DECL_DEFAULTED_FN (fun)
6176 && !is_instantiation_of_constexpr (fun))
6177 return;
6178 if (diagnosed == NULL)
6179 diagnosed = pointer_set_create ();
6180 if (pointer_set_insert (diagnosed, fun) != 0)
6181 /* Already explained. */
6182 return;
6184 save_loc = input_location;
6185 input_location = DECL_SOURCE_LOCATION (fun);
6186 inform (0, "%q+D is not usable as a constexpr function because:", fun);
6187 /* First check the declaration. */
6188 if (is_valid_constexpr_fn (fun, true))
6190 /* Then if it's OK, the body. */
6191 if (DECL_DEFAULTED_FN (fun))
6192 explain_implicit_non_constexpr (fun);
6193 else
6195 body = massage_constexpr_body (fun, DECL_SAVED_TREE (fun));
6196 require_potential_rvalue_constant_expression (body);
6197 if (DECL_CONSTRUCTOR_P (fun))
6198 cx_check_missing_mem_inits (fun, body, true);
6201 input_location = save_loc;
6204 /* Objects of this type represent calls to constexpr functions
6205 along with the bindings of parameters to their arguments, for
6206 the purpose of compile time evaluation. */
6208 typedef struct GTY(()) constexpr_call {
6209 /* Description of the constexpr function definition. */
6210 constexpr_fundef *fundef;
6211 /* Parameter bindings enironment. A TREE_LIST where each TREE_PURPOSE
6212 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
6213 Note: This arrangement is made to accomodate the use of
6214 iterative_hash_template_arg (see pt.c). If you change this
6215 representation, also change the hash calculation in
6216 cxx_eval_call_expression. */
6217 tree bindings;
6218 /* Result of the call.
6219 NULL means the call is being evaluated.
6220 error_mark_node means that the evaluation was erroneous;
6221 otherwise, the actuall value of the call. */
6222 tree result;
6223 /* The hash of this call; we remember it here to avoid having to
6224 recalculate it when expanding the hash table. */
6225 hashval_t hash;
6226 } constexpr_call;
6228 /* A table of all constexpr calls that have been evaluated by the
6229 compiler in this translation unit. */
6231 static GTY ((param_is (constexpr_call))) htab_t constexpr_call_table;
6233 static tree cxx_eval_constant_expression (const constexpr_call *, tree,
6234 bool, bool, bool *);
6236 /* Compute a hash value for a constexpr call representation. */
6238 static hashval_t
6239 constexpr_call_hash (const void *p)
6241 const constexpr_call *info = (const constexpr_call *) p;
6242 return info->hash;
6245 /* Return 1 if the objects pointed to by P and Q represent calls
6246 to the same constexpr function with the same arguments.
6247 Otherwise, return 0. */
6249 static int
6250 constexpr_call_equal (const void *p, const void *q)
6252 const constexpr_call *lhs = (const constexpr_call *) p;
6253 const constexpr_call *rhs = (const constexpr_call *) q;
6254 tree lhs_bindings;
6255 tree rhs_bindings;
6256 if (lhs == rhs)
6257 return 1;
6258 if (!constexpr_fundef_equal (lhs->fundef, rhs->fundef))
6259 return 0;
6260 lhs_bindings = lhs->bindings;
6261 rhs_bindings = rhs->bindings;
6262 while (lhs_bindings != NULL && rhs_bindings != NULL)
6264 tree lhs_arg = TREE_VALUE (lhs_bindings);
6265 tree rhs_arg = TREE_VALUE (rhs_bindings);
6266 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
6267 if (!cp_tree_equal (lhs_arg, rhs_arg))
6268 return 0;
6269 lhs_bindings = TREE_CHAIN (lhs_bindings);
6270 rhs_bindings = TREE_CHAIN (rhs_bindings);
6272 return lhs_bindings == rhs_bindings;
6275 /* Initialize the constexpr call table, if needed. */
6277 static void
6278 maybe_initialize_constexpr_call_table (void)
6280 if (constexpr_call_table == NULL)
6281 constexpr_call_table = htab_create_ggc (101,
6282 constexpr_call_hash,
6283 constexpr_call_equal,
6284 ggc_free);
6287 /* Return true if T designates the implied `this' parameter. */
6289 static inline bool
6290 is_this_parameter (tree t)
6292 return t == current_class_ptr;
6295 /* We have an expression tree T that represents a call, either CALL_EXPR
6296 or AGGR_INIT_EXPR. If the call is lexically to a named function,
6297 retrun the _DECL for that function. */
6299 static tree
6300 get_function_named_in_call (tree t)
6302 tree fun = NULL;
6303 switch (TREE_CODE (t))
6305 case CALL_EXPR:
6306 fun = CALL_EXPR_FN (t);
6307 break;
6309 case AGGR_INIT_EXPR:
6310 fun = AGGR_INIT_EXPR_FN (t);
6311 break;
6313 default:
6314 gcc_unreachable();
6315 break;
6317 if (TREE_CODE (fun) == ADDR_EXPR
6318 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
6319 fun = TREE_OPERAND (fun, 0);
6320 return fun;
6323 /* We have an expression tree T that represents a call, either CALL_EXPR
6324 or AGGR_INIT_EXPR. Return the Nth argument. */
6326 static inline tree
6327 get_nth_callarg (tree t, int n)
6329 switch (TREE_CODE (t))
6331 case CALL_EXPR:
6332 return CALL_EXPR_ARG (t, n);
6334 case AGGR_INIT_EXPR:
6335 return AGGR_INIT_EXPR_ARG (t, n);
6337 default:
6338 gcc_unreachable ();
6339 return NULL;
6343 /* Look up the binding of the function parameter T in a constexpr
6344 function call context CALL. */
6346 static tree
6347 lookup_parameter_binding (const constexpr_call *call, tree t)
6349 tree b = purpose_member (t, call->bindings);
6350 return TREE_VALUE (b);
6353 /* Attempt to evaluate T which represents a call to a builtin function.
6354 We assume here that all builtin functions evaluate to scalar types
6355 represented by _CST nodes. */
6357 static tree
6358 cxx_eval_builtin_function_call (const constexpr_call *call, tree t,
6359 bool allow_non_constant, bool addr,
6360 bool *non_constant_p)
6362 const int nargs = call_expr_nargs (t);
6363 tree *args = (tree *) alloca (nargs * sizeof (tree));
6364 tree new_call;
6365 int i;
6366 for (i = 0; i < nargs; ++i)
6368 args[i] = cxx_eval_constant_expression (call, CALL_EXPR_ARG (t, i),
6369 allow_non_constant, addr,
6370 non_constant_p);
6371 if (allow_non_constant && *non_constant_p)
6372 return t;
6374 if (*non_constant_p)
6375 return t;
6376 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
6377 CALL_EXPR_FN (t), nargs, args);
6378 return fold (new_call);
6381 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
6382 the type of the value to match. */
6384 static tree
6385 adjust_temp_type (tree type, tree temp)
6387 if (TREE_TYPE (temp) == type)
6388 return temp;
6389 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
6390 if (TREE_CODE (temp) == CONSTRUCTOR)
6391 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
6392 gcc_assert (SCALAR_TYPE_P (type));
6393 return cp_fold_convert (type, temp);
6396 /* Subroutine of cxx_eval_call_expression.
6397 We are processing a call expression (either CALL_EXPR or
6398 AGGR_INIT_EXPR) in the call context of OLD_CALL. Evaluate
6399 all arguments and bind their values to correspondings
6400 parameters, making up the NEW_CALL context. */
6402 static void
6403 cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t,
6404 constexpr_call *new_call,
6405 bool allow_non_constant,
6406 bool *non_constant_p)
6408 const int nargs = call_expr_nargs (t);
6409 tree fun = new_call->fundef->decl;
6410 tree parms = DECL_ARGUMENTS (fun);
6411 int i;
6412 for (i = 0; i < nargs; ++i)
6414 tree x, arg;
6415 tree type = parms ? TREE_TYPE (parms) : void_type_node;
6416 /* For member function, the first argument is a pointer to the implied
6417 object. And for an object contruction, don't bind `this' before
6418 it is fully constructed. */
6419 if (i == 0 && DECL_CONSTRUCTOR_P (fun))
6420 goto next;
6421 x = get_nth_callarg (t, i);
6422 arg = cxx_eval_constant_expression (old_call, x, allow_non_constant,
6423 TREE_CODE (type) == REFERENCE_TYPE,
6424 non_constant_p);
6425 /* Don't VERIFY_CONSTANT here. */
6426 if (*non_constant_p && allow_non_constant)
6427 return;
6428 /* Just discard ellipsis args after checking their constantitude. */
6429 if (!parms)
6430 continue;
6431 if (*non_constant_p)
6432 /* Don't try to adjust the type of non-constant args. */
6433 goto next;
6435 /* Make sure the binding has the same type as the parm. */
6436 if (TREE_CODE (type) != REFERENCE_TYPE)
6437 arg = adjust_temp_type (type, arg);
6438 new_call->bindings = tree_cons (parms, arg, new_call->bindings);
6439 next:
6440 parms = TREE_CHAIN (parms);
6444 /* Variables and functions to manage constexpr call expansion context.
6445 These do not need to be marked for PCH or GC. */
6447 /* FIXME remember and print actual constant arguments. */
6448 static VEC(tree,heap) *call_stack = NULL;
6449 static int call_stack_tick;
6450 static int last_cx_error_tick;
6452 static bool
6453 push_cx_call_context (tree call)
6455 ++call_stack_tick;
6456 if (!EXPR_HAS_LOCATION (call))
6457 SET_EXPR_LOCATION (call, input_location);
6458 VEC_safe_push (tree, heap, call_stack, call);
6459 if (VEC_length (tree, call_stack) > (unsigned) max_constexpr_depth)
6460 return false;
6461 return true;
6464 static void
6465 pop_cx_call_context (void)
6467 ++call_stack_tick;
6468 VEC_pop (tree, call_stack);
6471 VEC(tree,heap) *
6472 cx_error_context (void)
6474 VEC(tree,heap) *r = NULL;
6475 if (call_stack_tick != last_cx_error_tick
6476 && !VEC_empty (tree, call_stack))
6477 r = call_stack;
6478 last_cx_error_tick = call_stack_tick;
6479 return r;
6482 /* Subroutine of cxx_eval_constant_expression.
6483 Evaluate the call expression tree T in the context of OLD_CALL expression
6484 evaluation. */
6486 static tree
6487 cxx_eval_call_expression (const constexpr_call *old_call, tree t,
6488 bool allow_non_constant, bool addr,
6489 bool *non_constant_p)
6491 location_t loc = EXPR_LOC_OR_HERE (t);
6492 tree fun = get_function_named_in_call (t);
6493 tree result;
6494 constexpr_call new_call = { NULL, NULL, NULL, 0 };
6495 constexpr_call **slot;
6496 constexpr_call *entry;
6497 bool depth_ok;
6499 if (TREE_CODE (fun) != FUNCTION_DECL)
6501 /* Might be a constexpr function pointer. */
6502 fun = cxx_eval_constant_expression (old_call, fun, allow_non_constant,
6503 /*addr*/false, non_constant_p);
6504 if (TREE_CODE (fun) == ADDR_EXPR)
6505 fun = TREE_OPERAND (fun, 0);
6507 if (TREE_CODE (fun) != FUNCTION_DECL)
6509 if (!allow_non_constant && !*non_constant_p)
6510 error_at (loc, "expression %qE does not designate a constexpr "
6511 "function", fun);
6512 *non_constant_p = true;
6513 return t;
6515 if (DECL_CLONED_FUNCTION_P (fun))
6516 fun = DECL_CLONED_FUNCTION (fun);
6517 if (is_builtin_fn (fun))
6518 return cxx_eval_builtin_function_call (old_call, t, allow_non_constant,
6519 addr, non_constant_p);
6520 if (!DECL_DECLARED_CONSTEXPR_P (fun))
6522 if (!allow_non_constant)
6524 error_at (loc, "call to non-constexpr function %qD", fun);
6525 explain_invalid_constexpr_fn (fun);
6527 *non_constant_p = true;
6528 return t;
6531 /* Shortcut trivial copy constructor/op=. */
6532 if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
6534 tree arg = convert_from_reference (get_nth_callarg (t, 1));
6535 return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
6536 addr, non_constant_p);
6539 /* If in direct recursive call, optimize definition search. */
6540 if (old_call != NULL && old_call->fundef->decl == fun)
6541 new_call.fundef = old_call->fundef;
6542 else
6544 new_call.fundef = retrieve_constexpr_fundef (fun);
6545 if (new_call.fundef == NULL || new_call.fundef->body == NULL)
6547 if (!allow_non_constant)
6549 if (DECL_INITIAL (fun))
6551 /* The definition of fun was somehow unsuitable. */
6552 error_at (loc, "%qD called in a constant expression", fun);
6553 explain_invalid_constexpr_fn (fun);
6555 else
6556 error_at (loc, "%qD used before its definition", fun);
6558 *non_constant_p = true;
6559 return t;
6562 cxx_bind_parameters_in_call (old_call, t, &new_call,
6563 allow_non_constant, non_constant_p);
6564 if (*non_constant_p)
6565 return t;
6567 depth_ok = push_cx_call_context (t);
6569 new_call.hash
6570 = iterative_hash_template_arg (new_call.bindings,
6571 constexpr_fundef_hash (new_call.fundef));
6573 /* If we have seen this call before, we are done. */
6574 maybe_initialize_constexpr_call_table ();
6575 slot = (constexpr_call **)
6576 htab_find_slot (constexpr_call_table, &new_call, INSERT);
6577 entry = *slot;
6578 if (entry == NULL)
6580 /* We need to keep a pointer to the entry, not just the slot, as the
6581 slot can move in the call to cxx_eval_builtin_function_call. */
6582 *slot = entry = ggc_alloc_constexpr_call ();
6583 *entry = new_call;
6585 /* Calls which are in progress have their result set to NULL
6586 so that we can detect circular dependencies. */
6587 else if (entry->result == NULL)
6589 if (!allow_non_constant)
6590 error ("call has circular dependency");
6591 *non_constant_p = true;
6592 entry->result = result = error_mark_node;
6595 if (!depth_ok)
6597 if (!allow_non_constant)
6598 error ("constexpr evaluation depth exceeds maximum of %d (use "
6599 "-fconstexpr-depth= to increase the maximum)",
6600 max_constexpr_depth);
6601 *non_constant_p = true;
6602 entry->result = result = error_mark_node;
6604 else
6606 result = entry->result;
6607 if (!result || result == error_mark_node)
6608 result = (cxx_eval_constant_expression
6609 (&new_call, new_call.fundef->body,
6610 allow_non_constant, addr,
6611 non_constant_p));
6612 if (result == error_mark_node)
6613 *non_constant_p = true;
6614 if (*non_constant_p)
6615 entry->result = result = error_mark_node;
6616 else
6618 /* If this was a call to initialize an object, set the type of
6619 the CONSTRUCTOR to the type of that object. */
6620 if (DECL_CONSTRUCTOR_P (fun))
6622 tree ob_arg = get_nth_callarg (t, 0);
6623 STRIP_NOPS (ob_arg);
6624 gcc_assert (TREE_CODE (TREE_TYPE (ob_arg)) == POINTER_TYPE
6625 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg))));
6626 result = adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg)),
6627 result);
6629 entry->result = result;
6633 pop_cx_call_context ();
6634 return unshare_expr (result);
6637 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
6639 bool
6640 reduced_constant_expression_p (tree t)
6642 if (TREE_OVERFLOW_P (t))
6643 /* Integer overflow makes this not a constant expression. */
6644 return false;
6645 /* FIXME are we calling this too much? */
6646 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
6649 /* Some expressions may have constant operands but are not constant
6650 themselves, such as 1/0. Call this function (or rather, the macro
6651 following it) to check for that condition.
6653 We only call this in places that require an arithmetic constant, not in
6654 places where we might have a non-constant expression that can be a
6655 component of a constant expression, such as the address of a constexpr
6656 variable that might be dereferenced later. */
6658 static bool
6659 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p)
6661 if (!*non_constant_p && !reduced_constant_expression_p (t))
6663 if (!allow_non_constant)
6665 /* If T was already folded to a _CST with TREE_OVERFLOW set,
6666 printing the folded constant isn't helpful. */
6667 if (TREE_OVERFLOW_P (t))
6669 permerror (input_location, "overflow in constant expression");
6670 /* If we're being permissive (and are in an enforcing
6671 context), consider this constant. */
6672 if (flag_permissive)
6673 return false;
6675 else
6676 error ("%q+E is not a constant expression", t);
6678 *non_constant_p = true;
6680 return *non_constant_p;
6682 #define VERIFY_CONSTANT(X) \
6683 do { \
6684 if (verify_constant ((X), allow_non_constant, non_constant_p)) \
6685 return t; \
6686 } while (0)
6688 /* Subroutine of cxx_eval_constant_expression.
6689 Attempt to reduce the unary expression tree T to a compile time value.
6690 If successful, return the value. Otherwise issue a diagnostic
6691 and return error_mark_node. */
6693 static tree
6694 cxx_eval_unary_expression (const constexpr_call *call, tree t,
6695 bool allow_non_constant, bool addr,
6696 bool *non_constant_p)
6698 tree r;
6699 tree orig_arg = TREE_OPERAND (t, 0);
6700 tree arg = cxx_eval_constant_expression (call, orig_arg, allow_non_constant,
6701 addr, non_constant_p);
6702 VERIFY_CONSTANT (arg);
6703 if (arg == orig_arg)
6704 return t;
6705 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), arg);
6706 VERIFY_CONSTANT (r);
6707 return r;
6710 /* Subroutine of cxx_eval_constant_expression.
6711 Like cxx_eval_unary_expression, except for binary expressions. */
6713 static tree
6714 cxx_eval_binary_expression (const constexpr_call *call, tree t,
6715 bool allow_non_constant, bool addr,
6716 bool *non_constant_p)
6718 tree r;
6719 tree orig_lhs = TREE_OPERAND (t, 0);
6720 tree orig_rhs = TREE_OPERAND (t, 1);
6721 tree lhs, rhs;
6722 lhs = cxx_eval_constant_expression (call, orig_lhs,
6723 allow_non_constant, addr,
6724 non_constant_p);
6725 VERIFY_CONSTANT (lhs);
6726 rhs = cxx_eval_constant_expression (call, orig_rhs,
6727 allow_non_constant, addr,
6728 non_constant_p);
6729 VERIFY_CONSTANT (rhs);
6730 if (lhs == orig_lhs && rhs == orig_rhs)
6731 return t;
6732 r = fold_build2 (TREE_CODE (t), TREE_TYPE (t), lhs, rhs);
6733 VERIFY_CONSTANT (r);
6734 return r;
6737 /* Subroutine of cxx_eval_constant_expression.
6738 Attempt to evaluate condition expressions. Dead branches are not
6739 looked into. */
6741 static tree
6742 cxx_eval_conditional_expression (const constexpr_call *call, tree t,
6743 bool allow_non_constant, bool addr,
6744 bool *non_constant_p)
6746 tree val = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6747 allow_non_constant, addr,
6748 non_constant_p);
6749 VERIFY_CONSTANT (val);
6750 /* Don't VERIFY_CONSTANT the other operands. */
6751 if (integer_zerop (val))
6752 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 2),
6753 allow_non_constant, addr,
6754 non_constant_p);
6755 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6756 allow_non_constant, addr,
6757 non_constant_p);
6760 /* Subroutine of cxx_eval_constant_expression.
6761 Attempt to reduce a reference to an array slot. */
6763 static tree
6764 cxx_eval_array_reference (const constexpr_call *call, tree t,
6765 bool allow_non_constant, bool addr,
6766 bool *non_constant_p)
6768 tree oldary = TREE_OPERAND (t, 0);
6769 tree ary = cxx_eval_constant_expression (call, oldary,
6770 allow_non_constant, addr,
6771 non_constant_p);
6772 tree index, oldidx;
6773 HOST_WIDE_INT i;
6774 tree elem_type;
6775 unsigned len, elem_nchars = 1;
6776 if (*non_constant_p)
6777 return t;
6778 oldidx = TREE_OPERAND (t, 1);
6779 index = cxx_eval_constant_expression (call, oldidx,
6780 allow_non_constant, false,
6781 non_constant_p);
6782 VERIFY_CONSTANT (index);
6783 if (addr && ary == oldary && index == oldidx)
6784 return t;
6785 else if (addr)
6786 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
6787 elem_type = TREE_TYPE (TREE_TYPE (ary));
6788 if (TREE_CODE (ary) == CONSTRUCTOR)
6789 len = CONSTRUCTOR_NELTS (ary);
6790 else if (TREE_CODE (ary) == STRING_CST)
6792 elem_nchars = (TYPE_PRECISION (elem_type)
6793 / TYPE_PRECISION (char_type_node));
6794 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
6796 else
6798 /* We can't do anything with other tree codes, so use
6799 VERIFY_CONSTANT to complain and fail. */
6800 VERIFY_CONSTANT (ary);
6801 gcc_unreachable ();
6803 if (compare_tree_int (index, len) >= 0)
6805 if (tree_int_cst_lt (index, array_type_nelts_top (TREE_TYPE (ary))))
6807 /* If it's within the array bounds but doesn't have an explicit
6808 initializer, it's value-initialized. */
6809 tree val = build_value_init (elem_type, tf_warning_or_error);
6810 return cxx_eval_constant_expression (call, val,
6811 allow_non_constant, addr,
6812 non_constant_p);
6815 if (!allow_non_constant)
6816 error ("array subscript out of bound");
6817 *non_constant_p = true;
6818 return t;
6820 i = tree_low_cst (index, 0);
6821 if (TREE_CODE (ary) == CONSTRUCTOR)
6822 return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ary), i)->value;
6823 else if (elem_nchars == 1)
6824 return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary))),
6825 TREE_STRING_POINTER (ary)[i]);
6826 else
6828 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (ary)));
6829 return native_interpret_expr (type, (const unsigned char *)
6830 TREE_STRING_POINTER (ary)
6831 + i * elem_nchars, elem_nchars);
6833 /* Don't VERIFY_CONSTANT here. */
6836 /* Subroutine of cxx_eval_constant_expression.
6837 Attempt to reduce a field access of a value of class type. */
6839 static tree
6840 cxx_eval_component_reference (const constexpr_call *call, tree t,
6841 bool allow_non_constant, bool addr,
6842 bool *non_constant_p)
6844 unsigned HOST_WIDE_INT i;
6845 tree field;
6846 tree value;
6847 tree part = TREE_OPERAND (t, 1);
6848 tree orig_whole = TREE_OPERAND (t, 0);
6849 tree whole = cxx_eval_constant_expression (call, orig_whole,
6850 allow_non_constant, addr,
6851 non_constant_p);
6852 if (whole == orig_whole)
6853 return t;
6854 if (addr)
6855 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
6856 whole, part, NULL_TREE);
6857 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6858 CONSTRUCTOR. */
6859 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6861 if (!allow_non_constant)
6862 error ("%qE is not a constant expression", orig_whole);
6863 *non_constant_p = true;
6865 if (DECL_MUTABLE_P (part))
6867 if (!allow_non_constant)
6868 error ("mutable %qD is not usable in a constant expression", part);
6869 *non_constant_p = true;
6871 if (*non_constant_p)
6872 return t;
6873 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6875 if (field == part)
6876 return value;
6878 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
6879 && CONSTRUCTOR_NELTS (whole) > 0)
6881 /* DR 1188 says we don't have to deal with this. */
6882 if (!allow_non_constant)
6883 error ("accessing %qD member instead of initialized %qD member in "
6884 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
6885 *non_constant_p = true;
6886 return t;
6889 /* If there's no explicit init for this field, it's value-initialized. */
6890 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
6891 return cxx_eval_constant_expression (call, value,
6892 allow_non_constant, addr,
6893 non_constant_p);
6896 /* Subroutine of cxx_eval_constant_expression.
6897 Attempt to reduce a field access of a value of class type that is
6898 expressed as a BIT_FIELD_REF. */
6900 static tree
6901 cxx_eval_bit_field_ref (const constexpr_call *call, tree t,
6902 bool allow_non_constant, bool addr,
6903 bool *non_constant_p)
6905 tree orig_whole = TREE_OPERAND (t, 0);
6906 tree retval, fldval, utype, mask;
6907 bool fld_seen = false;
6908 HOST_WIDE_INT istart, isize;
6909 tree whole = cxx_eval_constant_expression (call, orig_whole,
6910 allow_non_constant, addr,
6911 non_constant_p);
6912 tree start, field, value;
6913 unsigned HOST_WIDE_INT i;
6915 if (whole == orig_whole)
6916 return t;
6917 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6918 CONSTRUCTOR. */
6919 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6921 if (!allow_non_constant)
6922 error ("%qE is not a constant expression", orig_whole);
6923 *non_constant_p = true;
6925 if (*non_constant_p)
6926 return t;
6928 start = TREE_OPERAND (t, 2);
6929 istart = tree_low_cst (start, 0);
6930 isize = tree_low_cst (TREE_OPERAND (t, 1), 0);
6931 utype = TREE_TYPE (t);
6932 if (!TYPE_UNSIGNED (utype))
6933 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
6934 retval = build_int_cst (utype, 0);
6935 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6937 tree bitpos = bit_position (field);
6938 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
6939 return value;
6940 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
6941 && TREE_CODE (value) == INTEGER_CST
6942 && host_integerp (bitpos, 0)
6943 && host_integerp (DECL_SIZE (field), 0))
6945 HOST_WIDE_INT bit = tree_low_cst (bitpos, 0);
6946 HOST_WIDE_INT sz = tree_low_cst (DECL_SIZE (field), 0);
6947 HOST_WIDE_INT shift;
6948 if (bit >= istart && bit + sz <= istart + isize)
6950 fldval = fold_convert (utype, value);
6951 mask = build_int_cst_type (utype, -1);
6952 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
6953 size_int (TYPE_PRECISION (utype) - sz));
6954 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
6955 size_int (TYPE_PRECISION (utype) - sz));
6956 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
6957 shift = bit - istart;
6958 if (BYTES_BIG_ENDIAN)
6959 shift = TYPE_PRECISION (utype) - shift - sz;
6960 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
6961 size_int (shift));
6962 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
6963 fld_seen = true;
6967 if (fld_seen)
6968 return fold_convert (TREE_TYPE (t), retval);
6969 gcc_unreachable ();
6970 return error_mark_node;
6973 /* Subroutine of cxx_eval_constant_expression.
6974 Evaluate a short-circuited logical expression T in the context
6975 of a given constexpr CALL. BAILOUT_VALUE is the value for
6976 early return. CONTINUE_VALUE is used here purely for
6977 sanity check purposes. */
6979 static tree
6980 cxx_eval_logical_expression (const constexpr_call *call, tree t,
6981 tree bailout_value, tree continue_value,
6982 bool allow_non_constant, bool addr,
6983 bool *non_constant_p)
6985 tree r;
6986 tree lhs = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6987 allow_non_constant, addr,
6988 non_constant_p);
6989 VERIFY_CONSTANT (lhs);
6990 if (tree_int_cst_equal (lhs, bailout_value))
6991 return lhs;
6992 gcc_assert (tree_int_cst_equal (lhs, continue_value));
6993 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6994 allow_non_constant, addr, non_constant_p);
6995 VERIFY_CONSTANT (r);
6996 return r;
6999 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
7000 CONSTRUCTOR elements to initialize (part of) an object containing that
7001 field. Return a pointer to the constructor_elt corresponding to the
7002 initialization of the field. */
7004 static constructor_elt *
7005 base_field_constructor_elt (VEC(constructor_elt,gc) *v, tree ref)
7007 tree aggr = TREE_OPERAND (ref, 0);
7008 tree field = TREE_OPERAND (ref, 1);
7009 HOST_WIDE_INT i;
7010 constructor_elt *ce;
7012 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
7014 if (TREE_CODE (aggr) == COMPONENT_REF)
7016 constructor_elt *base_ce
7017 = base_field_constructor_elt (v, aggr);
7018 v = CONSTRUCTOR_ELTS (base_ce->value);
7021 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
7022 if (ce->index == field)
7023 return ce;
7025 gcc_unreachable ();
7026 return NULL;
7029 /* Subroutine of cxx_eval_constant_expression.
7030 The expression tree T denotes a C-style array or a C-style
7031 aggregate. Reduce it to a constant expression. */
7033 static tree
7034 cxx_eval_bare_aggregate (const constexpr_call *call, tree t,
7035 bool allow_non_constant, bool addr,
7036 bool *non_constant_p)
7038 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (t);
7039 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc,
7040 VEC_length (constructor_elt, v));
7041 constructor_elt *ce;
7042 HOST_WIDE_INT i;
7043 bool changed = false;
7044 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
7045 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
7047 tree elt = cxx_eval_constant_expression (call, ce->value,
7048 allow_non_constant, addr,
7049 non_constant_p);
7050 /* Don't VERIFY_CONSTANT here. */
7051 if (allow_non_constant && *non_constant_p)
7052 goto fail;
7053 if (elt != ce->value)
7054 changed = true;
7055 if (TREE_CODE (ce->index) == COMPONENT_REF)
7057 /* This is an initialization of a vfield inside a base
7058 subaggregate that we already initialized; push this
7059 initialization into the previous initialization. */
7060 constructor_elt *inner = base_field_constructor_elt (n, ce->index);
7061 inner->value = elt;
7063 else
7064 CONSTRUCTOR_APPEND_ELT (n, ce->index, elt);
7066 if (*non_constant_p || !changed)
7068 fail:
7069 VEC_free (constructor_elt, gc, n);
7070 return t;
7072 t = build_constructor (TREE_TYPE (t), n);
7073 TREE_CONSTANT (t) = true;
7074 return t;
7077 /* Subroutine of cxx_eval_constant_expression.
7078 The expression tree T is a VEC_INIT_EXPR which denotes the desired
7079 initialization of a non-static data member of array type. Reduce it to a
7080 CONSTRUCTOR.
7082 Note that apart from value-initialization (when VALUE_INIT is true),
7083 this is only intended to support value-initialization and the
7084 initializations done by defaulted constructors for classes with
7085 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
7086 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
7087 for the copy/move constructor. */
7089 static tree
7090 cxx_eval_vec_init_1 (const constexpr_call *call, tree atype, tree init,
7091 bool value_init, bool allow_non_constant, bool addr,
7092 bool *non_constant_p)
7094 tree elttype = TREE_TYPE (atype);
7095 int max = tree_low_cst (array_type_nelts (atype), 0);
7096 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc, max + 1);
7097 bool pre_init = false;
7098 int i;
7100 /* For the default constructor, build up a call to the default
7101 constructor of the element type. We only need to handle class types
7102 here, as for a constructor to be constexpr, all members must be
7103 initialized, which for a defaulted default constructor means they must
7104 be of a class type with a constexpr default constructor. */
7105 if (TREE_CODE (elttype) == ARRAY_TYPE)
7106 /* We only do this at the lowest level. */;
7107 else if (value_init)
7109 init = build_value_init (elttype, tf_warning_or_error);
7110 init = cxx_eval_constant_expression
7111 (call, init, allow_non_constant, addr, non_constant_p);
7112 pre_init = true;
7114 else if (!init)
7116 VEC(tree,gc) *argvec = make_tree_vector ();
7117 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
7118 &argvec, elttype, LOOKUP_NORMAL,
7119 tf_warning_or_error);
7120 release_tree_vector (argvec);
7121 init = cxx_eval_constant_expression (call, init, allow_non_constant,
7122 addr, non_constant_p);
7123 pre_init = true;
7126 if (*non_constant_p && !allow_non_constant)
7127 goto fail;
7129 for (i = 0; i <= max; ++i)
7131 tree idx = build_int_cst (size_type_node, i);
7132 tree eltinit;
7133 if (TREE_CODE (elttype) == ARRAY_TYPE)
7135 /* A multidimensional array; recurse. */
7136 if (value_init || init == NULL_TREE)
7137 eltinit = NULL_TREE;
7138 else
7139 eltinit = cp_build_array_ref (input_location, init, idx,
7140 tf_warning_or_error);
7141 eltinit = cxx_eval_vec_init_1 (call, elttype, eltinit, value_init,
7142 allow_non_constant, addr,
7143 non_constant_p);
7145 else if (pre_init)
7147 /* Initializing an element using value or default initialization
7148 we just pre-built above. */
7149 if (i == 0)
7150 eltinit = init;
7151 else
7152 eltinit = unshare_expr (init);
7154 else
7156 /* Copying an element. */
7157 VEC(tree,gc) *argvec;
7158 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7159 (atype, TREE_TYPE (init)));
7160 eltinit = cp_build_array_ref (input_location, init, idx,
7161 tf_warning_or_error);
7162 if (!real_lvalue_p (init))
7163 eltinit = move (eltinit);
7164 argvec = make_tree_vector ();
7165 VEC_quick_push (tree, argvec, eltinit);
7166 eltinit = (build_special_member_call
7167 (NULL_TREE, complete_ctor_identifier, &argvec,
7168 elttype, LOOKUP_NORMAL, tf_warning_or_error));
7169 release_tree_vector (argvec);
7170 eltinit = cxx_eval_constant_expression
7171 (call, eltinit, allow_non_constant, addr, non_constant_p);
7173 if (*non_constant_p && !allow_non_constant)
7174 goto fail;
7175 CONSTRUCTOR_APPEND_ELT (n, idx, eltinit);
7178 if (!*non_constant_p)
7180 init = build_constructor (atype, n);
7181 TREE_CONSTANT (init) = true;
7182 return init;
7185 fail:
7186 VEC_free (constructor_elt, gc, n);
7187 return init;
7190 static tree
7191 cxx_eval_vec_init (const constexpr_call *call, tree t,
7192 bool allow_non_constant, bool addr,
7193 bool *non_constant_p)
7195 tree atype = TREE_TYPE (t);
7196 tree init = VEC_INIT_EXPR_INIT (t);
7197 tree r = cxx_eval_vec_init_1 (call, atype, init,
7198 VEC_INIT_EXPR_VALUE_INIT (t),
7199 allow_non_constant, addr, non_constant_p);
7200 if (*non_constant_p)
7201 return t;
7202 else
7203 return r;
7206 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
7207 match. We want to be less strict for simple *& folding; if we have a
7208 non-const temporary that we access through a const pointer, that should
7209 work. We handle this here rather than change fold_indirect_ref_1
7210 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
7211 don't really make sense outside of constant expression evaluation. Also
7212 we want to allow folding to COMPONENT_REF, which could cause trouble
7213 with TBAA in fold_indirect_ref_1.
7215 Try to keep this function synced with fold_indirect_ref_1. */
7217 static tree
7218 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
7220 tree sub, subtype;
7222 sub = op0;
7223 STRIP_NOPS (sub);
7224 subtype = TREE_TYPE (sub);
7225 if (!POINTER_TYPE_P (subtype))
7226 return NULL_TREE;
7228 if (TREE_CODE (sub) == ADDR_EXPR)
7230 tree op = TREE_OPERAND (sub, 0);
7231 tree optype = TREE_TYPE (op);
7233 /* *&CONST_DECL -> to the value of the const decl. */
7234 if (TREE_CODE (op) == CONST_DECL)
7235 return DECL_INITIAL (op);
7236 /* *&p => p; make sure to handle *&"str"[cst] here. */
7237 if (same_type_ignoring_top_level_qualifiers_p (optype, type))
7239 tree fop = fold_read_from_constant_string (op);
7240 if (fop)
7241 return fop;
7242 else
7243 return op;
7245 /* *(foo *)&fooarray => fooarray[0] */
7246 else if (TREE_CODE (optype) == ARRAY_TYPE
7247 && (same_type_ignoring_top_level_qualifiers_p
7248 (type, TREE_TYPE (optype))))
7250 tree type_domain = TYPE_DOMAIN (optype);
7251 tree min_val = size_zero_node;
7252 if (type_domain && TYPE_MIN_VALUE (type_domain))
7253 min_val = TYPE_MIN_VALUE (type_domain);
7254 return build4_loc (loc, ARRAY_REF, type, op, min_val,
7255 NULL_TREE, NULL_TREE);
7257 /* *(foo *)&complexfoo => __real__ complexfoo */
7258 else if (TREE_CODE (optype) == COMPLEX_TYPE
7259 && (same_type_ignoring_top_level_qualifiers_p
7260 (type, TREE_TYPE (optype))))
7261 return fold_build1_loc (loc, REALPART_EXPR, type, op);
7262 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
7263 else if (TREE_CODE (optype) == VECTOR_TYPE
7264 && (same_type_ignoring_top_level_qualifiers_p
7265 (type, TREE_TYPE (optype))))
7267 tree part_width = TYPE_SIZE (type);
7268 tree index = bitsize_int (0);
7269 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
7271 /* Also handle conversion to an empty base class, which
7272 is represented with a NOP_EXPR. */
7273 else if (is_empty_class (type)
7274 && CLASS_TYPE_P (optype)
7275 && DERIVED_FROM_P (type, optype))
7277 *empty_base = true;
7278 return op;
7280 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
7281 else if (RECORD_OR_UNION_TYPE_P (optype))
7283 tree field = TYPE_FIELDS (optype);
7284 for (; field; field = DECL_CHAIN (field))
7285 if (TREE_CODE (field) == FIELD_DECL
7286 && integer_zerop (byte_position (field))
7287 && (same_type_ignoring_top_level_qualifiers_p
7288 (TREE_TYPE (field), type)))
7290 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
7291 break;
7295 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
7296 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
7298 tree op00 = TREE_OPERAND (sub, 0);
7299 tree op01 = TREE_OPERAND (sub, 1);
7301 STRIP_NOPS (op00);
7302 if (TREE_CODE (op00) == ADDR_EXPR)
7304 tree op00type;
7305 op00 = TREE_OPERAND (op00, 0);
7306 op00type = TREE_TYPE (op00);
7308 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
7309 if (TREE_CODE (op00type) == VECTOR_TYPE
7310 && (same_type_ignoring_top_level_qualifiers_p
7311 (type, TREE_TYPE (op00type))))
7313 HOST_WIDE_INT offset = tree_low_cst (op01, 0);
7314 tree part_width = TYPE_SIZE (type);
7315 unsigned HOST_WIDE_INT part_widthi = tree_low_cst (part_width, 0)/BITS_PER_UNIT;
7316 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
7317 tree index = bitsize_int (indexi);
7319 if (offset/part_widthi <= TYPE_VECTOR_SUBPARTS (op00type))
7320 return fold_build3_loc (loc,
7321 BIT_FIELD_REF, type, op00,
7322 part_width, index);
7325 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
7326 else if (TREE_CODE (op00type) == COMPLEX_TYPE
7327 && (same_type_ignoring_top_level_qualifiers_p
7328 (type, TREE_TYPE (op00type))))
7330 tree size = TYPE_SIZE_UNIT (type);
7331 if (tree_int_cst_equal (size, op01))
7332 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
7334 /* ((foo *)&fooarray)[1] => fooarray[1] */
7335 else if (TREE_CODE (op00type) == ARRAY_TYPE
7336 && (same_type_ignoring_top_level_qualifiers_p
7337 (type, TREE_TYPE (op00type))))
7339 tree type_domain = TYPE_DOMAIN (op00type);
7340 tree min_val = size_zero_node;
7341 if (type_domain && TYPE_MIN_VALUE (type_domain))
7342 min_val = TYPE_MIN_VALUE (type_domain);
7343 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
7344 TYPE_SIZE_UNIT (type));
7345 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
7346 return build4_loc (loc, ARRAY_REF, type, op00, op01,
7347 NULL_TREE, NULL_TREE);
7349 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
7350 else if (RECORD_OR_UNION_TYPE_P (op00type))
7352 tree field = TYPE_FIELDS (op00type);
7353 for (; field; field = DECL_CHAIN (field))
7354 if (TREE_CODE (field) == FIELD_DECL
7355 && tree_int_cst_equal (byte_position (field), op01)
7356 && (same_type_ignoring_top_level_qualifiers_p
7357 (TREE_TYPE (field), type)))
7359 return fold_build3 (COMPONENT_REF, type, op00,
7360 field, NULL_TREE);
7361 break;
7366 /* *(foo *)fooarrptreturn> (*fooarrptr)[0] */
7367 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
7368 && (same_type_ignoring_top_level_qualifiers_p
7369 (type, TREE_TYPE (TREE_TYPE (subtype)))))
7371 tree type_domain;
7372 tree min_val = size_zero_node;
7373 sub = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
7374 if (!sub)
7375 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
7376 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
7377 if (type_domain && TYPE_MIN_VALUE (type_domain))
7378 min_val = TYPE_MIN_VALUE (type_domain);
7379 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
7380 NULL_TREE);
7383 return NULL_TREE;
7386 static tree
7387 cxx_eval_indirect_ref (const constexpr_call *call, tree t,
7388 bool allow_non_constant, bool addr,
7389 bool *non_constant_p)
7391 tree orig_op0 = TREE_OPERAND (t, 0);
7392 tree op0 = cxx_eval_constant_expression (call, orig_op0, allow_non_constant,
7393 /*addr*/false, non_constant_p);
7394 bool empty_base = false;
7395 tree r;
7397 /* Don't VERIFY_CONSTANT here. */
7398 if (*non_constant_p)
7399 return t;
7401 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
7402 &empty_base);
7404 if (r)
7405 r = cxx_eval_constant_expression (call, r, allow_non_constant,
7406 addr, non_constant_p);
7407 else
7409 tree sub = op0;
7410 STRIP_NOPS (sub);
7411 if (TREE_CODE (sub) == POINTER_PLUS_EXPR)
7413 sub = TREE_OPERAND (sub, 0);
7414 STRIP_NOPS (sub);
7416 if (TREE_CODE (sub) == ADDR_EXPR)
7418 /* We couldn't fold to a constant value. Make sure it's not
7419 something we should have been able to fold. */
7420 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
7421 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
7422 /* DR 1188 says we don't have to deal with this. */
7423 if (!allow_non_constant)
7424 error ("accessing value of %qE through a %qT glvalue in a "
7425 "constant expression", build_fold_indirect_ref (sub),
7426 TREE_TYPE (t));
7427 *non_constant_p = true;
7428 return t;
7432 /* If we're pulling out the value of an empty base, make sure
7433 that the whole object is constant and then return an empty
7434 CONSTRUCTOR. */
7435 if (empty_base)
7437 VERIFY_CONSTANT (r);
7438 r = build_constructor (TREE_TYPE (t), NULL);
7439 TREE_CONSTANT (r) = true;
7442 if (r == NULL_TREE)
7443 return t;
7444 return r;
7447 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
7448 Shared between potential_constant_expression and
7449 cxx_eval_constant_expression. */
7451 static void
7452 non_const_var_error (tree r)
7454 tree type = TREE_TYPE (r);
7455 error ("the value of %qD is not usable in a constant "
7456 "expression", r);
7457 /* Avoid error cascade. */
7458 if (DECL_INITIAL (r) == error_mark_node)
7459 return;
7460 if (DECL_DECLARED_CONSTEXPR_P (r))
7461 inform (DECL_SOURCE_LOCATION (r),
7462 "%qD used in its own initializer", r);
7463 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
7465 if (!CP_TYPE_CONST_P (type))
7466 inform (DECL_SOURCE_LOCATION (r),
7467 "%q#D is not const", r);
7468 else if (CP_TYPE_VOLATILE_P (type))
7469 inform (DECL_SOURCE_LOCATION (r),
7470 "%q#D is volatile", r);
7471 else if (!DECL_INITIAL (r)
7472 || !TREE_CONSTANT (DECL_INITIAL (r)))
7473 inform (DECL_SOURCE_LOCATION (r),
7474 "%qD was not initialized with a constant "
7475 "expression", r);
7476 else
7477 gcc_unreachable ();
7479 else
7481 if (cxx_dialect >= cxx0x && !DECL_DECLARED_CONSTEXPR_P (r))
7482 inform (DECL_SOURCE_LOCATION (r),
7483 "%qD was not declared %<constexpr%>", r);
7484 else
7485 inform (DECL_SOURCE_LOCATION (r),
7486 "%qD does not have integral or enumeration type",
7491 /* Attempt to reduce the expression T to a constant value.
7492 On failure, issue diagnostic and return error_mark_node. */
7493 /* FIXME unify with c_fully_fold */
7495 static tree
7496 cxx_eval_constant_expression (const constexpr_call *call, tree t,
7497 bool allow_non_constant, bool addr,
7498 bool *non_constant_p)
7500 tree r = t;
7502 if (t == error_mark_node)
7504 *non_constant_p = true;
7505 return t;
7507 if (CONSTANT_CLASS_P (t))
7509 if (TREE_CODE (t) == PTRMEM_CST)
7510 t = cplus_expand_constant (t);
7511 return t;
7513 if (TREE_CODE (t) != NOP_EXPR
7514 && reduced_constant_expression_p (t))
7515 return fold (t);
7517 switch (TREE_CODE (t))
7519 case VAR_DECL:
7520 if (addr)
7521 return t;
7522 /* else fall through. */
7523 case CONST_DECL:
7524 r = integral_constant_value (t);
7525 if (TREE_CODE (r) == TARGET_EXPR
7526 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
7527 r = TARGET_EXPR_INITIAL (r);
7528 if (DECL_P (r))
7530 if (!allow_non_constant)
7531 non_const_var_error (r);
7532 *non_constant_p = true;
7534 break;
7536 case FUNCTION_DECL:
7537 case TEMPLATE_DECL:
7538 case LABEL_DECL:
7539 return t;
7541 case PARM_DECL:
7542 if (call && DECL_CONTEXT (t) == call->fundef->decl)
7544 if (DECL_ARTIFICIAL (t) && DECL_CONSTRUCTOR_P (DECL_CONTEXT (t)))
7546 if (!allow_non_constant)
7547 sorry ("use of the value of the object being constructed "
7548 "in a constant expression");
7549 *non_constant_p = true;
7551 else
7552 r = lookup_parameter_binding (call, t);
7554 else if (addr)
7555 /* Defer in case this is only used for its type. */;
7556 else
7558 if (!allow_non_constant)
7559 error ("%qE is not a constant expression", t);
7560 *non_constant_p = true;
7562 break;
7564 case CALL_EXPR:
7565 case AGGR_INIT_EXPR:
7566 r = cxx_eval_call_expression (call, t, allow_non_constant, addr,
7567 non_constant_p);
7568 break;
7570 case TARGET_EXPR:
7571 if (!literal_type_p (TREE_TYPE (t)))
7573 if (!allow_non_constant)
7575 error ("temporary of non-literal type %qT in a "
7576 "constant expression", TREE_TYPE (t));
7577 explain_non_literal_class (TREE_TYPE (t));
7579 *non_constant_p = true;
7580 break;
7582 /* else fall through. */
7583 case INIT_EXPR:
7584 /* Pass false for 'addr' because these codes indicate
7585 initialization of a temporary. */
7586 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7587 allow_non_constant, false,
7588 non_constant_p);
7589 if (!*non_constant_p)
7590 /* Adjust the type of the result to the type of the temporary. */
7591 r = adjust_temp_type (TREE_TYPE (t), r);
7592 break;
7594 case SCOPE_REF:
7595 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7596 allow_non_constant, addr,
7597 non_constant_p);
7598 break;
7600 case RETURN_EXPR:
7601 case NON_LVALUE_EXPR:
7602 case TRY_CATCH_EXPR:
7603 case CLEANUP_POINT_EXPR:
7604 case MUST_NOT_THROW_EXPR:
7605 case SAVE_EXPR:
7606 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7607 allow_non_constant, addr,
7608 non_constant_p);
7609 break;
7611 /* These differ from cxx_eval_unary_expression in that this doesn't
7612 check for a constant operand or result; an address can be
7613 constant without its operand being, and vice versa. */
7614 case INDIRECT_REF:
7615 r = cxx_eval_indirect_ref (call, t, allow_non_constant, addr,
7616 non_constant_p);
7617 break;
7619 case ADDR_EXPR:
7621 tree oldop = TREE_OPERAND (t, 0);
7622 tree op = cxx_eval_constant_expression (call, oldop,
7623 allow_non_constant,
7624 /*addr*/true,
7625 non_constant_p);
7626 /* Don't VERIFY_CONSTANT here. */
7627 if (*non_constant_p)
7628 return t;
7629 /* This function does more aggressive folding than fold itself. */
7630 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
7631 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
7632 return t;
7633 break;
7636 case REALPART_EXPR:
7637 case IMAGPART_EXPR:
7638 case CONJ_EXPR:
7639 case FIX_TRUNC_EXPR:
7640 case FLOAT_EXPR:
7641 case NEGATE_EXPR:
7642 case ABS_EXPR:
7643 case BIT_NOT_EXPR:
7644 case TRUTH_NOT_EXPR:
7645 case FIXED_CONVERT_EXPR:
7646 r = cxx_eval_unary_expression (call, t, allow_non_constant, addr,
7647 non_constant_p);
7648 break;
7650 case COMPOUND_EXPR:
7652 /* check_return_expr sometimes wraps a TARGET_EXPR in a
7653 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
7654 introduced by build_call_a. */
7655 tree op0 = TREE_OPERAND (t, 0);
7656 tree op1 = TREE_OPERAND (t, 1);
7657 STRIP_NOPS (op1);
7658 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
7659 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
7660 r = cxx_eval_constant_expression (call, op0, allow_non_constant,
7661 addr, non_constant_p);
7662 else
7664 /* Check that the LHS is constant and then discard it. */
7665 cxx_eval_constant_expression (call, op0, allow_non_constant,
7666 false, non_constant_p);
7667 r = cxx_eval_constant_expression (call, op1, allow_non_constant,
7668 addr, non_constant_p);
7671 break;
7673 case POINTER_PLUS_EXPR:
7674 case PLUS_EXPR:
7675 case MINUS_EXPR:
7676 case MULT_EXPR:
7677 case TRUNC_DIV_EXPR:
7678 case CEIL_DIV_EXPR:
7679 case FLOOR_DIV_EXPR:
7680 case ROUND_DIV_EXPR:
7681 case TRUNC_MOD_EXPR:
7682 case CEIL_MOD_EXPR:
7683 case ROUND_MOD_EXPR:
7684 case RDIV_EXPR:
7685 case EXACT_DIV_EXPR:
7686 case MIN_EXPR:
7687 case MAX_EXPR:
7688 case LSHIFT_EXPR:
7689 case RSHIFT_EXPR:
7690 case LROTATE_EXPR:
7691 case RROTATE_EXPR:
7692 case BIT_IOR_EXPR:
7693 case BIT_XOR_EXPR:
7694 case BIT_AND_EXPR:
7695 case TRUTH_XOR_EXPR:
7696 case LT_EXPR:
7697 case LE_EXPR:
7698 case GT_EXPR:
7699 case GE_EXPR:
7700 case EQ_EXPR:
7701 case NE_EXPR:
7702 case UNORDERED_EXPR:
7703 case ORDERED_EXPR:
7704 case UNLT_EXPR:
7705 case UNLE_EXPR:
7706 case UNGT_EXPR:
7707 case UNGE_EXPR:
7708 case UNEQ_EXPR:
7709 case RANGE_EXPR:
7710 case COMPLEX_EXPR:
7711 r = cxx_eval_binary_expression (call, t, allow_non_constant, addr,
7712 non_constant_p);
7713 break;
7715 /* fold can introduce non-IF versions of these; still treat them as
7716 short-circuiting. */
7717 case TRUTH_AND_EXPR:
7718 case TRUTH_ANDIF_EXPR:
7719 r = cxx_eval_logical_expression (call, t, boolean_false_node,
7720 boolean_true_node,
7721 allow_non_constant, addr,
7722 non_constant_p);
7723 break;
7725 case TRUTH_OR_EXPR:
7726 case TRUTH_ORIF_EXPR:
7727 r = cxx_eval_logical_expression (call, t, boolean_true_node,
7728 boolean_false_node,
7729 allow_non_constant, addr,
7730 non_constant_p);
7731 break;
7733 case ARRAY_REF:
7734 r = cxx_eval_array_reference (call, t, allow_non_constant, addr,
7735 non_constant_p);
7736 break;
7738 case COMPONENT_REF:
7739 r = cxx_eval_component_reference (call, t, allow_non_constant, addr,
7740 non_constant_p);
7741 break;
7743 case BIT_FIELD_REF:
7744 r = cxx_eval_bit_field_ref (call, t, allow_non_constant, addr,
7745 non_constant_p);
7746 break;
7748 case COND_EXPR:
7749 case VEC_COND_EXPR:
7750 r = cxx_eval_conditional_expression (call, t, allow_non_constant, addr,
7751 non_constant_p);
7752 break;
7754 case CONSTRUCTOR:
7755 r = cxx_eval_bare_aggregate (call, t, allow_non_constant, addr,
7756 non_constant_p);
7757 break;
7759 case VEC_INIT_EXPR:
7760 /* We can get this in a defaulted constructor for a class with a
7761 non-static data member of array type. Either the initializer will
7762 be NULL, meaning default-initialization, or it will be an lvalue
7763 or xvalue of the same type, meaning direct-initialization from the
7764 corresponding member. */
7765 r = cxx_eval_vec_init (call, t, allow_non_constant, addr,
7766 non_constant_p);
7767 break;
7769 case CONVERT_EXPR:
7770 case VIEW_CONVERT_EXPR:
7771 case NOP_EXPR:
7773 tree oldop = TREE_OPERAND (t, 0);
7774 tree op = cxx_eval_constant_expression (call, oldop,
7775 allow_non_constant, addr,
7776 non_constant_p);
7777 if (*non_constant_p)
7778 return t;
7779 if (op == oldop)
7780 /* We didn't fold at the top so we could check for ptr-int
7781 conversion. */
7782 return fold (t);
7783 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), op);
7784 /* Conversion of an out-of-range value has implementation-defined
7785 behavior; the language considers it different from arithmetic
7786 overflow, which is undefined. */
7787 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
7788 TREE_OVERFLOW (r) = false;
7790 break;
7792 case EMPTY_CLASS_EXPR:
7793 /* This is good enough for a function argument that might not get
7794 used, and they can't do anything with it, so just return it. */
7795 return t;
7797 case LAMBDA_EXPR:
7798 case PREINCREMENT_EXPR:
7799 case POSTINCREMENT_EXPR:
7800 case PREDECREMENT_EXPR:
7801 case POSTDECREMENT_EXPR:
7802 case NEW_EXPR:
7803 case VEC_NEW_EXPR:
7804 case DELETE_EXPR:
7805 case VEC_DELETE_EXPR:
7806 case THROW_EXPR:
7807 case MODIFY_EXPR:
7808 case MODOP_EXPR:
7809 /* GCC internal stuff. */
7810 case VA_ARG_EXPR:
7811 case OBJ_TYPE_REF:
7812 case WITH_CLEANUP_EXPR:
7813 case STATEMENT_LIST:
7814 case BIND_EXPR:
7815 case NON_DEPENDENT_EXPR:
7816 case BASELINK:
7817 case EXPR_STMT:
7818 case OFFSET_REF:
7819 if (!allow_non_constant)
7820 error_at (EXPR_LOC_OR_HERE (t),
7821 "expression %qE is not a constant-expression", t);
7822 *non_constant_p = true;
7823 break;
7825 default:
7826 internal_error ("unexpected expression %qE of kind %s", t,
7827 tree_code_name[TREE_CODE (t)]);
7828 *non_constant_p = true;
7829 break;
7832 if (r == error_mark_node)
7833 *non_constant_p = true;
7835 if (*non_constant_p)
7836 return t;
7837 else
7838 return r;
7841 static tree
7842 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant)
7844 bool non_constant_p = false;
7845 tree r = cxx_eval_constant_expression (NULL, t, allow_non_constant,
7846 false, &non_constant_p);
7848 verify_constant (r, allow_non_constant, &non_constant_p);
7850 if (TREE_CODE (t) != CONSTRUCTOR
7851 && cp_has_mutable_p (TREE_TYPE (t)))
7853 /* We allow a mutable type if the original expression was a
7854 CONSTRUCTOR so that we can do aggregate initialization of
7855 constexpr variables. */
7856 if (!allow_non_constant)
7857 error ("%qT cannot be the type of a complete constant expression "
7858 "because it has mutable sub-objects", TREE_TYPE (t));
7859 non_constant_p = true;
7862 /* Technically we should check this for all subexpressions, but that
7863 runs into problems with our internal representation of pointer
7864 subtraction and the 5.19 rules are still in flux. */
7865 if (CONVERT_EXPR_CODE_P (TREE_CODE (r))
7866 && ARITHMETIC_TYPE_P (TREE_TYPE (r))
7867 && TREE_CODE (TREE_OPERAND (r, 0)) == ADDR_EXPR)
7869 if (!allow_non_constant)
7870 error ("conversion from pointer type %qT "
7871 "to arithmetic type %qT in a constant-expression",
7872 TREE_TYPE (TREE_OPERAND (r, 0)), TREE_TYPE (r));
7873 non_constant_p = true;
7876 if (non_constant_p && !allow_non_constant)
7877 return error_mark_node;
7878 else if (non_constant_p && TREE_CONSTANT (t))
7880 /* This isn't actually constant, so unset TREE_CONSTANT. */
7881 if (EXPR_P (t) || TREE_CODE (t) == CONSTRUCTOR)
7882 r = copy_node (t);
7883 else
7884 r = build_nop (TREE_TYPE (t), t);
7885 TREE_CONSTANT (r) = false;
7886 return r;
7888 else if (non_constant_p || r == t)
7889 return t;
7890 else if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
7892 if (TREE_CODE (t) == TARGET_EXPR
7893 && TARGET_EXPR_INITIAL (t) == r)
7894 return t;
7895 else
7897 r = get_target_expr (r);
7898 TREE_CONSTANT (r) = true;
7899 return r;
7902 else
7903 return r;
7906 /* Returns true if T is a valid subexpression of a constant expression,
7907 even if it isn't itself a constant expression. */
7909 bool
7910 is_sub_constant_expr (tree t)
7912 bool non_constant_p = false;
7913 cxx_eval_constant_expression (NULL, t, true, false, &non_constant_p);
7914 return !non_constant_p;
7917 /* If T represents a constant expression returns its reduced value.
7918 Otherwise return error_mark_node. If T is dependent, then
7919 return NULL. */
7921 tree
7922 cxx_constant_value (tree t)
7924 return cxx_eval_outermost_constant_expr (t, false);
7927 /* If T is a constant expression, returns its reduced value.
7928 Otherwise, if T does not have TREE_CONSTANT set, returns T.
7929 Otherwise, returns a version of T without TREE_CONSTANT. */
7931 tree
7932 maybe_constant_value (tree t)
7934 tree r;
7936 if (type_dependent_expression_p (t)
7937 || type_unknown_p (t)
7938 || BRACE_ENCLOSED_INITIALIZER_P (t)
7939 || !potential_constant_expression (t)
7940 || value_dependent_expression_p (t))
7942 if (TREE_OVERFLOW_P (t))
7944 t = build_nop (TREE_TYPE (t), t);
7945 TREE_CONSTANT (t) = false;
7947 return t;
7950 r = cxx_eval_outermost_constant_expr (t, true);
7951 #ifdef ENABLE_CHECKING
7952 /* cp_tree_equal looks through NOPs, so allow them. */
7953 gcc_assert (r == t
7954 || CONVERT_EXPR_P (t)
7955 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
7956 || !cp_tree_equal (r, t));
7957 #endif
7958 return r;
7961 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
7962 than wrapped in a TARGET_EXPR. */
7964 tree
7965 maybe_constant_init (tree t)
7967 t = maybe_constant_value (t);
7968 if (TREE_CODE (t) == TARGET_EXPR)
7970 tree init = TARGET_EXPR_INITIAL (t);
7971 if (TREE_CODE (init) == CONSTRUCTOR
7972 && TREE_CONSTANT (init))
7973 t = init;
7975 return t;
7978 #if 0
7979 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
7980 /* Return true if the object referred to by REF has automatic or thread
7981 local storage. */
7983 enum { ck_ok, ck_bad, ck_unknown };
7984 static int
7985 check_automatic_or_tls (tree ref)
7987 enum machine_mode mode;
7988 HOST_WIDE_INT bitsize, bitpos;
7989 tree offset;
7990 int volatilep = 0, unsignedp = 0;
7991 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
7992 &mode, &unsignedp, &volatilep, false);
7993 duration_kind dk;
7995 /* If there isn't a decl in the middle, we don't know the linkage here,
7996 and this isn't a constant expression anyway. */
7997 if (!DECL_P (decl))
7998 return ck_unknown;
7999 dk = decl_storage_duration (decl);
8000 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
8002 #endif
8004 /* Return true if T denotes a potentially constant expression. Issue
8005 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
8006 an lvalue-rvalue conversion is implied.
8008 C++0x [expr.const] used to say
8010 6 An expression is a potential constant expression if it is
8011 a constant expression where all occurences of function
8012 parameters are replaced by arbitrary constant expressions
8013 of the appropriate type.
8015 2 A conditional expression is a constant expression unless it
8016 involves one of the following as a potentially evaluated
8017 subexpression (3.2), but subexpressions of logical AND (5.14),
8018 logical OR (5.15), and conditional (5.16) operations that are
8019 not evaluated are not considered. */
8021 static bool
8022 potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
8024 enum { any = false, rval = true };
8025 int i;
8026 tree tmp;
8028 /* C++98 has different rules for the form of a constant expression that
8029 are enforced in the parser, so we can assume that anything that gets
8030 this far is suitable. */
8031 if (cxx_dialect < cxx0x)
8032 return true;
8034 if (t == error_mark_node)
8035 return false;
8036 if (t == NULL_TREE)
8037 return true;
8038 if (TREE_THIS_VOLATILE (t))
8040 if (flags & tf_error)
8041 error ("expression %qE has side-effects", t);
8042 return false;
8044 if (CONSTANT_CLASS_P (t))
8046 if (TREE_OVERFLOW (t))
8048 if (flags & tf_error)
8050 permerror (EXPR_LOC_OR_HERE (t),
8051 "overflow in constant expression");
8052 if (flag_permissive)
8053 return true;
8055 return false;
8057 return true;
8060 switch (TREE_CODE (t))
8062 case FUNCTION_DECL:
8063 case BASELINK:
8064 case TEMPLATE_DECL:
8065 case OVERLOAD:
8066 case TEMPLATE_ID_EXPR:
8067 case LABEL_DECL:
8068 case CONST_DECL:
8069 case SIZEOF_EXPR:
8070 case ALIGNOF_EXPR:
8071 case OFFSETOF_EXPR:
8072 case NOEXCEPT_EXPR:
8073 case TEMPLATE_PARM_INDEX:
8074 case TRAIT_EXPR:
8075 case IDENTIFIER_NODE:
8076 case USERDEF_LITERAL:
8077 /* We can see a FIELD_DECL in a pointer-to-member expression. */
8078 case FIELD_DECL:
8079 case PARM_DECL:
8080 case USING_DECL:
8081 return true;
8083 case AGGR_INIT_EXPR:
8084 case CALL_EXPR:
8085 /* -- an invocation of a function other than a constexpr function
8086 or a constexpr constructor. */
8088 tree fun = get_function_named_in_call (t);
8089 const int nargs = call_expr_nargs (t);
8090 i = 0;
8092 if (is_overloaded_fn (fun))
8094 if (TREE_CODE (fun) == FUNCTION_DECL)
8096 if (builtin_valid_in_constant_expr_p (fun))
8097 return true;
8098 if (!DECL_DECLARED_CONSTEXPR_P (fun)
8099 /* Allow any built-in function; if the expansion
8100 isn't constant, we'll deal with that then. */
8101 && !is_builtin_fn (fun))
8103 if (flags & tf_error)
8105 error_at (EXPR_LOC_OR_HERE (t),
8106 "call to non-constexpr function %qD", fun);
8107 explain_invalid_constexpr_fn (fun);
8109 return false;
8111 /* A call to a non-static member function takes the address
8112 of the object as the first argument. But in a constant
8113 expression the address will be folded away, so look
8114 through it now. */
8115 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
8116 && !DECL_CONSTRUCTOR_P (fun))
8118 tree x = get_nth_callarg (t, 0);
8119 if (is_this_parameter (x))
8121 if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
8123 if (flags & tf_error)
8124 sorry ("calling a member function of the "
8125 "object being constructed in a constant "
8126 "expression");
8127 return false;
8129 /* Otherwise OK. */;
8131 else if (!potential_constant_expression_1 (x, rval, flags))
8132 return false;
8133 i = 1;
8136 else
8137 fun = get_first_fn (fun);
8138 /* Skip initial arguments to base constructors. */
8139 if (DECL_BASE_CONSTRUCTOR_P (fun))
8140 i = num_artificial_parms_for (fun);
8141 fun = DECL_ORIGIN (fun);
8143 else
8145 if (potential_constant_expression_1 (fun, rval, flags))
8146 /* Might end up being a constant function pointer. */;
8147 else
8148 return false;
8150 for (; i < nargs; ++i)
8152 tree x = get_nth_callarg (t, i);
8153 if (!potential_constant_expression_1 (x, rval, flags))
8154 return false;
8156 return true;
8159 case NON_LVALUE_EXPR:
8160 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
8161 -- an lvalue of integral type that refers to a non-volatile
8162 const variable or static data member initialized with
8163 constant expressions, or
8165 -- an lvalue of literal type that refers to non-volatile
8166 object defined with constexpr, or that refers to a
8167 sub-object of such an object; */
8168 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
8170 case VAR_DECL:
8171 if (want_rval && !decl_constant_var_p (t)
8172 && !dependent_type_p (TREE_TYPE (t)))
8174 if (flags & tf_error)
8175 non_const_var_error (t);
8176 return false;
8178 return true;
8180 case NOP_EXPR:
8181 case CONVERT_EXPR:
8182 case VIEW_CONVERT_EXPR:
8183 /* -- a reinterpret_cast. FIXME not implemented, and this rule
8184 may change to something more specific to type-punning (DR 1312). */
8186 tree from = TREE_OPERAND (t, 0);
8187 return (potential_constant_expression_1
8188 (from, TREE_CODE (t) != VIEW_CONVERT_EXPR, flags));
8191 case ADDR_EXPR:
8192 /* -- a unary operator & that is applied to an lvalue that
8193 designates an object with thread or automatic storage
8194 duration; */
8195 t = TREE_OPERAND (t, 0);
8196 #if 0
8197 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
8198 any checking here, as we might dereference the pointer later. If
8199 we remove this code, also remove check_automatic_or_tls. */
8200 i = check_automatic_or_tls (t);
8201 if (i == ck_ok)
8202 return true;
8203 if (i == ck_bad)
8205 if (flags & tf_error)
8206 error ("address-of an object %qE with thread local or "
8207 "automatic storage is not a constant expression", t);
8208 return false;
8210 #endif
8211 return potential_constant_expression_1 (t, any, flags);
8213 case COMPONENT_REF:
8214 case BIT_FIELD_REF:
8215 case ARROW_EXPR:
8216 case OFFSET_REF:
8217 /* -- a class member access unless its postfix-expression is
8218 of literal type or of pointer to literal type. */
8219 /* This test would be redundant, as it follows from the
8220 postfix-expression being a potential constant expression. */
8221 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8222 want_rval, flags);
8224 case EXPR_PACK_EXPANSION:
8225 return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t),
8226 want_rval, flags);
8228 case INDIRECT_REF:
8230 tree x = TREE_OPERAND (t, 0);
8231 STRIP_NOPS (x);
8232 if (is_this_parameter (x))
8234 if (want_rval && DECL_CONTEXT (x)
8235 && DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
8237 if (flags & tf_error)
8238 sorry ("use of the value of the object being constructed "
8239 "in a constant expression");
8240 return false;
8242 return true;
8244 return potential_constant_expression_1 (x, rval, flags);
8247 case LAMBDA_EXPR:
8248 case DYNAMIC_CAST_EXPR:
8249 case PSEUDO_DTOR_EXPR:
8250 case PREINCREMENT_EXPR:
8251 case POSTINCREMENT_EXPR:
8252 case PREDECREMENT_EXPR:
8253 case POSTDECREMENT_EXPR:
8254 case NEW_EXPR:
8255 case VEC_NEW_EXPR:
8256 case DELETE_EXPR:
8257 case VEC_DELETE_EXPR:
8258 case THROW_EXPR:
8259 case MODIFY_EXPR:
8260 case MODOP_EXPR:
8261 /* GCC internal stuff. */
8262 case VA_ARG_EXPR:
8263 case OBJ_TYPE_REF:
8264 case WITH_CLEANUP_EXPR:
8265 case CLEANUP_POINT_EXPR:
8266 case MUST_NOT_THROW_EXPR:
8267 case TRY_CATCH_EXPR:
8268 case STATEMENT_LIST:
8269 /* Don't bother trying to define a subset of statement-expressions to
8270 be constant-expressions, at least for now. */
8271 case STMT_EXPR:
8272 case EXPR_STMT:
8273 case BIND_EXPR:
8274 case TRANSACTION_EXPR:
8275 case IF_STMT:
8276 case DO_STMT:
8277 case FOR_STMT:
8278 case WHILE_STMT:
8279 if (flags & tf_error)
8280 error ("expression %qE is not a constant-expression", t);
8281 return false;
8283 case TYPEID_EXPR:
8284 /* -- a typeid expression whose operand is of polymorphic
8285 class type; */
8287 tree e = TREE_OPERAND (t, 0);
8288 if (!TYPE_P (e) && !type_dependent_expression_p (e)
8289 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
8291 if (flags & tf_error)
8292 error ("typeid-expression is not a constant expression "
8293 "because %qE is of polymorphic type", e);
8294 return false;
8296 return true;
8299 case MINUS_EXPR:
8300 /* -- a subtraction where both operands are pointers. */
8301 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8302 && TYPE_PTR_P (TREE_OPERAND (t, 1)))
8304 if (flags & tf_error)
8305 error ("difference of two pointer expressions is not "
8306 "a constant expression");
8307 return false;
8309 want_rval = true;
8310 goto binary;
8312 case LT_EXPR:
8313 case LE_EXPR:
8314 case GT_EXPR:
8315 case GE_EXPR:
8316 case EQ_EXPR:
8317 case NE_EXPR:
8318 /* -- a relational or equality operator where at least
8319 one of the operands is a pointer. */
8320 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8321 || TYPE_PTR_P (TREE_OPERAND (t, 1)))
8323 if (flags & tf_error)
8324 error ("pointer comparison expression is not a "
8325 "constant expression");
8326 return false;
8328 want_rval = true;
8329 goto binary;
8331 case BIT_NOT_EXPR:
8332 /* A destructor. */
8333 if (TYPE_P (TREE_OPERAND (t, 0)))
8334 return true;
8335 /* else fall through. */
8337 case REALPART_EXPR:
8338 case IMAGPART_EXPR:
8339 case CONJ_EXPR:
8340 case SAVE_EXPR:
8341 case FIX_TRUNC_EXPR:
8342 case FLOAT_EXPR:
8343 case NEGATE_EXPR:
8344 case ABS_EXPR:
8345 case TRUTH_NOT_EXPR:
8346 case FIXED_CONVERT_EXPR:
8347 case UNARY_PLUS_EXPR:
8348 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval,
8349 flags);
8351 case CAST_EXPR:
8352 case CONST_CAST_EXPR:
8353 case STATIC_CAST_EXPR:
8354 case REINTERPRET_CAST_EXPR:
8355 case IMPLICIT_CONV_EXPR:
8356 return (potential_constant_expression_1
8357 (TREE_OPERAND (t, 0),
8358 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE, flags));
8360 case PAREN_EXPR:
8361 case NON_DEPENDENT_EXPR:
8362 /* For convenience. */
8363 case RETURN_EXPR:
8364 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8365 want_rval, flags);
8367 case SCOPE_REF:
8368 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8369 want_rval, flags);
8371 case TARGET_EXPR:
8372 if (!literal_type_p (TREE_TYPE (t)))
8374 if (flags & tf_error)
8376 error ("temporary of non-literal type %qT in a "
8377 "constant expression", TREE_TYPE (t));
8378 explain_non_literal_class (TREE_TYPE (t));
8380 return false;
8382 case INIT_EXPR:
8383 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8384 rval, flags);
8386 case CONSTRUCTOR:
8388 VEC(constructor_elt, gc) *v = CONSTRUCTOR_ELTS (t);
8389 constructor_elt *ce;
8390 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
8391 if (!potential_constant_expression_1 (ce->value, want_rval, flags))
8392 return false;
8393 return true;
8396 case TREE_LIST:
8398 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
8399 || DECL_P (TREE_PURPOSE (t)));
8400 if (!potential_constant_expression_1 (TREE_VALUE (t), want_rval,
8401 flags))
8402 return false;
8403 if (TREE_CHAIN (t) == NULL_TREE)
8404 return true;
8405 return potential_constant_expression_1 (TREE_CHAIN (t), want_rval,
8406 flags);
8409 case TRUNC_DIV_EXPR:
8410 case CEIL_DIV_EXPR:
8411 case FLOOR_DIV_EXPR:
8412 case ROUND_DIV_EXPR:
8413 case TRUNC_MOD_EXPR:
8414 case CEIL_MOD_EXPR:
8415 case ROUND_MOD_EXPR:
8417 tree denom = TREE_OPERAND (t, 1);
8418 /* We can't call maybe_constant_value on an expression
8419 that hasn't been through fold_non_dependent_expr yet. */
8420 if (!processing_template_decl)
8421 denom = maybe_constant_value (denom);
8422 if (integer_zerop (denom))
8424 if (flags & tf_error)
8425 error ("division by zero is not a constant-expression");
8426 return false;
8428 else
8430 want_rval = true;
8431 goto binary;
8435 case COMPOUND_EXPR:
8437 /* check_return_expr sometimes wraps a TARGET_EXPR in a
8438 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
8439 introduced by build_call_a. */
8440 tree op0 = TREE_OPERAND (t, 0);
8441 tree op1 = TREE_OPERAND (t, 1);
8442 STRIP_NOPS (op1);
8443 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
8444 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
8445 return potential_constant_expression_1 (op0, want_rval, flags);
8446 else
8447 goto binary;
8450 /* If the first operand is the non-short-circuit constant, look at
8451 the second operand; otherwise we only care about the first one for
8452 potentiality. */
8453 case TRUTH_AND_EXPR:
8454 case TRUTH_ANDIF_EXPR:
8455 tmp = boolean_true_node;
8456 goto truth;
8457 case TRUTH_OR_EXPR:
8458 case TRUTH_ORIF_EXPR:
8459 tmp = boolean_false_node;
8460 truth:
8461 if (TREE_OPERAND (t, 0) == tmp)
8462 return potential_constant_expression_1 (TREE_OPERAND (t, 1), rval, flags);
8463 else
8464 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
8466 case PLUS_EXPR:
8467 case MULT_EXPR:
8468 case POINTER_PLUS_EXPR:
8469 case RDIV_EXPR:
8470 case EXACT_DIV_EXPR:
8471 case MIN_EXPR:
8472 case MAX_EXPR:
8473 case LSHIFT_EXPR:
8474 case RSHIFT_EXPR:
8475 case LROTATE_EXPR:
8476 case RROTATE_EXPR:
8477 case BIT_IOR_EXPR:
8478 case BIT_XOR_EXPR:
8479 case BIT_AND_EXPR:
8480 case TRUTH_XOR_EXPR:
8481 case UNORDERED_EXPR:
8482 case ORDERED_EXPR:
8483 case UNLT_EXPR:
8484 case UNLE_EXPR:
8485 case UNGT_EXPR:
8486 case UNGE_EXPR:
8487 case UNEQ_EXPR:
8488 case LTGT_EXPR:
8489 case RANGE_EXPR:
8490 case COMPLEX_EXPR:
8491 want_rval = true;
8492 /* Fall through. */
8493 case ARRAY_REF:
8494 case ARRAY_RANGE_REF:
8495 case MEMBER_REF:
8496 case DOTSTAR_EXPR:
8497 binary:
8498 for (i = 0; i < 2; ++i)
8499 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8500 want_rval, flags))
8501 return false;
8502 return true;
8504 case FMA_EXPR:
8505 for (i = 0; i < 3; ++i)
8506 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8507 true, flags))
8508 return false;
8509 return true;
8511 case COND_EXPR:
8512 case VEC_COND_EXPR:
8513 /* If the condition is a known constant, we know which of the legs we
8514 care about; otherwise we only require that the condition and
8515 either of the legs be potentially constant. */
8516 tmp = TREE_OPERAND (t, 0);
8517 if (!potential_constant_expression_1 (tmp, rval, flags))
8518 return false;
8519 else if (integer_zerop (tmp))
8520 return potential_constant_expression_1 (TREE_OPERAND (t, 2),
8521 want_rval, flags);
8522 else if (TREE_CODE (tmp) == INTEGER_CST)
8523 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8524 want_rval, flags);
8525 for (i = 1; i < 3; ++i)
8526 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
8527 want_rval, tf_none))
8528 return true;
8529 if (flags & tf_error)
8530 error ("expression %qE is not a constant-expression", t);
8531 return false;
8533 case VEC_INIT_EXPR:
8534 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
8535 return true;
8536 if (flags & tf_error)
8538 error ("non-constant array initialization");
8539 diagnose_non_constexpr_vec_init (t);
8541 return false;
8543 default:
8544 sorry ("unexpected AST of kind %s", tree_code_name[TREE_CODE (t)]);
8545 gcc_unreachable();
8546 return false;
8550 /* The main entry point to the above. */
8552 bool
8553 potential_constant_expression (tree t)
8555 return potential_constant_expression_1 (t, false, tf_none);
8558 /* As above, but require a constant rvalue. */
8560 bool
8561 potential_rvalue_constant_expression (tree t)
8563 return potential_constant_expression_1 (t, true, tf_none);
8566 /* Like above, but complain about non-constant expressions. */
8568 bool
8569 require_potential_constant_expression (tree t)
8571 return potential_constant_expression_1 (t, false, tf_warning_or_error);
8574 /* Cross product of the above. */
8576 bool
8577 require_potential_rvalue_constant_expression (tree t)
8579 return potential_constant_expression_1 (t, true, tf_warning_or_error);
8582 /* Constructor for a lambda expression. */
8584 tree
8585 build_lambda_expr (void)
8587 tree lambda = make_node (LAMBDA_EXPR);
8588 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
8589 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE;
8590 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE;
8591 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL;
8592 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE;
8593 LAMBDA_EXPR_MUTABLE_P (lambda) = false;
8594 return lambda;
8597 /* Create the closure object for a LAMBDA_EXPR. */
8599 tree
8600 build_lambda_object (tree lambda_expr)
8602 /* Build aggregate constructor call.
8603 - cp_parser_braced_list
8604 - cp_parser_functional_cast */
8605 VEC(constructor_elt,gc) *elts = NULL;
8606 tree node, expr, type;
8607 location_t saved_loc;
8609 if (processing_template_decl)
8610 return lambda_expr;
8612 /* Make sure any error messages refer to the lambda-introducer. */
8613 saved_loc = input_location;
8614 input_location = LAMBDA_EXPR_LOCATION (lambda_expr);
8616 for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
8617 node;
8618 node = TREE_CHAIN (node))
8620 tree field = TREE_PURPOSE (node);
8621 tree val = TREE_VALUE (node);
8623 if (field == error_mark_node)
8625 expr = error_mark_node;
8626 goto out;
8629 if (DECL_P (val))
8630 mark_used (val);
8632 /* Mere mortals can't copy arrays with aggregate initialization, so
8633 do some magic to make it work here. */
8634 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
8635 val = build_array_copy (val);
8636 else if (DECL_NORMAL_CAPTURE_P (field)
8637 && TREE_CODE (TREE_TYPE (field)) != REFERENCE_TYPE)
8639 /* "the entities that are captured by copy are used to
8640 direct-initialize each corresponding non-static data
8641 member of the resulting closure object."
8643 There's normally no way to express direct-initialization
8644 from an element of a CONSTRUCTOR, so we build up a special
8645 TARGET_EXPR to bypass the usual copy-initialization. */
8646 val = force_rvalue (val, tf_warning_or_error);
8647 if (TREE_CODE (val) == TARGET_EXPR)
8648 TARGET_EXPR_DIRECT_INIT_P (val) = true;
8651 CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
8654 expr = build_constructor (init_list_type_node, elts);
8655 CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
8657 /* N2927: "[The closure] class type is not an aggregate."
8658 But we briefly treat it as an aggregate to make this simpler. */
8659 type = LAMBDA_EXPR_CLOSURE (lambda_expr);
8660 CLASSTYPE_NON_AGGREGATE (type) = 0;
8661 expr = finish_compound_literal (type, expr, tf_warning_or_error);
8662 CLASSTYPE_NON_AGGREGATE (type) = 1;
8664 out:
8665 input_location = saved_loc;
8666 return expr;
8669 /* Return an initialized RECORD_TYPE for LAMBDA.
8670 LAMBDA must have its explicit captures already. */
8672 tree
8673 begin_lambda_type (tree lambda)
8675 tree type;
8678 /* Unique name. This is just like an unnamed class, but we cannot use
8679 make_anon_name because of certain checks against TYPE_ANONYMOUS_P. */
8680 tree name;
8681 name = make_lambda_name ();
8683 /* Create the new RECORD_TYPE for this lambda. */
8684 type = xref_tag (/*tag_code=*/record_type,
8685 name,
8686 /*scope=*/ts_within_enclosing_non_class,
8687 /*template_header_p=*/false);
8690 /* Designate it as a struct so that we can use aggregate initialization. */
8691 CLASSTYPE_DECLARED_CLASS (type) = false;
8693 /* Clear base types. */
8694 xref_basetypes (type, /*bases=*/NULL_TREE);
8696 /* Start the class. */
8697 type = begin_class_definition (type);
8698 if (type == error_mark_node)
8699 return error_mark_node;
8701 /* Cross-reference the expression and the type. */
8702 LAMBDA_EXPR_CLOSURE (lambda) = type;
8703 CLASSTYPE_LAMBDA_EXPR (type) = lambda;
8705 return type;
8708 /* Returns the type to use for the return type of the operator() of a
8709 closure class. */
8711 tree
8712 lambda_return_type (tree expr)
8714 if (expr == NULL_TREE)
8715 return void_type_node;
8716 if (type_unknown_p (expr)
8717 || BRACE_ENCLOSED_INITIALIZER_P (expr))
8719 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
8720 return void_type_node;
8722 gcc_checking_assert (!type_dependent_expression_p (expr));
8723 return cv_unqualified (type_decays_to (unlowered_expr_type (expr)));
8726 /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
8727 closure type. */
8729 tree
8730 lambda_function (tree lambda)
8732 tree type;
8733 if (TREE_CODE (lambda) == LAMBDA_EXPR)
8734 type = LAMBDA_EXPR_CLOSURE (lambda);
8735 else
8736 type = lambda;
8737 gcc_assert (LAMBDA_TYPE_P (type));
8738 /* Don't let debug_tree cause instantiation. */
8739 if (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
8740 && !COMPLETE_OR_OPEN_TYPE_P (type))
8741 return NULL_TREE;
8742 lambda = lookup_member (type, ansi_opname (CALL_EXPR),
8743 /*protect=*/0, /*want_type=*/false,
8744 tf_warning_or_error);
8745 if (lambda)
8746 lambda = BASELINK_FUNCTIONS (lambda);
8747 return lambda;
8750 /* Returns the type to use for the FIELD_DECL corresponding to the
8751 capture of EXPR.
8752 The caller should add REFERENCE_TYPE for capture by reference. */
8754 tree
8755 lambda_capture_field_type (tree expr)
8757 tree type;
8758 if (type_dependent_expression_p (expr))
8760 type = cxx_make_type (DECLTYPE_TYPE);
8761 DECLTYPE_TYPE_EXPR (type) = expr;
8762 DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
8763 SET_TYPE_STRUCTURAL_EQUALITY (type);
8765 else
8766 type = non_reference (unlowered_expr_type (expr));
8767 return type;
8770 /* Insert the deduced return type for an auto function. */
8772 void
8773 apply_deduced_return_type (tree fco, tree return_type)
8775 tree result;
8777 if (return_type == error_mark_node)
8778 return;
8780 if (LAMBDA_FUNCTION_P (fco))
8782 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
8783 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
8786 if (DECL_CONV_FN_P (fco))
8787 DECL_NAME (fco) = mangle_conv_op_name_for_type (return_type);
8789 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
8791 result = DECL_RESULT (fco);
8792 if (result == NULL_TREE)
8793 return;
8794 if (TREE_TYPE (result) == return_type)
8795 return;
8797 /* We already have a DECL_RESULT from start_preparsed_function.
8798 Now we need to redo the work it and allocate_struct_function
8799 did to reflect the new type. */
8800 gcc_assert (current_function_decl == fco);
8801 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
8802 TYPE_MAIN_VARIANT (return_type));
8803 DECL_ARTIFICIAL (result) = 1;
8804 DECL_IGNORED_P (result) = 1;
8805 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
8806 result);
8808 DECL_RESULT (fco) = result;
8810 if (!processing_template_decl)
8812 bool aggr = aggregate_value_p (result, fco);
8813 #ifdef PCC_STATIC_STRUCT_RETURN
8814 cfun->returns_pcc_struct = aggr;
8815 #endif
8816 cfun->returns_struct = aggr;
8821 /* DECL is a local variable or parameter from the surrounding scope of a
8822 lambda-expression. Returns the decltype for a use of the capture field
8823 for DECL even if it hasn't been captured yet. */
8825 static tree
8826 capture_decltype (tree decl)
8828 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8829 /* FIXME do lookup instead of list walk? */
8830 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
8831 tree type;
8833 if (cap)
8834 type = TREE_TYPE (TREE_PURPOSE (cap));
8835 else
8836 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
8838 case CPLD_NONE:
8839 error ("%qD is not captured", decl);
8840 return error_mark_node;
8842 case CPLD_COPY:
8843 type = TREE_TYPE (decl);
8844 if (TREE_CODE (type) == REFERENCE_TYPE
8845 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
8846 type = TREE_TYPE (type);
8847 break;
8849 case CPLD_REFERENCE:
8850 type = TREE_TYPE (decl);
8851 if (TREE_CODE (type) != REFERENCE_TYPE)
8852 type = build_reference_type (TREE_TYPE (decl));
8853 break;
8855 default:
8856 gcc_unreachable ();
8859 if (TREE_CODE (type) != REFERENCE_TYPE)
8861 if (!LAMBDA_EXPR_MUTABLE_P (lam))
8862 type = cp_build_qualified_type (type, (cp_type_quals (type)
8863 |TYPE_QUAL_CONST));
8864 type = build_reference_type (type);
8866 return type;
8869 /* Returns true iff DECL is a lambda capture proxy variable created by
8870 build_capture_proxy. */
8872 bool
8873 is_capture_proxy (tree decl)
8875 return (TREE_CODE (decl) == VAR_DECL
8876 && DECL_HAS_VALUE_EXPR_P (decl)
8877 && !DECL_ANON_UNION_VAR_P (decl)
8878 && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl)));
8881 /* Returns true iff DECL is a capture proxy for a normal capture
8882 (i.e. without explicit initializer). */
8884 bool
8885 is_normal_capture_proxy (tree decl)
8887 tree val;
8889 if (!is_capture_proxy (decl))
8890 /* It's not a capture proxy. */
8891 return false;
8893 /* It is a capture proxy, is it a normal capture? */
8894 val = DECL_VALUE_EXPR (decl);
8895 gcc_assert (TREE_CODE (val) == COMPONENT_REF);
8896 val = TREE_OPERAND (val, 1);
8897 return DECL_NORMAL_CAPTURE_P (val);
8900 /* VAR is a capture proxy created by build_capture_proxy; add it to the
8901 current function, which is the operator() for the appropriate lambda. */
8903 void
8904 insert_capture_proxy (tree var)
8906 cp_binding_level *b;
8907 int skip;
8908 tree stmt_list;
8910 /* Put the capture proxy in the extra body block so that it won't clash
8911 with a later local variable. */
8912 b = current_binding_level;
8913 for (skip = 0; ; ++skip)
8915 cp_binding_level *n = b->level_chain;
8916 if (n->kind == sk_function_parms)
8917 break;
8918 b = n;
8920 pushdecl_with_scope (var, b, false);
8922 /* And put a DECL_EXPR in the STATEMENT_LIST for the same block. */
8923 var = build_stmt (DECL_SOURCE_LOCATION (var), DECL_EXPR, var);
8924 stmt_list = VEC_index (tree, stmt_list_stack,
8925 VEC_length (tree, stmt_list_stack) - 1 - skip);
8926 gcc_assert (stmt_list);
8927 append_to_statement_list_force (var, &stmt_list);
8930 /* We've just finished processing a lambda; if the containing scope is also
8931 a lambda, insert any capture proxies that were created while processing
8932 the nested lambda. */
8934 void
8935 insert_pending_capture_proxies (void)
8937 tree lam;
8938 VEC(tree,gc) *proxies;
8939 unsigned i;
8941 if (!current_function_decl || !LAMBDA_FUNCTION_P (current_function_decl))
8942 return;
8944 lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8945 proxies = LAMBDA_EXPR_PENDING_PROXIES (lam);
8946 for (i = 0; i < VEC_length (tree, proxies); ++i)
8948 tree var = VEC_index (tree, proxies, i);
8949 insert_capture_proxy (var);
8951 release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam));
8952 LAMBDA_EXPR_PENDING_PROXIES (lam) = NULL;
8955 /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
8956 return the type we want the proxy to have: the type of the field itself,
8957 with added const-qualification if the lambda isn't mutable and the
8958 capture is by value. */
8960 tree
8961 lambda_proxy_type (tree ref)
8963 tree type;
8964 if (REFERENCE_REF_P (ref))
8965 ref = TREE_OPERAND (ref, 0);
8966 type = TREE_TYPE (ref);
8967 if (!dependent_type_p (type))
8968 return type;
8969 type = cxx_make_type (DECLTYPE_TYPE);
8970 DECLTYPE_TYPE_EXPR (type) = ref;
8971 DECLTYPE_FOR_LAMBDA_PROXY (type) = true;
8972 SET_TYPE_STRUCTURAL_EQUALITY (type);
8973 return type;
8976 /* MEMBER is a capture field in a lambda closure class. Now that we're
8977 inside the operator(), build a placeholder var for future lookups and
8978 debugging. */
8980 tree
8981 build_capture_proxy (tree member)
8983 tree var, object, fn, closure, name, lam, type;
8985 closure = DECL_CONTEXT (member);
8986 fn = lambda_function (closure);
8987 lam = CLASSTYPE_LAMBDA_EXPR (closure);
8989 /* The proxy variable forwards to the capture field. */
8990 object = build_fold_indirect_ref (DECL_ARGUMENTS (fn));
8991 object = finish_non_static_data_member (member, object, NULL_TREE);
8992 if (REFERENCE_REF_P (object))
8993 object = TREE_OPERAND (object, 0);
8995 /* Remove the __ inserted by add_capture. */
8996 name = get_identifier (IDENTIFIER_POINTER (DECL_NAME (member)) + 2);
8998 type = lambda_proxy_type (object);
8999 var = build_decl (input_location, VAR_DECL, name, type);
9000 SET_DECL_VALUE_EXPR (var, object);
9001 DECL_HAS_VALUE_EXPR_P (var) = 1;
9002 DECL_ARTIFICIAL (var) = 1;
9003 TREE_USED (var) = 1;
9004 DECL_CONTEXT (var) = fn;
9006 if (name == this_identifier)
9008 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam) == member);
9009 LAMBDA_EXPR_THIS_CAPTURE (lam) = var;
9012 if (fn == current_function_decl)
9013 insert_capture_proxy (var);
9014 else
9015 VEC_safe_push (tree, gc, LAMBDA_EXPR_PENDING_PROXIES (lam), var);
9017 return var;
9020 /* From an ID and INITIALIZER, create a capture (by reference if
9021 BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
9022 and return it. */
9024 tree
9025 add_capture (tree lambda, tree id, tree initializer, bool by_reference_p,
9026 bool explicit_init_p)
9028 char *buf;
9029 tree type, member, name;
9031 type = lambda_capture_field_type (initializer);
9032 if (by_reference_p)
9034 type = build_reference_type (type);
9035 if (!real_lvalue_p (initializer))
9036 error ("cannot capture %qE by reference", initializer);
9038 else
9039 /* Capture by copy requires a complete type. */
9040 type = complete_type (type);
9042 /* Add __ to the beginning of the field name so that user code
9043 won't find the field with name lookup. We can't just leave the name
9044 unset because template instantiation uses the name to find
9045 instantiated fields. */
9046 buf = (char *) alloca (IDENTIFIER_LENGTH (id) + 3);
9047 buf[1] = buf[0] = '_';
9048 memcpy (buf + 2, IDENTIFIER_POINTER (id),
9049 IDENTIFIER_LENGTH (id) + 1);
9050 name = get_identifier (buf);
9052 /* If TREE_TYPE isn't set, we're still in the introducer, so check
9053 for duplicates. */
9054 if (!LAMBDA_EXPR_CLOSURE (lambda))
9056 if (IDENTIFIER_MARKED (name))
9058 pedwarn (input_location, 0,
9059 "already captured %qD in lambda expression", id);
9060 return NULL_TREE;
9062 IDENTIFIER_MARKED (name) = true;
9065 /* Make member variable. */
9066 member = build_lang_decl (FIELD_DECL, name, type);
9068 if (!explicit_init_p)
9069 /* Normal captures are invisible to name lookup but uses are replaced
9070 with references to the capture field; we implement this by only
9071 really making them invisible in unevaluated context; see
9072 qualify_lookup. For now, let's make explicitly initialized captures
9073 always visible. */
9074 DECL_NORMAL_CAPTURE_P (member) = true;
9076 if (id == this_identifier)
9077 LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
9079 /* Add it to the appropriate closure class if we've started it. */
9080 if (current_class_type
9081 && current_class_type == LAMBDA_EXPR_CLOSURE (lambda))
9082 finish_member_declaration (member);
9084 LAMBDA_EXPR_CAPTURE_LIST (lambda)
9085 = tree_cons (member, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
9087 if (LAMBDA_EXPR_CLOSURE (lambda))
9088 return build_capture_proxy (member);
9089 /* For explicit captures we haven't started the function yet, so we wait
9090 and build the proxy from cp_parser_lambda_body. */
9091 return NULL_TREE;
9094 /* Register all the capture members on the list CAPTURES, which is the
9095 LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
9097 void
9098 register_capture_members (tree captures)
9100 if (captures == NULL_TREE)
9101 return;
9103 register_capture_members (TREE_CHAIN (captures));
9104 /* We set this in add_capture to avoid duplicates. */
9105 IDENTIFIER_MARKED (DECL_NAME (TREE_PURPOSE (captures))) = false;
9106 finish_member_declaration (TREE_PURPOSE (captures));
9109 /* Similar to add_capture, except this works on a stack of nested lambdas.
9110 BY_REFERENCE_P in this case is derived from the default capture mode.
9111 Returns the capture for the lambda at the bottom of the stack. */
9113 tree
9114 add_default_capture (tree lambda_stack, tree id, tree initializer)
9116 bool this_capture_p = (id == this_identifier);
9118 tree var = NULL_TREE;
9120 tree saved_class_type = current_class_type;
9122 tree node;
9124 for (node = lambda_stack;
9125 node;
9126 node = TREE_CHAIN (node))
9128 tree lambda = TREE_VALUE (node);
9130 current_class_type = LAMBDA_EXPR_CLOSURE (lambda);
9131 var = add_capture (lambda,
9133 initializer,
9134 /*by_reference_p=*/
9135 (!this_capture_p
9136 && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
9137 == CPLD_REFERENCE)),
9138 /*explicit_init_p=*/false);
9139 initializer = convert_from_reference (var);
9142 current_class_type = saved_class_type;
9144 return var;
9147 /* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
9148 INDIRECT_REF, possibly adding it through default capturing. */
9150 tree
9151 lambda_expr_this_capture (tree lambda)
9153 tree result;
9155 tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
9157 /* Try to default capture 'this' if we can. */
9158 if (!this_capture
9159 && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE)
9161 tree containing_function = TYPE_CONTEXT (LAMBDA_EXPR_CLOSURE (lambda));
9162 tree lambda_stack = tree_cons (NULL_TREE, lambda, NULL_TREE);
9163 tree init = NULL_TREE;
9165 /* If we are in a lambda function, we can move out until we hit:
9166 1. a non-lambda function,
9167 2. a lambda function capturing 'this', or
9168 3. a non-default capturing lambda function. */
9169 while (LAMBDA_FUNCTION_P (containing_function))
9171 tree lambda
9172 = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
9174 if (LAMBDA_EXPR_THIS_CAPTURE (lambda))
9176 /* An outer lambda has already captured 'this'. */
9177 init = LAMBDA_EXPR_THIS_CAPTURE (lambda);
9178 break;
9181 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_NONE)
9182 /* An outer lambda won't let us capture 'this'. */
9183 break;
9185 lambda_stack = tree_cons (NULL_TREE,
9186 lambda,
9187 lambda_stack);
9189 containing_function = decl_function_context (containing_function);
9192 if (!init && DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function)
9193 && !LAMBDA_FUNCTION_P (containing_function))
9194 /* First parameter is 'this'. */
9195 init = DECL_ARGUMENTS (containing_function);
9197 if (init)
9198 this_capture = add_default_capture (lambda_stack,
9199 /*id=*/this_identifier,
9200 init);
9203 if (!this_capture)
9205 error ("%<this%> was not captured for this lambda function");
9206 result = error_mark_node;
9208 else
9210 /* To make sure that current_class_ref is for the lambda. */
9211 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref))
9212 == LAMBDA_EXPR_CLOSURE (lambda));
9214 result = this_capture;
9216 /* If 'this' is captured, each use of 'this' is transformed into an
9217 access to the corresponding unnamed data member of the closure
9218 type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
9219 ensures that the transformed expression is an rvalue. ] */
9220 result = rvalue (result);
9223 return result;
9226 /* Returns the method basetype of the innermost non-lambda function, or
9227 NULL_TREE if none. */
9229 tree
9230 nonlambda_method_basetype (void)
9232 tree fn, type;
9233 if (!current_class_ref)
9234 return NULL_TREE;
9236 type = current_class_type;
9237 if (!LAMBDA_TYPE_P (type))
9238 return type;
9240 /* Find the nearest enclosing non-lambda function. */
9241 fn = TYPE_NAME (type);
9243 fn = decl_function_context (fn);
9244 while (fn && LAMBDA_FUNCTION_P (fn));
9246 if (!fn || !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
9247 return NULL_TREE;
9249 return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
9252 /* If the closure TYPE has a static op(), also add a conversion to function
9253 pointer. */
9255 void
9256 maybe_add_lambda_conv_op (tree type)
9258 bool nested = (current_function_decl != NULL_TREE);
9259 tree callop = lambda_function (type);
9260 tree rettype, name, fntype, fn, body, compound_stmt;
9261 tree thistype, stattype, statfn, convfn, call, arg;
9262 VEC (tree, gc) *argvec;
9264 if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type)) != NULL_TREE)
9265 return;
9267 if (processing_template_decl)
9268 return;
9270 stattype = build_function_type (TREE_TYPE (TREE_TYPE (callop)),
9271 FUNCTION_ARG_CHAIN (callop));
9273 /* First build up the conversion op. */
9275 rettype = build_pointer_type (stattype);
9276 name = mangle_conv_op_name_for_type (rettype);
9277 thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
9278 fntype = build_method_type_directly (thistype, rettype, void_list_node);
9279 fn = convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
9280 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9282 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9283 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9284 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9286 SET_OVERLOADED_OPERATOR_CODE (fn, TYPE_EXPR);
9287 grokclassfn (type, fn, NO_SPECIAL);
9288 set_linkage_according_to_type (type, fn);
9289 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9290 DECL_IN_AGGR_P (fn) = 1;
9291 DECL_ARTIFICIAL (fn) = 1;
9292 DECL_NOT_REALLY_EXTERN (fn) = 1;
9293 DECL_DECLARED_INLINE_P (fn) = 1;
9294 DECL_ARGUMENTS (fn) = build_this_parm (fntype, TYPE_QUAL_CONST);
9295 if (nested)
9296 DECL_INTERFACE_KNOWN (fn) = 1;
9298 add_method (type, fn, NULL_TREE);
9300 /* Generic thunk code fails for varargs; we'll complain in mark_used if
9301 the conversion op is used. */
9302 if (varargs_function_p (callop))
9304 DECL_DELETED_FN (fn) = 1;
9305 return;
9308 /* Now build up the thunk to be returned. */
9310 name = get_identifier ("_FUN");
9311 fn = statfn = build_lang_decl (FUNCTION_DECL, name, stattype);
9312 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9313 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9314 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9315 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9316 grokclassfn (type, fn, NO_SPECIAL);
9317 set_linkage_according_to_type (type, fn);
9318 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9319 DECL_IN_AGGR_P (fn) = 1;
9320 DECL_ARTIFICIAL (fn) = 1;
9321 DECL_NOT_REALLY_EXTERN (fn) = 1;
9322 DECL_DECLARED_INLINE_P (fn) = 1;
9323 DECL_STATIC_FUNCTION_P (fn) = 1;
9324 DECL_ARGUMENTS (fn) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop)));
9325 for (arg = DECL_ARGUMENTS (fn); arg; arg = DECL_CHAIN (arg))
9326 DECL_CONTEXT (arg) = fn;
9327 if (nested)
9328 DECL_INTERFACE_KNOWN (fn) = 1;
9330 add_method (type, fn, NULL_TREE);
9332 if (nested)
9333 push_function_context ();
9334 else
9335 /* Still increment function_depth so that we don't GC in the
9336 middle of an expression. */
9337 ++function_depth;
9339 /* Generate the body of the thunk. */
9341 start_preparsed_function (statfn, NULL_TREE,
9342 SF_PRE_PARSED | SF_INCLASS_INLINE);
9343 if (DECL_ONE_ONLY (statfn))
9345 /* Put the thunk in the same comdat group as the call op. */
9346 symtab_add_to_same_comdat_group
9347 ((symtab_node) cgraph_get_create_node (statfn),
9348 (symtab_node) cgraph_get_create_node (callop));
9350 body = begin_function_body ();
9351 compound_stmt = begin_compound_stmt (0);
9353 arg = build1 (NOP_EXPR, TREE_TYPE (DECL_ARGUMENTS (callop)),
9354 null_pointer_node);
9355 argvec = make_tree_vector ();
9356 VEC_quick_push (tree, argvec, arg);
9357 for (arg = DECL_ARGUMENTS (statfn); arg; arg = DECL_CHAIN (arg))
9359 mark_exp_read (arg);
9360 VEC_safe_push (tree, gc, argvec, arg);
9362 call = build_call_a (callop, VEC_length (tree, argvec),
9363 VEC_address (tree, argvec));
9364 CALL_FROM_THUNK_P (call) = 1;
9365 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
9366 call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
9367 call = convert_from_reference (call);
9368 finish_return_stmt (call);
9370 finish_compound_stmt (compound_stmt);
9371 finish_function_body (body);
9373 expand_or_defer_fn (finish_function (2));
9375 /* Generate the body of the conversion op. */
9377 start_preparsed_function (convfn, NULL_TREE,
9378 SF_PRE_PARSED | SF_INCLASS_INLINE);
9379 body = begin_function_body ();
9380 compound_stmt = begin_compound_stmt (0);
9382 finish_return_stmt (decay_conversion (statfn, tf_warning_or_error));
9384 finish_compound_stmt (compound_stmt);
9385 finish_function_body (body);
9387 expand_or_defer_fn (finish_function (2));
9389 if (nested)
9390 pop_function_context ();
9391 else
9392 --function_depth;
9395 /* Returns true iff VAL is a lambda-related declaration which should
9396 be ignored by unqualified lookup. */
9398 bool
9399 is_lambda_ignored_entity (tree val)
9401 /* In unevaluated context, look past normal capture proxies. */
9402 if (cp_unevaluated_operand && is_normal_capture_proxy (val))
9403 return true;
9405 /* Always ignore lambda fields, their names are only for debugging. */
9406 if (TREE_CODE (val) == FIELD_DECL
9407 && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val)))
9408 return true;
9410 /* None of the lookups that use qualify_lookup want the op() from the
9411 lambda; they want the one from the enclosing class. */
9412 if (TREE_CODE (val) == FUNCTION_DECL && LAMBDA_FUNCTION_P (val))
9413 return true;
9415 return false;
9418 #include "gt-cp-semantics.h"