[multiple changes]
[official-gcc.git] / gcc / cp / semantics.c
blob42195be4a81713340ca53d23bf4d358952bd21ee
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 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 "tree-mudflap.h"
37 #include "intl.h"
38 #include "toplev.h"
39 #include "flags.h"
40 #include "output.h"
41 #include "timevar.h"
42 #include "diagnostic.h"
43 #include "cgraph.h"
44 #include "tree-iterator.h"
45 #include "vec.h"
46 #include "target.h"
47 #include "gimple.h"
48 #include "bitmap.h"
50 /* There routines provide a modular interface to perform many parsing
51 operations. They may therefore be used during actual parsing, or
52 during template instantiation, which may be regarded as a
53 degenerate form of parsing. */
55 static tree maybe_convert_cond (tree);
56 static tree finalize_nrv_r (tree *, int *, void *);
57 static tree capture_decltype (tree);
60 /* Deferred Access Checking Overview
61 ---------------------------------
63 Most C++ expressions and declarations require access checking
64 to be performed during parsing. However, in several cases,
65 this has to be treated differently.
67 For member declarations, access checking has to be deferred
68 until more information about the declaration is known. For
69 example:
71 class A {
72 typedef int X;
73 public:
74 X f();
77 A::X A::f();
78 A::X g();
80 When we are parsing the function return type `A::X', we don't
81 really know if this is allowed until we parse the function name.
83 Furthermore, some contexts require that access checking is
84 never performed at all. These include class heads, and template
85 instantiations.
87 Typical use of access checking functions is described here:
89 1. When we enter a context that requires certain access checking
90 mode, the function `push_deferring_access_checks' is called with
91 DEFERRING argument specifying the desired mode. Access checking
92 may be performed immediately (dk_no_deferred), deferred
93 (dk_deferred), or not performed (dk_no_check).
95 2. When a declaration such as a type, or a variable, is encountered,
96 the function `perform_or_defer_access_check' is called. It
97 maintains a VEC of all deferred checks.
99 3. The global `current_class_type' or `current_function_decl' is then
100 setup by the parser. `enforce_access' relies on these information
101 to check access.
103 4. Upon exiting the context mentioned in step 1,
104 `perform_deferred_access_checks' is called to check all declaration
105 stored in the VEC. `pop_deferring_access_checks' is then
106 called to restore the previous access checking mode.
108 In case of parsing error, we simply call `pop_deferring_access_checks'
109 without `perform_deferred_access_checks'. */
111 typedef struct GTY(()) deferred_access {
112 /* A VEC representing name-lookups for which we have deferred
113 checking access controls. We cannot check the accessibility of
114 names used in a decl-specifier-seq until we know what is being
115 declared because code like:
117 class A {
118 class B {};
119 B* f();
122 A::B* A::f() { return 0; }
124 is valid, even though `A::B' is not generally accessible. */
125 VEC (deferred_access_check,gc)* GTY(()) deferred_access_checks;
127 /* The current mode of access checks. */
128 enum deferring_kind deferring_access_checks_kind;
130 } deferred_access;
131 DEF_VEC_O (deferred_access);
132 DEF_VEC_ALLOC_O (deferred_access,gc);
134 /* Data for deferred access checking. */
135 static GTY(()) VEC(deferred_access,gc) *deferred_access_stack;
136 static GTY(()) unsigned deferred_access_no_check;
138 /* Save the current deferred access states and start deferred
139 access checking iff DEFER_P is true. */
141 void
142 push_deferring_access_checks (deferring_kind deferring)
144 /* For context like template instantiation, access checking
145 disabling applies to all nested context. */
146 if (deferred_access_no_check || deferring == dk_no_check)
147 deferred_access_no_check++;
148 else
150 deferred_access *ptr;
152 ptr = VEC_safe_push (deferred_access, gc, deferred_access_stack, NULL);
153 ptr->deferred_access_checks = NULL;
154 ptr->deferring_access_checks_kind = deferring;
158 /* Resume deferring access checks again after we stopped doing
159 this previously. */
161 void
162 resume_deferring_access_checks (void)
164 if (!deferred_access_no_check)
165 VEC_last (deferred_access, deferred_access_stack)
166 ->deferring_access_checks_kind = dk_deferred;
169 /* Stop deferring access checks. */
171 void
172 stop_deferring_access_checks (void)
174 if (!deferred_access_no_check)
175 VEC_last (deferred_access, deferred_access_stack)
176 ->deferring_access_checks_kind = dk_no_deferred;
179 /* Discard the current deferred access checks and restore the
180 previous states. */
182 void
183 pop_deferring_access_checks (void)
185 if (deferred_access_no_check)
186 deferred_access_no_check--;
187 else
188 VEC_pop (deferred_access, deferred_access_stack);
191 /* Returns a TREE_LIST representing the deferred checks.
192 The TREE_PURPOSE of each node is the type through which the
193 access occurred; the TREE_VALUE is the declaration named.
196 VEC (deferred_access_check,gc)*
197 get_deferred_access_checks (void)
199 if (deferred_access_no_check)
200 return NULL;
201 else
202 return (VEC_last (deferred_access, deferred_access_stack)
203 ->deferred_access_checks);
206 /* Take current deferred checks and combine with the
207 previous states if we also defer checks previously.
208 Otherwise perform checks now. */
210 void
211 pop_to_parent_deferring_access_checks (void)
213 if (deferred_access_no_check)
214 deferred_access_no_check--;
215 else
217 VEC (deferred_access_check,gc) *checks;
218 deferred_access *ptr;
220 checks = (VEC_last (deferred_access, deferred_access_stack)
221 ->deferred_access_checks);
223 VEC_pop (deferred_access, deferred_access_stack);
224 ptr = VEC_last (deferred_access, deferred_access_stack);
225 if (ptr->deferring_access_checks_kind == dk_no_deferred)
227 /* Check access. */
228 perform_access_checks (checks);
230 else
232 /* Merge with parent. */
233 int i, j;
234 deferred_access_check *chk, *probe;
236 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
238 FOR_EACH_VEC_ELT (deferred_access_check,
239 ptr->deferred_access_checks, j, probe)
241 if (probe->binfo == chk->binfo &&
242 probe->decl == chk->decl &&
243 probe->diag_decl == chk->diag_decl)
244 goto found;
246 /* Insert into parent's checks. */
247 VEC_safe_push (deferred_access_check, gc,
248 ptr->deferred_access_checks, chk);
249 found:;
255 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
256 is the BINFO indicating the qualifying scope used to access the
257 DECL node stored in the TREE_VALUE of the node. */
259 void
260 perform_access_checks (VEC (deferred_access_check,gc)* checks)
262 int i;
263 deferred_access_check *chk;
265 if (!checks)
266 return;
268 FOR_EACH_VEC_ELT (deferred_access_check, checks, i, chk)
269 enforce_access (chk->binfo, chk->decl, chk->diag_decl);
272 /* Perform the deferred access checks.
274 After performing the checks, we still have to keep the list
275 `deferred_access_stack->deferred_access_checks' since we may want
276 to check access for them again later in a different context.
277 For example:
279 class A {
280 typedef int X;
281 static X a;
283 A::X A::a, x; // No error for `A::a', error for `x'
285 We have to perform deferred access of `A::X', first with `A::a',
286 next with `x'. */
288 void
289 perform_deferred_access_checks (void)
291 perform_access_checks (get_deferred_access_checks ());
294 /* Defer checking the accessibility of DECL, when looked up in
295 BINFO. DIAG_DECL is the declaration to use to print diagnostics. */
297 void
298 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl)
300 int i;
301 deferred_access *ptr;
302 deferred_access_check *chk;
303 deferred_access_check *new_access;
306 /* Exit if we are in a context that no access checking is performed.
308 if (deferred_access_no_check)
309 return;
311 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
313 ptr = VEC_last (deferred_access, deferred_access_stack);
315 /* If we are not supposed to defer access checks, just check now. */
316 if (ptr->deferring_access_checks_kind == dk_no_deferred)
318 enforce_access (binfo, decl, diag_decl);
319 return;
322 /* See if we are already going to perform this check. */
323 FOR_EACH_VEC_ELT (deferred_access_check,
324 ptr->deferred_access_checks, i, chk)
326 if (chk->decl == decl && chk->binfo == binfo &&
327 chk->diag_decl == diag_decl)
329 return;
332 /* If not, record the check. */
333 new_access =
334 VEC_safe_push (deferred_access_check, gc,
335 ptr->deferred_access_checks, 0);
336 new_access->binfo = binfo;
337 new_access->decl = decl;
338 new_access->diag_decl = diag_decl;
341 /* Used by build_over_call in LOOKUP_SPECULATIVE mode: return whether DECL
342 is accessible in BINFO, and possibly complain if not. If we're not
343 checking access, everything is accessible. */
345 bool
346 speculative_access_check (tree binfo, tree decl, tree diag_decl,
347 bool complain)
349 if (deferred_access_no_check)
350 return true;
352 /* If we're checking for implicit delete, we don't want access
353 control errors. */
354 if (!accessible_p (binfo, decl, true))
356 /* Unless we're under maybe_explain_implicit_delete. */
357 if (complain)
358 enforce_access (binfo, decl, diag_decl);
359 return false;
362 return true;
365 /* Returns nonzero if the current statement is a full expression,
366 i.e. temporaries created during that statement should be destroyed
367 at the end of the statement. */
370 stmts_are_full_exprs_p (void)
372 return current_stmt_tree ()->stmts_are_full_exprs_p;
375 /* T is a statement. Add it to the statement-tree. This is the C++
376 version. The C/ObjC frontends have a slightly different version of
377 this function. */
379 tree
380 add_stmt (tree t)
382 enum tree_code code = TREE_CODE (t);
384 if (EXPR_P (t) && code != LABEL_EXPR)
386 if (!EXPR_HAS_LOCATION (t))
387 SET_EXPR_LOCATION (t, input_location);
389 /* When we expand a statement-tree, we must know whether or not the
390 statements are full-expressions. We record that fact here. */
391 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
394 /* Add T to the statement-tree. Non-side-effect statements need to be
395 recorded during statement expressions. */
396 gcc_checking_assert (!VEC_empty (tree, stmt_list_stack));
397 append_to_statement_list_force (t, &cur_stmt_list);
399 return t;
402 /* Returns the stmt_tree to which statements are currently being added. */
404 stmt_tree
405 current_stmt_tree (void)
407 return (cfun
408 ? &cfun->language->base.x_stmt_tree
409 : &scope_chain->x_stmt_tree);
412 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
414 static tree
415 maybe_cleanup_point_expr (tree expr)
417 if (!processing_template_decl && stmts_are_full_exprs_p ())
418 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
419 return expr;
422 /* Like maybe_cleanup_point_expr except have the type of the new expression be
423 void so we don't need to create a temporary variable to hold the inner
424 expression. The reason why we do this is because the original type might be
425 an aggregate and we cannot create a temporary variable for that type. */
427 static tree
428 maybe_cleanup_point_expr_void (tree expr)
430 if (!processing_template_decl && stmts_are_full_exprs_p ())
431 expr = fold_build_cleanup_point_expr (void_type_node, expr);
432 return expr;
437 /* Create a declaration statement for the declaration given by the DECL. */
439 void
440 add_decl_expr (tree decl)
442 tree r = build_stmt (input_location, DECL_EXPR, decl);
443 if (DECL_INITIAL (decl)
444 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
445 r = maybe_cleanup_point_expr_void (r);
446 add_stmt (r);
449 /* Finish a scope. */
451 tree
452 do_poplevel (tree stmt_list)
454 tree block = NULL;
456 if (stmts_are_full_exprs_p ())
457 block = poplevel (kept_level_p (), 1, 0);
459 stmt_list = pop_stmt_list (stmt_list);
461 if (!processing_template_decl)
463 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
464 /* ??? See c_end_compound_stmt re statement expressions. */
467 return stmt_list;
470 /* Begin a new scope. */
472 static tree
473 do_pushlevel (scope_kind sk)
475 tree ret = push_stmt_list ();
476 if (stmts_are_full_exprs_p ())
477 begin_scope (sk, NULL);
478 return ret;
481 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
482 when the current scope is exited. EH_ONLY is true when this is not
483 meant to apply to normal control flow transfer. */
485 void
486 push_cleanup (tree decl, tree cleanup, bool eh_only)
488 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
489 CLEANUP_EH_ONLY (stmt) = eh_only;
490 add_stmt (stmt);
491 CLEANUP_BODY (stmt) = push_stmt_list ();
494 /* Begin a conditional that might contain a declaration. When generating
495 normal code, we want the declaration to appear before the statement
496 containing the conditional. When generating template code, we want the
497 conditional to be rendered as the raw DECL_EXPR. */
499 static void
500 begin_cond (tree *cond_p)
502 if (processing_template_decl)
503 *cond_p = push_stmt_list ();
506 /* Finish such a conditional. */
508 static void
509 finish_cond (tree *cond_p, tree expr)
511 if (processing_template_decl)
513 tree cond = pop_stmt_list (*cond_p);
514 if (TREE_CODE (cond) == DECL_EXPR)
515 expr = cond;
517 if (check_for_bare_parameter_packs (expr))
518 *cond_p = error_mark_node;
520 *cond_p = expr;
523 /* If *COND_P specifies a conditional with a declaration, transform the
524 loop such that
525 while (A x = 42) { }
526 for (; A x = 42;) { }
527 becomes
528 while (true) { A x = 42; if (!x) break; }
529 for (;;) { A x = 42; if (!x) break; }
530 The statement list for BODY will be empty if the conditional did
531 not declare anything. */
533 static void
534 simplify_loop_decl_cond (tree *cond_p, tree body)
536 tree cond, if_stmt;
538 if (!TREE_SIDE_EFFECTS (body))
539 return;
541 cond = *cond_p;
542 *cond_p = boolean_true_node;
544 if_stmt = begin_if_stmt ();
545 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
546 finish_if_stmt_cond (cond, if_stmt);
547 finish_break_stmt ();
548 finish_then_clause (if_stmt);
549 finish_if_stmt (if_stmt);
552 /* Finish a goto-statement. */
554 tree
555 finish_goto_stmt (tree destination)
557 if (TREE_CODE (destination) == IDENTIFIER_NODE)
558 destination = lookup_label (destination);
560 /* We warn about unused labels with -Wunused. That means we have to
561 mark the used labels as used. */
562 if (TREE_CODE (destination) == LABEL_DECL)
563 TREE_USED (destination) = 1;
564 else
566 destination = mark_rvalue_use (destination);
567 if (!processing_template_decl)
569 destination = cp_convert (ptr_type_node, destination);
570 if (error_operand_p (destination))
571 return NULL_TREE;
575 check_goto (destination);
577 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
580 /* COND is the condition-expression for an if, while, etc.,
581 statement. Convert it to a boolean value, if appropriate.
582 In addition, verify sequence points if -Wsequence-point is enabled. */
584 static tree
585 maybe_convert_cond (tree cond)
587 /* Empty conditions remain empty. */
588 if (!cond)
589 return NULL_TREE;
591 /* Wait until we instantiate templates before doing conversion. */
592 if (processing_template_decl)
593 return cond;
595 if (warn_sequence_point)
596 verify_sequence_points (cond);
598 /* Do the conversion. */
599 cond = convert_from_reference (cond);
601 if (TREE_CODE (cond) == MODIFY_EXPR
602 && !TREE_NO_WARNING (cond)
603 && warn_parentheses)
605 warning (OPT_Wparentheses,
606 "suggest parentheses around assignment used as truth value");
607 TREE_NO_WARNING (cond) = 1;
610 return condition_conversion (cond);
613 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
615 tree
616 finish_expr_stmt (tree expr)
618 tree r = NULL_TREE;
620 if (expr != NULL_TREE)
622 if (!processing_template_decl)
624 if (warn_sequence_point)
625 verify_sequence_points (expr);
626 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
628 else if (!type_dependent_expression_p (expr))
629 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
630 tf_warning_or_error);
632 if (check_for_bare_parameter_packs (expr))
633 expr = error_mark_node;
635 /* Simplification of inner statement expressions, compound exprs,
636 etc can result in us already having an EXPR_STMT. */
637 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
639 if (TREE_CODE (expr) != EXPR_STMT)
640 expr = build_stmt (input_location, EXPR_STMT, expr);
641 expr = maybe_cleanup_point_expr_void (expr);
644 r = add_stmt (expr);
647 finish_stmt ();
649 return r;
653 /* Begin an if-statement. Returns a newly created IF_STMT if
654 appropriate. */
656 tree
657 begin_if_stmt (void)
659 tree r, scope;
660 scope = do_pushlevel (sk_cond);
661 r = build_stmt (input_location, IF_STMT, NULL_TREE,
662 NULL_TREE, NULL_TREE, scope);
663 begin_cond (&IF_COND (r));
664 return r;
667 /* Process the COND of an if-statement, which may be given by
668 IF_STMT. */
670 void
671 finish_if_stmt_cond (tree cond, tree if_stmt)
673 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
674 add_stmt (if_stmt);
675 THEN_CLAUSE (if_stmt) = push_stmt_list ();
678 /* Finish the then-clause of an if-statement, which may be given by
679 IF_STMT. */
681 tree
682 finish_then_clause (tree if_stmt)
684 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
685 return if_stmt;
688 /* Begin the else-clause of an if-statement. */
690 void
691 begin_else_clause (tree if_stmt)
693 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
696 /* Finish the else-clause of an if-statement, which may be given by
697 IF_STMT. */
699 void
700 finish_else_clause (tree if_stmt)
702 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
705 /* Finish an if-statement. */
707 void
708 finish_if_stmt (tree if_stmt)
710 tree scope = IF_SCOPE (if_stmt);
711 IF_SCOPE (if_stmt) = NULL;
712 add_stmt (do_poplevel (scope));
713 finish_stmt ();
716 /* Begin a while-statement. Returns a newly created WHILE_STMT if
717 appropriate. */
719 tree
720 begin_while_stmt (void)
722 tree r;
723 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
724 add_stmt (r);
725 WHILE_BODY (r) = do_pushlevel (sk_block);
726 begin_cond (&WHILE_COND (r));
727 return r;
730 /* Process the COND of a while-statement, which may be given by
731 WHILE_STMT. */
733 void
734 finish_while_stmt_cond (tree cond, tree while_stmt)
736 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
737 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
740 /* Finish a while-statement, which may be given by WHILE_STMT. */
742 void
743 finish_while_stmt (tree while_stmt)
745 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
746 finish_stmt ();
749 /* Begin a do-statement. Returns a newly created DO_STMT if
750 appropriate. */
752 tree
753 begin_do_stmt (void)
755 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
756 add_stmt (r);
757 DO_BODY (r) = push_stmt_list ();
758 return r;
761 /* Finish the body of a do-statement, which may be given by DO_STMT. */
763 void
764 finish_do_body (tree do_stmt)
766 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
768 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
769 body = STATEMENT_LIST_TAIL (body)->stmt;
771 if (IS_EMPTY_STMT (body))
772 warning (OPT_Wempty_body,
773 "suggest explicit braces around empty body in %<do%> statement");
776 /* Finish a do-statement, which may be given by DO_STMT, and whose
777 COND is as indicated. */
779 void
780 finish_do_stmt (tree cond, tree do_stmt)
782 cond = maybe_convert_cond (cond);
783 DO_COND (do_stmt) = cond;
784 finish_stmt ();
787 /* Finish a return-statement. The EXPRESSION returned, if any, is as
788 indicated. */
790 tree
791 finish_return_stmt (tree expr)
793 tree r;
794 bool no_warning;
796 expr = check_return_expr (expr, &no_warning);
798 if (flag_openmp && !check_omp_return ())
799 return error_mark_node;
800 if (!processing_template_decl)
802 if (warn_sequence_point)
803 verify_sequence_points (expr);
805 if (DECL_DESTRUCTOR_P (current_function_decl)
806 || (DECL_CONSTRUCTOR_P (current_function_decl)
807 && targetm.cxx.cdtor_returns_this ()))
809 /* Similarly, all destructors must run destructors for
810 base-classes before returning. So, all returns in a
811 destructor get sent to the DTOR_LABEL; finish_function emits
812 code to return a value there. */
813 return finish_goto_stmt (cdtor_label);
817 r = build_stmt (input_location, RETURN_EXPR, expr);
818 TREE_NO_WARNING (r) |= no_warning;
819 r = maybe_cleanup_point_expr_void (r);
820 r = add_stmt (r);
821 finish_stmt ();
823 return r;
826 /* Begin the scope of a for-statement or a range-for-statement.
827 Both the returned trees are to be used in a call to
828 begin_for_stmt or begin_range_for_stmt. */
830 tree
831 begin_for_scope (tree *init)
833 tree scope = NULL_TREE;
834 if (flag_new_for_scope > 0)
835 scope = do_pushlevel (sk_for);
837 if (processing_template_decl)
838 *init = push_stmt_list ();
839 else
840 *init = NULL_TREE;
842 return scope;
845 /* Begin a for-statement. Returns a new FOR_STMT.
846 SCOPE and INIT should be the return of begin_for_scope,
847 or both NULL_TREE */
849 tree
850 begin_for_stmt (tree scope, tree init)
852 tree r;
854 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
855 NULL_TREE, NULL_TREE, NULL_TREE);
857 if (scope == NULL_TREE)
859 gcc_assert (!init || !(flag_new_for_scope > 0));
860 if (!init)
861 scope = begin_for_scope (&init);
863 FOR_INIT_STMT (r) = init;
864 FOR_SCOPE (r) = scope;
866 return r;
869 /* Finish the for-init-statement of a for-statement, which may be
870 given by FOR_STMT. */
872 void
873 finish_for_init_stmt (tree for_stmt)
875 if (processing_template_decl)
876 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
877 add_stmt (for_stmt);
878 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
879 begin_cond (&FOR_COND (for_stmt));
882 /* Finish the COND of a for-statement, which may be given by
883 FOR_STMT. */
885 void
886 finish_for_cond (tree cond, tree for_stmt)
888 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
889 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
892 /* Finish the increment-EXPRESSION in a for-statement, which may be
893 given by FOR_STMT. */
895 void
896 finish_for_expr (tree expr, tree for_stmt)
898 if (!expr)
899 return;
900 /* If EXPR is an overloaded function, issue an error; there is no
901 context available to use to perform overload resolution. */
902 if (type_unknown_p (expr))
904 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
905 expr = error_mark_node;
907 if (!processing_template_decl)
909 if (warn_sequence_point)
910 verify_sequence_points (expr);
911 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
912 tf_warning_or_error);
914 else if (!type_dependent_expression_p (expr))
915 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
916 tf_warning_or_error);
917 expr = maybe_cleanup_point_expr_void (expr);
918 if (check_for_bare_parameter_packs (expr))
919 expr = error_mark_node;
920 FOR_EXPR (for_stmt) = expr;
923 /* Finish the body of a for-statement, which may be given by
924 FOR_STMT. The increment-EXPR for the loop must be
925 provided.
926 It can also finish RANGE_FOR_STMT. */
928 void
929 finish_for_stmt (tree for_stmt)
931 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
932 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
933 else
934 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
936 /* Pop the scope for the body of the loop. */
937 if (flag_new_for_scope > 0)
939 tree scope;
940 tree *scope_ptr = (TREE_CODE (for_stmt) == RANGE_FOR_STMT
941 ? &RANGE_FOR_SCOPE (for_stmt)
942 : &FOR_SCOPE (for_stmt));
943 scope = *scope_ptr;
944 *scope_ptr = NULL;
945 add_stmt (do_poplevel (scope));
948 finish_stmt ();
951 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
952 SCOPE and INIT should be the return of begin_for_scope,
953 or both NULL_TREE .
954 To finish it call finish_for_stmt(). */
956 tree
957 begin_range_for_stmt (tree scope, tree init)
959 tree r;
961 r = build_stmt (input_location, RANGE_FOR_STMT,
962 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
964 if (scope == NULL_TREE)
966 gcc_assert (!init || !(flag_new_for_scope > 0));
967 if (!init)
968 scope = begin_for_scope (&init);
971 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
972 pop it now. */
973 if (init)
974 pop_stmt_list (init);
975 RANGE_FOR_SCOPE (r) = scope;
977 return r;
980 /* Finish the head of a range-based for statement, which may
981 be given by RANGE_FOR_STMT. DECL must be the declaration
982 and EXPR must be the loop expression. */
984 void
985 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
987 RANGE_FOR_DECL (range_for_stmt) = decl;
988 RANGE_FOR_EXPR (range_for_stmt) = expr;
989 add_stmt (range_for_stmt);
990 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
993 /* Finish a break-statement. */
995 tree
996 finish_break_stmt (void)
998 return add_stmt (build_stmt (input_location, BREAK_STMT));
1001 /* Finish a continue-statement. */
1003 tree
1004 finish_continue_stmt (void)
1006 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1009 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1010 appropriate. */
1012 tree
1013 begin_switch_stmt (void)
1015 tree r, scope;
1017 scope = do_pushlevel (sk_cond);
1018 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1020 begin_cond (&SWITCH_STMT_COND (r));
1022 return r;
1025 /* Finish the cond of a switch-statement. */
1027 void
1028 finish_switch_cond (tree cond, tree switch_stmt)
1030 tree orig_type = NULL;
1031 if (!processing_template_decl)
1033 /* Convert the condition to an integer or enumeration type. */
1034 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1035 if (cond == NULL_TREE)
1037 error ("switch quantity not an integer");
1038 cond = error_mark_node;
1040 orig_type = TREE_TYPE (cond);
1041 if (cond != error_mark_node)
1043 /* [stmt.switch]
1045 Integral promotions are performed. */
1046 cond = perform_integral_promotions (cond);
1047 cond = maybe_cleanup_point_expr (cond);
1050 if (check_for_bare_parameter_packs (cond))
1051 cond = error_mark_node;
1052 else if (!processing_template_decl && warn_sequence_point)
1053 verify_sequence_points (cond);
1055 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1056 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1057 add_stmt (switch_stmt);
1058 push_switch (switch_stmt);
1059 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1062 /* Finish the body of a switch-statement, which may be given by
1063 SWITCH_STMT. The COND to switch on is indicated. */
1065 void
1066 finish_switch_stmt (tree switch_stmt)
1068 tree scope;
1070 SWITCH_STMT_BODY (switch_stmt) =
1071 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1072 pop_switch ();
1073 finish_stmt ();
1075 scope = SWITCH_STMT_SCOPE (switch_stmt);
1076 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1077 add_stmt (do_poplevel (scope));
1080 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1081 appropriate. */
1083 tree
1084 begin_try_block (void)
1086 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1087 add_stmt (r);
1088 TRY_STMTS (r) = push_stmt_list ();
1089 return r;
1092 /* Likewise, for a function-try-block. The block returned in
1093 *COMPOUND_STMT is an artificial outer scope, containing the
1094 function-try-block. */
1096 tree
1097 begin_function_try_block (tree *compound_stmt)
1099 tree r;
1100 /* This outer scope does not exist in the C++ standard, but we need
1101 a place to put __FUNCTION__ and similar variables. */
1102 *compound_stmt = begin_compound_stmt (0);
1103 r = begin_try_block ();
1104 FN_TRY_BLOCK_P (r) = 1;
1105 return r;
1108 /* Finish a try-block, which may be given by TRY_BLOCK. */
1110 void
1111 finish_try_block (tree try_block)
1113 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1114 TRY_HANDLERS (try_block) = push_stmt_list ();
1117 /* Finish the body of a cleanup try-block, which may be given by
1118 TRY_BLOCK. */
1120 void
1121 finish_cleanup_try_block (tree try_block)
1123 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1126 /* Finish an implicitly generated try-block, with a cleanup is given
1127 by CLEANUP. */
1129 void
1130 finish_cleanup (tree cleanup, tree try_block)
1132 TRY_HANDLERS (try_block) = cleanup;
1133 CLEANUP_P (try_block) = 1;
1136 /* Likewise, for a function-try-block. */
1138 void
1139 finish_function_try_block (tree try_block)
1141 finish_try_block (try_block);
1142 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1143 the try block, but moving it inside. */
1144 in_function_try_handler = 1;
1147 /* Finish a handler-sequence for a try-block, which may be given by
1148 TRY_BLOCK. */
1150 void
1151 finish_handler_sequence (tree try_block)
1153 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1154 check_handlers (TRY_HANDLERS (try_block));
1157 /* Finish the handler-seq for a function-try-block, given by
1158 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1159 begin_function_try_block. */
1161 void
1162 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1164 in_function_try_handler = 0;
1165 finish_handler_sequence (try_block);
1166 finish_compound_stmt (compound_stmt);
1169 /* Begin a handler. Returns a HANDLER if appropriate. */
1171 tree
1172 begin_handler (void)
1174 tree r;
1176 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1177 add_stmt (r);
1179 /* Create a binding level for the eh_info and the exception object
1180 cleanup. */
1181 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1183 return r;
1186 /* Finish the handler-parameters for a handler, which may be given by
1187 HANDLER. DECL is the declaration for the catch parameter, or NULL
1188 if this is a `catch (...)' clause. */
1190 void
1191 finish_handler_parms (tree decl, tree handler)
1193 tree type = NULL_TREE;
1194 if (processing_template_decl)
1196 if (decl)
1198 decl = pushdecl (decl);
1199 decl = push_template_decl (decl);
1200 HANDLER_PARMS (handler) = decl;
1201 type = TREE_TYPE (decl);
1204 else
1205 type = expand_start_catch_block (decl);
1206 HANDLER_TYPE (handler) = type;
1207 if (!processing_template_decl && type)
1208 mark_used (eh_type_info (type));
1211 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1212 the return value from the matching call to finish_handler_parms. */
1214 void
1215 finish_handler (tree handler)
1217 if (!processing_template_decl)
1218 expand_end_catch_block ();
1219 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1222 /* Begin a compound statement. FLAGS contains some bits that control the
1223 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1224 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1225 block of a function. If BCS_TRY_BLOCK is set, this is the block
1226 created on behalf of a TRY statement. Returns a token to be passed to
1227 finish_compound_stmt. */
1229 tree
1230 begin_compound_stmt (unsigned int flags)
1232 tree r;
1234 if (flags & BCS_NO_SCOPE)
1236 r = push_stmt_list ();
1237 STATEMENT_LIST_NO_SCOPE (r) = 1;
1239 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1240 But, if it's a statement-expression with a scopeless block, there's
1241 nothing to keep, and we don't want to accidentally keep a block
1242 *inside* the scopeless block. */
1243 keep_next_level (false);
1245 else
1246 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1248 /* When processing a template, we need to remember where the braces were,
1249 so that we can set up identical scopes when instantiating the template
1250 later. BIND_EXPR is a handy candidate for this.
1251 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1252 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1253 processing templates. */
1254 if (processing_template_decl)
1256 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1257 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1258 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1259 TREE_SIDE_EFFECTS (r) = 1;
1262 return r;
1265 /* Finish a compound-statement, which is given by STMT. */
1267 void
1268 finish_compound_stmt (tree stmt)
1270 if (TREE_CODE (stmt) == BIND_EXPR)
1272 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1273 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1274 discard the BIND_EXPR so it can be merged with the containing
1275 STATEMENT_LIST. */
1276 if (TREE_CODE (body) == STATEMENT_LIST
1277 && STATEMENT_LIST_HEAD (body) == NULL
1278 && !BIND_EXPR_BODY_BLOCK (stmt)
1279 && !BIND_EXPR_TRY_BLOCK (stmt))
1280 stmt = body;
1281 else
1282 BIND_EXPR_BODY (stmt) = body;
1284 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1285 stmt = pop_stmt_list (stmt);
1286 else
1288 /* Destroy any ObjC "super" receivers that may have been
1289 created. */
1290 objc_clear_super_receiver ();
1292 stmt = do_poplevel (stmt);
1295 /* ??? See c_end_compound_stmt wrt statement expressions. */
1296 add_stmt (stmt);
1297 finish_stmt ();
1300 /* Finish an asm-statement, whose components are a STRING, some
1301 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1302 LABELS. Also note whether the asm-statement should be
1303 considered volatile. */
1305 tree
1306 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1307 tree input_operands, tree clobbers, tree labels)
1309 tree r;
1310 tree t;
1311 int ninputs = list_length (input_operands);
1312 int noutputs = list_length (output_operands);
1314 if (!processing_template_decl)
1316 const char *constraint;
1317 const char **oconstraints;
1318 bool allows_mem, allows_reg, is_inout;
1319 tree operand;
1320 int i;
1322 oconstraints = XALLOCAVEC (const char *, noutputs);
1324 string = resolve_asm_operand_names (string, output_operands,
1325 input_operands, labels);
1327 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1329 operand = TREE_VALUE (t);
1331 /* ??? Really, this should not be here. Users should be using a
1332 proper lvalue, dammit. But there's a long history of using
1333 casts in the output operands. In cases like longlong.h, this
1334 becomes a primitive form of typechecking -- if the cast can be
1335 removed, then the output operand had a type of the proper width;
1336 otherwise we'll get an error. Gross, but ... */
1337 STRIP_NOPS (operand);
1339 operand = mark_lvalue_use (operand);
1341 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1342 operand = error_mark_node;
1344 if (operand != error_mark_node
1345 && (TREE_READONLY (operand)
1346 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1347 /* Functions are not modifiable, even though they are
1348 lvalues. */
1349 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1350 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1351 /* If it's an aggregate and any field is const, then it is
1352 effectively const. */
1353 || (CLASS_TYPE_P (TREE_TYPE (operand))
1354 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1355 cxx_readonly_error (operand, lv_asm);
1357 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1358 oconstraints[i] = constraint;
1360 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1361 &allows_mem, &allows_reg, &is_inout))
1363 /* If the operand is going to end up in memory,
1364 mark it addressable. */
1365 if (!allows_reg && !cxx_mark_addressable (operand))
1366 operand = error_mark_node;
1368 else
1369 operand = error_mark_node;
1371 TREE_VALUE (t) = operand;
1374 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1376 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1377 operand = decay_conversion (TREE_VALUE (t));
1379 /* If the type of the operand hasn't been determined (e.g.,
1380 because it involves an overloaded function), then issue
1381 an error message. There's no context available to
1382 resolve the overloading. */
1383 if (TREE_TYPE (operand) == unknown_type_node)
1385 error ("type of asm operand %qE could not be determined",
1386 TREE_VALUE (t));
1387 operand = error_mark_node;
1390 if (parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1391 oconstraints, &allows_mem, &allows_reg))
1393 /* If the operand is going to end up in memory,
1394 mark it addressable. */
1395 if (!allows_reg && allows_mem)
1397 /* Strip the nops as we allow this case. FIXME, this really
1398 should be rejected or made deprecated. */
1399 STRIP_NOPS (operand);
1400 if (!cxx_mark_addressable (operand))
1401 operand = error_mark_node;
1404 else
1405 operand = error_mark_node;
1407 TREE_VALUE (t) = operand;
1411 r = build_stmt (input_location, ASM_EXPR, string,
1412 output_operands, input_operands,
1413 clobbers, labels);
1414 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1415 r = maybe_cleanup_point_expr_void (r);
1416 return add_stmt (r);
1419 /* Finish a label with the indicated NAME. Returns the new label. */
1421 tree
1422 finish_label_stmt (tree name)
1424 tree decl = define_label (input_location, name);
1426 if (decl == error_mark_node)
1427 return error_mark_node;
1429 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1431 return decl;
1434 /* Finish a series of declarations for local labels. G++ allows users
1435 to declare "local" labels, i.e., labels with scope. This extension
1436 is useful when writing code involving statement-expressions. */
1438 void
1439 finish_label_decl (tree name)
1441 if (!at_function_scope_p ())
1443 error ("__label__ declarations are only allowed in function scopes");
1444 return;
1447 add_decl_expr (declare_local_label (name));
1450 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1452 void
1453 finish_decl_cleanup (tree decl, tree cleanup)
1455 push_cleanup (decl, cleanup, false);
1458 /* If the current scope exits with an exception, run CLEANUP. */
1460 void
1461 finish_eh_cleanup (tree cleanup)
1463 push_cleanup (NULL, cleanup, true);
1466 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1467 order they were written by the user. Each node is as for
1468 emit_mem_initializers. */
1470 void
1471 finish_mem_initializers (tree mem_inits)
1473 /* Reorder the MEM_INITS so that they are in the order they appeared
1474 in the source program. */
1475 mem_inits = nreverse (mem_inits);
1477 if (processing_template_decl)
1479 tree mem;
1481 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1483 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1484 check for bare parameter packs in the TREE_VALUE, because
1485 any parameter packs in the TREE_VALUE have already been
1486 bound as part of the TREE_PURPOSE. See
1487 make_pack_expansion for more information. */
1488 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1489 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1490 TREE_VALUE (mem) = error_mark_node;
1493 add_stmt (build_min_nt (CTOR_INITIALIZER, mem_inits));
1495 else
1496 emit_mem_initializers (mem_inits);
1499 /* Finish a parenthesized expression EXPR. */
1501 tree
1502 finish_parenthesized_expr (tree expr)
1504 if (EXPR_P (expr))
1505 /* This inhibits warnings in c_common_truthvalue_conversion. */
1506 TREE_NO_WARNING (expr) = 1;
1508 if (TREE_CODE (expr) == OFFSET_REF
1509 || TREE_CODE (expr) == SCOPE_REF)
1510 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1511 enclosed in parentheses. */
1512 PTRMEM_OK_P (expr) = 0;
1514 if (TREE_CODE (expr) == STRING_CST)
1515 PAREN_STRING_LITERAL_P (expr) = 1;
1517 return expr;
1520 /* Finish a reference to a non-static data member (DECL) that is not
1521 preceded by `.' or `->'. */
1523 tree
1524 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1526 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1528 if (!object)
1530 tree scope = qualifying_scope;
1531 if (scope == NULL_TREE)
1532 scope = context_for_name_lookup (decl);
1533 object = maybe_dummy_object (scope, NULL);
1536 if (object == error_mark_node)
1537 return error_mark_node;
1539 /* DR 613: Can use non-static data members without an associated
1540 object in sizeof/decltype/alignof. */
1541 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1542 && (!processing_template_decl || !current_class_ref))
1544 if (current_function_decl
1545 && DECL_STATIC_FUNCTION_P (current_function_decl))
1546 error ("invalid use of member %q+D in static member function", decl);
1547 else
1548 error ("invalid use of non-static data member %q+D", decl);
1549 error ("from this location");
1551 return error_mark_node;
1554 if (current_class_ptr)
1555 TREE_USED (current_class_ptr) = 1;
1556 if (processing_template_decl && !qualifying_scope)
1558 tree type = TREE_TYPE (decl);
1560 if (TREE_CODE (type) == REFERENCE_TYPE)
1561 /* Quals on the object don't matter. */;
1562 else
1564 /* Set the cv qualifiers. */
1565 int quals = (current_class_ref
1566 ? cp_type_quals (TREE_TYPE (current_class_ref))
1567 : TYPE_UNQUALIFIED);
1569 if (DECL_MUTABLE_P (decl))
1570 quals &= ~TYPE_QUAL_CONST;
1572 quals |= cp_type_quals (TREE_TYPE (decl));
1573 type = cp_build_qualified_type (type, quals);
1576 return (convert_from_reference
1577 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1579 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1580 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1581 for now. */
1582 else if (processing_template_decl)
1583 return build_qualified_name (TREE_TYPE (decl),
1584 qualifying_scope,
1585 DECL_NAME (decl),
1586 /*template_p=*/false);
1587 else
1589 tree access_type = TREE_TYPE (object);
1591 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1592 decl);
1594 /* If the data member was named `C::M', convert `*this' to `C'
1595 first. */
1596 if (qualifying_scope)
1598 tree binfo = NULL_TREE;
1599 object = build_scoped_ref (object, qualifying_scope,
1600 &binfo);
1603 return build_class_member_access_expr (object, decl,
1604 /*access_path=*/NULL_TREE,
1605 /*preserve_reference=*/false,
1606 tf_warning_or_error);
1610 /* If we are currently parsing a template and we encountered a typedef
1611 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1612 adds the typedef to a list tied to the current template.
1613 At tempate instantiatin time, that list is walked and access check
1614 performed for each typedef.
1615 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1617 void
1618 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1619 tree context,
1620 location_t location)
1622 tree template_info = NULL;
1623 tree cs = current_scope ();
1625 if (!is_typedef_decl (typedef_decl)
1626 || !context
1627 || !CLASS_TYPE_P (context)
1628 || !cs)
1629 return;
1631 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1632 template_info = get_template_info (cs);
1634 if (template_info
1635 && TI_TEMPLATE (template_info)
1636 && !currently_open_class (context))
1637 append_type_to_template_for_access_check (cs, typedef_decl,
1638 context, location);
1641 /* DECL was the declaration to which a qualified-id resolved. Issue
1642 an error message if it is not accessible. If OBJECT_TYPE is
1643 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1644 type of `*x', or `x', respectively. If the DECL was named as
1645 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1647 void
1648 check_accessibility_of_qualified_id (tree decl,
1649 tree object_type,
1650 tree nested_name_specifier)
1652 tree scope;
1653 tree qualifying_type = NULL_TREE;
1655 /* If we are parsing a template declaration and if decl is a typedef,
1656 add it to a list tied to the template.
1657 At template instantiation time, that list will be walked and
1658 access check performed. */
1659 add_typedef_to_current_template_for_access_check (decl,
1660 nested_name_specifier
1661 ? nested_name_specifier
1662 : DECL_CONTEXT (decl),
1663 input_location);
1665 /* If we're not checking, return immediately. */
1666 if (deferred_access_no_check)
1667 return;
1669 /* Determine the SCOPE of DECL. */
1670 scope = context_for_name_lookup (decl);
1671 /* If the SCOPE is not a type, then DECL is not a member. */
1672 if (!TYPE_P (scope))
1673 return;
1674 /* Compute the scope through which DECL is being accessed. */
1675 if (object_type
1676 /* OBJECT_TYPE might not be a class type; consider:
1678 class A { typedef int I; };
1679 I *p;
1680 p->A::I::~I();
1682 In this case, we will have "A::I" as the DECL, but "I" as the
1683 OBJECT_TYPE. */
1684 && CLASS_TYPE_P (object_type)
1685 && DERIVED_FROM_P (scope, object_type))
1686 /* If we are processing a `->' or `.' expression, use the type of the
1687 left-hand side. */
1688 qualifying_type = object_type;
1689 else if (nested_name_specifier)
1691 /* If the reference is to a non-static member of the
1692 current class, treat it as if it were referenced through
1693 `this'. */
1694 if (DECL_NONSTATIC_MEMBER_P (decl)
1695 && current_class_ptr
1696 && DERIVED_FROM_P (scope, current_class_type))
1697 qualifying_type = current_class_type;
1698 /* Otherwise, use the type indicated by the
1699 nested-name-specifier. */
1700 else
1701 qualifying_type = nested_name_specifier;
1703 else
1704 /* Otherwise, the name must be from the current class or one of
1705 its bases. */
1706 qualifying_type = currently_open_derived_class (scope);
1708 if (qualifying_type
1709 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1710 or similar in a default argument value. */
1711 && CLASS_TYPE_P (qualifying_type)
1712 && !dependent_type_p (qualifying_type))
1713 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1714 decl);
1717 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1718 class named to the left of the "::" operator. DONE is true if this
1719 expression is a complete postfix-expression; it is false if this
1720 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1721 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1722 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1723 is true iff this qualified name appears as a template argument. */
1725 tree
1726 finish_qualified_id_expr (tree qualifying_class,
1727 tree expr,
1728 bool done,
1729 bool address_p,
1730 bool template_p,
1731 bool template_arg_p)
1733 gcc_assert (TYPE_P (qualifying_class));
1735 if (error_operand_p (expr))
1736 return error_mark_node;
1738 if (DECL_P (expr) || BASELINK_P (expr))
1739 mark_used (expr);
1741 if (template_p)
1742 check_template_keyword (expr);
1744 /* If EXPR occurs as the operand of '&', use special handling that
1745 permits a pointer-to-member. */
1746 if (address_p && done)
1748 if (TREE_CODE (expr) == SCOPE_REF)
1749 expr = TREE_OPERAND (expr, 1);
1750 expr = build_offset_ref (qualifying_class, expr,
1751 /*address_p=*/true);
1752 return expr;
1755 /* Within the scope of a class, turn references to non-static
1756 members into expression of the form "this->...". */
1757 if (template_arg_p)
1758 /* But, within a template argument, we do not want make the
1759 transformation, as there is no "this" pointer. */
1761 else if (TREE_CODE (expr) == FIELD_DECL)
1763 push_deferring_access_checks (dk_no_check);
1764 expr = finish_non_static_data_member (expr, NULL_TREE,
1765 qualifying_class);
1766 pop_deferring_access_checks ();
1768 else if (BASELINK_P (expr) && !processing_template_decl)
1770 tree ob;
1772 /* See if any of the functions are non-static members. */
1773 /* If so, the expression may be relative to 'this'. */
1774 if (!shared_member_p (expr)
1775 && (ob = maybe_dummy_object (qualifying_class, NULL),
1776 !is_dummy_object (ob)))
1777 expr = (build_class_member_access_expr
1778 (ob,
1779 expr,
1780 BASELINK_ACCESS_BINFO (expr),
1781 /*preserve_reference=*/false,
1782 tf_warning_or_error));
1783 else if (done)
1784 /* The expression is a qualified name whose address is not
1785 being taken. */
1786 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1789 return expr;
1792 /* Begin a statement-expression. The value returned must be passed to
1793 finish_stmt_expr. */
1795 tree
1796 begin_stmt_expr (void)
1798 return push_stmt_list ();
1801 /* Process the final expression of a statement expression. EXPR can be
1802 NULL, if the final expression is empty. Return a STATEMENT_LIST
1803 containing all the statements in the statement-expression, or
1804 ERROR_MARK_NODE if there was an error. */
1806 tree
1807 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1809 if (error_operand_p (expr))
1811 /* The type of the statement-expression is the type of the last
1812 expression. */
1813 TREE_TYPE (stmt_expr) = error_mark_node;
1814 return error_mark_node;
1817 /* If the last statement does not have "void" type, then the value
1818 of the last statement is the value of the entire expression. */
1819 if (expr)
1821 tree type = TREE_TYPE (expr);
1823 if (processing_template_decl)
1825 expr = build_stmt (input_location, EXPR_STMT, expr);
1826 expr = add_stmt (expr);
1827 /* Mark the last statement so that we can recognize it as such at
1828 template-instantiation time. */
1829 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1831 else if (VOID_TYPE_P (type))
1833 /* Just treat this like an ordinary statement. */
1834 expr = finish_expr_stmt (expr);
1836 else
1838 /* It actually has a value we need to deal with. First, force it
1839 to be an rvalue so that we won't need to build up a copy
1840 constructor call later when we try to assign it to something. */
1841 expr = force_rvalue (expr, tf_warning_or_error);
1842 if (error_operand_p (expr))
1843 return error_mark_node;
1845 /* Update for array-to-pointer decay. */
1846 type = TREE_TYPE (expr);
1848 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1849 normal statement, but don't convert to void or actually add
1850 the EXPR_STMT. */
1851 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1852 expr = maybe_cleanup_point_expr (expr);
1853 add_stmt (expr);
1856 /* The type of the statement-expression is the type of the last
1857 expression. */
1858 TREE_TYPE (stmt_expr) = type;
1861 return stmt_expr;
1864 /* Finish a statement-expression. EXPR should be the value returned
1865 by the previous begin_stmt_expr. Returns an expression
1866 representing the statement-expression. */
1868 tree
1869 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1871 tree type;
1872 tree result;
1874 if (error_operand_p (stmt_expr))
1876 pop_stmt_list (stmt_expr);
1877 return error_mark_node;
1880 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
1882 type = TREE_TYPE (stmt_expr);
1883 result = pop_stmt_list (stmt_expr);
1884 TREE_TYPE (result) = type;
1886 if (processing_template_decl)
1888 result = build_min (STMT_EXPR, type, result);
1889 TREE_SIDE_EFFECTS (result) = 1;
1890 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1892 else if (CLASS_TYPE_P (type))
1894 /* Wrap the statement-expression in a TARGET_EXPR so that the
1895 temporary object created by the final expression is destroyed at
1896 the end of the full-expression containing the
1897 statement-expression. */
1898 result = force_target_expr (type, result, tf_warning_or_error);
1901 return result;
1904 /* Returns the expression which provides the value of STMT_EXPR. */
1906 tree
1907 stmt_expr_value_expr (tree stmt_expr)
1909 tree t = STMT_EXPR_STMT (stmt_expr);
1911 if (TREE_CODE (t) == BIND_EXPR)
1912 t = BIND_EXPR_BODY (t);
1914 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
1915 t = STATEMENT_LIST_TAIL (t)->stmt;
1917 if (TREE_CODE (t) == EXPR_STMT)
1918 t = EXPR_STMT_EXPR (t);
1920 return t;
1923 /* Return TRUE iff EXPR_STMT is an empty list of
1924 expression statements. */
1926 bool
1927 empty_expr_stmt_p (tree expr_stmt)
1929 tree body = NULL_TREE;
1931 if (expr_stmt == void_zero_node)
1932 return true;
1934 if (expr_stmt)
1936 if (TREE_CODE (expr_stmt) == EXPR_STMT)
1937 body = EXPR_STMT_EXPR (expr_stmt);
1938 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
1939 body = expr_stmt;
1942 if (body)
1944 if (TREE_CODE (body) == STATEMENT_LIST)
1945 return tsi_end_p (tsi_start (body));
1946 else
1947 return empty_expr_stmt_p (body);
1949 return false;
1952 /* Perform Koenig lookup. FN is the postfix-expression representing
1953 the function (or functions) to call; ARGS are the arguments to the
1954 call; if INCLUDE_STD then the `std' namespace is automatically
1955 considered an associated namespace (used in range-based for loops).
1956 Returns the functions to be considered by overload resolution. */
1958 tree
1959 perform_koenig_lookup (tree fn, VEC(tree,gc) *args, bool include_std,
1960 tsubst_flags_t complain)
1962 tree identifier = NULL_TREE;
1963 tree functions = NULL_TREE;
1964 tree tmpl_args = NULL_TREE;
1965 bool template_id = false;
1967 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1969 /* Use a separate flag to handle null args. */
1970 template_id = true;
1971 tmpl_args = TREE_OPERAND (fn, 1);
1972 fn = TREE_OPERAND (fn, 0);
1975 /* Find the name of the overloaded function. */
1976 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1977 identifier = fn;
1978 else if (is_overloaded_fn (fn))
1980 functions = fn;
1981 identifier = DECL_NAME (get_first_fn (functions));
1983 else if (DECL_P (fn))
1985 functions = fn;
1986 identifier = DECL_NAME (fn);
1989 /* A call to a namespace-scope function using an unqualified name.
1991 Do Koenig lookup -- unless any of the arguments are
1992 type-dependent. */
1993 if (!any_type_dependent_arguments_p (args)
1994 && !any_dependent_template_arguments_p (tmpl_args))
1996 fn = lookup_arg_dependent (identifier, functions, args, include_std);
1997 if (!fn)
1999 /* The unqualified name could not be resolved. */
2000 if (complain)
2001 fn = unqualified_fn_lookup_error (identifier);
2002 else
2003 fn = identifier;
2007 if (fn && template_id)
2008 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2010 return fn;
2013 /* Generate an expression for `FN (ARGS)'. This may change the
2014 contents of ARGS.
2016 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2017 as a virtual call, even if FN is virtual. (This flag is set when
2018 encountering an expression where the function name is explicitly
2019 qualified. For example a call to `X::f' never generates a virtual
2020 call.)
2022 Returns code for the call. */
2024 tree
2025 finish_call_expr (tree fn, VEC(tree,gc) **args, bool disallow_virtual,
2026 bool koenig_p, tsubst_flags_t complain)
2028 tree result;
2029 tree orig_fn;
2030 VEC(tree,gc) *orig_args = NULL;
2032 if (fn == error_mark_node)
2033 return error_mark_node;
2035 gcc_assert (!TYPE_P (fn));
2037 orig_fn = fn;
2039 if (processing_template_decl)
2041 /* If the call expression is dependent, build a CALL_EXPR node
2042 with no type; type_dependent_expression_p recognizes
2043 expressions with no type as being dependent. */
2044 if (type_dependent_expression_p (fn)
2045 || any_type_dependent_arguments_p (*args)
2046 /* For a non-static member function that doesn't have an
2047 explicit object argument, we need to specifically
2048 test the type dependency of the "this" pointer because it
2049 is not included in *ARGS even though it is considered to
2050 be part of the list of arguments. Note that this is
2051 related to CWG issues 515 and 1005. */
2052 || (TREE_CODE (fn) != COMPONENT_REF
2053 && non_static_member_function_p (fn)
2054 && current_class_ref
2055 && type_dependent_expression_p (current_class_ref)))
2057 result = build_nt_call_vec (fn, *args);
2058 KOENIG_LOOKUP_P (result) = koenig_p;
2059 if (cfun)
2063 tree fndecl = OVL_CURRENT (fn);
2064 if (TREE_CODE (fndecl) != FUNCTION_DECL
2065 || !TREE_THIS_VOLATILE (fndecl))
2066 break;
2067 fn = OVL_NEXT (fn);
2069 while (fn);
2070 if (!fn)
2071 current_function_returns_abnormally = 1;
2073 return result;
2075 orig_args = make_tree_vector_copy (*args);
2076 if (!BASELINK_P (fn)
2077 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2078 && TREE_TYPE (fn) != unknown_type_node)
2079 fn = build_non_dependent_expr (fn);
2080 make_args_non_dependent (*args);
2083 if (TREE_CODE (fn) == COMPONENT_REF)
2085 tree member = TREE_OPERAND (fn, 1);
2086 if (BASELINK_P (member))
2088 tree object = TREE_OPERAND (fn, 0);
2089 return build_new_method_call (object, member,
2090 args, NULL_TREE,
2091 (disallow_virtual
2092 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2093 : LOOKUP_NORMAL),
2094 /*fn_p=*/NULL,
2095 complain);
2099 if (is_overloaded_fn (fn))
2100 fn = baselink_for_fns (fn);
2102 result = NULL_TREE;
2103 if (BASELINK_P (fn))
2105 tree object;
2107 /* A call to a member function. From [over.call.func]:
2109 If the keyword this is in scope and refers to the class of
2110 that member function, or a derived class thereof, then the
2111 function call is transformed into a qualified function call
2112 using (*this) as the postfix-expression to the left of the
2113 . operator.... [Otherwise] a contrived object of type T
2114 becomes the implied object argument.
2116 In this situation:
2118 struct A { void f(); };
2119 struct B : public A {};
2120 struct C : public A { void g() { B::f(); }};
2122 "the class of that member function" refers to `A'. But 11.2
2123 [class.access.base] says that we need to convert 'this' to B* as
2124 part of the access, so we pass 'B' to maybe_dummy_object. */
2126 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2127 NULL);
2129 if (processing_template_decl)
2131 if (type_dependent_expression_p (object))
2133 tree ret = build_nt_call_vec (orig_fn, orig_args);
2134 release_tree_vector (orig_args);
2135 return ret;
2137 object = build_non_dependent_expr (object);
2140 result = build_new_method_call (object, fn, args, NULL_TREE,
2141 (disallow_virtual
2142 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2143 : LOOKUP_NORMAL),
2144 /*fn_p=*/NULL,
2145 complain);
2147 else if (is_overloaded_fn (fn))
2149 /* If the function is an overloaded builtin, resolve it. */
2150 if (TREE_CODE (fn) == FUNCTION_DECL
2151 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2152 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2153 result = resolve_overloaded_builtin (input_location, fn, *args);
2155 if (!result)
2156 /* A call to a namespace-scope function. */
2157 result = build_new_function_call (fn, args, koenig_p, complain);
2159 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2161 if (!VEC_empty (tree, *args))
2162 error ("arguments to destructor are not allowed");
2163 /* Mark the pseudo-destructor call as having side-effects so
2164 that we do not issue warnings about its use. */
2165 result = build1 (NOP_EXPR,
2166 void_type_node,
2167 TREE_OPERAND (fn, 0));
2168 TREE_SIDE_EFFECTS (result) = 1;
2170 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2171 /* If the "function" is really an object of class type, it might
2172 have an overloaded `operator ()'. */
2173 result = build_op_call (fn, args, complain);
2175 if (!result)
2176 /* A call where the function is unknown. */
2177 result = cp_build_function_call_vec (fn, args, complain);
2179 if (processing_template_decl && result != error_mark_node)
2181 if (TREE_CODE (result) == INDIRECT_REF)
2182 result = TREE_OPERAND (result, 0);
2183 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2184 SET_EXPR_LOCATION (result, input_location);
2185 KOENIG_LOOKUP_P (result) = koenig_p;
2186 release_tree_vector (orig_args);
2187 result = convert_from_reference (result);
2190 if (koenig_p)
2192 /* Free garbage OVERLOADs from arg-dependent lookup. */
2193 tree next = NULL_TREE;
2194 for (fn = orig_fn;
2195 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2196 fn = next)
2198 if (processing_template_decl)
2199 /* In a template, we'll re-use them at instantiation time. */
2200 OVL_ARG_DEPENDENT (fn) = false;
2201 else
2203 next = OVL_CHAIN (fn);
2204 ggc_free (fn);
2209 return result;
2212 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2213 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2214 POSTDECREMENT_EXPR.) */
2216 tree
2217 finish_increment_expr (tree expr, enum tree_code code)
2219 return build_x_unary_op (code, expr, tf_warning_or_error);
2222 /* Finish a use of `this'. Returns an expression for `this'. */
2224 tree
2225 finish_this_expr (void)
2227 tree result;
2229 if (current_class_ptr)
2231 tree type = TREE_TYPE (current_class_ref);
2233 /* In a lambda expression, 'this' refers to the captured 'this'. */
2234 if (LAMBDA_TYPE_P (type))
2235 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type));
2236 else
2237 result = current_class_ptr;
2240 else if (current_function_decl
2241 && DECL_STATIC_FUNCTION_P (current_function_decl))
2243 error ("%<this%> is unavailable for static member functions");
2244 result = error_mark_node;
2246 else
2248 if (current_function_decl)
2249 error ("invalid use of %<this%> in non-member function");
2250 else
2251 error ("invalid use of %<this%> at top level");
2252 result = error_mark_node;
2255 return result;
2258 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2259 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2260 the TYPE for the type given. If SCOPE is non-NULL, the expression
2261 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2263 tree
2264 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
2266 if (object == error_mark_node || destructor == error_mark_node)
2267 return error_mark_node;
2269 gcc_assert (TYPE_P (destructor));
2271 if (!processing_template_decl)
2273 if (scope == error_mark_node)
2275 error ("invalid qualifying scope in pseudo-destructor name");
2276 return error_mark_node;
2278 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2280 error ("qualified type %qT does not match destructor name ~%qT",
2281 scope, destructor);
2282 return error_mark_node;
2286 /* [expr.pseudo] says both:
2288 The type designated by the pseudo-destructor-name shall be
2289 the same as the object type.
2291 and:
2293 The cv-unqualified versions of the object type and of the
2294 type designated by the pseudo-destructor-name shall be the
2295 same type.
2297 We implement the more generous second sentence, since that is
2298 what most other compilers do. */
2299 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2300 destructor))
2302 error ("%qE is not of type %qT", object, destructor);
2303 return error_mark_node;
2307 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
2310 /* Finish an expression of the form CODE EXPR. */
2312 tree
2313 finish_unary_op_expr (enum tree_code code, tree expr)
2315 tree result = build_x_unary_op (code, expr, tf_warning_or_error);
2316 if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2317 overflow_warning (input_location, result);
2319 return result;
2322 /* Finish a compound-literal expression. TYPE is the type to which
2323 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2325 tree
2326 finish_compound_literal (tree type, tree compound_literal,
2327 tsubst_flags_t complain)
2329 if (type == error_mark_node)
2330 return error_mark_node;
2332 if (TREE_CODE (type) == REFERENCE_TYPE)
2334 compound_literal
2335 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2336 complain);
2337 return cp_build_c_cast (type, compound_literal, complain);
2340 if (!TYPE_OBJ_P (type))
2342 if (complain & tf_error)
2343 error ("compound literal of non-object type %qT", type);
2344 return error_mark_node;
2347 if (processing_template_decl)
2349 TREE_TYPE (compound_literal) = type;
2350 /* Mark the expression as a compound literal. */
2351 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2352 return compound_literal;
2355 type = complete_type (type);
2357 if (TYPE_NON_AGGREGATE_CLASS (type))
2359 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2360 everywhere that deals with function arguments would be a pain, so
2361 just wrap it in a TREE_LIST. The parser set a flag so we know
2362 that it came from T{} rather than T({}). */
2363 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2364 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2365 return build_functional_cast (type, compound_literal, complain);
2368 if (TREE_CODE (type) == ARRAY_TYPE
2369 && check_array_initializer (NULL_TREE, type, compound_literal))
2370 return error_mark_node;
2371 compound_literal = reshape_init (type, compound_literal, complain);
2372 if (cxx_dialect >= cxx0x && SCALAR_TYPE_P (type)
2373 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal))
2374 check_narrowing (type, compound_literal);
2375 if (TREE_CODE (type) == ARRAY_TYPE
2376 && TYPE_DOMAIN (type) == NULL_TREE)
2378 cp_complete_array_type_or_error (&type, compound_literal,
2379 false, complain);
2380 if (type == error_mark_node)
2381 return error_mark_node;
2383 compound_literal = digest_init (type, compound_literal, complain);
2384 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2385 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2386 /* Put static/constant array temporaries in static variables, but always
2387 represent class temporaries with TARGET_EXPR so we elide copies. */
2388 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2389 && TREE_CODE (type) == ARRAY_TYPE
2390 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2391 && initializer_constant_valid_p (compound_literal, type))
2393 tree decl = create_temporary_var (type);
2394 DECL_INITIAL (decl) = compound_literal;
2395 TREE_STATIC (decl) = 1;
2396 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2398 /* 5.19 says that a constant expression can include an
2399 lvalue-rvalue conversion applied to "a glvalue of literal type
2400 that refers to a non-volatile temporary object initialized
2401 with a constant expression". Rather than try to communicate
2402 that this VAR_DECL is a temporary, just mark it constexpr. */
2403 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2404 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2405 TREE_CONSTANT (decl) = true;
2407 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2408 decl = pushdecl_top_level (decl);
2409 DECL_NAME (decl) = make_anon_name ();
2410 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2411 return decl;
2413 else
2414 return get_target_expr_sfinae (compound_literal, complain);
2417 /* Return the declaration for the function-name variable indicated by
2418 ID. */
2420 tree
2421 finish_fname (tree id)
2423 tree decl;
2425 decl = fname_decl (input_location, C_RID_CODE (id), id);
2426 if (processing_template_decl && current_function_decl)
2427 decl = DECL_NAME (decl);
2428 return decl;
2431 /* Finish a translation unit. */
2433 void
2434 finish_translation_unit (void)
2436 /* In case there were missing closebraces,
2437 get us back to the global binding level. */
2438 pop_everything ();
2439 while (current_namespace != global_namespace)
2440 pop_namespace ();
2442 /* Do file scope __FUNCTION__ et al. */
2443 finish_fname_decls ();
2446 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2447 Returns the parameter. */
2449 tree
2450 finish_template_type_parm (tree aggr, tree identifier)
2452 if (aggr != class_type_node)
2454 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2455 aggr = class_type_node;
2458 return build_tree_list (aggr, identifier);
2461 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2462 Returns the parameter. */
2464 tree
2465 finish_template_template_parm (tree aggr, tree identifier)
2467 tree decl = build_decl (input_location,
2468 TYPE_DECL, identifier, NULL_TREE);
2469 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2470 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2471 DECL_TEMPLATE_RESULT (tmpl) = decl;
2472 DECL_ARTIFICIAL (decl) = 1;
2473 end_template_decl ();
2475 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2477 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2478 /*is_primary=*/true, /*is_partial=*/false,
2479 /*is_friend=*/0);
2481 return finish_template_type_parm (aggr, tmpl);
2484 /* ARGUMENT is the default-argument value for a template template
2485 parameter. If ARGUMENT is invalid, issue error messages and return
2486 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2488 tree
2489 check_template_template_default_arg (tree argument)
2491 if (TREE_CODE (argument) != TEMPLATE_DECL
2492 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2493 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2495 if (TREE_CODE (argument) == TYPE_DECL)
2496 error ("invalid use of type %qT as a default value for a template "
2497 "template-parameter", TREE_TYPE (argument));
2498 else
2499 error ("invalid default argument for a template template parameter");
2500 return error_mark_node;
2503 return argument;
2506 /* Begin a class definition, as indicated by T. */
2508 tree
2509 begin_class_definition (tree t, tree attributes)
2511 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2512 return error_mark_node;
2514 if (processing_template_parmlist)
2516 error ("definition of %q#T inside template parameter list", t);
2517 return error_mark_node;
2520 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2521 are passed the same as decimal scalar types. */
2522 if (TREE_CODE (t) == RECORD_TYPE
2523 && !processing_template_decl)
2525 tree ns = TYPE_CONTEXT (t);
2526 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2527 && DECL_CONTEXT (ns) == std_node
2528 && DECL_NAME (ns)
2529 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2531 const char *n = TYPE_NAME_STRING (t);
2532 if ((strcmp (n, "decimal32") == 0)
2533 || (strcmp (n, "decimal64") == 0)
2534 || (strcmp (n, "decimal128") == 0))
2535 TYPE_TRANSPARENT_AGGR (t) = 1;
2539 /* A non-implicit typename comes from code like:
2541 template <typename T> struct A {
2542 template <typename U> struct A<T>::B ...
2544 This is erroneous. */
2545 else if (TREE_CODE (t) == TYPENAME_TYPE)
2547 error ("invalid definition of qualified type %qT", t);
2548 t = error_mark_node;
2551 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2553 t = make_class_type (RECORD_TYPE);
2554 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2557 if (TYPE_BEING_DEFINED (t))
2559 t = make_class_type (TREE_CODE (t));
2560 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2562 maybe_process_partial_specialization (t);
2563 pushclass (t);
2564 TYPE_BEING_DEFINED (t) = 1;
2566 cplus_decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
2567 fixup_attribute_variants (t);
2569 if (flag_pack_struct)
2571 tree v;
2572 TYPE_PACKED (t) = 1;
2573 /* Even though the type is being defined for the first time
2574 here, there might have been a forward declaration, so there
2575 might be cv-qualified variants of T. */
2576 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2577 TYPE_PACKED (v) = 1;
2579 /* Reset the interface data, at the earliest possible
2580 moment, as it might have been set via a class foo;
2581 before. */
2582 if (! TYPE_ANONYMOUS_P (t))
2584 struct c_fileinfo *finfo = get_fileinfo (input_filename);
2585 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2586 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2587 (t, finfo->interface_unknown);
2589 reset_specialization();
2591 /* Make a declaration for this class in its own scope. */
2592 build_self_reference ();
2594 return t;
2597 /* Finish the member declaration given by DECL. */
2599 void
2600 finish_member_declaration (tree decl)
2602 if (decl == error_mark_node || decl == NULL_TREE)
2603 return;
2605 if (decl == void_type_node)
2606 /* The COMPONENT was a friend, not a member, and so there's
2607 nothing for us to do. */
2608 return;
2610 /* We should see only one DECL at a time. */
2611 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2613 /* Set up access control for DECL. */
2614 TREE_PRIVATE (decl)
2615 = (current_access_specifier == access_private_node);
2616 TREE_PROTECTED (decl)
2617 = (current_access_specifier == access_protected_node);
2618 if (TREE_CODE (decl) == TEMPLATE_DECL)
2620 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2621 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2624 /* Mark the DECL as a member of the current class. */
2625 DECL_CONTEXT (decl) = current_class_type;
2627 /* Check for bare parameter packs in the member variable declaration. */
2628 if (TREE_CODE (decl) == FIELD_DECL)
2630 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2631 TREE_TYPE (decl) = error_mark_node;
2632 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2633 DECL_ATTRIBUTES (decl) = NULL_TREE;
2636 /* [dcl.link]
2638 A C language linkage is ignored for the names of class members
2639 and the member function type of class member functions. */
2640 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2641 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2643 /* Put functions on the TYPE_METHODS list and everything else on the
2644 TYPE_FIELDS list. Note that these are built up in reverse order.
2645 We reverse them (to obtain declaration order) in finish_struct. */
2646 if (TREE_CODE (decl) == FUNCTION_DECL
2647 || DECL_FUNCTION_TEMPLATE_P (decl))
2649 /* We also need to add this function to the
2650 CLASSTYPE_METHOD_VEC. */
2651 if (add_method (current_class_type, decl, NULL_TREE))
2653 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2654 TYPE_METHODS (current_class_type) = decl;
2656 maybe_add_class_template_decl_list (current_class_type, decl,
2657 /*friend_p=*/0);
2660 /* Enter the DECL into the scope of the class. */
2661 else if ((TREE_CODE (decl) == USING_DECL && !DECL_DEPENDENT_P (decl))
2662 || pushdecl_class_level (decl))
2664 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2665 go at the beginning. The reason is that lookup_field_1
2666 searches the list in order, and we want a field name to
2667 override a type name so that the "struct stat hack" will
2668 work. In particular:
2670 struct S { enum E { }; int E } s;
2671 s.E = 3;
2673 is valid. In addition, the FIELD_DECLs must be maintained in
2674 declaration order so that class layout works as expected.
2675 However, we don't need that order until class layout, so we
2676 save a little time by putting FIELD_DECLs on in reverse order
2677 here, and then reversing them in finish_struct_1. (We could
2678 also keep a pointer to the correct insertion points in the
2679 list.) */
2681 if (TREE_CODE (decl) == TYPE_DECL)
2682 TYPE_FIELDS (current_class_type)
2683 = chainon (TYPE_FIELDS (current_class_type), decl);
2684 else
2686 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2687 TYPE_FIELDS (current_class_type) = decl;
2690 maybe_add_class_template_decl_list (current_class_type, decl,
2691 /*friend_p=*/0);
2694 if (pch_file)
2695 note_decl_for_pch (decl);
2698 /* DECL has been declared while we are building a PCH file. Perform
2699 actions that we might normally undertake lazily, but which can be
2700 performed now so that they do not have to be performed in
2701 translation units which include the PCH file. */
2703 void
2704 note_decl_for_pch (tree decl)
2706 gcc_assert (pch_file);
2708 /* There's a good chance that we'll have to mangle names at some
2709 point, even if only for emission in debugging information. */
2710 if ((TREE_CODE (decl) == VAR_DECL
2711 || TREE_CODE (decl) == FUNCTION_DECL)
2712 && !processing_template_decl)
2713 mangle_decl (decl);
2716 /* Finish processing a complete template declaration. The PARMS are
2717 the template parameters. */
2719 void
2720 finish_template_decl (tree parms)
2722 if (parms)
2723 end_template_decl ();
2724 else
2725 end_specialization ();
2728 /* Finish processing a template-id (which names a type) of the form
2729 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2730 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2731 the scope of template-id indicated. */
2733 tree
2734 finish_template_type (tree name, tree args, int entering_scope)
2736 tree decl;
2738 decl = lookup_template_class (name, args,
2739 NULL_TREE, NULL_TREE, entering_scope,
2740 tf_warning_or_error | tf_user);
2741 if (decl != error_mark_node)
2742 decl = TYPE_STUB_DECL (decl);
2744 return decl;
2747 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2748 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2749 BASE_CLASS, or NULL_TREE if an error occurred. The
2750 ACCESS_SPECIFIER is one of
2751 access_{default,public,protected_private}_node. For a virtual base
2752 we set TREE_TYPE. */
2754 tree
2755 finish_base_specifier (tree base, tree access, bool virtual_p)
2757 tree result;
2759 if (base == error_mark_node)
2761 error ("invalid base-class specification");
2762 result = NULL_TREE;
2764 else if (! MAYBE_CLASS_TYPE_P (base))
2766 error ("%qT is not a class type", base);
2767 result = NULL_TREE;
2769 else
2771 if (cp_type_quals (base) != 0)
2773 /* DR 484: Can a base-specifier name a cv-qualified
2774 class type? */
2775 base = TYPE_MAIN_VARIANT (base);
2777 result = build_tree_list (access, base);
2778 if (virtual_p)
2779 TREE_TYPE (result) = integer_type_node;
2782 return result;
2785 /* If FNS is a member function, a set of member functions, or a
2786 template-id referring to one or more member functions, return a
2787 BASELINK for FNS, incorporating the current access context.
2788 Otherwise, return FNS unchanged. */
2790 tree
2791 baselink_for_fns (tree fns)
2793 tree fn;
2794 tree cl;
2796 if (BASELINK_P (fns)
2797 || error_operand_p (fns))
2798 return fns;
2800 fn = fns;
2801 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
2802 fn = TREE_OPERAND (fn, 0);
2803 fn = get_first_fn (fn);
2804 if (!DECL_FUNCTION_MEMBER_P (fn))
2805 return fns;
2807 cl = currently_open_derived_class (DECL_CONTEXT (fn));
2808 if (!cl)
2809 cl = DECL_CONTEXT (fn);
2810 cl = TYPE_BINFO (cl);
2811 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
2814 /* Returns true iff DECL is an automatic variable from a function outside
2815 the current one. */
2817 static bool
2818 outer_automatic_var_p (tree decl)
2820 return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2821 && DECL_FUNCTION_SCOPE_P (decl)
2822 && !TREE_STATIC (decl)
2823 && DECL_CONTEXT (decl) != current_function_decl);
2826 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2827 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2828 if non-NULL, is the type or namespace used to explicitly qualify
2829 ID_EXPRESSION. DECL is the entity to which that name has been
2830 resolved.
2832 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2833 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2834 be set to true if this expression isn't permitted in a
2835 constant-expression, but it is otherwise not set by this function.
2836 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2837 constant-expression, but a non-constant expression is also
2838 permissible.
2840 DONE is true if this expression is a complete postfix-expression;
2841 it is false if this expression is followed by '->', '[', '(', etc.
2842 ADDRESS_P is true iff this expression is the operand of '&'.
2843 TEMPLATE_P is true iff the qualified-id was of the form
2844 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
2845 appears as a template argument.
2847 If an error occurs, and it is the kind of error that might cause
2848 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2849 is the caller's responsibility to issue the message. *ERROR_MSG
2850 will be a string with static storage duration, so the caller need
2851 not "free" it.
2853 Return an expression for the entity, after issuing appropriate
2854 diagnostics. This function is also responsible for transforming a
2855 reference to a non-static member into a COMPONENT_REF that makes
2856 the use of "this" explicit.
2858 Upon return, *IDK will be filled in appropriately. */
2859 tree
2860 finish_id_expression (tree id_expression,
2861 tree decl,
2862 tree scope,
2863 cp_id_kind *idk,
2864 bool integral_constant_expression_p,
2865 bool allow_non_integral_constant_expression_p,
2866 bool *non_integral_constant_expression_p,
2867 bool template_p,
2868 bool done,
2869 bool address_p,
2870 bool template_arg_p,
2871 const char **error_msg,
2872 location_t location)
2874 /* Initialize the output parameters. */
2875 *idk = CP_ID_KIND_NONE;
2876 *error_msg = NULL;
2878 if (id_expression == error_mark_node)
2879 return error_mark_node;
2880 /* If we have a template-id, then no further lookup is
2881 required. If the template-id was for a template-class, we
2882 will sometimes have a TYPE_DECL at this point. */
2883 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2884 || TREE_CODE (decl) == TYPE_DECL)
2886 /* Look up the name. */
2887 else
2889 if (decl == error_mark_node)
2891 /* Name lookup failed. */
2892 if (scope
2893 && (!TYPE_P (scope)
2894 || (!dependent_type_p (scope)
2895 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2896 && IDENTIFIER_TYPENAME_P (id_expression)
2897 && dependent_type_p (TREE_TYPE (id_expression))))))
2899 /* If the qualifying type is non-dependent (and the name
2900 does not name a conversion operator to a dependent
2901 type), issue an error. */
2902 qualified_name_lookup_error (scope, id_expression, decl, location);
2903 return error_mark_node;
2905 else if (!scope)
2907 /* It may be resolved via Koenig lookup. */
2908 *idk = CP_ID_KIND_UNQUALIFIED;
2909 return id_expression;
2911 else
2912 decl = id_expression;
2914 /* If DECL is a variable that would be out of scope under
2915 ANSI/ISO rules, but in scope in the ARM, name lookup
2916 will succeed. Issue a diagnostic here. */
2917 else
2918 decl = check_for_out_of_scope_variable (decl);
2920 /* Remember that the name was used in the definition of
2921 the current class so that we can check later to see if
2922 the meaning would have been different after the class
2923 was entirely defined. */
2924 if (!scope && decl != error_mark_node
2925 && TREE_CODE (id_expression) == IDENTIFIER_NODE)
2926 maybe_note_name_used_in_class (id_expression, decl);
2928 /* Disallow uses of local variables from containing functions, except
2929 within lambda-expressions. */
2930 if (outer_automatic_var_p (decl)
2931 /* It's not a use (3.2) if we're in an unevaluated context. */
2932 && !cp_unevaluated_operand)
2934 tree context = DECL_CONTEXT (decl);
2935 tree containing_function = current_function_decl;
2936 tree lambda_stack = NULL_TREE;
2937 tree lambda_expr = NULL_TREE;
2938 tree initializer = convert_from_reference (decl);
2940 /* Mark it as used now even if the use is ill-formed. */
2941 mark_used (decl);
2943 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
2944 support for an approach in which a reference to a local
2945 [constant] automatic variable in a nested class or lambda body
2946 would enter the expression as an rvalue, which would reduce
2947 the complexity of the problem"
2949 FIXME update for final resolution of core issue 696. */
2950 if (decl_constant_var_p (decl))
2951 return integral_constant_value (decl);
2953 /* If we are in a lambda function, we can move out until we hit
2954 1. the context,
2955 2. a non-lambda function, or
2956 3. a non-default capturing lambda function. */
2957 while (context != containing_function
2958 && LAMBDA_FUNCTION_P (containing_function))
2960 lambda_expr = CLASSTYPE_LAMBDA_EXPR
2961 (DECL_CONTEXT (containing_function));
2963 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
2964 == CPLD_NONE)
2965 break;
2967 lambda_stack = tree_cons (NULL_TREE,
2968 lambda_expr,
2969 lambda_stack);
2971 containing_function
2972 = decl_function_context (containing_function);
2975 if (context == containing_function)
2977 decl = add_default_capture (lambda_stack,
2978 /*id=*/DECL_NAME (decl),
2979 initializer);
2981 else if (lambda_expr)
2983 error ("%qD is not captured", decl);
2984 return error_mark_node;
2986 else
2988 error (TREE_CODE (decl) == VAR_DECL
2989 ? G_("use of %<auto%> variable from containing function")
2990 : G_("use of parameter from containing function"));
2991 error (" %q+#D declared here", decl);
2992 return error_mark_node;
2996 /* Also disallow uses of function parameters outside the function
2997 body, except inside an unevaluated context (i.e. decltype). */
2998 if (TREE_CODE (decl) == PARM_DECL
2999 && DECL_CONTEXT (decl) == NULL_TREE
3000 && !cp_unevaluated_operand)
3002 error ("use of parameter %qD outside function body", decl);
3003 return error_mark_node;
3007 /* If we didn't find anything, or what we found was a type,
3008 then this wasn't really an id-expression. */
3009 if (TREE_CODE (decl) == TEMPLATE_DECL
3010 && !DECL_FUNCTION_TEMPLATE_P (decl))
3012 *error_msg = "missing template arguments";
3013 return error_mark_node;
3015 else if (TREE_CODE (decl) == TYPE_DECL
3016 || TREE_CODE (decl) == NAMESPACE_DECL)
3018 *error_msg = "expected primary-expression";
3019 return error_mark_node;
3022 /* If the name resolved to a template parameter, there is no
3023 need to look it up again later. */
3024 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3025 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3027 tree r;
3029 *idk = CP_ID_KIND_NONE;
3030 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3031 decl = TEMPLATE_PARM_DECL (decl);
3032 r = convert_from_reference (DECL_INITIAL (decl));
3034 if (integral_constant_expression_p
3035 && !dependent_type_p (TREE_TYPE (decl))
3036 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3038 if (!allow_non_integral_constant_expression_p)
3039 error ("template parameter %qD of type %qT is not allowed in "
3040 "an integral constant expression because it is not of "
3041 "integral or enumeration type", decl, TREE_TYPE (decl));
3042 *non_integral_constant_expression_p = true;
3044 return r;
3046 /* Similarly, we resolve enumeration constants to their
3047 underlying values. */
3048 else if (TREE_CODE (decl) == CONST_DECL)
3050 *idk = CP_ID_KIND_NONE;
3051 if (!processing_template_decl)
3053 used_types_insert (TREE_TYPE (decl));
3054 return DECL_INITIAL (decl);
3056 return decl;
3058 else
3060 bool dependent_p;
3062 /* If the declaration was explicitly qualified indicate
3063 that. The semantics of `A::f(3)' are different than
3064 `f(3)' if `f' is virtual. */
3065 *idk = (scope
3066 ? CP_ID_KIND_QUALIFIED
3067 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3068 ? CP_ID_KIND_TEMPLATE_ID
3069 : CP_ID_KIND_UNQUALIFIED));
3072 /* [temp.dep.expr]
3074 An id-expression is type-dependent if it contains an
3075 identifier that was declared with a dependent type.
3077 The standard is not very specific about an id-expression that
3078 names a set of overloaded functions. What if some of them
3079 have dependent types and some of them do not? Presumably,
3080 such a name should be treated as a dependent name. */
3081 /* Assume the name is not dependent. */
3082 dependent_p = false;
3083 if (!processing_template_decl)
3084 /* No names are dependent outside a template. */
3086 /* A template-id where the name of the template was not resolved
3087 is definitely dependent. */
3088 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3089 && (TREE_CODE (TREE_OPERAND (decl, 0))
3090 == IDENTIFIER_NODE))
3091 dependent_p = true;
3092 /* For anything except an overloaded function, just check its
3093 type. */
3094 else if (!is_overloaded_fn (decl))
3095 dependent_p
3096 = dependent_type_p (TREE_TYPE (decl));
3097 /* For a set of overloaded functions, check each of the
3098 functions. */
3099 else
3101 tree fns = decl;
3103 if (BASELINK_P (fns))
3104 fns = BASELINK_FUNCTIONS (fns);
3106 /* For a template-id, check to see if the template
3107 arguments are dependent. */
3108 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3110 tree args = TREE_OPERAND (fns, 1);
3111 dependent_p = any_dependent_template_arguments_p (args);
3112 /* The functions are those referred to by the
3113 template-id. */
3114 fns = TREE_OPERAND (fns, 0);
3117 /* If there are no dependent template arguments, go through
3118 the overloaded functions. */
3119 while (fns && !dependent_p)
3121 tree fn = OVL_CURRENT (fns);
3123 /* Member functions of dependent classes are
3124 dependent. */
3125 if (TREE_CODE (fn) == FUNCTION_DECL
3126 && type_dependent_expression_p (fn))
3127 dependent_p = true;
3128 else if (TREE_CODE (fn) == TEMPLATE_DECL
3129 && dependent_template_p (fn))
3130 dependent_p = true;
3132 fns = OVL_NEXT (fns);
3136 /* If the name was dependent on a template parameter, we will
3137 resolve the name at instantiation time. */
3138 if (dependent_p)
3140 /* Create a SCOPE_REF for qualified names, if the scope is
3141 dependent. */
3142 if (scope)
3144 if (TYPE_P (scope))
3146 if (address_p && done)
3147 decl = finish_qualified_id_expr (scope, decl,
3148 done, address_p,
3149 template_p,
3150 template_arg_p);
3151 else
3153 tree type = NULL_TREE;
3154 if (DECL_P (decl) && !dependent_scope_p (scope))
3155 type = TREE_TYPE (decl);
3156 decl = build_qualified_name (type,
3157 scope,
3158 id_expression,
3159 template_p);
3162 if (TREE_TYPE (decl))
3163 decl = convert_from_reference (decl);
3164 return decl;
3166 /* A TEMPLATE_ID already contains all the information we
3167 need. */
3168 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3169 return id_expression;
3170 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3171 /* If we found a variable, then name lookup during the
3172 instantiation will always resolve to the same VAR_DECL
3173 (or an instantiation thereof). */
3174 if (TREE_CODE (decl) == VAR_DECL
3175 || TREE_CODE (decl) == PARM_DECL)
3177 mark_used (decl);
3178 return convert_from_reference (decl);
3180 /* The same is true for FIELD_DECL, but we also need to
3181 make sure that the syntax is correct. */
3182 else if (TREE_CODE (decl) == FIELD_DECL)
3184 /* Since SCOPE is NULL here, this is an unqualified name.
3185 Access checking has been performed during name lookup
3186 already. Turn off checking to avoid duplicate errors. */
3187 push_deferring_access_checks (dk_no_check);
3188 decl = finish_non_static_data_member
3189 (decl, NULL_TREE,
3190 /*qualifying_scope=*/NULL_TREE);
3191 pop_deferring_access_checks ();
3192 return decl;
3194 return id_expression;
3197 if (TREE_CODE (decl) == NAMESPACE_DECL)
3199 error ("use of namespace %qD as expression", decl);
3200 return error_mark_node;
3202 else if (DECL_CLASS_TEMPLATE_P (decl))
3204 error ("use of class template %qT as expression", decl);
3205 return error_mark_node;
3207 else if (TREE_CODE (decl) == TREE_LIST)
3209 /* Ambiguous reference to base members. */
3210 error ("request for member %qD is ambiguous in "
3211 "multiple inheritance lattice", id_expression);
3212 print_candidates (decl);
3213 return error_mark_node;
3216 /* Mark variable-like entities as used. Functions are similarly
3217 marked either below or after overload resolution. */
3218 if (TREE_CODE (decl) == VAR_DECL
3219 || TREE_CODE (decl) == PARM_DECL
3220 || TREE_CODE (decl) == RESULT_DECL)
3221 mark_used (decl);
3223 /* Only certain kinds of names are allowed in constant
3224 expression. Enumerators and template parameters have already
3225 been handled above. */
3226 if (! error_operand_p (decl)
3227 && integral_constant_expression_p
3228 && ! decl_constant_var_p (decl)
3229 && ! builtin_valid_in_constant_expr_p (decl))
3231 if (!allow_non_integral_constant_expression_p)
3233 error ("%qD cannot appear in a constant-expression", decl);
3234 return error_mark_node;
3236 *non_integral_constant_expression_p = true;
3239 if (scope)
3241 decl = (adjust_result_of_qualified_name_lookup
3242 (decl, scope, current_nonlambda_class_type()));
3244 if (TREE_CODE (decl) == FUNCTION_DECL)
3245 mark_used (decl);
3247 if (TREE_CODE (decl) == FIELD_DECL || BASELINK_P (decl))
3248 decl = finish_qualified_id_expr (scope,
3249 decl,
3250 done,
3251 address_p,
3252 template_p,
3253 template_arg_p);
3254 else
3256 tree r = convert_from_reference (decl);
3258 /* In a template, return a SCOPE_REF for most qualified-ids
3259 so that we can check access at instantiation time. But if
3260 we're looking at a member of the current instantiation, we
3261 know we have access and building up the SCOPE_REF confuses
3262 non-type template argument handling. */
3263 if (processing_template_decl && TYPE_P (scope)
3264 && !currently_open_class (scope))
3265 r = build_qualified_name (TREE_TYPE (r),
3266 scope, decl,
3267 template_p);
3268 decl = r;
3271 else if (TREE_CODE (decl) == FIELD_DECL)
3273 /* Since SCOPE is NULL here, this is an unqualified name.
3274 Access checking has been performed during name lookup
3275 already. Turn off checking to avoid duplicate errors. */
3276 push_deferring_access_checks (dk_no_check);
3277 decl = finish_non_static_data_member (decl, NULL_TREE,
3278 /*qualifying_scope=*/NULL_TREE);
3279 pop_deferring_access_checks ();
3281 else if (is_overloaded_fn (decl))
3283 tree first_fn;
3285 first_fn = get_first_fn (decl);
3286 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3287 first_fn = DECL_TEMPLATE_RESULT (first_fn);
3289 if (!really_overloaded_fn (decl))
3290 mark_used (first_fn);
3292 if (!template_arg_p
3293 && TREE_CODE (first_fn) == FUNCTION_DECL
3294 && DECL_FUNCTION_MEMBER_P (first_fn)
3295 && !shared_member_p (decl))
3297 /* A set of member functions. */
3298 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3299 return finish_class_member_access_expr (decl, id_expression,
3300 /*template_p=*/false,
3301 tf_warning_or_error);
3304 decl = baselink_for_fns (decl);
3306 else
3308 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3309 && DECL_CLASS_SCOPE_P (decl))
3311 tree context = context_for_name_lookup (decl);
3312 if (context != current_class_type)
3314 tree path = currently_open_derived_class (context);
3315 perform_or_defer_access_check (TYPE_BINFO (path),
3316 decl, decl);
3320 decl = convert_from_reference (decl);
3324 if (TREE_DEPRECATED (decl))
3325 warn_deprecated_use (decl, NULL_TREE);
3327 return decl;
3330 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3331 use as a type-specifier. */
3333 tree
3334 finish_typeof (tree expr)
3336 tree type;
3338 if (type_dependent_expression_p (expr))
3340 type = cxx_make_type (TYPEOF_TYPE);
3341 TYPEOF_TYPE_EXPR (type) = expr;
3342 SET_TYPE_STRUCTURAL_EQUALITY (type);
3344 return type;
3347 expr = mark_type_use (expr);
3349 type = unlowered_expr_type (expr);
3351 if (!type || type == unknown_type_node)
3353 error ("type of %qE is unknown", expr);
3354 return error_mark_node;
3357 return type;
3360 /* Implement the __underlying_type keyword: Return the underlying
3361 type of TYPE, suitable for use as a type-specifier. */
3363 tree
3364 finish_underlying_type (tree type)
3366 tree underlying_type;
3368 if (processing_template_decl)
3370 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3371 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3372 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3374 return underlying_type;
3377 complete_type (type);
3379 if (TREE_CODE (type) != ENUMERAL_TYPE)
3381 error ("%qE is not an enumeration type", type);
3382 return error_mark_node;
3385 underlying_type = ENUM_UNDERLYING_TYPE (type);
3387 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3388 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3389 See finish_enum_value_list for details. */
3390 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3391 underlying_type
3392 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3393 TYPE_UNSIGNED (underlying_type));
3395 return underlying_type;
3398 /* Implement the __direct_bases keyword: Return the direct base classes
3399 of type */
3401 tree
3402 calculate_direct_bases (tree type)
3404 VEC(tree, gc) *vector = make_tree_vector();
3405 tree bases_vec = NULL_TREE;
3406 VEC(tree, none) *base_binfos;
3407 tree binfo;
3408 unsigned i;
3410 complete_type (type);
3412 if (!NON_UNION_CLASS_TYPE_P (type))
3413 return make_tree_vec (0);
3415 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3417 /* Virtual bases are initialized first */
3418 for (i = 0; VEC_iterate (tree, base_binfos, i, binfo); i++)
3420 if (BINFO_VIRTUAL_P (binfo))
3422 VEC_safe_push (tree, gc, vector, binfo);
3426 /* Now non-virtuals */
3427 for (i = 0; VEC_iterate (tree, base_binfos, i, binfo); i++)
3429 if (!BINFO_VIRTUAL_P (binfo))
3431 VEC_safe_push (tree, gc, vector, binfo);
3436 bases_vec = make_tree_vec (VEC_length (tree, vector));
3438 for (i = 0; i < VEC_length (tree, vector); ++i)
3440 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE (VEC_index (tree, vector, i));
3442 return bases_vec;
3445 /* Implement the __bases keyword: Return the base classes
3446 of type */
3448 /* Find morally non-virtual base classes by walking binfo hierarchy */
3449 /* Virtual base classes are handled separately in finish_bases */
3451 static tree
3452 dfs_calculate_bases_pre (tree binfo, ATTRIBUTE_UNUSED void *data_)
3454 /* Don't walk bases of virtual bases */
3455 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
3458 static tree
3459 dfs_calculate_bases_post (tree binfo, void *data_)
3461 VEC(tree, gc) **data = (VEC(tree, gc) **) data_;
3462 if (!BINFO_VIRTUAL_P (binfo))
3464 VEC_safe_push (tree, gc, *data, BINFO_TYPE (binfo));
3466 return NULL_TREE;
3469 /* Calculates the morally non-virtual base classes of a class */
3470 static VEC(tree, gc) *
3471 calculate_bases_helper (tree type)
3473 VEC(tree, gc) *vector = make_tree_vector();
3475 /* Now add non-virtual base classes in order of construction */
3476 dfs_walk_all (TYPE_BINFO (type),
3477 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
3478 return vector;
3481 tree
3482 calculate_bases (tree type)
3484 VEC(tree, gc) *vector = make_tree_vector();
3485 tree bases_vec = NULL_TREE;
3486 unsigned i;
3487 VEC(tree, gc) *vbases;
3488 VEC(tree, gc) *nonvbases;
3489 tree binfo;
3491 complete_type (type);
3493 if (!NON_UNION_CLASS_TYPE_P (type))
3494 return make_tree_vec (0);
3496 /* First go through virtual base classes */
3497 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
3498 VEC_iterate (tree, vbases, i, binfo); i++)
3500 VEC(tree, gc) *vbase_bases = calculate_bases_helper (BINFO_TYPE (binfo));
3501 VEC_safe_splice (tree, gc, vector, vbase_bases);
3502 release_tree_vector (vbase_bases);
3505 /* Now for the non-virtual bases */
3506 nonvbases = calculate_bases_helper (type);
3507 VEC_safe_splice (tree, gc, vector, nonvbases);
3508 release_tree_vector (nonvbases);
3510 /* Last element is entire class, so don't copy */
3511 bases_vec = make_tree_vec (VEC_length (tree, vector) - 1);
3513 for (i = 0; i < VEC_length (tree, vector) - 1; ++i)
3515 TREE_VEC_ELT (bases_vec, i) = VEC_index (tree, vector, i);
3517 release_tree_vector (vector);
3518 return bases_vec;
3521 tree
3522 finish_bases (tree type, bool direct)
3524 tree bases = NULL_TREE;
3526 if (!processing_template_decl)
3528 /* Parameter packs can only be used in templates */
3529 error ("Parameter pack __bases only valid in template declaration");
3530 return error_mark_node;
3533 bases = cxx_make_type (BASES);
3534 BASES_TYPE (bases) = type;
3535 BASES_DIRECT (bases) = direct;
3536 SET_TYPE_STRUCTURAL_EQUALITY (bases);
3538 return bases;
3541 /* Perform C++-specific checks for __builtin_offsetof before calling
3542 fold_offsetof. */
3544 tree
3545 finish_offsetof (tree expr)
3547 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3549 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3550 TREE_OPERAND (expr, 2));
3551 return error_mark_node;
3553 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3554 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3555 || TREE_TYPE (expr) == unknown_type_node)
3557 if (TREE_CODE (expr) == COMPONENT_REF
3558 || TREE_CODE (expr) == COMPOUND_EXPR)
3559 expr = TREE_OPERAND (expr, 1);
3560 error ("cannot apply %<offsetof%> to member function %qD", expr);
3561 return error_mark_node;
3563 if (REFERENCE_REF_P (expr))
3564 expr = TREE_OPERAND (expr, 0);
3565 if (TREE_CODE (expr) == COMPONENT_REF)
3567 tree object = TREE_OPERAND (expr, 0);
3568 if (!complete_type_or_else (TREE_TYPE (object), object))
3569 return error_mark_node;
3571 return fold_offsetof (expr, NULL_TREE);
3574 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3575 function is broken out from the above for the benefit of the tree-ssa
3576 project. */
3578 void
3579 simplify_aggr_init_expr (tree *tp)
3581 tree aggr_init_expr = *tp;
3583 /* Form an appropriate CALL_EXPR. */
3584 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3585 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3586 tree type = TREE_TYPE (slot);
3588 tree call_expr;
3589 enum style_t { ctor, arg, pcc } style;
3591 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3592 style = ctor;
3593 #ifdef PCC_STATIC_STRUCT_RETURN
3594 else if (1)
3595 style = pcc;
3596 #endif
3597 else
3599 gcc_assert (TREE_ADDRESSABLE (type));
3600 style = arg;
3603 call_expr = build_call_array_loc (input_location,
3604 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3606 aggr_init_expr_nargs (aggr_init_expr),
3607 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3608 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3610 if (style == ctor)
3612 /* Replace the first argument to the ctor with the address of the
3613 slot. */
3614 cxx_mark_addressable (slot);
3615 CALL_EXPR_ARG (call_expr, 0) =
3616 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3618 else if (style == arg)
3620 /* Just mark it addressable here, and leave the rest to
3621 expand_call{,_inline}. */
3622 cxx_mark_addressable (slot);
3623 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3624 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3626 else if (style == pcc)
3628 /* If we're using the non-reentrant PCC calling convention, then we
3629 need to copy the returned value out of the static buffer into the
3630 SLOT. */
3631 push_deferring_access_checks (dk_no_check);
3632 call_expr = build_aggr_init (slot, call_expr,
3633 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3634 tf_warning_or_error);
3635 pop_deferring_access_checks ();
3636 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3639 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3641 tree init = build_zero_init (type, NULL_TREE,
3642 /*static_storage_p=*/false);
3643 init = build2 (INIT_EXPR, void_type_node, slot, init);
3644 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3645 init, call_expr);
3648 *tp = call_expr;
3651 /* Emit all thunks to FN that should be emitted when FN is emitted. */
3653 void
3654 emit_associated_thunks (tree fn)
3656 /* When we use vcall offsets, we emit thunks with the virtual
3657 functions to which they thunk. The whole point of vcall offsets
3658 is so that you can know statically the entire set of thunks that
3659 will ever be needed for a given virtual function, thereby
3660 enabling you to output all the thunks with the function itself. */
3661 if (DECL_VIRTUAL_P (fn)
3662 /* Do not emit thunks for extern template instantiations. */
3663 && ! DECL_REALLY_EXTERN (fn))
3665 tree thunk;
3667 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
3669 if (!THUNK_ALIAS (thunk))
3671 use_thunk (thunk, /*emit_p=*/1);
3672 if (DECL_RESULT_THUNK_P (thunk))
3674 tree probe;
3676 for (probe = DECL_THUNKS (thunk);
3677 probe; probe = DECL_CHAIN (probe))
3678 use_thunk (probe, /*emit_p=*/1);
3681 else
3682 gcc_assert (!DECL_THUNKS (thunk));
3687 /* Returns true iff FUN is an instantiation of a constexpr function
3688 template. */
3690 static inline bool
3691 is_instantiation_of_constexpr (tree fun)
3693 return (DECL_TEMPLOID_INSTANTIATION (fun)
3694 && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
3695 (DECL_TI_TEMPLATE (fun))));
3698 /* Generate RTL for FN. */
3700 bool
3701 expand_or_defer_fn_1 (tree fn)
3703 /* When the parser calls us after finishing the body of a template
3704 function, we don't really want to expand the body. */
3705 if (processing_template_decl)
3707 /* Normally, collection only occurs in rest_of_compilation. So,
3708 if we don't collect here, we never collect junk generated
3709 during the processing of templates until we hit a
3710 non-template function. It's not safe to do this inside a
3711 nested class, though, as the parser may have local state that
3712 is not a GC root. */
3713 if (!function_depth)
3714 ggc_collect ();
3715 return false;
3718 gcc_assert (DECL_SAVED_TREE (fn));
3720 /* If this is a constructor or destructor body, we have to clone
3721 it. */
3722 if (maybe_clone_body (fn))
3724 /* We don't want to process FN again, so pretend we've written
3725 it out, even though we haven't. */
3726 TREE_ASM_WRITTEN (fn) = 1;
3727 /* If this is an instantiation of a constexpr function, keep
3728 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
3729 if (!is_instantiation_of_constexpr (fn))
3730 DECL_SAVED_TREE (fn) = NULL_TREE;
3731 return false;
3734 /* We make a decision about linkage for these functions at the end
3735 of the compilation. Until that point, we do not want the back
3736 end to output them -- but we do want it to see the bodies of
3737 these functions so that it can inline them as appropriate. */
3738 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3740 if (DECL_INTERFACE_KNOWN (fn))
3741 /* We've already made a decision as to how this function will
3742 be handled. */;
3743 else if (!at_eof)
3745 DECL_EXTERNAL (fn) = 1;
3746 DECL_NOT_REALLY_EXTERN (fn) = 1;
3747 note_vague_linkage_fn (fn);
3748 /* A non-template inline function with external linkage will
3749 always be COMDAT. As we must eventually determine the
3750 linkage of all functions, and as that causes writes to
3751 the data mapped in from the PCH file, it's advantageous
3752 to mark the functions at this point. */
3753 if (!DECL_IMPLICIT_INSTANTIATION (fn))
3755 /* This function must have external linkage, as
3756 otherwise DECL_INTERFACE_KNOWN would have been
3757 set. */
3758 gcc_assert (TREE_PUBLIC (fn));
3759 comdat_linkage (fn);
3760 DECL_INTERFACE_KNOWN (fn) = 1;
3763 else
3764 import_export_decl (fn);
3766 /* If the user wants us to keep all inline functions, then mark
3767 this function as needed so that finish_file will make sure to
3768 output it later. Similarly, all dllexport'd functions must
3769 be emitted; there may be callers in other DLLs. */
3770 if ((flag_keep_inline_functions
3771 && DECL_DECLARED_INLINE_P (fn)
3772 && !DECL_REALLY_EXTERN (fn))
3773 || (flag_keep_inline_dllexport
3774 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn))))
3776 mark_needed (fn);
3777 DECL_EXTERNAL (fn) = 0;
3781 /* There's no reason to do any of the work here if we're only doing
3782 semantic analysis; this code just generates RTL. */
3783 if (flag_syntax_only)
3784 return false;
3786 return true;
3789 void
3790 expand_or_defer_fn (tree fn)
3792 if (expand_or_defer_fn_1 (fn))
3794 function_depth++;
3796 /* Expand or defer, at the whim of the compilation unit manager. */
3797 cgraph_finalize_function (fn, function_depth > 1);
3798 emit_associated_thunks (fn);
3800 function_depth--;
3804 struct nrv_data
3806 tree var;
3807 tree result;
3808 htab_t visited;
3811 /* Helper function for walk_tree, used by finalize_nrv below. */
3813 static tree
3814 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3816 struct nrv_data *dp = (struct nrv_data *)data;
3817 void **slot;
3819 /* No need to walk into types. There wouldn't be any need to walk into
3820 non-statements, except that we have to consider STMT_EXPRs. */
3821 if (TYPE_P (*tp))
3822 *walk_subtrees = 0;
3823 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3824 but differs from using NULL_TREE in that it indicates that we care
3825 about the value of the RESULT_DECL. */
3826 else if (TREE_CODE (*tp) == RETURN_EXPR)
3827 TREE_OPERAND (*tp, 0) = dp->result;
3828 /* Change all cleanups for the NRV to only run when an exception is
3829 thrown. */
3830 else if (TREE_CODE (*tp) == CLEANUP_STMT
3831 && CLEANUP_DECL (*tp) == dp->var)
3832 CLEANUP_EH_ONLY (*tp) = 1;
3833 /* Replace the DECL_EXPR for the NRV with an initialization of the
3834 RESULT_DECL, if needed. */
3835 else if (TREE_CODE (*tp) == DECL_EXPR
3836 && DECL_EXPR_DECL (*tp) == dp->var)
3838 tree init;
3839 if (DECL_INITIAL (dp->var)
3840 && DECL_INITIAL (dp->var) != error_mark_node)
3841 init = build2 (INIT_EXPR, void_type_node, dp->result,
3842 DECL_INITIAL (dp->var));
3843 else
3844 init = build_empty_stmt (EXPR_LOCATION (*tp));
3845 DECL_INITIAL (dp->var) = NULL_TREE;
3846 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
3847 *tp = init;
3849 /* And replace all uses of the NRV with the RESULT_DECL. */
3850 else if (*tp == dp->var)
3851 *tp = dp->result;
3853 /* Avoid walking into the same tree more than once. Unfortunately, we
3854 can't just use walk_tree_without duplicates because it would only call
3855 us for the first occurrence of dp->var in the function body. */
3856 slot = htab_find_slot (dp->visited, *tp, INSERT);
3857 if (*slot)
3858 *walk_subtrees = 0;
3859 else
3860 *slot = *tp;
3862 /* Keep iterating. */
3863 return NULL_TREE;
3866 /* Called from finish_function to implement the named return value
3867 optimization by overriding all the RETURN_EXPRs and pertinent
3868 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3869 RESULT_DECL for the function. */
3871 void
3872 finalize_nrv (tree *tp, tree var, tree result)
3874 struct nrv_data data;
3876 /* Copy name from VAR to RESULT. */
3877 DECL_NAME (result) = DECL_NAME (var);
3878 /* Don't forget that we take its address. */
3879 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3880 /* Finally set DECL_VALUE_EXPR to avoid assigning
3881 a stack slot at -O0 for the original var and debug info
3882 uses RESULT location for VAR. */
3883 SET_DECL_VALUE_EXPR (var, result);
3884 DECL_HAS_VALUE_EXPR_P (var) = 1;
3886 data.var = var;
3887 data.result = result;
3888 data.visited = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3889 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
3890 htab_delete (data.visited);
3893 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
3895 bool
3896 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3897 bool need_copy_ctor, bool need_copy_assignment)
3899 int save_errorcount = errorcount;
3900 tree info, t;
3902 /* Always allocate 3 elements for simplicity. These are the
3903 function decls for the ctor, dtor, and assignment op.
3904 This layout is known to the three lang hooks,
3905 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3906 and cxx_omp_clause_assign_op. */
3907 info = make_tree_vec (3);
3908 CP_OMP_CLAUSE_INFO (c) = info;
3910 if (need_default_ctor || need_copy_ctor)
3912 if (need_default_ctor)
3913 t = get_default_ctor (type);
3914 else
3915 t = get_copy_ctor (type, tf_warning_or_error);
3917 if (t && !trivial_fn_p (t))
3918 TREE_VEC_ELT (info, 0) = t;
3921 if ((need_default_ctor || need_copy_ctor)
3922 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3923 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
3925 if (need_copy_assignment)
3927 t = get_copy_assign (type);
3929 if (t && !trivial_fn_p (t))
3930 TREE_VEC_ELT (info, 2) = t;
3933 return errorcount != save_errorcount;
3936 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
3937 Remove any elements from the list that are invalid. */
3939 tree
3940 finish_omp_clauses (tree clauses)
3942 bitmap_head generic_head, firstprivate_head, lastprivate_head;
3943 tree c, t, *pc = &clauses;
3944 const char *name;
3946 bitmap_obstack_initialize (NULL);
3947 bitmap_initialize (&generic_head, &bitmap_default_obstack);
3948 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
3949 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
3951 for (pc = &clauses, c = clauses; c ; c = *pc)
3953 bool remove = false;
3955 switch (OMP_CLAUSE_CODE (c))
3957 case OMP_CLAUSE_SHARED:
3958 name = "shared";
3959 goto check_dup_generic;
3960 case OMP_CLAUSE_PRIVATE:
3961 name = "private";
3962 goto check_dup_generic;
3963 case OMP_CLAUSE_REDUCTION:
3964 name = "reduction";
3965 goto check_dup_generic;
3966 case OMP_CLAUSE_COPYPRIVATE:
3967 name = "copyprivate";
3968 goto check_dup_generic;
3969 case OMP_CLAUSE_COPYIN:
3970 name = "copyin";
3971 goto check_dup_generic;
3972 check_dup_generic:
3973 t = OMP_CLAUSE_DECL (c);
3974 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3976 if (processing_template_decl)
3977 break;
3978 if (DECL_P (t))
3979 error ("%qD is not a variable in clause %qs", t, name);
3980 else
3981 error ("%qE is not a variable in clause %qs", t, name);
3982 remove = true;
3984 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
3985 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
3986 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
3988 error ("%qD appears more than once in data clauses", t);
3989 remove = true;
3991 else
3992 bitmap_set_bit (&generic_head, DECL_UID (t));
3993 break;
3995 case OMP_CLAUSE_FIRSTPRIVATE:
3996 t = OMP_CLAUSE_DECL (c);
3997 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
3999 if (processing_template_decl)
4000 break;
4001 if (DECL_P (t))
4002 error ("%qD is not a variable in clause %<firstprivate%>", t);
4003 else
4004 error ("%qE is not a variable in clause %<firstprivate%>", t);
4005 remove = true;
4007 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4008 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4010 error ("%qD appears more than once in data clauses", t);
4011 remove = true;
4013 else
4014 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
4015 break;
4017 case OMP_CLAUSE_LASTPRIVATE:
4018 t = OMP_CLAUSE_DECL (c);
4019 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4021 if (processing_template_decl)
4022 break;
4023 if (DECL_P (t))
4024 error ("%qD is not a variable in clause %<lastprivate%>", t);
4025 else
4026 error ("%qE is not a variable in clause %<lastprivate%>", t);
4027 remove = true;
4029 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4030 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
4032 error ("%qD appears more than once in data clauses", t);
4033 remove = true;
4035 else
4036 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
4037 break;
4039 case OMP_CLAUSE_IF:
4040 t = OMP_CLAUSE_IF_EXPR (c);
4041 t = maybe_convert_cond (t);
4042 if (t == error_mark_node)
4043 remove = true;
4044 OMP_CLAUSE_IF_EXPR (c) = t;
4045 break;
4047 case OMP_CLAUSE_FINAL:
4048 t = OMP_CLAUSE_FINAL_EXPR (c);
4049 t = maybe_convert_cond (t);
4050 if (t == error_mark_node)
4051 remove = true;
4052 OMP_CLAUSE_FINAL_EXPR (c) = t;
4053 break;
4055 case OMP_CLAUSE_NUM_THREADS:
4056 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
4057 if (t == error_mark_node)
4058 remove = true;
4059 else if (!type_dependent_expression_p (t)
4060 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4062 error ("num_threads expression must be integral");
4063 remove = true;
4065 break;
4067 case OMP_CLAUSE_SCHEDULE:
4068 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
4069 if (t == NULL)
4071 else if (t == error_mark_node)
4072 remove = true;
4073 else if (!type_dependent_expression_p (t)
4074 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4076 error ("schedule chunk size expression must be integral");
4077 remove = true;
4079 break;
4081 case OMP_CLAUSE_NOWAIT:
4082 case OMP_CLAUSE_ORDERED:
4083 case OMP_CLAUSE_DEFAULT:
4084 case OMP_CLAUSE_UNTIED:
4085 case OMP_CLAUSE_COLLAPSE:
4086 case OMP_CLAUSE_MERGEABLE:
4087 break;
4089 default:
4090 gcc_unreachable ();
4093 if (remove)
4094 *pc = OMP_CLAUSE_CHAIN (c);
4095 else
4096 pc = &OMP_CLAUSE_CHAIN (c);
4099 for (pc = &clauses, c = clauses; c ; c = *pc)
4101 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
4102 bool remove = false;
4103 bool need_complete_non_reference = false;
4104 bool need_default_ctor = false;
4105 bool need_copy_ctor = false;
4106 bool need_copy_assignment = false;
4107 bool need_implicitly_determined = false;
4108 tree type, inner_type;
4110 switch (c_kind)
4112 case OMP_CLAUSE_SHARED:
4113 name = "shared";
4114 need_implicitly_determined = true;
4115 break;
4116 case OMP_CLAUSE_PRIVATE:
4117 name = "private";
4118 need_complete_non_reference = true;
4119 need_default_ctor = true;
4120 need_implicitly_determined = true;
4121 break;
4122 case OMP_CLAUSE_FIRSTPRIVATE:
4123 name = "firstprivate";
4124 need_complete_non_reference = true;
4125 need_copy_ctor = true;
4126 need_implicitly_determined = true;
4127 break;
4128 case OMP_CLAUSE_LASTPRIVATE:
4129 name = "lastprivate";
4130 need_complete_non_reference = true;
4131 need_copy_assignment = true;
4132 need_implicitly_determined = true;
4133 break;
4134 case OMP_CLAUSE_REDUCTION:
4135 name = "reduction";
4136 need_implicitly_determined = true;
4137 break;
4138 case OMP_CLAUSE_COPYPRIVATE:
4139 name = "copyprivate";
4140 need_copy_assignment = true;
4141 break;
4142 case OMP_CLAUSE_COPYIN:
4143 name = "copyin";
4144 need_copy_assignment = true;
4145 break;
4146 default:
4147 pc = &OMP_CLAUSE_CHAIN (c);
4148 continue;
4151 t = OMP_CLAUSE_DECL (c);
4152 if (processing_template_decl
4153 && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4155 pc = &OMP_CLAUSE_CHAIN (c);
4156 continue;
4159 switch (c_kind)
4161 case OMP_CLAUSE_LASTPRIVATE:
4162 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4163 need_default_ctor = true;
4164 break;
4166 case OMP_CLAUSE_REDUCTION:
4167 if (AGGREGATE_TYPE_P (TREE_TYPE (t))
4168 || POINTER_TYPE_P (TREE_TYPE (t)))
4170 error ("%qE has invalid type for %<reduction%>", t);
4171 remove = true;
4173 else if (FLOAT_TYPE_P (TREE_TYPE (t)))
4175 enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
4176 switch (r_code)
4178 case PLUS_EXPR:
4179 case MULT_EXPR:
4180 case MINUS_EXPR:
4181 case MIN_EXPR:
4182 case MAX_EXPR:
4183 break;
4184 default:
4185 error ("%qE has invalid type for %<reduction(%s)%>",
4186 t, operator_name_info[r_code].name);
4187 remove = true;
4190 break;
4192 case OMP_CLAUSE_COPYIN:
4193 if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
4195 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
4196 remove = true;
4198 break;
4200 default:
4201 break;
4204 if (need_complete_non_reference || need_copy_assignment)
4206 t = require_complete_type (t);
4207 if (t == error_mark_node)
4208 remove = true;
4209 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
4210 && need_complete_non_reference)
4212 error ("%qE has reference type for %qs", t, name);
4213 remove = true;
4216 if (need_implicitly_determined)
4218 const char *share_name = NULL;
4220 if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
4221 share_name = "threadprivate";
4222 else switch (cxx_omp_predetermined_sharing (t))
4224 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
4225 break;
4226 case OMP_CLAUSE_DEFAULT_SHARED:
4227 /* const vars may be specified in firstprivate clause. */
4228 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
4229 && cxx_omp_const_qual_no_mutable (t))
4230 break;
4231 share_name = "shared";
4232 break;
4233 case OMP_CLAUSE_DEFAULT_PRIVATE:
4234 share_name = "private";
4235 break;
4236 default:
4237 gcc_unreachable ();
4239 if (share_name)
4241 error ("%qE is predetermined %qs for %qs",
4242 t, share_name, name);
4243 remove = true;
4247 /* We're interested in the base element, not arrays. */
4248 inner_type = type = TREE_TYPE (t);
4249 while (TREE_CODE (inner_type) == ARRAY_TYPE)
4250 inner_type = TREE_TYPE (inner_type);
4252 /* Check for special function availability by building a call to one.
4253 Save the results, because later we won't be in the right context
4254 for making these queries. */
4255 if (CLASS_TYPE_P (inner_type)
4256 && COMPLETE_TYPE_P (inner_type)
4257 && (need_default_ctor || need_copy_ctor || need_copy_assignment)
4258 && !type_dependent_expression_p (t)
4259 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
4260 need_copy_ctor, need_copy_assignment))
4261 remove = true;
4263 if (remove)
4264 *pc = OMP_CLAUSE_CHAIN (c);
4265 else
4266 pc = &OMP_CLAUSE_CHAIN (c);
4269 bitmap_obstack_release (NULL);
4270 return clauses;
4273 /* For all variables in the tree_list VARS, mark them as thread local. */
4275 void
4276 finish_omp_threadprivate (tree vars)
4278 tree t;
4280 /* Mark every variable in VARS to be assigned thread local storage. */
4281 for (t = vars; t; t = TREE_CHAIN (t))
4283 tree v = TREE_PURPOSE (t);
4285 if (error_operand_p (v))
4287 else if (TREE_CODE (v) != VAR_DECL)
4288 error ("%<threadprivate%> %qD is not file, namespace "
4289 "or block scope variable", v);
4290 /* If V had already been marked threadprivate, it doesn't matter
4291 whether it had been used prior to this point. */
4292 else if (TREE_USED (v)
4293 && (DECL_LANG_SPECIFIC (v) == NULL
4294 || !CP_DECL_THREADPRIVATE_P (v)))
4295 error ("%qE declared %<threadprivate%> after first use", v);
4296 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
4297 error ("automatic variable %qE cannot be %<threadprivate%>", v);
4298 else if (! COMPLETE_TYPE_P (TREE_TYPE (v)))
4299 error ("%<threadprivate%> %qE has incomplete type", v);
4300 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
4301 && CP_DECL_CONTEXT (v) != current_class_type)
4302 error ("%<threadprivate%> %qE directive not "
4303 "in %qT definition", v, CP_DECL_CONTEXT (v));
4304 else
4306 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
4307 if (DECL_LANG_SPECIFIC (v) == NULL)
4309 retrofit_lang_decl (v);
4311 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4312 after the allocation of the lang_decl structure. */
4313 if (DECL_DISCRIMINATOR_P (v))
4314 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
4317 if (! DECL_THREAD_LOCAL_P (v))
4319 DECL_TLS_MODEL (v) = decl_default_tls_model (v);
4320 /* If rtl has been already set for this var, call
4321 make_decl_rtl once again, so that encode_section_info
4322 has a chance to look at the new decl flags. */
4323 if (DECL_RTL_SET_P (v))
4324 make_decl_rtl (v);
4326 CP_DECL_THREADPRIVATE_P (v) = 1;
4331 /* Build an OpenMP structured block. */
4333 tree
4334 begin_omp_structured_block (void)
4336 return do_pushlevel (sk_omp);
4339 tree
4340 finish_omp_structured_block (tree block)
4342 return do_poplevel (block);
4345 /* Similarly, except force the retention of the BLOCK. */
4347 tree
4348 begin_omp_parallel (void)
4350 keep_next_level (true);
4351 return begin_omp_structured_block ();
4354 tree
4355 finish_omp_parallel (tree clauses, tree body)
4357 tree stmt;
4359 body = finish_omp_structured_block (body);
4361 stmt = make_node (OMP_PARALLEL);
4362 TREE_TYPE (stmt) = void_type_node;
4363 OMP_PARALLEL_CLAUSES (stmt) = clauses;
4364 OMP_PARALLEL_BODY (stmt) = body;
4366 return add_stmt (stmt);
4369 tree
4370 begin_omp_task (void)
4372 keep_next_level (true);
4373 return begin_omp_structured_block ();
4376 tree
4377 finish_omp_task (tree clauses, tree body)
4379 tree stmt;
4381 body = finish_omp_structured_block (body);
4383 stmt = make_node (OMP_TASK);
4384 TREE_TYPE (stmt) = void_type_node;
4385 OMP_TASK_CLAUSES (stmt) = clauses;
4386 OMP_TASK_BODY (stmt) = body;
4388 return add_stmt (stmt);
4391 /* Helper function for finish_omp_for. Convert Ith random access iterator
4392 into integral iterator. Return FALSE if successful. */
4394 static bool
4395 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
4396 tree condv, tree incrv, tree *body,
4397 tree *pre_body, tree clauses)
4399 tree diff, iter_init, iter_incr = NULL, last;
4400 tree incr_var = NULL, orig_pre_body, orig_body, c;
4401 tree decl = TREE_VEC_ELT (declv, i);
4402 tree init = TREE_VEC_ELT (initv, i);
4403 tree cond = TREE_VEC_ELT (condv, i);
4404 tree incr = TREE_VEC_ELT (incrv, i);
4405 tree iter = decl;
4406 location_t elocus = locus;
4408 if (init && EXPR_HAS_LOCATION (init))
4409 elocus = EXPR_LOCATION (init);
4411 switch (TREE_CODE (cond))
4413 case GT_EXPR:
4414 case GE_EXPR:
4415 case LT_EXPR:
4416 case LE_EXPR:
4417 if (TREE_OPERAND (cond, 1) == iter)
4418 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
4419 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
4420 if (TREE_OPERAND (cond, 0) != iter)
4421 cond = error_mark_node;
4422 else
4424 tree tem = build_x_binary_op (TREE_CODE (cond), iter, ERROR_MARK,
4425 TREE_OPERAND (cond, 1), ERROR_MARK,
4426 NULL, tf_warning_or_error);
4427 if (error_operand_p (tem))
4428 return true;
4430 break;
4431 default:
4432 cond = error_mark_node;
4433 break;
4435 if (cond == error_mark_node)
4437 error_at (elocus, "invalid controlling predicate");
4438 return true;
4440 diff = build_x_binary_op (MINUS_EXPR, TREE_OPERAND (cond, 1),
4441 ERROR_MARK, iter, ERROR_MARK, NULL,
4442 tf_warning_or_error);
4443 if (error_operand_p (diff))
4444 return true;
4445 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
4447 error_at (elocus, "difference between %qE and %qD does not have integer type",
4448 TREE_OPERAND (cond, 1), iter);
4449 return true;
4452 switch (TREE_CODE (incr))
4454 case PREINCREMENT_EXPR:
4455 case PREDECREMENT_EXPR:
4456 case POSTINCREMENT_EXPR:
4457 case POSTDECREMENT_EXPR:
4458 if (TREE_OPERAND (incr, 0) != iter)
4460 incr = error_mark_node;
4461 break;
4463 iter_incr = build_x_unary_op (TREE_CODE (incr), iter,
4464 tf_warning_or_error);
4465 if (error_operand_p (iter_incr))
4466 return true;
4467 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4468 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4469 incr = integer_one_node;
4470 else
4471 incr = integer_minus_one_node;
4472 break;
4473 case MODIFY_EXPR:
4474 if (TREE_OPERAND (incr, 0) != iter)
4475 incr = error_mark_node;
4476 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4477 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4479 tree rhs = TREE_OPERAND (incr, 1);
4480 if (TREE_OPERAND (rhs, 0) == iter)
4482 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4483 != INTEGER_TYPE)
4484 incr = error_mark_node;
4485 else
4487 iter_incr = build_x_modify_expr (iter, TREE_CODE (rhs),
4488 TREE_OPERAND (rhs, 1),
4489 tf_warning_or_error);
4490 if (error_operand_p (iter_incr))
4491 return true;
4492 incr = TREE_OPERAND (rhs, 1);
4493 incr = cp_convert (TREE_TYPE (diff), incr);
4494 if (TREE_CODE (rhs) == MINUS_EXPR)
4496 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4497 incr = fold_if_not_in_template (incr);
4499 if (TREE_CODE (incr) != INTEGER_CST
4500 && (TREE_CODE (incr) != NOP_EXPR
4501 || (TREE_CODE (TREE_OPERAND (incr, 0))
4502 != INTEGER_CST)))
4503 iter_incr = NULL;
4506 else if (TREE_OPERAND (rhs, 1) == iter)
4508 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4509 || TREE_CODE (rhs) != PLUS_EXPR)
4510 incr = error_mark_node;
4511 else
4513 iter_incr = build_x_binary_op (PLUS_EXPR,
4514 TREE_OPERAND (rhs, 0),
4515 ERROR_MARK, iter,
4516 ERROR_MARK, NULL,
4517 tf_warning_or_error);
4518 if (error_operand_p (iter_incr))
4519 return true;
4520 iter_incr = build_x_modify_expr (iter, NOP_EXPR,
4521 iter_incr,
4522 tf_warning_or_error);
4523 if (error_operand_p (iter_incr))
4524 return true;
4525 incr = TREE_OPERAND (rhs, 0);
4526 iter_incr = NULL;
4529 else
4530 incr = error_mark_node;
4532 else
4533 incr = error_mark_node;
4534 break;
4535 default:
4536 incr = error_mark_node;
4537 break;
4540 if (incr == error_mark_node)
4542 error_at (elocus, "invalid increment expression");
4543 return true;
4546 incr = cp_convert (TREE_TYPE (diff), incr);
4547 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4548 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4549 && OMP_CLAUSE_DECL (c) == iter)
4550 break;
4552 decl = create_temporary_var (TREE_TYPE (diff));
4553 pushdecl (decl);
4554 add_decl_expr (decl);
4555 last = create_temporary_var (TREE_TYPE (diff));
4556 pushdecl (last);
4557 add_decl_expr (last);
4558 if (c && iter_incr == NULL)
4560 incr_var = create_temporary_var (TREE_TYPE (diff));
4561 pushdecl (incr_var);
4562 add_decl_expr (incr_var);
4564 gcc_assert (stmts_are_full_exprs_p ());
4566 orig_pre_body = *pre_body;
4567 *pre_body = push_stmt_list ();
4568 if (orig_pre_body)
4569 add_stmt (orig_pre_body);
4570 if (init != NULL)
4571 finish_expr_stmt (build_x_modify_expr (iter, NOP_EXPR, init,
4572 tf_warning_or_error));
4573 init = build_int_cst (TREE_TYPE (diff), 0);
4574 if (c && iter_incr == NULL)
4576 finish_expr_stmt (build_x_modify_expr (incr_var, NOP_EXPR,
4577 incr, tf_warning_or_error));
4578 incr = incr_var;
4579 iter_incr = build_x_modify_expr (iter, PLUS_EXPR, incr,
4580 tf_warning_or_error);
4582 finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, init,
4583 tf_warning_or_error));
4584 *pre_body = pop_stmt_list (*pre_body);
4586 cond = cp_build_binary_op (elocus,
4587 TREE_CODE (cond), decl, diff,
4588 tf_warning_or_error);
4589 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
4590 elocus, incr, NULL_TREE);
4592 orig_body = *body;
4593 *body = push_stmt_list ();
4594 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4595 iter_init = build_x_modify_expr (iter, PLUS_EXPR, iter_init,
4596 tf_warning_or_error);
4597 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4598 finish_expr_stmt (iter_init);
4599 finish_expr_stmt (build_x_modify_expr (last, NOP_EXPR, decl,
4600 tf_warning_or_error));
4601 add_stmt (orig_body);
4602 *body = pop_stmt_list (*body);
4604 if (c)
4606 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4607 finish_expr_stmt (iter_incr);
4608 OMP_CLAUSE_LASTPRIVATE_STMT (c)
4609 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4612 TREE_VEC_ELT (declv, i) = decl;
4613 TREE_VEC_ELT (initv, i) = init;
4614 TREE_VEC_ELT (condv, i) = cond;
4615 TREE_VEC_ELT (incrv, i) = incr;
4617 return false;
4620 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
4621 are directly for their associated operands in the statement. DECL
4622 and INIT are a combo; if DECL is NULL then INIT ought to be a
4623 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
4624 optional statements that need to go before the loop into its
4625 sk_omp scope. */
4627 tree
4628 finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4629 tree incrv, tree body, tree pre_body, tree clauses)
4631 tree omp_for = NULL, orig_incr = NULL;
4632 tree decl, init, cond, incr;
4633 location_t elocus;
4634 int i;
4636 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4637 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4638 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4639 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4641 decl = TREE_VEC_ELT (declv, i);
4642 init = TREE_VEC_ELT (initv, i);
4643 cond = TREE_VEC_ELT (condv, i);
4644 incr = TREE_VEC_ELT (incrv, i);
4645 elocus = locus;
4647 if (decl == NULL)
4649 if (init != NULL)
4650 switch (TREE_CODE (init))
4652 case MODIFY_EXPR:
4653 decl = TREE_OPERAND (init, 0);
4654 init = TREE_OPERAND (init, 1);
4655 break;
4656 case MODOP_EXPR:
4657 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4659 decl = TREE_OPERAND (init, 0);
4660 init = TREE_OPERAND (init, 2);
4662 break;
4663 default:
4664 break;
4667 if (decl == NULL)
4669 error_at (locus,
4670 "expected iteration declaration or initialization");
4671 return NULL;
4675 if (init && EXPR_HAS_LOCATION (init))
4676 elocus = EXPR_LOCATION (init);
4678 if (cond == NULL)
4680 error_at (elocus, "missing controlling predicate");
4681 return NULL;
4684 if (incr == NULL)
4686 error_at (elocus, "missing increment expression");
4687 return NULL;
4690 TREE_VEC_ELT (declv, i) = decl;
4691 TREE_VEC_ELT (initv, i) = init;
4694 if (dependent_omp_for_p (declv, initv, condv, incrv))
4696 tree stmt;
4698 stmt = make_node (OMP_FOR);
4700 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4702 /* This is really just a place-holder. We'll be decomposing this
4703 again and going through the cp_build_modify_expr path below when
4704 we instantiate the thing. */
4705 TREE_VEC_ELT (initv, i)
4706 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4707 TREE_VEC_ELT (initv, i));
4710 TREE_TYPE (stmt) = void_type_node;
4711 OMP_FOR_INIT (stmt) = initv;
4712 OMP_FOR_COND (stmt) = condv;
4713 OMP_FOR_INCR (stmt) = incrv;
4714 OMP_FOR_BODY (stmt) = body;
4715 OMP_FOR_PRE_BODY (stmt) = pre_body;
4716 OMP_FOR_CLAUSES (stmt) = clauses;
4718 SET_EXPR_LOCATION (stmt, locus);
4719 return add_stmt (stmt);
4722 if (processing_template_decl)
4723 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
4725 for (i = 0; i < TREE_VEC_LENGTH (declv); )
4727 decl = TREE_VEC_ELT (declv, i);
4728 init = TREE_VEC_ELT (initv, i);
4729 cond = TREE_VEC_ELT (condv, i);
4730 incr = TREE_VEC_ELT (incrv, i);
4731 if (orig_incr)
4732 TREE_VEC_ELT (orig_incr, i) = incr;
4733 elocus = locus;
4735 if (init && EXPR_HAS_LOCATION (init))
4736 elocus = EXPR_LOCATION (init);
4738 if (!DECL_P (decl))
4740 error_at (elocus, "expected iteration declaration or initialization");
4741 return NULL;
4744 if (incr && TREE_CODE (incr) == MODOP_EXPR)
4746 if (orig_incr)
4747 TREE_VEC_ELT (orig_incr, i) = incr;
4748 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4749 TREE_CODE (TREE_OPERAND (incr, 1)),
4750 TREE_OPERAND (incr, 2),
4751 tf_warning_or_error);
4754 if (CLASS_TYPE_P (TREE_TYPE (decl)))
4756 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4757 incrv, &body, &pre_body, clauses))
4758 return NULL;
4759 continue;
4762 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4763 && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4765 error_at (elocus, "invalid type for iteration variable %qE", decl);
4766 return NULL;
4769 if (!processing_template_decl)
4771 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4772 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4774 else
4775 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
4776 if (cond
4777 && TREE_SIDE_EFFECTS (cond)
4778 && COMPARISON_CLASS_P (cond)
4779 && !processing_template_decl)
4781 tree t = TREE_OPERAND (cond, 0);
4782 if (TREE_SIDE_EFFECTS (t)
4783 && t != decl
4784 && (TREE_CODE (t) != NOP_EXPR
4785 || TREE_OPERAND (t, 0) != decl))
4786 TREE_OPERAND (cond, 0)
4787 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4789 t = TREE_OPERAND (cond, 1);
4790 if (TREE_SIDE_EFFECTS (t)
4791 && t != decl
4792 && (TREE_CODE (t) != NOP_EXPR
4793 || TREE_OPERAND (t, 0) != decl))
4794 TREE_OPERAND (cond, 1)
4795 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4797 if (decl == error_mark_node || init == error_mark_node)
4798 return NULL;
4800 TREE_VEC_ELT (declv, i) = decl;
4801 TREE_VEC_ELT (initv, i) = init;
4802 TREE_VEC_ELT (condv, i) = cond;
4803 TREE_VEC_ELT (incrv, i) = incr;
4804 i++;
4807 if (IS_EMPTY_STMT (pre_body))
4808 pre_body = NULL;
4810 omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4811 body, pre_body);
4813 if (omp_for == NULL)
4814 return NULL;
4816 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
4818 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4819 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
4821 if (TREE_CODE (incr) != MODIFY_EXPR)
4822 continue;
4824 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
4825 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4826 && !processing_template_decl)
4828 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4829 if (TREE_SIDE_EFFECTS (t)
4830 && t != decl
4831 && (TREE_CODE (t) != NOP_EXPR
4832 || TREE_OPERAND (t, 0) != decl))
4833 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4834 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4836 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4837 if (TREE_SIDE_EFFECTS (t)
4838 && t != decl
4839 && (TREE_CODE (t) != NOP_EXPR
4840 || TREE_OPERAND (t, 0) != decl))
4841 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4842 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4845 if (orig_incr)
4846 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
4848 if (omp_for != NULL)
4849 OMP_FOR_CLAUSES (omp_for) = clauses;
4850 return omp_for;
4853 void
4854 finish_omp_atomic (enum tree_code code, enum tree_code opcode, tree lhs,
4855 tree rhs, tree v, tree lhs1, tree rhs1)
4857 tree orig_lhs;
4858 tree orig_rhs;
4859 tree orig_v;
4860 tree orig_lhs1;
4861 tree orig_rhs1;
4862 bool dependent_p;
4863 tree stmt;
4865 orig_lhs = lhs;
4866 orig_rhs = rhs;
4867 orig_v = v;
4868 orig_lhs1 = lhs1;
4869 orig_rhs1 = rhs1;
4870 dependent_p = false;
4871 stmt = NULL_TREE;
4873 /* Even in a template, we can detect invalid uses of the atomic
4874 pragma if neither LHS nor RHS is type-dependent. */
4875 if (processing_template_decl)
4877 dependent_p = (type_dependent_expression_p (lhs)
4878 || (rhs && type_dependent_expression_p (rhs))
4879 || (v && type_dependent_expression_p (v))
4880 || (lhs1 && type_dependent_expression_p (lhs1))
4881 || (rhs1 && type_dependent_expression_p (rhs1)));
4882 if (!dependent_p)
4884 lhs = build_non_dependent_expr (lhs);
4885 if (rhs)
4886 rhs = build_non_dependent_expr (rhs);
4887 if (v)
4888 v = build_non_dependent_expr (v);
4889 if (lhs1)
4890 lhs1 = build_non_dependent_expr (lhs1);
4891 if (rhs1)
4892 rhs1 = build_non_dependent_expr (rhs1);
4895 if (!dependent_p)
4897 stmt = c_finish_omp_atomic (input_location, code, opcode, lhs, rhs,
4898 v, lhs1, rhs1);
4899 if (stmt == error_mark_node)
4900 return;
4902 if (processing_template_decl)
4904 if (code == OMP_ATOMIC_READ)
4906 stmt = build_min_nt (OMP_ATOMIC_READ, orig_lhs);
4907 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
4909 else
4911 if (opcode == NOP_EXPR)
4912 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
4913 else
4914 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
4915 if (orig_rhs1)
4916 stmt = build_min_nt (COMPOUND_EXPR, orig_rhs1, stmt);
4917 if (code != OMP_ATOMIC)
4919 stmt = build_min_nt (code, orig_lhs1, stmt);
4920 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
4923 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node, stmt);
4925 add_stmt (stmt);
4928 void
4929 finish_omp_barrier (void)
4931 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
4932 VEC(tree,gc) *vec = make_tree_vector ();
4933 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4934 release_tree_vector (vec);
4935 finish_expr_stmt (stmt);
4938 void
4939 finish_omp_flush (void)
4941 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
4942 VEC(tree,gc) *vec = make_tree_vector ();
4943 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4944 release_tree_vector (vec);
4945 finish_expr_stmt (stmt);
4948 void
4949 finish_omp_taskwait (void)
4951 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
4952 VEC(tree,gc) *vec = make_tree_vector ();
4953 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4954 release_tree_vector (vec);
4955 finish_expr_stmt (stmt);
4958 void
4959 finish_omp_taskyield (void)
4961 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
4962 VEC(tree,gc) *vec = make_tree_vector ();
4963 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
4964 release_tree_vector (vec);
4965 finish_expr_stmt (stmt);
4968 void
4969 init_cp_semantics (void)
4973 /* Build a STATIC_ASSERT for a static assertion with the condition
4974 CONDITION and the message text MESSAGE. LOCATION is the location
4975 of the static assertion in the source code. When MEMBER_P, this
4976 static assertion is a member of a class. */
4977 void
4978 finish_static_assert (tree condition, tree message, location_t location,
4979 bool member_p)
4981 if (check_for_bare_parameter_packs (condition))
4982 condition = error_mark_node;
4984 if (type_dependent_expression_p (condition)
4985 || value_dependent_expression_p (condition))
4987 /* We're in a template; build a STATIC_ASSERT and put it in
4988 the right place. */
4989 tree assertion;
4991 assertion = make_node (STATIC_ASSERT);
4992 STATIC_ASSERT_CONDITION (assertion) = condition;
4993 STATIC_ASSERT_MESSAGE (assertion) = message;
4994 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
4996 if (member_p)
4997 maybe_add_class_template_decl_list (current_class_type,
4998 assertion,
4999 /*friend_p=*/0);
5000 else
5001 add_stmt (assertion);
5003 return;
5006 /* Fold the expression and convert it to a boolean value. */
5007 condition = fold_non_dependent_expr (condition);
5008 condition = cp_convert (boolean_type_node, condition);
5009 condition = maybe_constant_value (condition);
5011 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
5012 /* Do nothing; the condition is satisfied. */
5014 else
5016 location_t saved_loc = input_location;
5018 input_location = location;
5019 if (TREE_CODE (condition) == INTEGER_CST
5020 && integer_zerop (condition))
5021 /* Report the error. */
5022 error ("static assertion failed: %E", message);
5023 else if (condition && condition != error_mark_node)
5025 error ("non-constant condition for static assertion");
5026 cxx_constant_value (condition);
5028 input_location = saved_loc;
5032 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
5033 suitable for use as a type-specifier.
5035 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
5036 id-expression or a class member access, FALSE when it was parsed as
5037 a full expression. */
5039 tree
5040 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
5041 tsubst_flags_t complain)
5043 tree type = NULL_TREE;
5045 if (!expr || error_operand_p (expr))
5046 return error_mark_node;
5048 if (TYPE_P (expr)
5049 || TREE_CODE (expr) == TYPE_DECL
5050 || (TREE_CODE (expr) == BIT_NOT_EXPR
5051 && TYPE_P (TREE_OPERAND (expr, 0))))
5053 if (complain & tf_error)
5054 error ("argument to decltype must be an expression");
5055 return error_mark_node;
5058 /* FIXME instantiation-dependent */
5059 if (type_dependent_expression_p (expr)
5060 /* In a template, a COMPONENT_REF has an IDENTIFIER_NODE for op1 even
5061 if it isn't dependent, so that we can check access control at
5062 instantiation time, so defer the decltype as well (PR 42277). */
5063 || (id_expression_or_member_access_p
5064 && processing_template_decl
5065 && TREE_CODE (expr) == COMPONENT_REF))
5067 type = cxx_make_type (DECLTYPE_TYPE);
5068 DECLTYPE_TYPE_EXPR (type) = expr;
5069 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
5070 = id_expression_or_member_access_p;
5071 SET_TYPE_STRUCTURAL_EQUALITY (type);
5073 return type;
5076 /* The type denoted by decltype(e) is defined as follows: */
5078 expr = resolve_nondeduced_context (expr);
5080 if (type_unknown_p (expr))
5082 if (complain & tf_error)
5083 error ("decltype cannot resolve address of overloaded function");
5084 return error_mark_node;
5087 if (invalid_nonstatic_memfn_p (expr, complain))
5088 return error_mark_node;
5090 /* To get the size of a static data member declared as an array of
5091 unknown bound, we need to instantiate it. */
5092 if (TREE_CODE (expr) == VAR_DECL
5093 && VAR_HAD_UNKNOWN_BOUND (expr)
5094 && DECL_TEMPLATE_INSTANTIATION (expr))
5095 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
5097 if (id_expression_or_member_access_p)
5099 /* If e is an id-expression or a class member access (5.2.5
5100 [expr.ref]), decltype(e) is defined as the type of the entity
5101 named by e. If there is no such entity, or e names a set of
5102 overloaded functions, the program is ill-formed. */
5103 if (TREE_CODE (expr) == IDENTIFIER_NODE)
5104 expr = lookup_name (expr);
5106 if (TREE_CODE (expr) == INDIRECT_REF)
5107 /* This can happen when the expression is, e.g., "a.b". Just
5108 look at the underlying operand. */
5109 expr = TREE_OPERAND (expr, 0);
5111 if (TREE_CODE (expr) == OFFSET_REF
5112 || TREE_CODE (expr) == MEMBER_REF)
5113 /* We're only interested in the field itself. If it is a
5114 BASELINK, we will need to see through it in the next
5115 step. */
5116 expr = TREE_OPERAND (expr, 1);
5118 if (TREE_CODE (expr) == BASELINK)
5119 /* See through BASELINK nodes to the underlying function. */
5120 expr = BASELINK_FUNCTIONS (expr);
5122 switch (TREE_CODE (expr))
5124 case FIELD_DECL:
5125 if (DECL_BIT_FIELD_TYPE (expr))
5127 type = DECL_BIT_FIELD_TYPE (expr);
5128 break;
5130 /* Fall through for fields that aren't bitfields. */
5132 case FUNCTION_DECL:
5133 case VAR_DECL:
5134 case CONST_DECL:
5135 case PARM_DECL:
5136 case RESULT_DECL:
5137 case TEMPLATE_PARM_INDEX:
5138 expr = mark_type_use (expr);
5139 type = TREE_TYPE (expr);
5140 break;
5142 case ERROR_MARK:
5143 type = error_mark_node;
5144 break;
5146 case COMPONENT_REF:
5147 mark_type_use (expr);
5148 type = is_bitfield_expr_with_lowered_type (expr);
5149 if (!type)
5150 type = TREE_TYPE (TREE_OPERAND (expr, 1));
5151 break;
5153 case BIT_FIELD_REF:
5154 gcc_unreachable ();
5156 case INTEGER_CST:
5157 /* We can get here when the id-expression refers to an
5158 enumerator. */
5159 type = TREE_TYPE (expr);
5160 break;
5162 default:
5163 gcc_unreachable ();
5164 return error_mark_node;
5167 else
5169 /* Within a lambda-expression:
5171 Every occurrence of decltype((x)) where x is a possibly
5172 parenthesized id-expression that names an entity of
5173 automatic storage duration is treated as if x were
5174 transformed into an access to a corresponding data member
5175 of the closure type that would have been declared if x
5176 were a use of the denoted entity. */
5177 if (outer_automatic_var_p (expr)
5178 && current_function_decl
5179 && LAMBDA_FUNCTION_P (current_function_decl))
5180 type = capture_decltype (expr);
5181 else if (error_operand_p (expr))
5182 type = error_mark_node;
5183 else if (expr == current_class_ptr)
5184 /* If the expression is just "this", we want the
5185 cv-unqualified pointer for the "this" type. */
5186 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
5187 else
5189 /* Otherwise, where T is the type of e, if e is an lvalue,
5190 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
5191 cp_lvalue_kind clk = lvalue_kind (expr);
5192 type = unlowered_expr_type (expr);
5193 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5194 if (clk != clk_none && !(clk & clk_class))
5195 type = cp_build_reference_type (type, (clk & clk_rvalueref));
5199 return type;
5202 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
5203 __has_nothrow_copy, depending on assign_p. */
5205 static bool
5206 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
5208 tree fns;
5210 if (assign_p)
5212 int ix;
5213 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
5214 if (ix < 0)
5215 return false;
5216 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix);
5218 else if (TYPE_HAS_COPY_CTOR (type))
5220 /* If construction of the copy constructor was postponed, create
5221 it now. */
5222 if (CLASSTYPE_LAZY_COPY_CTOR (type))
5223 lazily_declare_fn (sfk_copy_constructor, type);
5224 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
5225 lazily_declare_fn (sfk_move_constructor, type);
5226 fns = CLASSTYPE_CONSTRUCTORS (type);
5228 else
5229 return false;
5231 for (; fns; fns = OVL_NEXT (fns))
5233 tree fn = OVL_CURRENT (fns);
5235 if (assign_p)
5237 if (copy_fn_p (fn) == 0)
5238 continue;
5240 else if (copy_fn_p (fn) <= 0)
5241 continue;
5243 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
5244 return false;
5247 return true;
5250 /* Actually evaluates the trait. */
5252 static bool
5253 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
5255 enum tree_code type_code1;
5256 tree t;
5258 type_code1 = TREE_CODE (type1);
5260 switch (kind)
5262 case CPTK_HAS_NOTHROW_ASSIGN:
5263 type1 = strip_array_types (type1);
5264 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5265 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
5266 || (CLASS_TYPE_P (type1)
5267 && classtype_has_nothrow_assign_or_copy_p (type1,
5268 true))));
5270 case CPTK_HAS_TRIVIAL_ASSIGN:
5271 /* ??? The standard seems to be missing the "or array of such a class
5272 type" wording for this trait. */
5273 type1 = strip_array_types (type1);
5274 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5275 && (trivial_type_p (type1)
5276 || (CLASS_TYPE_P (type1)
5277 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
5279 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5280 type1 = strip_array_types (type1);
5281 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
5282 || (CLASS_TYPE_P (type1)
5283 && (t = locate_ctor (type1))
5284 && TYPE_NOTHROW_P (TREE_TYPE (t))));
5286 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5287 type1 = strip_array_types (type1);
5288 return (trivial_type_p (type1)
5289 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
5291 case CPTK_HAS_NOTHROW_COPY:
5292 type1 = strip_array_types (type1);
5293 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
5294 || (CLASS_TYPE_P (type1)
5295 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
5297 case CPTK_HAS_TRIVIAL_COPY:
5298 /* ??? The standard seems to be missing the "or array of such a class
5299 type" wording for this trait. */
5300 type1 = strip_array_types (type1);
5301 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5302 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
5304 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5305 type1 = strip_array_types (type1);
5306 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5307 || (CLASS_TYPE_P (type1)
5308 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
5310 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5311 return type_has_virtual_destructor (type1);
5313 case CPTK_IS_ABSTRACT:
5314 return (CLASS_TYPE_P (type1) && CLASSTYPE_PURE_VIRTUALS (type1));
5316 case CPTK_IS_BASE_OF:
5317 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5318 && DERIVED_FROM_P (type1, type2));
5320 case CPTK_IS_CLASS:
5321 return (NON_UNION_CLASS_TYPE_P (type1));
5323 case CPTK_IS_CONVERTIBLE_TO:
5324 /* TODO */
5325 return false;
5327 case CPTK_IS_EMPTY:
5328 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
5330 case CPTK_IS_ENUM:
5331 return (type_code1 == ENUMERAL_TYPE);
5333 case CPTK_IS_LITERAL_TYPE:
5334 return (literal_type_p (type1));
5336 case CPTK_IS_POD:
5337 return (pod_type_p (type1));
5339 case CPTK_IS_POLYMORPHIC:
5340 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
5342 case CPTK_IS_STD_LAYOUT:
5343 return (std_layout_type_p (type1));
5345 case CPTK_IS_TRIVIAL:
5346 return (trivial_type_p (type1));
5348 case CPTK_IS_UNION:
5349 return (type_code1 == UNION_TYPE);
5351 default:
5352 gcc_unreachable ();
5353 return false;
5357 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
5358 void, or a complete type, returns it, otherwise NULL_TREE. */
5360 static tree
5361 check_trait_type (tree type)
5363 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
5364 && COMPLETE_TYPE_P (TREE_TYPE (type)))
5365 return type;
5367 if (VOID_TYPE_P (type))
5368 return type;
5370 return complete_type_or_else (strip_array_types (type), NULL_TREE);
5373 /* Process a trait expression. */
5375 tree
5376 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
5378 gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
5379 || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
5380 || kind == CPTK_HAS_NOTHROW_COPY
5381 || kind == CPTK_HAS_TRIVIAL_ASSIGN
5382 || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
5383 || kind == CPTK_HAS_TRIVIAL_COPY
5384 || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
5385 || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR
5386 || kind == CPTK_IS_ABSTRACT
5387 || kind == CPTK_IS_BASE_OF
5388 || kind == CPTK_IS_CLASS
5389 || kind == CPTK_IS_CONVERTIBLE_TO
5390 || kind == CPTK_IS_EMPTY
5391 || kind == CPTK_IS_ENUM
5392 || kind == CPTK_IS_LITERAL_TYPE
5393 || kind == CPTK_IS_POD
5394 || kind == CPTK_IS_POLYMORPHIC
5395 || kind == CPTK_IS_STD_LAYOUT
5396 || kind == CPTK_IS_TRIVIAL
5397 || kind == CPTK_IS_UNION);
5399 if (kind == CPTK_IS_CONVERTIBLE_TO)
5401 sorry ("__is_convertible_to");
5402 return error_mark_node;
5405 if (type1 == error_mark_node
5406 || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5407 && type2 == error_mark_node))
5408 return error_mark_node;
5410 if (processing_template_decl)
5412 tree trait_expr = make_node (TRAIT_EXPR);
5413 TREE_TYPE (trait_expr) = boolean_type_node;
5414 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5415 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5416 TRAIT_EXPR_KIND (trait_expr) = kind;
5417 return trait_expr;
5420 switch (kind)
5422 case CPTK_HAS_NOTHROW_ASSIGN:
5423 case CPTK_HAS_TRIVIAL_ASSIGN:
5424 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5425 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5426 case CPTK_HAS_NOTHROW_COPY:
5427 case CPTK_HAS_TRIVIAL_COPY:
5428 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5429 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5430 case CPTK_IS_ABSTRACT:
5431 case CPTK_IS_EMPTY:
5432 case CPTK_IS_LITERAL_TYPE:
5433 case CPTK_IS_POD:
5434 case CPTK_IS_POLYMORPHIC:
5435 case CPTK_IS_STD_LAYOUT:
5436 case CPTK_IS_TRIVIAL:
5437 if (!check_trait_type (type1))
5438 return error_mark_node;
5439 break;
5441 case CPTK_IS_BASE_OF:
5442 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5443 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5444 && !complete_type_or_else (type2, NULL_TREE))
5445 /* We already issued an error. */
5446 return error_mark_node;
5447 break;
5449 case CPTK_IS_CLASS:
5450 case CPTK_IS_ENUM:
5451 case CPTK_IS_UNION:
5452 break;
5454 case CPTK_IS_CONVERTIBLE_TO:
5455 default:
5456 gcc_unreachable ();
5459 return (trait_expr_value (kind, type1, type2)
5460 ? boolean_true_node : boolean_false_node);
5463 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5464 which is ignored for C++. */
5466 void
5467 set_float_const_decimal64 (void)
5471 void
5472 clear_float_const_decimal64 (void)
5476 bool
5477 float_const_decimal64_p (void)
5479 return 0;
5483 /* Return true if T is a literal type. */
5485 bool
5486 literal_type_p (tree t)
5488 if (SCALAR_TYPE_P (t)
5489 || TREE_CODE (t) == REFERENCE_TYPE)
5490 return true;
5491 if (CLASS_TYPE_P (t))
5493 t = complete_type (t);
5494 gcc_assert (COMPLETE_TYPE_P (t) || errorcount);
5495 return CLASSTYPE_LITERAL_P (t);
5497 if (TREE_CODE (t) == ARRAY_TYPE)
5498 return literal_type_p (strip_array_types (t));
5499 return false;
5502 /* If DECL is a variable declared `constexpr', require its type
5503 be literal. Return the DECL if OK, otherwise NULL. */
5505 tree
5506 ensure_literal_type_for_constexpr_object (tree decl)
5508 tree type = TREE_TYPE (decl);
5509 if (TREE_CODE (decl) == VAR_DECL && DECL_DECLARED_CONSTEXPR_P (decl)
5510 && !processing_template_decl)
5512 if (CLASS_TYPE_P (type) && !COMPLETE_TYPE_P (complete_type (type)))
5513 /* Don't complain here, we'll complain about incompleteness
5514 when we try to initialize the variable. */;
5515 else if (!literal_type_p (type))
5517 error ("the type %qT of constexpr variable %qD is not literal",
5518 type, decl);
5519 explain_non_literal_class (type);
5520 return NULL;
5523 return decl;
5526 /* Representation of entries in the constexpr function definition table. */
5528 typedef struct GTY(()) constexpr_fundef {
5529 tree decl;
5530 tree body;
5531 } constexpr_fundef;
5533 /* This table holds all constexpr function definitions seen in
5534 the current translation unit. */
5536 static GTY ((param_is (constexpr_fundef))) htab_t constexpr_fundef_table;
5538 /* Utility function used for managing the constexpr function table.
5539 Return true if the entries pointed to by P and Q are for the
5540 same constexpr function. */
5542 static inline int
5543 constexpr_fundef_equal (const void *p, const void *q)
5545 const constexpr_fundef *lhs = (const constexpr_fundef *) p;
5546 const constexpr_fundef *rhs = (const constexpr_fundef *) q;
5547 return lhs->decl == rhs->decl;
5550 /* Utility function used for managing the constexpr function table.
5551 Return a hash value for the entry pointed to by Q. */
5553 static inline hashval_t
5554 constexpr_fundef_hash (const void *p)
5556 const constexpr_fundef *fundef = (const constexpr_fundef *) p;
5557 return DECL_UID (fundef->decl);
5560 /* Return a previously saved definition of function FUN. */
5562 static constexpr_fundef *
5563 retrieve_constexpr_fundef (tree fun)
5565 constexpr_fundef fundef = { NULL, NULL };
5566 if (constexpr_fundef_table == NULL)
5567 return NULL;
5569 fundef.decl = fun;
5570 return (constexpr_fundef *) htab_find (constexpr_fundef_table, &fundef);
5573 /* Check whether the parameter and return types of FUN are valid for a
5574 constexpr function, and complain if COMPLAIN. */
5576 static bool
5577 is_valid_constexpr_fn (tree fun, bool complain)
5579 tree parm = FUNCTION_FIRST_USER_PARM (fun);
5580 bool ret = true;
5581 for (; parm != NULL; parm = TREE_CHAIN (parm))
5582 if (!literal_type_p (TREE_TYPE (parm)))
5584 ret = false;
5585 if (complain)
5587 error ("invalid type for parameter %d of constexpr "
5588 "function %q+#D", DECL_PARM_INDEX (parm), fun);
5589 explain_non_literal_class (TREE_TYPE (parm));
5593 if (!DECL_CONSTRUCTOR_P (fun))
5595 tree rettype = TREE_TYPE (TREE_TYPE (fun));
5596 if (!literal_type_p (rettype))
5598 ret = false;
5599 if (complain)
5601 error ("invalid return type %qT of constexpr function %q+D",
5602 rettype, fun);
5603 explain_non_literal_class (rettype);
5607 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5608 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
5610 ret = false;
5611 if (complain)
5613 error ("enclosing class of constexpr non-static member "
5614 "function %q+#D is not a literal type", fun);
5615 explain_non_literal_class (DECL_CONTEXT (fun));
5620 return ret;
5623 /* Subroutine of build_constexpr_constructor_member_initializers.
5624 The expression tree T represents a data member initialization
5625 in a (constexpr) constructor definition. Build a pairing of
5626 the data member with its initializer, and prepend that pair
5627 to the existing initialization pair INITS. */
5629 static bool
5630 build_data_member_initialization (tree t, VEC(constructor_elt,gc) **vec)
5632 tree member, init;
5633 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
5634 t = TREE_OPERAND (t, 0);
5635 if (TREE_CODE (t) == EXPR_STMT)
5636 t = TREE_OPERAND (t, 0);
5637 if (t == error_mark_node)
5638 return false;
5639 if (TREE_CODE (t) == STATEMENT_LIST)
5641 tree_stmt_iterator i;
5642 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5644 if (! build_data_member_initialization (tsi_stmt (i), vec))
5645 return false;
5647 return true;
5649 if (TREE_CODE (t) == CLEANUP_STMT)
5651 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5652 but we can in a constexpr constructor for a non-literal class. Just
5653 ignore it; either all the initialization will be constant, in which
5654 case the cleanup can't run, or it can't be constexpr.
5655 Still recurse into CLEANUP_BODY. */
5656 return build_data_member_initialization (CLEANUP_BODY (t), vec);
5658 if (TREE_CODE (t) == CONVERT_EXPR)
5659 t = TREE_OPERAND (t, 0);
5660 if (TREE_CODE (t) == INIT_EXPR
5661 || TREE_CODE (t) == MODIFY_EXPR)
5663 member = TREE_OPERAND (t, 0);
5664 init = unshare_expr (TREE_OPERAND (t, 1));
5666 else
5668 gcc_assert (TREE_CODE (t) == CALL_EXPR);
5669 member = CALL_EXPR_ARG (t, 0);
5670 /* We don't use build_cplus_new here because it complains about
5671 abstract bases. Leaving the call unwrapped means that it has the
5672 wrong type, but cxx_eval_constant_expression doesn't care. */
5673 init = unshare_expr (t);
5675 if (TREE_CODE (member) == INDIRECT_REF)
5676 member = TREE_OPERAND (member, 0);
5677 if (TREE_CODE (member) == NOP_EXPR)
5679 tree op = member;
5680 STRIP_NOPS (op);
5681 if (TREE_CODE (op) == ADDR_EXPR)
5683 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5684 (TREE_TYPE (TREE_TYPE (op)),
5685 TREE_TYPE (TREE_TYPE (member))));
5686 /* Initializing a cv-qualified member; we need to look through
5687 the const_cast. */
5688 member = op;
5690 else
5692 /* We don't put out anything for an empty base. */
5693 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
5694 /* But if the initializer isn't constexpr, leave it in so we
5695 complain later. */
5696 if (potential_constant_expression (init))
5697 return true;
5700 if (TREE_CODE (member) == ADDR_EXPR)
5701 member = TREE_OPERAND (member, 0);
5702 if (TREE_CODE (member) == COMPONENT_REF
5703 /* If we're initializing a member of a subaggregate, it's a vtable
5704 pointer. Leave it as COMPONENT_REF so we remember the path to get
5705 to the vfield. */
5706 && TREE_CODE (TREE_OPERAND (member, 0)) != COMPONENT_REF)
5707 member = TREE_OPERAND (member, 1);
5708 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
5709 return true;
5712 /* Make sure that there are no statements after LAST in the constructor
5713 body represented by LIST. */
5715 bool
5716 check_constexpr_ctor_body (tree last, tree list)
5718 bool ok = true;
5719 if (TREE_CODE (list) == STATEMENT_LIST)
5721 tree_stmt_iterator i = tsi_last (list);
5722 for (; !tsi_end_p (i); tsi_prev (&i))
5724 tree t = tsi_stmt (i);
5725 if (t == last)
5726 break;
5727 if (TREE_CODE (t) == BIND_EXPR)
5729 if (!check_constexpr_ctor_body (last, BIND_EXPR_BODY (t)))
5730 return false;
5731 else
5732 continue;
5734 /* We currently allow typedefs and static_assert.
5735 FIXME allow them in the standard, too. */
5736 if (TREE_CODE (t) != STATIC_ASSERT)
5738 ok = false;
5739 break;
5743 else if (list != last
5744 && TREE_CODE (list) != STATIC_ASSERT)
5745 ok = false;
5746 if (!ok)
5748 error ("constexpr constructor does not have empty body");
5749 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
5751 return ok;
5754 /* Build compile-time evalable representations of member-initializer list
5755 for a constexpr constructor. */
5757 static tree
5758 build_constexpr_constructor_member_initializers (tree type, tree body)
5760 VEC(constructor_elt,gc) *vec = NULL;
5761 bool ok = true;
5762 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR
5763 || TREE_CODE (body) == EH_SPEC_BLOCK)
5764 body = TREE_OPERAND (body, 0);
5765 if (TREE_CODE (body) == STATEMENT_LIST)
5766 body = STATEMENT_LIST_HEAD (body)->stmt;
5767 body = BIND_EXPR_BODY (body);
5768 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5770 body = TREE_OPERAND (body, 0);
5771 if (TREE_CODE (body) == EXPR_STMT)
5772 body = TREE_OPERAND (body, 0);
5773 if (TREE_CODE (body) == INIT_EXPR
5774 && (same_type_ignoring_top_level_qualifiers_p
5775 (TREE_TYPE (TREE_OPERAND (body, 0)),
5776 current_class_type)))
5778 /* Trivial copy. */
5779 return TREE_OPERAND (body, 1);
5781 ok = build_data_member_initialization (body, &vec);
5783 else if (TREE_CODE (body) == STATEMENT_LIST)
5785 tree_stmt_iterator i;
5786 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5788 ok = build_data_member_initialization (tsi_stmt (i), &vec);
5789 if (!ok)
5790 break;
5793 else
5794 gcc_assert (errorcount > 0);
5795 if (ok)
5796 return build_constructor (type, vec);
5797 else
5798 return error_mark_node;
5801 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
5802 declared to be constexpr, or a sub-statement thereof. Returns the
5803 return value if suitable, error_mark_node for a statement not allowed in
5804 a constexpr function, or NULL_TREE if no return value was found. */
5806 static tree
5807 constexpr_fn_retval (tree body)
5809 switch (TREE_CODE (body))
5811 case STATEMENT_LIST:
5813 tree_stmt_iterator i;
5814 tree expr = NULL_TREE;
5815 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
5817 tree s = constexpr_fn_retval (tsi_stmt (i));
5818 if (s == error_mark_node)
5819 return error_mark_node;
5820 else if (s == NULL_TREE)
5821 /* Keep iterating. */;
5822 else if (expr)
5823 /* Multiple return statements. */
5824 return error_mark_node;
5825 else
5826 expr = s;
5828 return expr;
5831 case RETURN_EXPR:
5832 return unshare_expr (TREE_OPERAND (body, 0));
5834 case DECL_EXPR:
5835 if (TREE_CODE (DECL_EXPR_DECL (body)) == USING_DECL)
5836 return NULL_TREE;
5837 return error_mark_node;
5839 case CLEANUP_POINT_EXPR:
5840 return constexpr_fn_retval (TREE_OPERAND (body, 0));
5842 case USING_STMT:
5843 return NULL_TREE;
5845 default:
5846 return error_mark_node;
5850 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
5851 FUN; do the necessary transformations to turn it into a single expression
5852 that we can store in the hash table. */
5854 static tree
5855 massage_constexpr_body (tree fun, tree body)
5857 if (DECL_CONSTRUCTOR_P (fun))
5858 body = build_constexpr_constructor_member_initializers
5859 (DECL_CONTEXT (fun), body);
5860 else
5862 if (TREE_CODE (body) == BIND_EXPR)
5863 body = BIND_EXPR_BODY (body);
5864 if (TREE_CODE (body) == EH_SPEC_BLOCK)
5865 body = EH_SPEC_STMTS (body);
5866 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
5867 body = TREE_OPERAND (body, 0);
5868 body = constexpr_fn_retval (body);
5870 return body;
5873 /* FUN is a constexpr constructor with massaged body BODY. Return true
5874 if some bases/fields are uninitialized, and complain if COMPLAIN. */
5876 static bool
5877 cx_check_missing_mem_inits (tree fun, tree body, bool complain)
5879 bool bad;
5880 tree field;
5881 unsigned i, nelts;
5883 if (TREE_CODE (body) != CONSTRUCTOR)
5884 return false;
5886 bad = false;
5887 nelts = CONSTRUCTOR_NELTS (body);
5888 field = TYPE_FIELDS (DECL_CONTEXT (fun));
5889 for (i = 0; i <= nelts; ++i)
5891 tree index;
5892 if (i == nelts)
5893 index = NULL_TREE;
5894 else
5896 index = CONSTRUCTOR_ELT (body, i)->index;
5897 /* Skip base and vtable inits. */
5898 if (TREE_CODE (index) != FIELD_DECL)
5899 continue;
5901 for (; field != index; field = DECL_CHAIN (field))
5903 tree ftype;
5904 if (TREE_CODE (field) != FIELD_DECL
5905 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field)))
5906 continue;
5907 if (!complain)
5908 return true;
5909 ftype = strip_array_types (TREE_TYPE (field));
5910 if (type_has_constexpr_default_constructor (ftype))
5912 /* It's OK to skip a member with a trivial constexpr ctor.
5913 A constexpr ctor that isn't trivial should have been
5914 added in by now. */
5915 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype));
5916 continue;
5918 error ("uninitialized member %qD in %<constexpr%> constructor",
5919 field);
5920 bad = true;
5922 if (field == NULL_TREE)
5923 break;
5924 field = DECL_CHAIN (field);
5927 return bad;
5930 /* We are processing the definition of the constexpr function FUN.
5931 Check that its BODY fulfills the propriate requirements and
5932 enter it in the constexpr function definition table.
5933 For constructor BODY is actually the TREE_LIST of the
5934 member-initializer list. */
5936 tree
5937 register_constexpr_fundef (tree fun, tree body)
5939 constexpr_fundef entry;
5940 constexpr_fundef **slot;
5942 if (!is_valid_constexpr_fn (fun, !DECL_GENERATED_P (fun)))
5943 return NULL;
5945 body = massage_constexpr_body (fun, body);
5946 if (body == NULL_TREE || body == error_mark_node)
5948 if (!DECL_CONSTRUCTOR_P (fun))
5949 error ("body of constexpr function %qD not a return-statement", fun);
5950 return NULL;
5953 if (!potential_rvalue_constant_expression (body))
5955 if (!DECL_GENERATED_P (fun))
5956 require_potential_rvalue_constant_expression (body);
5957 return NULL;
5960 if (DECL_CONSTRUCTOR_P (fun)
5961 && cx_check_missing_mem_inits (fun, body, !DECL_GENERATED_P (fun)))
5962 return NULL;
5964 /* Create the constexpr function table if necessary. */
5965 if (constexpr_fundef_table == NULL)
5966 constexpr_fundef_table = htab_create_ggc (101,
5967 constexpr_fundef_hash,
5968 constexpr_fundef_equal,
5969 ggc_free);
5970 entry.decl = fun;
5971 entry.body = body;
5972 slot = (constexpr_fundef **)
5973 htab_find_slot (constexpr_fundef_table, &entry, INSERT);
5975 gcc_assert (*slot == NULL);
5976 *slot = ggc_alloc_constexpr_fundef ();
5977 **slot = entry;
5979 return fun;
5982 /* FUN is a non-constexpr function called in a context that requires a
5983 constant expression. If it comes from a constexpr template, explain why
5984 the instantiation isn't constexpr. */
5986 void
5987 explain_invalid_constexpr_fn (tree fun)
5989 static struct pointer_set_t *diagnosed;
5990 tree body;
5991 location_t save_loc;
5992 /* Only diagnose defaulted functions or instantiations. */
5993 if (!DECL_DEFAULTED_FN (fun)
5994 && !is_instantiation_of_constexpr (fun))
5995 return;
5996 if (diagnosed == NULL)
5997 diagnosed = pointer_set_create ();
5998 if (pointer_set_insert (diagnosed, fun) != 0)
5999 /* Already explained. */
6000 return;
6002 save_loc = input_location;
6003 input_location = DECL_SOURCE_LOCATION (fun);
6004 inform (0, "%q+D is not usable as a constexpr function because:", fun);
6005 /* First check the declaration. */
6006 if (is_valid_constexpr_fn (fun, true))
6008 /* Then if it's OK, the body. */
6009 if (DECL_DEFAULTED_FN (fun))
6010 explain_implicit_non_constexpr (fun);
6011 else
6013 body = massage_constexpr_body (fun, DECL_SAVED_TREE (fun));
6014 require_potential_rvalue_constant_expression (body);
6015 if (DECL_CONSTRUCTOR_P (fun))
6016 cx_check_missing_mem_inits (fun, body, true);
6019 input_location = save_loc;
6022 /* Objects of this type represent calls to constexpr functions
6023 along with the bindings of parameters to their arguments, for
6024 the purpose of compile time evaluation. */
6026 typedef struct GTY(()) constexpr_call {
6027 /* Description of the constexpr function definition. */
6028 constexpr_fundef *fundef;
6029 /* Parameter bindings enironment. A TREE_LIST where each TREE_PURPOSE
6030 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
6031 Note: This arrangement is made to accomodate the use of
6032 iterative_hash_template_arg (see pt.c). If you change this
6033 representation, also change the hash calculation in
6034 cxx_eval_call_expression. */
6035 tree bindings;
6036 /* Result of the call.
6037 NULL means the call is being evaluated.
6038 error_mark_node means that the evaluation was erroneous;
6039 otherwise, the actuall value of the call. */
6040 tree result;
6041 /* The hash of this call; we remember it here to avoid having to
6042 recalculate it when expanding the hash table. */
6043 hashval_t hash;
6044 } constexpr_call;
6046 /* A table of all constexpr calls that have been evaluated by the
6047 compiler in this translation unit. */
6049 static GTY ((param_is (constexpr_call))) htab_t constexpr_call_table;
6051 static tree cxx_eval_constant_expression (const constexpr_call *, tree,
6052 bool, bool, bool *);
6054 /* Compute a hash value for a constexpr call representation. */
6056 static hashval_t
6057 constexpr_call_hash (const void *p)
6059 const constexpr_call *info = (const constexpr_call *) p;
6060 return info->hash;
6063 /* Return 1 if the objects pointed to by P and Q represent calls
6064 to the same constexpr function with the same arguments.
6065 Otherwise, return 0. */
6067 static int
6068 constexpr_call_equal (const void *p, const void *q)
6070 const constexpr_call *lhs = (const constexpr_call *) p;
6071 const constexpr_call *rhs = (const constexpr_call *) q;
6072 tree lhs_bindings;
6073 tree rhs_bindings;
6074 if (lhs == rhs)
6075 return 1;
6076 if (!constexpr_fundef_equal (lhs->fundef, rhs->fundef))
6077 return 0;
6078 lhs_bindings = lhs->bindings;
6079 rhs_bindings = rhs->bindings;
6080 while (lhs_bindings != NULL && rhs_bindings != NULL)
6082 tree lhs_arg = TREE_VALUE (lhs_bindings);
6083 tree rhs_arg = TREE_VALUE (rhs_bindings);
6084 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
6085 if (!cp_tree_equal (lhs_arg, rhs_arg))
6086 return 0;
6087 lhs_bindings = TREE_CHAIN (lhs_bindings);
6088 rhs_bindings = TREE_CHAIN (rhs_bindings);
6090 return lhs_bindings == rhs_bindings;
6093 /* Initialize the constexpr call table, if needed. */
6095 static void
6096 maybe_initialize_constexpr_call_table (void)
6098 if (constexpr_call_table == NULL)
6099 constexpr_call_table = htab_create_ggc (101,
6100 constexpr_call_hash,
6101 constexpr_call_equal,
6102 ggc_free);
6105 /* Return true if T designates the implied `this' parameter. */
6107 static inline bool
6108 is_this_parameter (tree t)
6110 return t == current_class_ptr;
6113 /* We have an expression tree T that represents a call, either CALL_EXPR
6114 or AGGR_INIT_EXPR. If the call is lexically to a named function,
6115 retrun the _DECL for that function. */
6117 static tree
6118 get_function_named_in_call (tree t)
6120 tree fun = NULL;
6121 switch (TREE_CODE (t))
6123 case CALL_EXPR:
6124 fun = CALL_EXPR_FN (t);
6125 break;
6127 case AGGR_INIT_EXPR:
6128 fun = AGGR_INIT_EXPR_FN (t);
6129 break;
6131 default:
6132 gcc_unreachable();
6133 break;
6135 if (TREE_CODE (fun) == ADDR_EXPR
6136 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
6137 fun = TREE_OPERAND (fun, 0);
6138 return fun;
6141 /* We have an expression tree T that represents a call, either CALL_EXPR
6142 or AGGR_INIT_EXPR. Return the Nth argument. */
6144 static inline tree
6145 get_nth_callarg (tree t, int n)
6147 switch (TREE_CODE (t))
6149 case CALL_EXPR:
6150 return CALL_EXPR_ARG (t, n);
6152 case AGGR_INIT_EXPR:
6153 return AGGR_INIT_EXPR_ARG (t, n);
6155 default:
6156 gcc_unreachable ();
6157 return NULL;
6161 /* Look up the binding of the function parameter T in a constexpr
6162 function call context CALL. */
6164 static tree
6165 lookup_parameter_binding (const constexpr_call *call, tree t)
6167 tree b = purpose_member (t, call->bindings);
6168 return TREE_VALUE (b);
6171 /* Attempt to evaluate T which represents a call to a builtin function.
6172 We assume here that all builtin functions evaluate to scalar types
6173 represented by _CST nodes. */
6175 static tree
6176 cxx_eval_builtin_function_call (const constexpr_call *call, tree t,
6177 bool allow_non_constant, bool addr,
6178 bool *non_constant_p)
6180 const int nargs = call_expr_nargs (t);
6181 tree *args = (tree *) alloca (nargs * sizeof (tree));
6182 tree new_call;
6183 int i;
6184 for (i = 0; i < nargs; ++i)
6186 args[i] = cxx_eval_constant_expression (call, CALL_EXPR_ARG (t, i),
6187 allow_non_constant, addr,
6188 non_constant_p);
6189 if (allow_non_constant && *non_constant_p)
6190 return t;
6192 if (*non_constant_p)
6193 return t;
6194 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
6195 CALL_EXPR_FN (t), nargs, args);
6196 return fold (new_call);
6199 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
6200 the type of the value to match. */
6202 static tree
6203 adjust_temp_type (tree type, tree temp)
6205 if (TREE_TYPE (temp) == type)
6206 return temp;
6207 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
6208 if (TREE_CODE (temp) == CONSTRUCTOR)
6209 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
6210 gcc_assert (SCALAR_TYPE_P (type));
6211 return cp_fold_convert (type, temp);
6214 /* Subroutine of cxx_eval_call_expression.
6215 We are processing a call expression (either CALL_EXPR or
6216 AGGR_INIT_EXPR) in the call context of OLD_CALL. Evaluate
6217 all arguments and bind their values to correspondings
6218 parameters, making up the NEW_CALL context. */
6220 static void
6221 cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t,
6222 constexpr_call *new_call,
6223 bool allow_non_constant,
6224 bool *non_constant_p)
6226 const int nargs = call_expr_nargs (t);
6227 tree fun = new_call->fundef->decl;
6228 tree parms = DECL_ARGUMENTS (fun);
6229 int i;
6230 for (i = 0; i < nargs; ++i)
6232 tree x, arg;
6233 tree type = parms ? TREE_TYPE (parms) : void_type_node;
6234 /* For member function, the first argument is a pointer to the implied
6235 object. And for an object contruction, don't bind `this' before
6236 it is fully constructed. */
6237 if (i == 0 && DECL_CONSTRUCTOR_P (fun))
6238 goto next;
6239 x = get_nth_callarg (t, i);
6240 arg = cxx_eval_constant_expression (old_call, x, allow_non_constant,
6241 TREE_CODE (type) == REFERENCE_TYPE,
6242 non_constant_p);
6243 /* Don't VERIFY_CONSTANT here. */
6244 if (*non_constant_p && allow_non_constant)
6245 return;
6246 /* Just discard ellipsis args after checking their constantitude. */
6247 if (!parms)
6248 continue;
6249 if (*non_constant_p)
6250 /* Don't try to adjust the type of non-constant args. */
6251 goto next;
6253 /* Make sure the binding has the same type as the parm. */
6254 if (TREE_CODE (type) != REFERENCE_TYPE)
6255 arg = adjust_temp_type (type, arg);
6256 new_call->bindings = tree_cons (parms, arg, new_call->bindings);
6257 next:
6258 parms = TREE_CHAIN (parms);
6262 /* Variables and functions to manage constexpr call expansion context.
6263 These do not need to be marked for PCH or GC. */
6265 /* FIXME remember and print actual constant arguments. */
6266 static VEC(tree,heap) *call_stack = NULL;
6267 static int call_stack_tick;
6268 static int last_cx_error_tick;
6270 static bool
6271 push_cx_call_context (tree call)
6273 ++call_stack_tick;
6274 if (!EXPR_HAS_LOCATION (call))
6275 SET_EXPR_LOCATION (call, input_location);
6276 VEC_safe_push (tree, heap, call_stack, call);
6277 if (VEC_length (tree, call_stack) > (unsigned) max_constexpr_depth)
6278 return false;
6279 return true;
6282 static void
6283 pop_cx_call_context (void)
6285 ++call_stack_tick;
6286 VEC_pop (tree, call_stack);
6289 VEC(tree,heap) *
6290 cx_error_context (void)
6292 VEC(tree,heap) *r = NULL;
6293 if (call_stack_tick != last_cx_error_tick
6294 && !VEC_empty (tree, call_stack))
6295 r = call_stack;
6296 last_cx_error_tick = call_stack_tick;
6297 return r;
6300 /* Subroutine of cxx_eval_constant_expression.
6301 Evaluate the call expression tree T in the context of OLD_CALL expression
6302 evaluation. */
6304 static tree
6305 cxx_eval_call_expression (const constexpr_call *old_call, tree t,
6306 bool allow_non_constant, bool addr,
6307 bool *non_constant_p)
6309 location_t loc = EXPR_LOC_OR_HERE (t);
6310 tree fun = get_function_named_in_call (t);
6311 tree result;
6312 constexpr_call new_call = { NULL, NULL, NULL, 0 };
6313 constexpr_call **slot;
6314 constexpr_call *entry;
6315 bool depth_ok;
6317 if (TREE_CODE (fun) != FUNCTION_DECL)
6319 /* Might be a constexpr function pointer. */
6320 fun = cxx_eval_constant_expression (old_call, fun, allow_non_constant,
6321 /*addr*/false, non_constant_p);
6322 if (TREE_CODE (fun) == ADDR_EXPR)
6323 fun = TREE_OPERAND (fun, 0);
6325 if (TREE_CODE (fun) != FUNCTION_DECL)
6327 if (!allow_non_constant && !*non_constant_p)
6328 error_at (loc, "expression %qE does not designate a constexpr "
6329 "function", fun);
6330 *non_constant_p = true;
6331 return t;
6333 if (DECL_CLONED_FUNCTION_P (fun))
6334 fun = DECL_CLONED_FUNCTION (fun);
6335 if (is_builtin_fn (fun))
6336 return cxx_eval_builtin_function_call (old_call, t, allow_non_constant,
6337 addr, non_constant_p);
6338 if (!DECL_DECLARED_CONSTEXPR_P (fun))
6340 if (!allow_non_constant)
6342 error_at (loc, "call to non-constexpr function %qD", fun);
6343 explain_invalid_constexpr_fn (fun);
6345 *non_constant_p = true;
6346 return t;
6349 /* Shortcut trivial copy constructor/op=. */
6350 if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
6352 tree arg = convert_from_reference (get_nth_callarg (t, 1));
6353 return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
6354 addr, non_constant_p);
6357 /* If in direct recursive call, optimize definition search. */
6358 if (old_call != NULL && old_call->fundef->decl == fun)
6359 new_call.fundef = old_call->fundef;
6360 else
6362 new_call.fundef = retrieve_constexpr_fundef (fun);
6363 if (new_call.fundef == NULL || new_call.fundef->body == NULL)
6365 if (!allow_non_constant)
6367 if (DECL_INITIAL (fun))
6369 /* The definition of fun was somehow unsuitable. */
6370 error_at (loc, "%qD called in a constant expression", fun);
6371 explain_invalid_constexpr_fn (fun);
6373 else
6374 error_at (loc, "%qD used before its definition", fun);
6376 *non_constant_p = true;
6377 return t;
6380 cxx_bind_parameters_in_call (old_call, t, &new_call,
6381 allow_non_constant, non_constant_p);
6382 if (*non_constant_p)
6383 return t;
6385 depth_ok = push_cx_call_context (t);
6387 new_call.hash
6388 = iterative_hash_template_arg (new_call.bindings,
6389 constexpr_fundef_hash (new_call.fundef));
6391 /* If we have seen this call before, we are done. */
6392 maybe_initialize_constexpr_call_table ();
6393 slot = (constexpr_call **)
6394 htab_find_slot (constexpr_call_table, &new_call, INSERT);
6395 entry = *slot;
6396 if (entry == NULL)
6398 /* We need to keep a pointer to the entry, not just the slot, as the
6399 slot can move in the call to cxx_eval_builtin_function_call. */
6400 *slot = entry = ggc_alloc_constexpr_call ();
6401 *entry = new_call;
6403 /* Calls which are in progress have their result set to NULL
6404 so that we can detect circular dependencies. */
6405 else if (entry->result == NULL)
6407 if (!allow_non_constant)
6408 error ("call has circular dependency");
6409 *non_constant_p = true;
6410 entry->result = result = error_mark_node;
6413 if (!depth_ok)
6415 if (!allow_non_constant)
6416 error ("constexpr evaluation depth exceeds maximum of %d (use "
6417 "-fconstexpr-depth= to increase the maximum)",
6418 max_constexpr_depth);
6419 *non_constant_p = true;
6420 entry->result = result = error_mark_node;
6422 else
6424 result = entry->result;
6425 if (!result || (result == error_mark_node && !allow_non_constant))
6426 result = (cxx_eval_constant_expression
6427 (&new_call, new_call.fundef->body,
6428 allow_non_constant, addr,
6429 non_constant_p));
6430 if (result == error_mark_node)
6431 *non_constant_p = true;
6432 if (*non_constant_p)
6433 entry->result = result = error_mark_node;
6434 else
6436 /* If this was a call to initialize an object, set the type of
6437 the CONSTRUCTOR to the type of that object. */
6438 if (DECL_CONSTRUCTOR_P (fun))
6440 tree ob_arg = get_nth_callarg (t, 0);
6441 STRIP_NOPS (ob_arg);
6442 gcc_assert (TREE_CODE (TREE_TYPE (ob_arg)) == POINTER_TYPE
6443 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg))));
6444 result = adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg)),
6445 result);
6447 entry->result = result;
6451 pop_cx_call_context ();
6452 return unshare_expr (result);
6455 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
6457 bool
6458 reduced_constant_expression_p (tree t)
6460 if (TREE_OVERFLOW_P (t))
6461 /* Integer overflow makes this not a constant expression. */
6462 return false;
6463 /* FIXME are we calling this too much? */
6464 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
6467 /* Some expressions may have constant operands but are not constant
6468 themselves, such as 1/0. Call this function (or rather, the macro
6469 following it) to check for that condition.
6471 We only call this in places that require an arithmetic constant, not in
6472 places where we might have a non-constant expression that can be a
6473 component of a constant expression, such as the address of a constexpr
6474 variable that might be dereferenced later. */
6476 static bool
6477 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p)
6479 if (!*non_constant_p && !reduced_constant_expression_p (t))
6481 if (!allow_non_constant)
6483 /* If T was already folded to a _CST with TREE_OVERFLOW set,
6484 printing the folded constant isn't helpful. */
6485 if (TREE_OVERFLOW_P (t))
6487 permerror (input_location, "overflow in constant expression");
6488 /* If we're being permissive (and are in an enforcing
6489 context), consider this constant. */
6490 if (flag_permissive)
6491 return false;
6493 else
6494 error ("%q+E is not a constant expression", t);
6496 *non_constant_p = true;
6498 return *non_constant_p;
6500 #define VERIFY_CONSTANT(X) \
6501 do { \
6502 if (verify_constant ((X), allow_non_constant, non_constant_p)) \
6503 return t; \
6504 } while (0)
6506 /* Subroutine of cxx_eval_constant_expression.
6507 Attempt to reduce the unary expression tree T to a compile time value.
6508 If successful, return the value. Otherwise issue a diagnostic
6509 and return error_mark_node. */
6511 static tree
6512 cxx_eval_unary_expression (const constexpr_call *call, tree t,
6513 bool allow_non_constant, bool addr,
6514 bool *non_constant_p)
6516 tree r;
6517 tree orig_arg = TREE_OPERAND (t, 0);
6518 tree arg = cxx_eval_constant_expression (call, orig_arg, allow_non_constant,
6519 addr, non_constant_p);
6520 VERIFY_CONSTANT (arg);
6521 if (arg == orig_arg)
6522 return t;
6523 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), arg);
6524 VERIFY_CONSTANT (r);
6525 return r;
6528 /* Subroutine of cxx_eval_constant_expression.
6529 Like cxx_eval_unary_expression, except for binary expressions. */
6531 static tree
6532 cxx_eval_binary_expression (const constexpr_call *call, tree t,
6533 bool allow_non_constant, bool addr,
6534 bool *non_constant_p)
6536 tree r;
6537 tree orig_lhs = TREE_OPERAND (t, 0);
6538 tree orig_rhs = TREE_OPERAND (t, 1);
6539 tree lhs, rhs;
6540 lhs = cxx_eval_constant_expression (call, orig_lhs,
6541 allow_non_constant, addr,
6542 non_constant_p);
6543 VERIFY_CONSTANT (lhs);
6544 rhs = cxx_eval_constant_expression (call, orig_rhs,
6545 allow_non_constant, addr,
6546 non_constant_p);
6547 VERIFY_CONSTANT (rhs);
6548 if (lhs == orig_lhs && rhs == orig_rhs)
6549 return t;
6550 r = fold_build2 (TREE_CODE (t), TREE_TYPE (t), lhs, rhs);
6551 VERIFY_CONSTANT (r);
6552 return r;
6555 /* Subroutine of cxx_eval_constant_expression.
6556 Attempt to evaluate condition expressions. Dead branches are not
6557 looked into. */
6559 static tree
6560 cxx_eval_conditional_expression (const constexpr_call *call, tree t,
6561 bool allow_non_constant, bool addr,
6562 bool *non_constant_p)
6564 tree val = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6565 allow_non_constant, addr,
6566 non_constant_p);
6567 VERIFY_CONSTANT (val);
6568 /* Don't VERIFY_CONSTANT the other operands. */
6569 if (integer_zerop (val))
6570 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 2),
6571 allow_non_constant, addr,
6572 non_constant_p);
6573 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6574 allow_non_constant, addr,
6575 non_constant_p);
6578 /* Subroutine of cxx_eval_constant_expression.
6579 Attempt to reduce a reference to an array slot. */
6581 static tree
6582 cxx_eval_array_reference (const constexpr_call *call, tree t,
6583 bool allow_non_constant, bool addr,
6584 bool *non_constant_p)
6586 tree oldary = TREE_OPERAND (t, 0);
6587 tree ary = cxx_eval_constant_expression (call, oldary,
6588 allow_non_constant, addr,
6589 non_constant_p);
6590 tree index, oldidx;
6591 HOST_WIDE_INT i;
6592 tree elem_type;
6593 unsigned len, elem_nchars = 1;
6594 if (*non_constant_p)
6595 return t;
6596 oldidx = TREE_OPERAND (t, 1);
6597 index = cxx_eval_constant_expression (call, oldidx,
6598 allow_non_constant, false,
6599 non_constant_p);
6600 VERIFY_CONSTANT (index);
6601 if (addr && ary == oldary && index == oldidx)
6602 return t;
6603 else if (addr)
6604 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
6605 elem_type = TREE_TYPE (TREE_TYPE (ary));
6606 if (TREE_CODE (ary) == CONSTRUCTOR)
6607 len = CONSTRUCTOR_NELTS (ary);
6608 else if (TREE_CODE (ary) == STRING_CST)
6610 elem_nchars = (TYPE_PRECISION (elem_type)
6611 / TYPE_PRECISION (char_type_node));
6612 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
6614 else
6616 /* We can't do anything with other tree codes, so use
6617 VERIFY_CONSTANT to complain and fail. */
6618 VERIFY_CONSTANT (ary);
6619 gcc_unreachable ();
6621 if (compare_tree_int (index, len) >= 0)
6623 if (tree_int_cst_lt (index, array_type_nelts_top (TREE_TYPE (ary))))
6625 /* If it's within the array bounds but doesn't have an explicit
6626 initializer, it's value-initialized. */
6627 tree val = build_value_init (elem_type, tf_warning_or_error);
6628 return cxx_eval_constant_expression (call, val,
6629 allow_non_constant, addr,
6630 non_constant_p);
6633 if (!allow_non_constant)
6634 error ("array subscript out of bound");
6635 *non_constant_p = true;
6636 return t;
6638 i = tree_low_cst (index, 0);
6639 if (TREE_CODE (ary) == CONSTRUCTOR)
6640 return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ary), i)->value;
6641 else if (elem_nchars == 1)
6642 return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary))),
6643 TREE_STRING_POINTER (ary)[i]);
6644 else
6646 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (ary)));
6647 return native_interpret_expr (type, (const unsigned char *)
6648 TREE_STRING_POINTER (ary)
6649 + i * elem_nchars, elem_nchars);
6651 /* Don't VERIFY_CONSTANT here. */
6654 /* Subroutine of cxx_eval_constant_expression.
6655 Attempt to reduce a field access of a value of class type. */
6657 static tree
6658 cxx_eval_component_reference (const constexpr_call *call, tree t,
6659 bool allow_non_constant, bool addr,
6660 bool *non_constant_p)
6662 unsigned HOST_WIDE_INT i;
6663 tree field;
6664 tree value;
6665 tree part = TREE_OPERAND (t, 1);
6666 tree orig_whole = TREE_OPERAND (t, 0);
6667 tree whole = cxx_eval_constant_expression (call, orig_whole,
6668 allow_non_constant, addr,
6669 non_constant_p);
6670 if (whole == orig_whole)
6671 return t;
6672 if (addr)
6673 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
6674 whole, part, NULL_TREE);
6675 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6676 CONSTRUCTOR. */
6677 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6679 if (!allow_non_constant)
6680 error ("%qE is not a constant expression", orig_whole);
6681 *non_constant_p = true;
6683 if (*non_constant_p)
6684 return t;
6685 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6687 if (field == part)
6688 return value;
6690 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
6691 && CONSTRUCTOR_NELTS (whole) > 0)
6693 /* DR 1188 says we don't have to deal with this. */
6694 if (!allow_non_constant)
6695 error ("accessing %qD member instead of initialized %qD member in "
6696 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
6697 *non_constant_p = true;
6698 return t;
6701 /* If there's no explicit init for this field, it's value-initialized. */
6702 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
6703 return cxx_eval_constant_expression (call, value,
6704 allow_non_constant, addr,
6705 non_constant_p);
6708 /* Subroutine of cxx_eval_constant_expression.
6709 Attempt to reduce a field access of a value of class type that is
6710 expressed as a BIT_FIELD_REF. */
6712 static tree
6713 cxx_eval_bit_field_ref (const constexpr_call *call, tree t,
6714 bool allow_non_constant, bool addr,
6715 bool *non_constant_p)
6717 tree orig_whole = TREE_OPERAND (t, 0);
6718 tree retval, fldval, utype, mask;
6719 bool fld_seen = false;
6720 HOST_WIDE_INT istart, isize;
6721 tree whole = cxx_eval_constant_expression (call, orig_whole,
6722 allow_non_constant, addr,
6723 non_constant_p);
6724 tree start, field, value;
6725 unsigned HOST_WIDE_INT i;
6727 if (whole == orig_whole)
6728 return t;
6729 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6730 CONSTRUCTOR. */
6731 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6733 if (!allow_non_constant)
6734 error ("%qE is not a constant expression", orig_whole);
6735 *non_constant_p = true;
6737 if (*non_constant_p)
6738 return t;
6740 start = TREE_OPERAND (t, 2);
6741 istart = tree_low_cst (start, 0);
6742 isize = tree_low_cst (TREE_OPERAND (t, 1), 0);
6743 utype = TREE_TYPE (t);
6744 if (!TYPE_UNSIGNED (utype))
6745 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
6746 retval = build_int_cst (utype, 0);
6747 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6749 tree bitpos = bit_position (field);
6750 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
6751 return value;
6752 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
6753 && TREE_CODE (value) == INTEGER_CST
6754 && host_integerp (bitpos, 0)
6755 && host_integerp (DECL_SIZE (field), 0))
6757 HOST_WIDE_INT bit = tree_low_cst (bitpos, 0);
6758 HOST_WIDE_INT sz = tree_low_cst (DECL_SIZE (field), 0);
6759 HOST_WIDE_INT shift;
6760 if (bit >= istart && bit + sz <= istart + isize)
6762 fldval = fold_convert (utype, value);
6763 mask = build_int_cst_type (utype, -1);
6764 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
6765 size_int (TYPE_PRECISION (utype) - sz));
6766 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
6767 size_int (TYPE_PRECISION (utype) - sz));
6768 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
6769 shift = bit - istart;
6770 if (BYTES_BIG_ENDIAN)
6771 shift = TYPE_PRECISION (utype) - shift - sz;
6772 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
6773 size_int (shift));
6774 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
6775 fld_seen = true;
6779 if (fld_seen)
6780 return fold_convert (TREE_TYPE (t), retval);
6781 gcc_unreachable ();
6782 return error_mark_node;
6785 /* Subroutine of cxx_eval_constant_expression.
6786 Evaluate a short-circuited logical expression T in the context
6787 of a given constexpr CALL. BAILOUT_VALUE is the value for
6788 early return. CONTINUE_VALUE is used here purely for
6789 sanity check purposes. */
6791 static tree
6792 cxx_eval_logical_expression (const constexpr_call *call, tree t,
6793 tree bailout_value, tree continue_value,
6794 bool allow_non_constant, bool addr,
6795 bool *non_constant_p)
6797 tree r;
6798 tree lhs = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6799 allow_non_constant, addr,
6800 non_constant_p);
6801 VERIFY_CONSTANT (lhs);
6802 if (tree_int_cst_equal (lhs, bailout_value))
6803 return lhs;
6804 gcc_assert (tree_int_cst_equal (lhs, continue_value));
6805 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6806 allow_non_constant, addr, non_constant_p);
6807 VERIFY_CONSTANT (r);
6808 return r;
6811 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
6812 CONSTRUCTOR elements to initialize (part of) an object containing that
6813 field. Return a pointer to the constructor_elt corresponding to the
6814 initialization of the field. */
6816 static constructor_elt *
6817 base_field_constructor_elt (VEC(constructor_elt,gc) *v, tree ref)
6819 tree aggr = TREE_OPERAND (ref, 0);
6820 tree field = TREE_OPERAND (ref, 1);
6821 HOST_WIDE_INT i;
6822 constructor_elt *ce;
6824 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
6826 if (TREE_CODE (aggr) == COMPONENT_REF)
6828 constructor_elt *base_ce
6829 = base_field_constructor_elt (v, aggr);
6830 v = CONSTRUCTOR_ELTS (base_ce->value);
6833 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6834 if (ce->index == field)
6835 return ce;
6837 gcc_unreachable ();
6838 return NULL;
6841 /* Subroutine of cxx_eval_constant_expression.
6842 The expression tree T denotes a C-style array or a C-style
6843 aggregate. Reduce it to a constant expression. */
6845 static tree
6846 cxx_eval_bare_aggregate (const constexpr_call *call, tree t,
6847 bool allow_non_constant, bool addr,
6848 bool *non_constant_p)
6850 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (t);
6851 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc,
6852 VEC_length (constructor_elt, v));
6853 constructor_elt *ce;
6854 HOST_WIDE_INT i;
6855 bool changed = false;
6856 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
6857 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
6859 tree elt = cxx_eval_constant_expression (call, ce->value,
6860 allow_non_constant, addr,
6861 non_constant_p);
6862 /* Don't VERIFY_CONSTANT here. */
6863 if (allow_non_constant && *non_constant_p)
6864 goto fail;
6865 if (elt != ce->value)
6866 changed = true;
6867 if (TREE_CODE (ce->index) == COMPONENT_REF)
6869 /* This is an initialization of a vfield inside a base
6870 subaggregate that we already initialized; push this
6871 initialization into the previous initialization. */
6872 constructor_elt *inner = base_field_constructor_elt (n, ce->index);
6873 inner->value = elt;
6875 else
6876 CONSTRUCTOR_APPEND_ELT (n, ce->index, elt);
6878 if (*non_constant_p || !changed)
6880 fail:
6881 VEC_free (constructor_elt, gc, n);
6882 return t;
6884 t = build_constructor (TREE_TYPE (t), n);
6885 TREE_CONSTANT (t) = true;
6886 return t;
6889 /* Subroutine of cxx_eval_constant_expression.
6890 The expression tree T is a VEC_INIT_EXPR which denotes the desired
6891 initialization of a non-static data member of array type. Reduce it to a
6892 CONSTRUCTOR.
6894 Note that apart from value-initialization (when VALUE_INIT is true),
6895 this is only intended to support value-initialization and the
6896 initializations done by defaulted constructors for classes with
6897 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
6898 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
6899 for the copy/move constructor. */
6901 static tree
6902 cxx_eval_vec_init_1 (const constexpr_call *call, tree atype, tree init,
6903 bool value_init, bool allow_non_constant, bool addr,
6904 bool *non_constant_p)
6906 tree elttype = TREE_TYPE (atype);
6907 int max = tree_low_cst (array_type_nelts (atype), 0);
6908 VEC(constructor_elt,gc) *n = VEC_alloc (constructor_elt, gc, max + 1);
6909 bool pre_init = false;
6910 int i;
6912 /* For the default constructor, build up a call to the default
6913 constructor of the element type. We only need to handle class types
6914 here, as for a constructor to be constexpr, all members must be
6915 initialized, which for a defaulted default constructor means they must
6916 be of a class type with a constexpr default constructor. */
6917 if (TREE_CODE (elttype) == ARRAY_TYPE)
6918 /* We only do this at the lowest level. */;
6919 else if (value_init)
6921 init = build_value_init (elttype, tf_warning_or_error);
6922 init = cxx_eval_constant_expression
6923 (call, init, allow_non_constant, addr, non_constant_p);
6924 pre_init = true;
6926 else if (!init)
6928 VEC(tree,gc) *argvec = make_tree_vector ();
6929 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
6930 &argvec, elttype, LOOKUP_NORMAL,
6931 tf_warning_or_error);
6932 release_tree_vector (argvec);
6933 init = cxx_eval_constant_expression (call, init, allow_non_constant,
6934 addr, non_constant_p);
6935 pre_init = true;
6938 if (*non_constant_p && !allow_non_constant)
6939 goto fail;
6941 for (i = 0; i <= max; ++i)
6943 tree idx = build_int_cst (size_type_node, i);
6944 tree eltinit;
6945 if (TREE_CODE (elttype) == ARRAY_TYPE)
6947 /* A multidimensional array; recurse. */
6948 if (value_init)
6949 eltinit = NULL_TREE;
6950 else
6951 eltinit = cp_build_array_ref (input_location, init, idx,
6952 tf_warning_or_error);
6953 eltinit = cxx_eval_vec_init_1 (call, elttype, eltinit, value_init,
6954 allow_non_constant, addr,
6955 non_constant_p);
6957 else if (pre_init)
6959 /* Initializing an element using value or default initialization
6960 we just pre-built above. */
6961 if (i == 0)
6962 eltinit = init;
6963 else
6964 eltinit = unshare_expr (init);
6966 else
6968 /* Copying an element. */
6969 VEC(tree,gc) *argvec;
6970 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6971 (atype, TREE_TYPE (init)));
6972 eltinit = cp_build_array_ref (input_location, init, idx,
6973 tf_warning_or_error);
6974 if (!real_lvalue_p (init))
6975 eltinit = move (eltinit);
6976 argvec = make_tree_vector ();
6977 VEC_quick_push (tree, argvec, eltinit);
6978 eltinit = (build_special_member_call
6979 (NULL_TREE, complete_ctor_identifier, &argvec,
6980 elttype, LOOKUP_NORMAL, tf_warning_or_error));
6981 release_tree_vector (argvec);
6982 eltinit = cxx_eval_constant_expression
6983 (call, eltinit, allow_non_constant, addr, non_constant_p);
6985 if (*non_constant_p && !allow_non_constant)
6986 goto fail;
6987 CONSTRUCTOR_APPEND_ELT (n, idx, eltinit);
6990 if (!*non_constant_p)
6992 init = build_constructor (atype, n);
6993 TREE_CONSTANT (init) = true;
6994 return init;
6997 fail:
6998 VEC_free (constructor_elt, gc, n);
6999 return init;
7002 static tree
7003 cxx_eval_vec_init (const constexpr_call *call, tree t,
7004 bool allow_non_constant, bool addr,
7005 bool *non_constant_p)
7007 tree atype = TREE_TYPE (t);
7008 tree init = VEC_INIT_EXPR_INIT (t);
7009 tree r = cxx_eval_vec_init_1 (call, atype, init,
7010 VEC_INIT_EXPR_VALUE_INIT (t),
7011 allow_non_constant, addr, non_constant_p);
7012 if (*non_constant_p)
7013 return t;
7014 else
7015 return r;
7018 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
7019 match. We want to be less strict for simple *& folding; if we have a
7020 non-const temporary that we access through a const pointer, that should
7021 work. We handle this here rather than change fold_indirect_ref_1
7022 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
7023 don't really make sense outside of constant expression evaluation. Also
7024 we want to allow folding to COMPONENT_REF, which could cause trouble
7025 with TBAA in fold_indirect_ref_1.
7027 Try to keep this function synced with fold_indirect_ref_1. */
7029 static tree
7030 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
7032 tree sub, subtype;
7034 sub = op0;
7035 STRIP_NOPS (sub);
7036 subtype = TREE_TYPE (sub);
7037 gcc_assert (POINTER_TYPE_P (subtype));
7039 if (TREE_CODE (sub) == ADDR_EXPR)
7041 tree op = TREE_OPERAND (sub, 0);
7042 tree optype = TREE_TYPE (op);
7044 /* *&CONST_DECL -> to the value of the const decl. */
7045 if (TREE_CODE (op) == CONST_DECL)
7046 return DECL_INITIAL (op);
7047 /* *&p => p; make sure to handle *&"str"[cst] here. */
7048 if (same_type_ignoring_top_level_qualifiers_p (optype, type))
7050 tree fop = fold_read_from_constant_string (op);
7051 if (fop)
7052 return fop;
7053 else
7054 return op;
7056 /* *(foo *)&fooarray => fooarray[0] */
7057 else if (TREE_CODE (optype) == ARRAY_TYPE
7058 && (same_type_ignoring_top_level_qualifiers_p
7059 (type, TREE_TYPE (optype))))
7061 tree type_domain = TYPE_DOMAIN (optype);
7062 tree min_val = size_zero_node;
7063 if (type_domain && TYPE_MIN_VALUE (type_domain))
7064 min_val = TYPE_MIN_VALUE (type_domain);
7065 return build4_loc (loc, ARRAY_REF, type, op, min_val,
7066 NULL_TREE, NULL_TREE);
7068 /* *(foo *)&complexfoo => __real__ complexfoo */
7069 else if (TREE_CODE (optype) == COMPLEX_TYPE
7070 && (same_type_ignoring_top_level_qualifiers_p
7071 (type, TREE_TYPE (optype))))
7072 return fold_build1_loc (loc, REALPART_EXPR, type, op);
7073 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
7074 else if (TREE_CODE (optype) == VECTOR_TYPE
7075 && (same_type_ignoring_top_level_qualifiers_p
7076 (type, TREE_TYPE (optype))))
7078 tree part_width = TYPE_SIZE (type);
7079 tree index = bitsize_int (0);
7080 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
7082 /* Also handle conversion to an empty base class, which
7083 is represented with a NOP_EXPR. */
7084 else if (is_empty_class (type)
7085 && CLASS_TYPE_P (optype)
7086 && DERIVED_FROM_P (type, optype))
7088 *empty_base = true;
7089 return op;
7091 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
7092 else if (RECORD_OR_UNION_TYPE_P (optype))
7094 tree field = TYPE_FIELDS (optype);
7095 for (; field; field = DECL_CHAIN (field))
7096 if (TREE_CODE (field) == FIELD_DECL
7097 && integer_zerop (byte_position (field))
7098 && (same_type_ignoring_top_level_qualifiers_p
7099 (TREE_TYPE (field), type)))
7101 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
7102 break;
7106 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
7107 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
7109 tree op00 = TREE_OPERAND (sub, 0);
7110 tree op01 = TREE_OPERAND (sub, 1);
7112 STRIP_NOPS (op00);
7113 if (TREE_CODE (op00) == ADDR_EXPR)
7115 tree op00type;
7116 op00 = TREE_OPERAND (op00, 0);
7117 op00type = TREE_TYPE (op00);
7119 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
7120 if (TREE_CODE (op00type) == VECTOR_TYPE
7121 && (same_type_ignoring_top_level_qualifiers_p
7122 (type, TREE_TYPE (op00type))))
7124 HOST_WIDE_INT offset = tree_low_cst (op01, 0);
7125 tree part_width = TYPE_SIZE (type);
7126 unsigned HOST_WIDE_INT part_widthi = tree_low_cst (part_width, 0)/BITS_PER_UNIT;
7127 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
7128 tree index = bitsize_int (indexi);
7130 if (offset/part_widthi <= TYPE_VECTOR_SUBPARTS (op00type))
7131 return fold_build3_loc (loc,
7132 BIT_FIELD_REF, type, op00,
7133 part_width, index);
7136 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
7137 else if (TREE_CODE (op00type) == COMPLEX_TYPE
7138 && (same_type_ignoring_top_level_qualifiers_p
7139 (type, TREE_TYPE (op00type))))
7141 tree size = TYPE_SIZE_UNIT (type);
7142 if (tree_int_cst_equal (size, op01))
7143 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
7145 /* ((foo *)&fooarray)[1] => fooarray[1] */
7146 else if (TREE_CODE (op00type) == ARRAY_TYPE
7147 && (same_type_ignoring_top_level_qualifiers_p
7148 (type, TREE_TYPE (op00type))))
7150 tree type_domain = TYPE_DOMAIN (op00type);
7151 tree min_val = size_zero_node;
7152 if (type_domain && TYPE_MIN_VALUE (type_domain))
7153 min_val = TYPE_MIN_VALUE (type_domain);
7154 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
7155 TYPE_SIZE_UNIT (type));
7156 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
7157 return build4_loc (loc, ARRAY_REF, type, op00, op01,
7158 NULL_TREE, NULL_TREE);
7160 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
7161 else if (RECORD_OR_UNION_TYPE_P (op00type))
7163 tree field = TYPE_FIELDS (op00type);
7164 for (; field; field = DECL_CHAIN (field))
7165 if (TREE_CODE (field) == FIELD_DECL
7166 && tree_int_cst_equal (byte_position (field), op01)
7167 && (same_type_ignoring_top_level_qualifiers_p
7168 (TREE_TYPE (field), type)))
7170 return fold_build3 (COMPONENT_REF, type, op00,
7171 field, NULL_TREE);
7172 break;
7177 /* *(foo *)fooarrptreturn> (*fooarrptr)[0] */
7178 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
7179 && (same_type_ignoring_top_level_qualifiers_p
7180 (type, TREE_TYPE (TREE_TYPE (subtype)))))
7182 tree type_domain;
7183 tree min_val = size_zero_node;
7184 sub = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
7185 if (!sub)
7186 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
7187 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
7188 if (type_domain && TYPE_MIN_VALUE (type_domain))
7189 min_val = TYPE_MIN_VALUE (type_domain);
7190 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
7191 NULL_TREE);
7194 return NULL_TREE;
7197 static tree
7198 cxx_eval_indirect_ref (const constexpr_call *call, tree t,
7199 bool allow_non_constant, bool addr,
7200 bool *non_constant_p)
7202 tree orig_op0 = TREE_OPERAND (t, 0);
7203 tree op0 = cxx_eval_constant_expression (call, orig_op0, allow_non_constant,
7204 /*addr*/false, non_constant_p);
7205 bool empty_base = false;
7206 tree r;
7208 /* Don't VERIFY_CONSTANT here. */
7209 if (*non_constant_p)
7210 return t;
7212 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
7213 &empty_base);
7215 if (r)
7216 r = cxx_eval_constant_expression (call, r, allow_non_constant,
7217 addr, non_constant_p);
7218 else
7220 tree sub = op0;
7221 STRIP_NOPS (sub);
7222 if (TREE_CODE (sub) == ADDR_EXPR
7223 || TREE_CODE (sub) == POINTER_PLUS_EXPR)
7225 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
7226 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
7227 /* DR 1188 says we don't have to deal with this. */
7228 if (!allow_non_constant)
7229 error ("accessing value of %qE through a %qT glvalue in a "
7230 "constant expression", build_fold_indirect_ref (sub),
7231 TREE_TYPE (t));
7232 *non_constant_p = true;
7233 return t;
7237 /* If we're pulling out the value of an empty base, make sure
7238 that the whole object is constant and then return an empty
7239 CONSTRUCTOR. */
7240 if (empty_base)
7242 VERIFY_CONSTANT (r);
7243 r = build_constructor (TREE_TYPE (t), NULL);
7244 TREE_CONSTANT (r) = true;
7247 if (r == NULL_TREE)
7248 return t;
7249 return r;
7252 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
7253 Shared between potential_constant_expression and
7254 cxx_eval_constant_expression. */
7256 static void
7257 non_const_var_error (tree r)
7259 tree type = TREE_TYPE (r);
7260 error ("the value of %qD is not usable in a constant "
7261 "expression", r);
7262 /* Avoid error cascade. */
7263 if (DECL_INITIAL (r) == error_mark_node)
7264 return;
7265 if (DECL_DECLARED_CONSTEXPR_P (r))
7266 inform (DECL_SOURCE_LOCATION (r),
7267 "%qD used in its own initializer", r);
7268 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
7270 if (!CP_TYPE_CONST_P (type))
7271 inform (DECL_SOURCE_LOCATION (r),
7272 "%q#D is not const", r);
7273 else if (CP_TYPE_VOLATILE_P (type))
7274 inform (DECL_SOURCE_LOCATION (r),
7275 "%q#D is volatile", r);
7276 else if (!DECL_INITIAL (r)
7277 || !TREE_CONSTANT (DECL_INITIAL (r)))
7278 inform (DECL_SOURCE_LOCATION (r),
7279 "%qD was not initialized with a constant "
7280 "expression", r);
7281 else
7282 gcc_unreachable ();
7284 else
7286 if (cxx_dialect >= cxx0x && !DECL_DECLARED_CONSTEXPR_P (r))
7287 inform (DECL_SOURCE_LOCATION (r),
7288 "%qD was not declared %<constexpr%>", r);
7289 else
7290 inform (DECL_SOURCE_LOCATION (r),
7291 "%qD does not have integral or enumeration type",
7296 /* Attempt to reduce the expression T to a constant value.
7297 On failure, issue diagnostic and return error_mark_node. */
7298 /* FIXME unify with c_fully_fold */
7300 static tree
7301 cxx_eval_constant_expression (const constexpr_call *call, tree t,
7302 bool allow_non_constant, bool addr,
7303 bool *non_constant_p)
7305 tree r = t;
7307 if (t == error_mark_node)
7309 *non_constant_p = true;
7310 return t;
7312 if (CONSTANT_CLASS_P (t))
7314 if (TREE_CODE (t) == PTRMEM_CST)
7315 t = cplus_expand_constant (t);
7316 return t;
7318 if (TREE_CODE (t) != NOP_EXPR
7319 && reduced_constant_expression_p (t))
7320 return fold (t);
7322 switch (TREE_CODE (t))
7324 case VAR_DECL:
7325 if (addr)
7326 return t;
7327 /* else fall through. */
7328 case CONST_DECL:
7329 r = integral_constant_value (t);
7330 if (TREE_CODE (r) == TARGET_EXPR
7331 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
7332 r = TARGET_EXPR_INITIAL (r);
7333 if (DECL_P (r))
7335 if (!allow_non_constant)
7336 non_const_var_error (r);
7337 *non_constant_p = true;
7339 break;
7341 case FUNCTION_DECL:
7342 case TEMPLATE_DECL:
7343 case LABEL_DECL:
7344 return t;
7346 case PARM_DECL:
7347 if (call && DECL_CONTEXT (t) == call->fundef->decl)
7349 if (DECL_ARTIFICIAL (t) && DECL_CONSTRUCTOR_P (DECL_CONTEXT (t)))
7351 if (!allow_non_constant)
7352 sorry ("use of the value of the object being constructed "
7353 "in a constant expression");
7354 *non_constant_p = true;
7356 else
7357 r = lookup_parameter_binding (call, t);
7359 else if (addr)
7360 /* Defer in case this is only used for its type. */;
7361 else
7363 if (!allow_non_constant)
7364 error ("%qE is not a constant expression", t);
7365 *non_constant_p = true;
7367 break;
7369 case CALL_EXPR:
7370 case AGGR_INIT_EXPR:
7371 r = cxx_eval_call_expression (call, t, allow_non_constant, addr,
7372 non_constant_p);
7373 break;
7375 case TARGET_EXPR:
7376 if (!literal_type_p (TREE_TYPE (t)))
7378 if (!allow_non_constant)
7380 error ("temporary of non-literal type %qT in a "
7381 "constant expression", TREE_TYPE (t));
7382 explain_non_literal_class (TREE_TYPE (t));
7384 *non_constant_p = true;
7385 break;
7387 /* else fall through. */
7388 case INIT_EXPR:
7389 /* Pass false for 'addr' because these codes indicate
7390 initialization of a temporary. */
7391 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7392 allow_non_constant, false,
7393 non_constant_p);
7394 if (!*non_constant_p)
7395 /* Adjust the type of the result to the type of the temporary. */
7396 r = adjust_temp_type (TREE_TYPE (t), r);
7397 break;
7399 case SCOPE_REF:
7400 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7401 allow_non_constant, addr,
7402 non_constant_p);
7403 break;
7405 case RETURN_EXPR:
7406 case NON_LVALUE_EXPR:
7407 case TRY_CATCH_EXPR:
7408 case CLEANUP_POINT_EXPR:
7409 case MUST_NOT_THROW_EXPR:
7410 case SAVE_EXPR:
7411 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7412 allow_non_constant, addr,
7413 non_constant_p);
7414 break;
7416 /* These differ from cxx_eval_unary_expression in that this doesn't
7417 check for a constant operand or result; an address can be
7418 constant without its operand being, and vice versa. */
7419 case INDIRECT_REF:
7420 r = cxx_eval_indirect_ref (call, t, allow_non_constant, addr,
7421 non_constant_p);
7422 break;
7424 case ADDR_EXPR:
7426 tree oldop = TREE_OPERAND (t, 0);
7427 tree op = cxx_eval_constant_expression (call, oldop,
7428 allow_non_constant,
7429 /*addr*/true,
7430 non_constant_p);
7431 /* Don't VERIFY_CONSTANT here. */
7432 if (*non_constant_p)
7433 return t;
7434 /* This function does more aggressive folding than fold itself. */
7435 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
7436 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
7437 return t;
7438 break;
7441 case REALPART_EXPR:
7442 case IMAGPART_EXPR:
7443 case CONJ_EXPR:
7444 case FIX_TRUNC_EXPR:
7445 case FLOAT_EXPR:
7446 case NEGATE_EXPR:
7447 case ABS_EXPR:
7448 case BIT_NOT_EXPR:
7449 case TRUTH_NOT_EXPR:
7450 case FIXED_CONVERT_EXPR:
7451 r = cxx_eval_unary_expression (call, t, allow_non_constant, addr,
7452 non_constant_p);
7453 break;
7455 case COMPOUND_EXPR:
7457 /* check_return_expr sometimes wraps a TARGET_EXPR in a
7458 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
7459 introduced by build_call_a. */
7460 tree op0 = TREE_OPERAND (t, 0);
7461 tree op1 = TREE_OPERAND (t, 1);
7462 STRIP_NOPS (op1);
7463 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
7464 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
7465 r = cxx_eval_constant_expression (call, op0, allow_non_constant,
7466 addr, non_constant_p);
7467 else
7469 /* Check that the LHS is constant and then discard it. */
7470 cxx_eval_constant_expression (call, op0, allow_non_constant,
7471 false, non_constant_p);
7472 r = cxx_eval_constant_expression (call, op1, allow_non_constant,
7473 addr, non_constant_p);
7476 break;
7478 case POINTER_PLUS_EXPR:
7479 case PLUS_EXPR:
7480 case MINUS_EXPR:
7481 case MULT_EXPR:
7482 case TRUNC_DIV_EXPR:
7483 case CEIL_DIV_EXPR:
7484 case FLOOR_DIV_EXPR:
7485 case ROUND_DIV_EXPR:
7486 case TRUNC_MOD_EXPR:
7487 case CEIL_MOD_EXPR:
7488 case ROUND_MOD_EXPR:
7489 case RDIV_EXPR:
7490 case EXACT_DIV_EXPR:
7491 case MIN_EXPR:
7492 case MAX_EXPR:
7493 case LSHIFT_EXPR:
7494 case RSHIFT_EXPR:
7495 case LROTATE_EXPR:
7496 case RROTATE_EXPR:
7497 case BIT_IOR_EXPR:
7498 case BIT_XOR_EXPR:
7499 case BIT_AND_EXPR:
7500 case TRUTH_XOR_EXPR:
7501 case LT_EXPR:
7502 case LE_EXPR:
7503 case GT_EXPR:
7504 case GE_EXPR:
7505 case EQ_EXPR:
7506 case NE_EXPR:
7507 case UNORDERED_EXPR:
7508 case ORDERED_EXPR:
7509 case UNLT_EXPR:
7510 case UNLE_EXPR:
7511 case UNGT_EXPR:
7512 case UNGE_EXPR:
7513 case UNEQ_EXPR:
7514 case RANGE_EXPR:
7515 case COMPLEX_EXPR:
7516 r = cxx_eval_binary_expression (call, t, allow_non_constant, addr,
7517 non_constant_p);
7518 break;
7520 /* fold can introduce non-IF versions of these; still treat them as
7521 short-circuiting. */
7522 case TRUTH_AND_EXPR:
7523 case TRUTH_ANDIF_EXPR:
7524 r = cxx_eval_logical_expression (call, t, boolean_false_node,
7525 boolean_true_node,
7526 allow_non_constant, addr,
7527 non_constant_p);
7528 break;
7530 case TRUTH_OR_EXPR:
7531 case TRUTH_ORIF_EXPR:
7532 r = cxx_eval_logical_expression (call, t, boolean_true_node,
7533 boolean_false_node,
7534 allow_non_constant, addr,
7535 non_constant_p);
7536 break;
7538 case ARRAY_REF:
7539 r = cxx_eval_array_reference (call, t, allow_non_constant, addr,
7540 non_constant_p);
7541 break;
7543 case COMPONENT_REF:
7544 r = cxx_eval_component_reference (call, t, allow_non_constant, addr,
7545 non_constant_p);
7546 break;
7548 case BIT_FIELD_REF:
7549 r = cxx_eval_bit_field_ref (call, t, allow_non_constant, addr,
7550 non_constant_p);
7551 break;
7553 case COND_EXPR:
7554 case VEC_COND_EXPR:
7555 r = cxx_eval_conditional_expression (call, t, allow_non_constant, addr,
7556 non_constant_p);
7557 break;
7559 case CONSTRUCTOR:
7560 r = cxx_eval_bare_aggregate (call, t, allow_non_constant, addr,
7561 non_constant_p);
7562 break;
7564 case VEC_INIT_EXPR:
7565 /* We can get this in a defaulted constructor for a class with a
7566 non-static data member of array type. Either the initializer will
7567 be NULL, meaning default-initialization, or it will be an lvalue
7568 or xvalue of the same type, meaning direct-initialization from the
7569 corresponding member. */
7570 r = cxx_eval_vec_init (call, t, allow_non_constant, addr,
7571 non_constant_p);
7572 break;
7574 case CONVERT_EXPR:
7575 case VIEW_CONVERT_EXPR:
7576 case NOP_EXPR:
7578 tree oldop = TREE_OPERAND (t, 0);
7579 tree op = oldop;
7580 tree to = TREE_TYPE (t);
7581 tree source = TREE_TYPE (op);
7582 if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (to)
7583 && !(TREE_CODE (op) == COMPONENT_REF
7584 && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (op, 0)))))
7586 if (!allow_non_constant)
7587 error ("conversion of expression %qE of pointer type "
7588 "cannot yield a constant expression", op);
7589 *non_constant_p = true;
7590 return t;
7592 op = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7593 allow_non_constant, addr,
7594 non_constant_p);
7595 if (*non_constant_p)
7596 return t;
7597 if (op == oldop)
7598 /* We didn't fold at the top so we could check for ptr-int
7599 conversion. */
7600 return fold (t);
7601 r = fold_build1 (TREE_CODE (t), to, op);
7602 /* Conversion of an out-of-range value has implementation-defined
7603 behavior; the language considers it different from arithmetic
7604 overflow, which is undefined. */
7605 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
7606 TREE_OVERFLOW (r) = false;
7608 break;
7610 case EMPTY_CLASS_EXPR:
7611 /* This is good enough for a function argument that might not get
7612 used, and they can't do anything with it, so just return it. */
7613 return t;
7615 case LAMBDA_EXPR:
7616 case PREINCREMENT_EXPR:
7617 case POSTINCREMENT_EXPR:
7618 case PREDECREMENT_EXPR:
7619 case POSTDECREMENT_EXPR:
7620 case NEW_EXPR:
7621 case VEC_NEW_EXPR:
7622 case DELETE_EXPR:
7623 case VEC_DELETE_EXPR:
7624 case THROW_EXPR:
7625 case MODIFY_EXPR:
7626 case MODOP_EXPR:
7627 /* GCC internal stuff. */
7628 case VA_ARG_EXPR:
7629 case OBJ_TYPE_REF:
7630 case WITH_CLEANUP_EXPR:
7631 case STATEMENT_LIST:
7632 case BIND_EXPR:
7633 case NON_DEPENDENT_EXPR:
7634 case BASELINK:
7635 case EXPR_STMT:
7636 case OFFSET_REF:
7637 if (!allow_non_constant)
7638 error_at (EXPR_LOC_OR_HERE (t),
7639 "expression %qE is not a constant-expression", t);
7640 *non_constant_p = true;
7641 break;
7643 default:
7644 internal_error ("unexpected expression %qE of kind %s", t,
7645 tree_code_name[TREE_CODE (t)]);
7646 *non_constant_p = true;
7647 break;
7650 if (r == error_mark_node)
7651 *non_constant_p = true;
7653 if (*non_constant_p)
7654 return t;
7655 else
7656 return r;
7659 static tree
7660 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant)
7662 bool non_constant_p = false;
7663 tree r = cxx_eval_constant_expression (NULL, t, allow_non_constant,
7664 false, &non_constant_p);
7666 verify_constant (r, allow_non_constant, &non_constant_p);
7668 if (non_constant_p && !allow_non_constant)
7669 return error_mark_node;
7670 else if (non_constant_p && TREE_CONSTANT (t))
7672 /* This isn't actually constant, so unset TREE_CONSTANT. */
7673 if (EXPR_P (t) || TREE_CODE (t) == CONSTRUCTOR)
7674 r = copy_node (t);
7675 else
7676 r = build_nop (TREE_TYPE (t), t);
7677 TREE_CONSTANT (r) = false;
7678 return r;
7680 else if (non_constant_p || r == t)
7681 return t;
7682 else if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
7684 if (TREE_CODE (t) == TARGET_EXPR
7685 && TARGET_EXPR_INITIAL (t) == r)
7686 return t;
7687 else
7689 r = get_target_expr (r);
7690 TREE_CONSTANT (r) = true;
7691 return r;
7694 else
7695 return r;
7698 /* Returns true if T is a valid subexpression of a constant expression,
7699 even if it isn't itself a constant expression. */
7701 bool
7702 is_sub_constant_expr (tree t)
7704 bool non_constant_p = false;
7705 cxx_eval_constant_expression (NULL, t, true, false, &non_constant_p);
7706 return !non_constant_p;
7709 /* If T represents a constant expression returns its reduced value.
7710 Otherwise return error_mark_node. If T is dependent, then
7711 return NULL. */
7713 tree
7714 cxx_constant_value (tree t)
7716 return cxx_eval_outermost_constant_expr (t, false);
7719 /* If T is a constant expression, returns its reduced value.
7720 Otherwise, if T does not have TREE_CONSTANT set, returns T.
7721 Otherwise, returns a version of T without TREE_CONSTANT. */
7723 tree
7724 maybe_constant_value (tree t)
7726 tree r;
7728 if (type_dependent_expression_p (t)
7729 || type_unknown_p (t)
7730 || BRACE_ENCLOSED_INITIALIZER_P (t)
7731 || !potential_constant_expression (t)
7732 || value_dependent_expression_p (t))
7734 if (TREE_OVERFLOW_P (t))
7736 t = build_nop (TREE_TYPE (t), t);
7737 TREE_CONSTANT (t) = false;
7739 return t;
7742 r = cxx_eval_outermost_constant_expr (t, true);
7743 #ifdef ENABLE_CHECKING
7744 /* cp_tree_equal looks through NOPs, so allow them. */
7745 gcc_assert (r == t
7746 || CONVERT_EXPR_P (t)
7747 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
7748 || !cp_tree_equal (r, t));
7749 #endif
7750 return r;
7753 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
7754 than wrapped in a TARGET_EXPR. */
7756 tree
7757 maybe_constant_init (tree t)
7759 t = maybe_constant_value (t);
7760 if (TREE_CODE (t) == TARGET_EXPR)
7762 tree init = TARGET_EXPR_INITIAL (t);
7763 if (TREE_CODE (init) == CONSTRUCTOR
7764 && TREE_CONSTANT (init))
7765 t = init;
7767 return t;
7770 #if 0
7771 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
7772 /* Return true if the object referred to by REF has automatic or thread
7773 local storage. */
7775 enum { ck_ok, ck_bad, ck_unknown };
7776 static int
7777 check_automatic_or_tls (tree ref)
7779 enum machine_mode mode;
7780 HOST_WIDE_INT bitsize, bitpos;
7781 tree offset;
7782 int volatilep = 0, unsignedp = 0;
7783 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
7784 &mode, &unsignedp, &volatilep, false);
7785 duration_kind dk;
7787 /* If there isn't a decl in the middle, we don't know the linkage here,
7788 and this isn't a constant expression anyway. */
7789 if (!DECL_P (decl))
7790 return ck_unknown;
7791 dk = decl_storage_duration (decl);
7792 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
7794 #endif
7796 /* Return true if T denotes a potentially constant expression. Issue
7797 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
7798 an lvalue-rvalue conversion is implied.
7800 C++0x [expr.const] used to say
7802 6 An expression is a potential constant expression if it is
7803 a constant expression where all occurences of function
7804 parameters are replaced by arbitrary constant expressions
7805 of the appropriate type.
7807 2 A conditional expression is a constant expression unless it
7808 involves one of the following as a potentially evaluated
7809 subexpression (3.2), but subexpressions of logical AND (5.14),
7810 logical OR (5.15), and conditional (5.16) operations that are
7811 not evaluated are not considered. */
7813 static bool
7814 potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
7816 enum { any = false, rval = true };
7817 int i;
7818 tree tmp;
7820 /* C++98 has different rules for the form of a constant expression that
7821 are enforced in the parser, so we can assume that anything that gets
7822 this far is suitable. */
7823 if (cxx_dialect < cxx0x)
7824 return true;
7826 if (t == error_mark_node)
7827 return false;
7828 if (t == NULL_TREE)
7829 return true;
7830 if (TREE_THIS_VOLATILE (t))
7832 if (flags & tf_error)
7833 error ("expression %qE has side-effects", t);
7834 return false;
7836 if (CONSTANT_CLASS_P (t))
7838 if (TREE_OVERFLOW (t))
7840 if (flags & tf_error)
7842 permerror (EXPR_LOC_OR_HERE (t),
7843 "overflow in constant expression");
7844 if (flag_permissive)
7845 return true;
7847 return false;
7849 return true;
7852 switch (TREE_CODE (t))
7854 case FUNCTION_DECL:
7855 case BASELINK:
7856 case TEMPLATE_DECL:
7857 case OVERLOAD:
7858 case TEMPLATE_ID_EXPR:
7859 case LABEL_DECL:
7860 case CONST_DECL:
7861 case SIZEOF_EXPR:
7862 case ALIGNOF_EXPR:
7863 case OFFSETOF_EXPR:
7864 case NOEXCEPT_EXPR:
7865 case TEMPLATE_PARM_INDEX:
7866 case TRAIT_EXPR:
7867 case IDENTIFIER_NODE:
7868 /* We can see a FIELD_DECL in a pointer-to-member expression. */
7869 case FIELD_DECL:
7870 case PARM_DECL:
7871 case USING_DECL:
7872 return true;
7874 case AGGR_INIT_EXPR:
7875 case CALL_EXPR:
7876 /* -- an invocation of a function other than a constexpr function
7877 or a constexpr constructor. */
7879 tree fun = get_function_named_in_call (t);
7880 const int nargs = call_expr_nargs (t);
7881 i = 0;
7883 if (is_overloaded_fn (fun))
7885 if (TREE_CODE (fun) == FUNCTION_DECL)
7887 if (builtin_valid_in_constant_expr_p (fun))
7888 return true;
7889 if (!DECL_DECLARED_CONSTEXPR_P (fun)
7890 /* Allow any built-in function; if the expansion
7891 isn't constant, we'll deal with that then. */
7892 && !is_builtin_fn (fun))
7894 if (flags & tf_error)
7896 error_at (EXPR_LOC_OR_HERE (t),
7897 "call to non-constexpr function %qD", fun);
7898 explain_invalid_constexpr_fn (fun);
7900 return false;
7902 /* A call to a non-static member function takes the address
7903 of the object as the first argument. But in a constant
7904 expression the address will be folded away, so look
7905 through it now. */
7906 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
7907 && !DECL_CONSTRUCTOR_P (fun))
7909 tree x = get_nth_callarg (t, 0);
7910 if (is_this_parameter (x))
7912 if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
7914 if (flags & tf_error)
7915 sorry ("calling a member function of the "
7916 "object being constructed in a constant "
7917 "expression");
7918 return false;
7920 /* Otherwise OK. */;
7922 else if (!potential_constant_expression_1 (x, rval, flags))
7923 return false;
7924 i = 1;
7927 else
7928 fun = get_first_fn (fun);
7929 /* Skip initial arguments to base constructors. */
7930 if (DECL_BASE_CONSTRUCTOR_P (fun))
7931 i = num_artificial_parms_for (fun);
7932 fun = DECL_ORIGIN (fun);
7934 else
7936 if (potential_constant_expression_1 (fun, rval, flags))
7937 /* Might end up being a constant function pointer. */;
7938 else
7939 return false;
7941 for (; i < nargs; ++i)
7943 tree x = get_nth_callarg (t, i);
7944 if (!potential_constant_expression_1 (x, rval, flags))
7945 return false;
7947 return true;
7950 case NON_LVALUE_EXPR:
7951 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
7952 -- an lvalue of integral type that refers to a non-volatile
7953 const variable or static data member initialized with
7954 constant expressions, or
7956 -- an lvalue of literal type that refers to non-volatile
7957 object defined with constexpr, or that refers to a
7958 sub-object of such an object; */
7959 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
7961 case VAR_DECL:
7962 if (want_rval && !decl_constant_var_p (t)
7963 && !dependent_type_p (TREE_TYPE (t)))
7965 if (flags & tf_error)
7966 non_const_var_error (t);
7967 return false;
7969 return true;
7971 case NOP_EXPR:
7972 case CONVERT_EXPR:
7973 case VIEW_CONVERT_EXPR:
7974 /* -- an array-to-pointer conversion that is applied to an lvalue
7975 that designates an object with thread or automatic storage
7976 duration; FIXME not implemented as it breaks constexpr arrays;
7977 need to fix the standard
7978 -- a type conversion from a pointer or pointer-to-member type
7979 to a literal type. */
7981 tree from = TREE_OPERAND (t, 0);
7982 tree source = TREE_TYPE (from);
7983 tree target = TREE_TYPE (t);
7984 if (TYPE_PTR_P (source) && ARITHMETIC_TYPE_P (target)
7985 && !(TREE_CODE (from) == COMPONENT_REF
7986 && TYPE_PTRMEMFUNC_P (TREE_TYPE (TREE_OPERAND (from, 0)))))
7988 if (flags & tf_error)
7989 error ("conversion of expression %qE of pointer type "
7990 "cannot yield a constant expression", from);
7991 return false;
7993 return (potential_constant_expression_1
7994 (from, TREE_CODE (t) != VIEW_CONVERT_EXPR, flags));
7997 case ADDR_EXPR:
7998 /* -- a unary operator & that is applied to an lvalue that
7999 designates an object with thread or automatic storage
8000 duration; */
8001 t = TREE_OPERAND (t, 0);
8002 #if 0
8003 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
8004 any checking here, as we might dereference the pointer later. If
8005 we remove this code, also remove check_automatic_or_tls. */
8006 i = check_automatic_or_tls (t);
8007 if (i == ck_ok)
8008 return true;
8009 if (i == ck_bad)
8011 if (flags & tf_error)
8012 error ("address-of an object %qE with thread local or "
8013 "automatic storage is not a constant expression", t);
8014 return false;
8016 #endif
8017 return potential_constant_expression_1 (t, any, flags);
8019 case COMPONENT_REF:
8020 case BIT_FIELD_REF:
8021 case ARROW_EXPR:
8022 case OFFSET_REF:
8023 /* -- a class member access unless its postfix-expression is
8024 of literal type or of pointer to literal type. */
8025 /* This test would be redundant, as it follows from the
8026 postfix-expression being a potential constant expression. */
8027 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8028 want_rval, flags);
8030 case EXPR_PACK_EXPANSION:
8031 return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t),
8032 want_rval, flags);
8034 case INDIRECT_REF:
8036 tree x = TREE_OPERAND (t, 0);
8037 STRIP_NOPS (x);
8038 if (is_this_parameter (x))
8040 if (want_rval && DECL_CONTEXT (x)
8041 && DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
8043 if (flags & tf_error)
8044 sorry ("use of the value of the object being constructed "
8045 "in a constant expression");
8046 return false;
8048 return true;
8050 return potential_constant_expression_1 (x, rval, flags);
8053 case LAMBDA_EXPR:
8054 case DYNAMIC_CAST_EXPR:
8055 case PSEUDO_DTOR_EXPR:
8056 case PREINCREMENT_EXPR:
8057 case POSTINCREMENT_EXPR:
8058 case PREDECREMENT_EXPR:
8059 case POSTDECREMENT_EXPR:
8060 case NEW_EXPR:
8061 case VEC_NEW_EXPR:
8062 case DELETE_EXPR:
8063 case VEC_DELETE_EXPR:
8064 case THROW_EXPR:
8065 case MODIFY_EXPR:
8066 case MODOP_EXPR:
8067 /* GCC internal stuff. */
8068 case VA_ARG_EXPR:
8069 case OBJ_TYPE_REF:
8070 case WITH_CLEANUP_EXPR:
8071 case CLEANUP_POINT_EXPR:
8072 case MUST_NOT_THROW_EXPR:
8073 case TRY_CATCH_EXPR:
8074 case STATEMENT_LIST:
8075 /* Don't bother trying to define a subset of statement-expressions to
8076 be constant-expressions, at least for now. */
8077 case STMT_EXPR:
8078 case EXPR_STMT:
8079 case BIND_EXPR:
8080 if (flags & tf_error)
8081 error ("expression %qE is not a constant-expression", t);
8082 return false;
8084 case TYPEID_EXPR:
8085 /* -- a typeid expression whose operand is of polymorphic
8086 class type; */
8088 tree e = TREE_OPERAND (t, 0);
8089 if (!TYPE_P (e) && !type_dependent_expression_p (e)
8090 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
8092 if (flags & tf_error)
8093 error ("typeid-expression is not a constant expression "
8094 "because %qE is of polymorphic type", e);
8095 return false;
8097 return true;
8100 case MINUS_EXPR:
8101 /* -- a subtraction where both operands are pointers. */
8102 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8103 && TYPE_PTR_P (TREE_OPERAND (t, 1)))
8105 if (flags & tf_error)
8106 error ("difference of two pointer expressions is not "
8107 "a constant expression");
8108 return false;
8110 want_rval = true;
8111 goto binary;
8113 case LT_EXPR:
8114 case LE_EXPR:
8115 case GT_EXPR:
8116 case GE_EXPR:
8117 case EQ_EXPR:
8118 case NE_EXPR:
8119 /* -- a relational or equality operator where at least
8120 one of the operands is a pointer. */
8121 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8122 || TYPE_PTR_P (TREE_OPERAND (t, 1)))
8124 if (flags & tf_error)
8125 error ("pointer comparison expression is not a "
8126 "constant expression");
8127 return false;
8129 want_rval = true;
8130 goto binary;
8132 case BIT_NOT_EXPR:
8133 /* A destructor. */
8134 if (TYPE_P (TREE_OPERAND (t, 0)))
8135 return true;
8136 /* else fall through. */
8138 case REALPART_EXPR:
8139 case IMAGPART_EXPR:
8140 case CONJ_EXPR:
8141 case SAVE_EXPR:
8142 case FIX_TRUNC_EXPR:
8143 case FLOAT_EXPR:
8144 case NEGATE_EXPR:
8145 case ABS_EXPR:
8146 case TRUTH_NOT_EXPR:
8147 case FIXED_CONVERT_EXPR:
8148 case UNARY_PLUS_EXPR:
8149 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval,
8150 flags);
8152 case CAST_EXPR:
8153 case CONST_CAST_EXPR:
8154 case STATIC_CAST_EXPR:
8155 case REINTERPRET_CAST_EXPR:
8156 case IMPLICIT_CONV_EXPR:
8157 return (potential_constant_expression_1
8158 (TREE_OPERAND (t, 0),
8159 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE, flags));
8161 case PAREN_EXPR:
8162 case NON_DEPENDENT_EXPR:
8163 /* For convenience. */
8164 case RETURN_EXPR:
8165 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8166 want_rval, flags);
8168 case SCOPE_REF:
8169 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8170 want_rval, flags);
8172 case TARGET_EXPR:
8173 if (!literal_type_p (TREE_TYPE (t)))
8175 if (flags & tf_error)
8177 error ("temporary of non-literal type %qT in a "
8178 "constant expression", TREE_TYPE (t));
8179 explain_non_literal_class (TREE_TYPE (t));
8181 return false;
8183 case INIT_EXPR:
8184 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8185 rval, flags);
8187 case CONSTRUCTOR:
8189 VEC(constructor_elt, gc) *v = CONSTRUCTOR_ELTS (t);
8190 constructor_elt *ce;
8191 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i)
8192 if (!potential_constant_expression_1 (ce->value, want_rval, flags))
8193 return false;
8194 return true;
8197 case TREE_LIST:
8199 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
8200 || DECL_P (TREE_PURPOSE (t)));
8201 if (!potential_constant_expression_1 (TREE_VALUE (t), want_rval,
8202 flags))
8203 return false;
8204 if (TREE_CHAIN (t) == NULL_TREE)
8205 return true;
8206 return potential_constant_expression_1 (TREE_CHAIN (t), want_rval,
8207 flags);
8210 case TRUNC_DIV_EXPR:
8211 case CEIL_DIV_EXPR:
8212 case FLOOR_DIV_EXPR:
8213 case ROUND_DIV_EXPR:
8214 case TRUNC_MOD_EXPR:
8215 case CEIL_MOD_EXPR:
8216 case ROUND_MOD_EXPR:
8218 tree denom = TREE_OPERAND (t, 1);
8219 /* We can't call maybe_constant_value on an expression
8220 that hasn't been through fold_non_dependent_expr yet. */
8221 if (!processing_template_decl)
8222 denom = maybe_constant_value (denom);
8223 if (integer_zerop (denom))
8225 if (flags & tf_error)
8226 error ("division by zero is not a constant-expression");
8227 return false;
8229 else
8231 want_rval = true;
8232 goto binary;
8236 case COMPOUND_EXPR:
8238 /* check_return_expr sometimes wraps a TARGET_EXPR in a
8239 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
8240 introduced by build_call_a. */
8241 tree op0 = TREE_OPERAND (t, 0);
8242 tree op1 = TREE_OPERAND (t, 1);
8243 STRIP_NOPS (op1);
8244 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
8245 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
8246 return potential_constant_expression_1 (op0, want_rval, flags);
8247 else
8248 goto binary;
8251 /* If the first operand is the non-short-circuit constant, look at
8252 the second operand; otherwise we only care about the first one for
8253 potentiality. */
8254 case TRUTH_AND_EXPR:
8255 case TRUTH_ANDIF_EXPR:
8256 tmp = boolean_true_node;
8257 goto truth;
8258 case TRUTH_OR_EXPR:
8259 case TRUTH_ORIF_EXPR:
8260 tmp = boolean_false_node;
8261 truth:
8262 if (TREE_OPERAND (t, 0) == tmp)
8263 return potential_constant_expression_1 (TREE_OPERAND (t, 1), rval, flags);
8264 else
8265 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
8267 case PLUS_EXPR:
8268 case MULT_EXPR:
8269 case POINTER_PLUS_EXPR:
8270 case RDIV_EXPR:
8271 case EXACT_DIV_EXPR:
8272 case MIN_EXPR:
8273 case MAX_EXPR:
8274 case LSHIFT_EXPR:
8275 case RSHIFT_EXPR:
8276 case LROTATE_EXPR:
8277 case RROTATE_EXPR:
8278 case BIT_IOR_EXPR:
8279 case BIT_XOR_EXPR:
8280 case BIT_AND_EXPR:
8281 case TRUTH_XOR_EXPR:
8282 case UNORDERED_EXPR:
8283 case ORDERED_EXPR:
8284 case UNLT_EXPR:
8285 case UNLE_EXPR:
8286 case UNGT_EXPR:
8287 case UNGE_EXPR:
8288 case UNEQ_EXPR:
8289 case RANGE_EXPR:
8290 case COMPLEX_EXPR:
8291 want_rval = true;
8292 /* Fall through. */
8293 case ARRAY_REF:
8294 case ARRAY_RANGE_REF:
8295 case MEMBER_REF:
8296 case DOTSTAR_EXPR:
8297 binary:
8298 for (i = 0; i < 2; ++i)
8299 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8300 want_rval, flags))
8301 return false;
8302 return true;
8304 case FMA_EXPR:
8305 for (i = 0; i < 3; ++i)
8306 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8307 true, flags))
8308 return false;
8309 return true;
8311 case COND_EXPR:
8312 case VEC_COND_EXPR:
8313 /* If the condition is a known constant, we know which of the legs we
8314 care about; otherwise we only require that the condition and
8315 either of the legs be potentially constant. */
8316 tmp = TREE_OPERAND (t, 0);
8317 if (!potential_constant_expression_1 (tmp, rval, flags))
8318 return false;
8319 else if (integer_zerop (tmp))
8320 return potential_constant_expression_1 (TREE_OPERAND (t, 2),
8321 want_rval, flags);
8322 else if (TREE_CODE (tmp) == INTEGER_CST)
8323 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8324 want_rval, flags);
8325 for (i = 1; i < 3; ++i)
8326 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
8327 want_rval, tf_none))
8328 return true;
8329 if (flags & tf_error)
8330 error ("expression %qE is not a constant-expression", t);
8331 return false;
8333 case VEC_INIT_EXPR:
8334 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
8335 return true;
8336 if (flags & tf_error)
8338 error ("non-constant array initialization");
8339 diagnose_non_constexpr_vec_init (t);
8341 return false;
8343 default:
8344 sorry ("unexpected AST of kind %s", tree_code_name[TREE_CODE (t)]);
8345 gcc_unreachable();
8346 return false;
8350 /* The main entry point to the above. */
8352 bool
8353 potential_constant_expression (tree t)
8355 return potential_constant_expression_1 (t, false, tf_none);
8358 /* As above, but require a constant rvalue. */
8360 bool
8361 potential_rvalue_constant_expression (tree t)
8363 return potential_constant_expression_1 (t, true, tf_none);
8366 /* Like above, but complain about non-constant expressions. */
8368 bool
8369 require_potential_constant_expression (tree t)
8371 return potential_constant_expression_1 (t, false, tf_warning_or_error);
8374 /* Cross product of the above. */
8376 bool
8377 require_potential_rvalue_constant_expression (tree t)
8379 return potential_constant_expression_1 (t, true, tf_warning_or_error);
8382 /* Constructor for a lambda expression. */
8384 tree
8385 build_lambda_expr (void)
8387 tree lambda = make_node (LAMBDA_EXPR);
8388 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
8389 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE;
8390 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE;
8391 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL;
8392 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE;
8393 LAMBDA_EXPR_MUTABLE_P (lambda) = false;
8394 return lambda;
8397 /* Create the closure object for a LAMBDA_EXPR. */
8399 tree
8400 build_lambda_object (tree lambda_expr)
8402 /* Build aggregate constructor call.
8403 - cp_parser_braced_list
8404 - cp_parser_functional_cast */
8405 VEC(constructor_elt,gc) *elts = NULL;
8406 tree node, expr, type;
8407 location_t saved_loc;
8409 if (processing_template_decl)
8410 return lambda_expr;
8412 /* Make sure any error messages refer to the lambda-introducer. */
8413 saved_loc = input_location;
8414 input_location = LAMBDA_EXPR_LOCATION (lambda_expr);
8416 for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
8417 node;
8418 node = TREE_CHAIN (node))
8420 tree field = TREE_PURPOSE (node);
8421 tree val = TREE_VALUE (node);
8423 if (field == error_mark_node)
8425 expr = error_mark_node;
8426 goto out;
8429 if (DECL_P (val))
8430 mark_used (val);
8432 /* Mere mortals can't copy arrays with aggregate initialization, so
8433 do some magic to make it work here. */
8434 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
8435 val = build_array_copy (val);
8436 else if (DECL_NORMAL_CAPTURE_P (field)
8437 && TREE_CODE (TREE_TYPE (field)) != REFERENCE_TYPE)
8439 /* "the entities that are captured by copy are used to
8440 direct-initialize each corresponding non-static data
8441 member of the resulting closure object."
8443 There's normally no way to express direct-initialization
8444 from an element of a CONSTRUCTOR, so we build up a special
8445 TARGET_EXPR to bypass the usual copy-initialization. */
8446 val = force_rvalue (val, tf_warning_or_error);
8447 if (TREE_CODE (val) == TARGET_EXPR)
8448 TARGET_EXPR_DIRECT_INIT_P (val) = true;
8451 CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
8454 expr = build_constructor (init_list_type_node, elts);
8455 CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
8457 /* N2927: "[The closure] class type is not an aggregate."
8458 But we briefly treat it as an aggregate to make this simpler. */
8459 type = LAMBDA_EXPR_CLOSURE (lambda_expr);
8460 CLASSTYPE_NON_AGGREGATE (type) = 0;
8461 expr = finish_compound_literal (type, expr, tf_warning_or_error);
8462 CLASSTYPE_NON_AGGREGATE (type) = 1;
8464 out:
8465 input_location = saved_loc;
8466 return expr;
8469 /* Return an initialized RECORD_TYPE for LAMBDA.
8470 LAMBDA must have its explicit captures already. */
8472 tree
8473 begin_lambda_type (tree lambda)
8475 tree type;
8478 /* Unique name. This is just like an unnamed class, but we cannot use
8479 make_anon_name because of certain checks against TYPE_ANONYMOUS_P. */
8480 tree name;
8481 name = make_lambda_name ();
8483 /* Create the new RECORD_TYPE for this lambda. */
8484 type = xref_tag (/*tag_code=*/record_type,
8485 name,
8486 /*scope=*/ts_within_enclosing_non_class,
8487 /*template_header_p=*/false);
8490 /* Designate it as a struct so that we can use aggregate initialization. */
8491 CLASSTYPE_DECLARED_CLASS (type) = false;
8493 /* Clear base types. */
8494 xref_basetypes (type, /*bases=*/NULL_TREE);
8496 /* Start the class. */
8497 type = begin_class_definition (type, /*attributes=*/NULL_TREE);
8499 /* Cross-reference the expression and the type. */
8500 LAMBDA_EXPR_CLOSURE (lambda) = type;
8501 CLASSTYPE_LAMBDA_EXPR (type) = lambda;
8503 return type;
8506 /* Returns the type to use for the return type of the operator() of a
8507 closure class. */
8509 tree
8510 lambda_return_type (tree expr)
8512 tree type;
8513 if (type_unknown_p (expr)
8514 || BRACE_ENCLOSED_INITIALIZER_P (expr))
8516 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
8517 return void_type_node;
8519 if (type_dependent_expression_p (expr))
8520 type = dependent_lambda_return_type_node;
8521 else
8522 type = cv_unqualified (type_decays_to (unlowered_expr_type (expr)));
8523 return type;
8526 /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
8527 closure type. */
8529 tree
8530 lambda_function (tree lambda)
8532 tree type;
8533 if (TREE_CODE (lambda) == LAMBDA_EXPR)
8534 type = LAMBDA_EXPR_CLOSURE (lambda);
8535 else
8536 type = lambda;
8537 gcc_assert (LAMBDA_TYPE_P (type));
8538 /* Don't let debug_tree cause instantiation. */
8539 if (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
8540 && !COMPLETE_OR_OPEN_TYPE_P (type))
8541 return NULL_TREE;
8542 lambda = lookup_member (type, ansi_opname (CALL_EXPR),
8543 /*protect=*/0, /*want_type=*/false);
8544 if (lambda)
8545 lambda = BASELINK_FUNCTIONS (lambda);
8546 return lambda;
8549 /* Returns the type to use for the FIELD_DECL corresponding to the
8550 capture of EXPR.
8551 The caller should add REFERENCE_TYPE for capture by reference. */
8553 tree
8554 lambda_capture_field_type (tree expr)
8556 tree type;
8557 if (type_dependent_expression_p (expr))
8559 type = cxx_make_type (DECLTYPE_TYPE);
8560 DECLTYPE_TYPE_EXPR (type) = expr;
8561 DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
8562 SET_TYPE_STRUCTURAL_EQUALITY (type);
8564 else
8565 type = non_reference (unlowered_expr_type (expr));
8566 return type;
8569 /* Recompute the return type for LAMBDA with body of the form:
8570 { return EXPR ; } */
8572 void
8573 apply_lambda_return_type (tree lambda, tree return_type)
8575 tree fco = lambda_function (lambda);
8576 tree result;
8578 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
8580 if (return_type == error_mark_node)
8581 return;
8582 if (TREE_TYPE (TREE_TYPE (fco)) == return_type)
8583 return;
8585 /* TREE_TYPE (FUNCTION_DECL) == METHOD_TYPE
8586 TREE_TYPE (METHOD_TYPE) == return-type */
8587 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
8589 result = DECL_RESULT (fco);
8590 if (result == NULL_TREE)
8591 return;
8593 /* We already have a DECL_RESULT from start_preparsed_function.
8594 Now we need to redo the work it and allocate_struct_function
8595 did to reflect the new type. */
8596 gcc_assert (current_function_decl == fco);
8597 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
8598 TYPE_MAIN_VARIANT (return_type));
8599 DECL_ARTIFICIAL (result) = 1;
8600 DECL_IGNORED_P (result) = 1;
8601 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
8602 result);
8604 DECL_RESULT (fco) = result;
8606 if (!processing_template_decl && aggregate_value_p (result, fco))
8608 #ifdef PCC_STATIC_STRUCT_RETURN
8609 cfun->returns_pcc_struct = 1;
8610 #endif
8611 cfun->returns_struct = 1;
8616 /* DECL is a local variable or parameter from the surrounding scope of a
8617 lambda-expression. Returns the decltype for a use of the capture field
8618 for DECL even if it hasn't been captured yet. */
8620 static tree
8621 capture_decltype (tree decl)
8623 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8624 /* FIXME do lookup instead of list walk? */
8625 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
8626 tree type;
8628 if (cap)
8629 type = TREE_TYPE (TREE_PURPOSE (cap));
8630 else
8631 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
8633 case CPLD_NONE:
8634 error ("%qD is not captured", decl);
8635 return error_mark_node;
8637 case CPLD_COPY:
8638 type = TREE_TYPE (decl);
8639 if (TREE_CODE (type) == REFERENCE_TYPE
8640 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
8641 type = TREE_TYPE (type);
8642 break;
8644 case CPLD_REFERENCE:
8645 type = TREE_TYPE (decl);
8646 if (TREE_CODE (type) != REFERENCE_TYPE)
8647 type = build_reference_type (TREE_TYPE (decl));
8648 break;
8650 default:
8651 gcc_unreachable ();
8654 if (TREE_CODE (type) != REFERENCE_TYPE)
8656 if (!LAMBDA_EXPR_MUTABLE_P (lam))
8657 type = cp_build_qualified_type (type, (cp_type_quals (type)
8658 |TYPE_QUAL_CONST));
8659 type = build_reference_type (type);
8661 return type;
8664 /* Returns true iff DECL is a lambda capture proxy variable created by
8665 build_capture_proxy. */
8667 bool
8668 is_capture_proxy (tree decl)
8670 return (TREE_CODE (decl) == VAR_DECL
8671 && DECL_HAS_VALUE_EXPR_P (decl)
8672 && !DECL_ANON_UNION_VAR_P (decl)
8673 && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl)));
8676 /* Returns true iff DECL is a capture proxy for a normal capture
8677 (i.e. without explicit initializer). */
8679 bool
8680 is_normal_capture_proxy (tree decl)
8682 tree val;
8684 if (!is_capture_proxy (decl))
8685 /* It's not a capture proxy. */
8686 return false;
8688 /* It is a capture proxy, is it a normal capture? */
8689 val = DECL_VALUE_EXPR (decl);
8690 gcc_assert (TREE_CODE (val) == COMPONENT_REF);
8691 val = TREE_OPERAND (val, 1);
8692 return DECL_NORMAL_CAPTURE_P (val);
8695 /* VAR is a capture proxy created by build_capture_proxy; add it to the
8696 current function, which is the operator() for the appropriate lambda. */
8698 static inline void
8699 insert_capture_proxy (tree var)
8701 cp_binding_level *b;
8702 int skip;
8703 tree stmt_list;
8705 /* Put the capture proxy in the extra body block so that it won't clash
8706 with a later local variable. */
8707 b = current_binding_level;
8708 for (skip = 0; ; ++skip)
8710 cp_binding_level *n = b->level_chain;
8711 if (n->kind == sk_function_parms)
8712 break;
8713 b = n;
8715 pushdecl_with_scope (var, b, false);
8717 /* And put a DECL_EXPR in the STATEMENT_LIST for the same block. */
8718 var = build_stmt (DECL_SOURCE_LOCATION (var), DECL_EXPR, var);
8719 stmt_list = VEC_index (tree, stmt_list_stack,
8720 VEC_length (tree, stmt_list_stack) - 1 - skip);
8721 gcc_assert (stmt_list);
8722 append_to_statement_list_force (var, &stmt_list);
8725 /* We've just finished processing a lambda; if the containing scope is also
8726 a lambda, insert any capture proxies that were created while processing
8727 the nested lambda. */
8729 void
8730 insert_pending_capture_proxies (void)
8732 tree lam;
8733 VEC(tree,gc) *proxies;
8734 unsigned i;
8736 if (!current_function_decl || !LAMBDA_FUNCTION_P (current_function_decl))
8737 return;
8739 lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8740 proxies = LAMBDA_EXPR_PENDING_PROXIES (lam);
8741 for (i = 0; i < VEC_length (tree, proxies); ++i)
8743 tree var = VEC_index (tree, proxies, i);
8744 insert_capture_proxy (var);
8746 release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam));
8747 LAMBDA_EXPR_PENDING_PROXIES (lam) = NULL;
8750 /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
8751 return the type we want the proxy to have: the type of the field itself,
8752 with added const-qualification if the lambda isn't mutable and the
8753 capture is by value. */
8755 tree
8756 lambda_proxy_type (tree ref)
8758 tree type;
8759 if (REFERENCE_REF_P (ref))
8760 ref = TREE_OPERAND (ref, 0);
8761 type = TREE_TYPE (ref);
8762 if (!dependent_type_p (type))
8763 return type;
8764 type = cxx_make_type (DECLTYPE_TYPE);
8765 DECLTYPE_TYPE_EXPR (type) = ref;
8766 DECLTYPE_FOR_LAMBDA_PROXY (type) = true;
8767 SET_TYPE_STRUCTURAL_EQUALITY (type);
8768 return type;
8771 /* MEMBER is a capture field in a lambda closure class. Now that we're
8772 inside the operator(), build a placeholder var for future lookups and
8773 debugging. */
8775 tree
8776 build_capture_proxy (tree member)
8778 tree var, object, fn, closure, name, lam, type;
8780 closure = DECL_CONTEXT (member);
8781 fn = lambda_function (closure);
8782 lam = CLASSTYPE_LAMBDA_EXPR (closure);
8784 /* The proxy variable forwards to the capture field. */
8785 object = build_fold_indirect_ref (DECL_ARGUMENTS (fn));
8786 object = finish_non_static_data_member (member, object, NULL_TREE);
8787 if (REFERENCE_REF_P (object))
8788 object = TREE_OPERAND (object, 0);
8790 /* Remove the __ inserted by add_capture. */
8791 name = get_identifier (IDENTIFIER_POINTER (DECL_NAME (member)) + 2);
8793 type = lambda_proxy_type (object);
8794 var = build_decl (input_location, VAR_DECL, name, type);
8795 SET_DECL_VALUE_EXPR (var, object);
8796 DECL_HAS_VALUE_EXPR_P (var) = 1;
8797 DECL_ARTIFICIAL (var) = 1;
8798 TREE_USED (var) = 1;
8799 DECL_CONTEXT (var) = fn;
8801 if (name == this_identifier)
8803 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam) == member);
8804 LAMBDA_EXPR_THIS_CAPTURE (lam) = var;
8807 if (fn == current_function_decl)
8808 insert_capture_proxy (var);
8809 else
8810 VEC_safe_push (tree, gc, LAMBDA_EXPR_PENDING_PROXIES (lam), var);
8812 return var;
8815 /* From an ID and INITIALIZER, create a capture (by reference if
8816 BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
8817 and return it. */
8819 tree
8820 add_capture (tree lambda, tree id, tree initializer, bool by_reference_p,
8821 bool explicit_init_p)
8823 char *buf;
8824 tree type, member, name;
8826 type = lambda_capture_field_type (initializer);
8827 if (by_reference_p)
8829 type = build_reference_type (type);
8830 if (!real_lvalue_p (initializer))
8831 error ("cannot capture %qE by reference", initializer);
8833 else
8834 /* Capture by copy requires a complete type. */
8835 type = complete_type (type);
8837 /* Add __ to the beginning of the field name so that user code
8838 won't find the field with name lookup. We can't just leave the name
8839 unset because template instantiation uses the name to find
8840 instantiated fields. */
8841 buf = (char *) alloca (IDENTIFIER_LENGTH (id) + 3);
8842 buf[1] = buf[0] = '_';
8843 memcpy (buf + 2, IDENTIFIER_POINTER (id),
8844 IDENTIFIER_LENGTH (id) + 1);
8845 name = get_identifier (buf);
8847 /* If TREE_TYPE isn't set, we're still in the introducer, so check
8848 for duplicates. */
8849 if (!LAMBDA_EXPR_CLOSURE (lambda))
8851 if (IDENTIFIER_MARKED (name))
8853 pedwarn (input_location, 0,
8854 "already captured %qD in lambda expression", id);
8855 return NULL_TREE;
8857 IDENTIFIER_MARKED (name) = true;
8860 /* Make member variable. */
8861 member = build_lang_decl (FIELD_DECL, name, type);
8863 if (!explicit_init_p)
8864 /* Normal captures are invisible to name lookup but uses are replaced
8865 with references to the capture field; we implement this by only
8866 really making them invisible in unevaluated context; see
8867 qualify_lookup. For now, let's make explicitly initialized captures
8868 always visible. */
8869 DECL_NORMAL_CAPTURE_P (member) = true;
8871 if (id == this_identifier)
8872 LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
8874 /* Add it to the appropriate closure class if we've started it. */
8875 if (current_class_type
8876 && current_class_type == LAMBDA_EXPR_CLOSURE (lambda))
8877 finish_member_declaration (member);
8879 LAMBDA_EXPR_CAPTURE_LIST (lambda)
8880 = tree_cons (member, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
8882 if (LAMBDA_EXPR_CLOSURE (lambda))
8883 return build_capture_proxy (member);
8884 /* For explicit captures we haven't started the function yet, so we wait
8885 and build the proxy from cp_parser_lambda_body. */
8886 return NULL_TREE;
8889 /* Register all the capture members on the list CAPTURES, which is the
8890 LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
8892 void
8893 register_capture_members (tree captures)
8895 if (captures == NULL_TREE)
8896 return;
8898 register_capture_members (TREE_CHAIN (captures));
8899 /* We set this in add_capture to avoid duplicates. */
8900 IDENTIFIER_MARKED (DECL_NAME (TREE_PURPOSE (captures))) = false;
8901 finish_member_declaration (TREE_PURPOSE (captures));
8904 /* Similar to add_capture, except this works on a stack of nested lambdas.
8905 BY_REFERENCE_P in this case is derived from the default capture mode.
8906 Returns the capture for the lambda at the bottom of the stack. */
8908 tree
8909 add_default_capture (tree lambda_stack, tree id, tree initializer)
8911 bool this_capture_p = (id == this_identifier);
8913 tree var = NULL_TREE;
8915 tree saved_class_type = current_class_type;
8917 tree node;
8919 for (node = lambda_stack;
8920 node;
8921 node = TREE_CHAIN (node))
8923 tree lambda = TREE_VALUE (node);
8925 current_class_type = LAMBDA_EXPR_CLOSURE (lambda);
8926 var = add_capture (lambda,
8928 initializer,
8929 /*by_reference_p=*/
8930 (!this_capture_p
8931 && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
8932 == CPLD_REFERENCE)),
8933 /*explicit_init_p=*/false);
8934 initializer = convert_from_reference (var);
8937 current_class_type = saved_class_type;
8939 return var;
8942 /* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
8943 INDIRECT_REF, possibly adding it through default capturing. */
8945 tree
8946 lambda_expr_this_capture (tree lambda)
8948 tree result;
8950 tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
8952 /* Try to default capture 'this' if we can. */
8953 if (!this_capture
8954 && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE)
8956 tree containing_function = TYPE_CONTEXT (LAMBDA_EXPR_CLOSURE (lambda));
8957 tree lambda_stack = tree_cons (NULL_TREE, lambda, NULL_TREE);
8958 tree init = NULL_TREE;
8960 /* If we are in a lambda function, we can move out until we hit:
8961 1. a non-lambda function,
8962 2. a lambda function capturing 'this', or
8963 3. a non-default capturing lambda function. */
8964 while (LAMBDA_FUNCTION_P (containing_function))
8966 tree lambda
8967 = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
8969 if (LAMBDA_EXPR_THIS_CAPTURE (lambda))
8971 /* An outer lambda has already captured 'this'. */
8972 init = LAMBDA_EXPR_THIS_CAPTURE (lambda);
8973 break;
8976 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_NONE)
8977 /* An outer lambda won't let us capture 'this'. */
8978 break;
8980 lambda_stack = tree_cons (NULL_TREE,
8981 lambda,
8982 lambda_stack);
8984 containing_function = decl_function_context (containing_function);
8987 if (!init && DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function)
8988 && !LAMBDA_FUNCTION_P (containing_function))
8989 /* First parameter is 'this'. */
8990 init = DECL_ARGUMENTS (containing_function);
8992 if (init)
8993 this_capture = add_default_capture (lambda_stack,
8994 /*id=*/this_identifier,
8995 init);
8998 if (!this_capture)
9000 error ("%<this%> was not captured for this lambda function");
9001 result = error_mark_node;
9003 else
9005 /* To make sure that current_class_ref is for the lambda. */
9006 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref))
9007 == LAMBDA_EXPR_CLOSURE (lambda));
9009 result = this_capture;
9011 /* If 'this' is captured, each use of 'this' is transformed into an
9012 access to the corresponding unnamed data member of the closure
9013 type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
9014 ensures that the transformed expression is an rvalue. ] */
9015 result = rvalue (result);
9018 return result;
9021 /* Returns the method basetype of the innermost non-lambda function, or
9022 NULL_TREE if none. */
9024 tree
9025 nonlambda_method_basetype (void)
9027 tree fn, type;
9028 if (!current_class_ref)
9029 return NULL_TREE;
9031 type = current_class_type;
9032 if (!LAMBDA_TYPE_P (type))
9033 return type;
9035 /* Find the nearest enclosing non-lambda function. */
9036 fn = TYPE_NAME (type);
9038 fn = decl_function_context (fn);
9039 while (fn && LAMBDA_FUNCTION_P (fn));
9041 if (!fn || !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
9042 return NULL_TREE;
9044 return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
9047 /* If the closure TYPE has a static op(), also add a conversion to function
9048 pointer. */
9050 void
9051 maybe_add_lambda_conv_op (tree type)
9053 bool nested = (current_function_decl != NULL_TREE);
9054 tree callop = lambda_function (type);
9055 tree rettype, name, fntype, fn, body, compound_stmt;
9056 tree thistype, stattype, statfn, convfn, call, arg;
9057 VEC (tree, gc) *argvec;
9059 if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type)) != NULL_TREE)
9060 return;
9062 if (processing_template_decl)
9063 return;
9065 stattype = build_function_type (TREE_TYPE (TREE_TYPE (callop)),
9066 FUNCTION_ARG_CHAIN (callop));
9068 /* First build up the conversion op. */
9070 rettype = build_pointer_type (stattype);
9071 name = mangle_conv_op_name_for_type (rettype);
9072 thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
9073 fntype = build_method_type_directly (thistype, rettype, void_list_node);
9074 fn = convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
9075 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9077 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9078 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9079 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9081 SET_OVERLOADED_OPERATOR_CODE (fn, TYPE_EXPR);
9082 grokclassfn (type, fn, NO_SPECIAL);
9083 set_linkage_according_to_type (type, fn);
9084 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9085 DECL_IN_AGGR_P (fn) = 1;
9086 DECL_ARTIFICIAL (fn) = 1;
9087 DECL_NOT_REALLY_EXTERN (fn) = 1;
9088 DECL_DECLARED_INLINE_P (fn) = 1;
9089 DECL_ARGUMENTS (fn) = build_this_parm (fntype, TYPE_QUAL_CONST);
9090 if (nested)
9091 DECL_INTERFACE_KNOWN (fn) = 1;
9093 add_method (type, fn, NULL_TREE);
9095 /* Generic thunk code fails for varargs; we'll complain in mark_used if
9096 the conversion op is used. */
9097 if (varargs_function_p (callop))
9099 DECL_DELETED_FN (fn) = 1;
9100 return;
9103 /* Now build up the thunk to be returned. */
9105 name = get_identifier ("_FUN");
9106 fn = statfn = build_lang_decl (FUNCTION_DECL, name, stattype);
9107 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9108 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9109 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9110 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9111 grokclassfn (type, fn, NO_SPECIAL);
9112 set_linkage_according_to_type (type, fn);
9113 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9114 DECL_IN_AGGR_P (fn) = 1;
9115 DECL_ARTIFICIAL (fn) = 1;
9116 DECL_NOT_REALLY_EXTERN (fn) = 1;
9117 DECL_DECLARED_INLINE_P (fn) = 1;
9118 DECL_STATIC_FUNCTION_P (fn) = 1;
9119 DECL_ARGUMENTS (fn) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop)));
9120 for (arg = DECL_ARGUMENTS (fn); arg; arg = DECL_CHAIN (arg))
9121 DECL_CONTEXT (arg) = fn;
9122 if (nested)
9123 DECL_INTERFACE_KNOWN (fn) = 1;
9125 add_method (type, fn, NULL_TREE);
9127 if (nested)
9128 push_function_context ();
9129 else
9130 /* Still increment function_depth so that we don't GC in the
9131 middle of an expression. */
9132 ++function_depth;
9134 /* Generate the body of the thunk. */
9136 start_preparsed_function (statfn, NULL_TREE,
9137 SF_PRE_PARSED | SF_INCLASS_INLINE);
9138 if (DECL_ONE_ONLY (statfn))
9140 /* Put the thunk in the same comdat group as the call op. */
9141 cgraph_add_to_same_comdat_group (cgraph_get_create_node (statfn),
9142 cgraph_get_create_node (callop));
9144 body = begin_function_body ();
9145 compound_stmt = begin_compound_stmt (0);
9147 arg = build1 (NOP_EXPR, TREE_TYPE (DECL_ARGUMENTS (callop)),
9148 null_pointer_node);
9149 argvec = make_tree_vector ();
9150 VEC_quick_push (tree, argvec, arg);
9151 for (arg = DECL_ARGUMENTS (statfn); arg; arg = DECL_CHAIN (arg))
9153 mark_exp_read (arg);
9154 VEC_safe_push (tree, gc, argvec, arg);
9156 call = build_call_a (callop, VEC_length (tree, argvec),
9157 VEC_address (tree, argvec));
9158 CALL_FROM_THUNK_P (call) = 1;
9159 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
9160 call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
9161 call = convert_from_reference (call);
9162 finish_return_stmt (call);
9164 finish_compound_stmt (compound_stmt);
9165 finish_function_body (body);
9167 expand_or_defer_fn (finish_function (2));
9169 /* Generate the body of the conversion op. */
9171 start_preparsed_function (convfn, NULL_TREE,
9172 SF_PRE_PARSED | SF_INCLASS_INLINE);
9173 body = begin_function_body ();
9174 compound_stmt = begin_compound_stmt (0);
9176 finish_return_stmt (decay_conversion (statfn));
9178 finish_compound_stmt (compound_stmt);
9179 finish_function_body (body);
9181 expand_or_defer_fn (finish_function (2));
9183 if (nested)
9184 pop_function_context ();
9185 else
9186 --function_depth;
9189 /* Returns true iff VAL is a lambda-related declaration which should
9190 be ignored by unqualified lookup. */
9192 bool
9193 is_lambda_ignored_entity (tree val)
9195 /* In unevaluated context, look past normal capture proxies. */
9196 if (cp_unevaluated_operand && is_normal_capture_proxy (val))
9197 return true;
9199 /* Always ignore lambda fields, their names are only for debugging. */
9200 if (TREE_CODE (val) == FIELD_DECL
9201 && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val)))
9202 return true;
9204 /* None of the lookups that use qualify_lookup want the op() from the
9205 lambda; they want the one from the enclosing class. */
9206 if (TREE_CODE (val) == FUNCTION_DECL && LAMBDA_FUNCTION_P (val))
9207 return true;
9209 return false;
9212 #include "gt-cp-semantics.h"