* gcc.dg/torture/tls/tls-reload-1.c: Add tls options.
[official-gcc.git] / gcc / cp / semantics.c
blobf6493993b37c242befc444f0d2778c82c10fb674
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-2012 Free Software Foundation, Inc.
7 Written by Mark Mitchell (mmitchell@usa.net) based on code found
8 formerly in parse.y and pt.c.
10 This file is part of GCC.
12 GCC is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
15 any later version.
17 GCC is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GCC; see the file COPYING3. If not see
24 <http://www.gnu.org/licenses/>. */
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "c-family/c-common.h"
33 #include "c-family/c-objc.h"
34 #include "tree-inline.h"
35 #include "intl.h"
36 #include "toplev.h"
37 #include "flags.h"
38 #include "timevar.h"
39 #include "diagnostic.h"
40 #include "cgraph.h"
41 #include "tree-iterator.h"
42 #include "vec.h"
43 #include "target.h"
44 #include "gimple.h"
45 #include "bitmap.h"
46 #include "hash-table.h"
48 static bool verify_constant (tree, bool, bool *, bool *);
49 #define VERIFY_CONSTANT(X) \
50 do { \
51 if (verify_constant ((X), allow_non_constant, non_constant_p, overflow_p)) \
52 return t; \
53 } while (0)
55 /* There routines provide a modular interface to perform many parsing
56 operations. They may therefore be used during actual parsing, or
57 during template instantiation, which may be regarded as a
58 degenerate form of parsing. */
60 static tree maybe_convert_cond (tree);
61 static tree finalize_nrv_r (tree *, int *, void *);
62 static tree capture_decltype (tree);
65 /* Deferred Access Checking Overview
66 ---------------------------------
68 Most C++ expressions and declarations require access checking
69 to be performed during parsing. However, in several cases,
70 this has to be treated differently.
72 For member declarations, access checking has to be deferred
73 until more information about the declaration is known. For
74 example:
76 class A {
77 typedef int X;
78 public:
79 X f();
82 A::X A::f();
83 A::X g();
85 When we are parsing the function return type `A::X', we don't
86 really know if this is allowed until we parse the function name.
88 Furthermore, some contexts require that access checking is
89 never performed at all. These include class heads, and template
90 instantiations.
92 Typical use of access checking functions is described here:
94 1. When we enter a context that requires certain access checking
95 mode, the function `push_deferring_access_checks' is called with
96 DEFERRING argument specifying the desired mode. Access checking
97 may be performed immediately (dk_no_deferred), deferred
98 (dk_deferred), or not performed (dk_no_check).
100 2. When a declaration such as a type, or a variable, is encountered,
101 the function `perform_or_defer_access_check' is called. It
102 maintains a vector of all deferred checks.
104 3. The global `current_class_type' or `current_function_decl' is then
105 setup by the parser. `enforce_access' relies on these information
106 to check access.
108 4. Upon exiting the context mentioned in step 1,
109 `perform_deferred_access_checks' is called to check all declaration
110 stored in the vector. `pop_deferring_access_checks' is then
111 called to restore the previous access checking mode.
113 In case of parsing error, we simply call `pop_deferring_access_checks'
114 without `perform_deferred_access_checks'. */
116 typedef struct GTY(()) deferred_access {
117 /* A vector representing name-lookups for which we have deferred
118 checking access controls. We cannot check the accessibility of
119 names used in a decl-specifier-seq until we know what is being
120 declared because code like:
122 class A {
123 class B {};
124 B* f();
127 A::B* A::f() { return 0; }
129 is valid, even though `A::B' is not generally accessible. */
130 vec<deferred_access_check, va_gc> * GTY(()) deferred_access_checks;
132 /* The current mode of access checks. */
133 enum deferring_kind deferring_access_checks_kind;
135 } deferred_access;
137 /* Data for deferred access checking. */
138 static GTY(()) vec<deferred_access, va_gc> *deferred_access_stack;
139 static GTY(()) unsigned deferred_access_no_check;
141 /* Save the current deferred access states and start deferred
142 access checking iff DEFER_P is true. */
144 void
145 push_deferring_access_checks (deferring_kind deferring)
147 /* For context like template instantiation, access checking
148 disabling applies to all nested context. */
149 if (deferred_access_no_check || deferring == dk_no_check)
150 deferred_access_no_check++;
151 else
153 deferred_access e = {NULL, deferring};
154 vec_safe_push (deferred_access_stack, e);
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 deferred_access_stack->last().deferring_access_checks_kind = dk_deferred;
168 /* Stop deferring access checks. */
170 void
171 stop_deferring_access_checks (void)
173 if (!deferred_access_no_check)
174 deferred_access_stack->last().deferring_access_checks_kind = dk_no_deferred;
177 /* Discard the current deferred access checks and restore the
178 previous states. */
180 void
181 pop_deferring_access_checks (void)
183 if (deferred_access_no_check)
184 deferred_access_no_check--;
185 else
186 deferred_access_stack->pop ();
189 /* Returns a TREE_LIST representing the deferred checks.
190 The TREE_PURPOSE of each node is the type through which the
191 access occurred; the TREE_VALUE is the declaration named.
194 vec<deferred_access_check, va_gc> *
195 get_deferred_access_checks (void)
197 if (deferred_access_no_check)
198 return NULL;
199 else
200 return (deferred_access_stack->last().deferred_access_checks);
203 /* Take current deferred checks and combine with the
204 previous states if we also defer checks previously.
205 Otherwise perform checks now. */
207 void
208 pop_to_parent_deferring_access_checks (void)
210 if (deferred_access_no_check)
211 deferred_access_no_check--;
212 else
214 vec<deferred_access_check, va_gc> *checks;
215 deferred_access *ptr;
217 checks = (deferred_access_stack->last ().deferred_access_checks);
219 deferred_access_stack->pop ();
220 ptr = &deferred_access_stack->last ();
221 if (ptr->deferring_access_checks_kind == dk_no_deferred)
223 /* Check access. */
224 perform_access_checks (checks, tf_warning_or_error);
226 else
228 /* Merge with parent. */
229 int i, j;
230 deferred_access_check *chk, *probe;
232 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
234 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, j, probe)
236 if (probe->binfo == chk->binfo &&
237 probe->decl == chk->decl &&
238 probe->diag_decl == chk->diag_decl)
239 goto found;
241 /* Insert into parent's checks. */
242 vec_safe_push (ptr->deferred_access_checks, *chk);
243 found:;
249 /* Perform the access checks in CHECKS. The TREE_PURPOSE of each node
250 is the BINFO indicating the qualifying scope used to access the
251 DECL node stored in the TREE_VALUE of the node. If CHECKS is empty
252 or we aren't in SFINAE context or all the checks succeed return TRUE,
253 otherwise FALSE. */
255 bool
256 perform_access_checks (vec<deferred_access_check, va_gc> *checks,
257 tsubst_flags_t complain)
259 int i;
260 deferred_access_check *chk;
261 location_t loc = input_location;
262 bool ok = true;
264 if (!checks)
265 return true;
267 FOR_EACH_VEC_SAFE_ELT (checks, i, chk)
269 input_location = chk->loc;
270 ok &= enforce_access (chk->binfo, chk->decl, chk->diag_decl, complain);
273 input_location = loc;
274 return (complain & tf_error) ? true : ok;
277 /* Perform the deferred access checks.
279 After performing the checks, we still have to keep the list
280 `deferred_access_stack->deferred_access_checks' since we may want
281 to check access for them again later in a different context.
282 For example:
284 class A {
285 typedef int X;
286 static X a;
288 A::X A::a, x; // No error for `A::a', error for `x'
290 We have to perform deferred access of `A::X', first with `A::a',
291 next with `x'. Return value like perform_access_checks above. */
293 bool
294 perform_deferred_access_checks (tsubst_flags_t complain)
296 return perform_access_checks (get_deferred_access_checks (), complain);
299 /* Defer checking the accessibility of DECL, when looked up in
300 BINFO. DIAG_DECL is the declaration to use to print diagnostics.
301 Return value like perform_access_checks above. */
303 bool
304 perform_or_defer_access_check (tree binfo, tree decl, tree diag_decl,
305 tsubst_flags_t complain)
307 int i;
308 deferred_access *ptr;
309 deferred_access_check *chk;
312 /* Exit if we are in a context that no access checking is performed.
314 if (deferred_access_no_check)
315 return true;
317 gcc_assert (TREE_CODE (binfo) == TREE_BINFO);
319 ptr = &deferred_access_stack->last ();
321 /* If we are not supposed to defer access checks, just check now. */
322 if (ptr->deferring_access_checks_kind == dk_no_deferred)
324 bool ok = enforce_access (binfo, decl, diag_decl, complain);
325 return (complain & tf_error) ? true : ok;
328 /* See if we are already going to perform this check. */
329 FOR_EACH_VEC_SAFE_ELT (ptr->deferred_access_checks, i, chk)
331 if (chk->decl == decl && chk->binfo == binfo &&
332 chk->diag_decl == diag_decl)
334 return true;
337 /* If not, record the check. */
338 deferred_access_check new_access = {binfo, decl, diag_decl, input_location};
339 vec_safe_push (ptr->deferred_access_checks, new_access);
341 return true;
344 /* Returns nonzero if the current statement is a full expression,
345 i.e. temporaries created during that statement should be destroyed
346 at the end of the statement. */
349 stmts_are_full_exprs_p (void)
351 return current_stmt_tree ()->stmts_are_full_exprs_p;
354 /* T is a statement. Add it to the statement-tree. This is the C++
355 version. The C/ObjC frontends have a slightly different version of
356 this function. */
358 tree
359 add_stmt (tree t)
361 enum tree_code code = TREE_CODE (t);
363 if (EXPR_P (t) && code != LABEL_EXPR)
365 if (!EXPR_HAS_LOCATION (t))
366 SET_EXPR_LOCATION (t, input_location);
368 /* When we expand a statement-tree, we must know whether or not the
369 statements are full-expressions. We record that fact here. */
370 STMT_IS_FULL_EXPR_P (t) = stmts_are_full_exprs_p ();
373 /* Add T to the statement-tree. Non-side-effect statements need to be
374 recorded during statement expressions. */
375 gcc_checking_assert (!stmt_list_stack->is_empty ());
376 append_to_statement_list_force (t, &cur_stmt_list);
378 return t;
381 /* Returns the stmt_tree to which statements are currently being added. */
383 stmt_tree
384 current_stmt_tree (void)
386 return (cfun
387 ? &cfun->language->base.x_stmt_tree
388 : &scope_chain->x_stmt_tree);
391 /* If statements are full expressions, wrap STMT in a CLEANUP_POINT_EXPR. */
393 static tree
394 maybe_cleanup_point_expr (tree expr)
396 if (!processing_template_decl && stmts_are_full_exprs_p ())
397 expr = fold_build_cleanup_point_expr (TREE_TYPE (expr), expr);
398 return expr;
401 /* Like maybe_cleanup_point_expr except have the type of the new expression be
402 void so we don't need to create a temporary variable to hold the inner
403 expression. The reason why we do this is because the original type might be
404 an aggregate and we cannot create a temporary variable for that type. */
406 tree
407 maybe_cleanup_point_expr_void (tree expr)
409 if (!processing_template_decl && stmts_are_full_exprs_p ())
410 expr = fold_build_cleanup_point_expr (void_type_node, expr);
411 return expr;
416 /* Create a declaration statement for the declaration given by the DECL. */
418 void
419 add_decl_expr (tree decl)
421 tree r = build_stmt (input_location, DECL_EXPR, decl);
422 if (DECL_INITIAL (decl)
423 || (DECL_SIZE (decl) && TREE_SIDE_EFFECTS (DECL_SIZE (decl))))
424 r = maybe_cleanup_point_expr_void (r);
425 add_stmt (r);
428 /* Finish a scope. */
430 tree
431 do_poplevel (tree stmt_list)
433 tree block = NULL;
435 if (stmts_are_full_exprs_p ())
436 block = poplevel (kept_level_p (), 1, 0);
438 stmt_list = pop_stmt_list (stmt_list);
440 if (!processing_template_decl)
442 stmt_list = c_build_bind_expr (input_location, block, stmt_list);
443 /* ??? See c_end_compound_stmt re statement expressions. */
446 return stmt_list;
449 /* Begin a new scope. */
451 static tree
452 do_pushlevel (scope_kind sk)
454 tree ret = push_stmt_list ();
455 if (stmts_are_full_exprs_p ())
456 begin_scope (sk, NULL);
457 return ret;
460 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
461 when the current scope is exited. EH_ONLY is true when this is not
462 meant to apply to normal control flow transfer. */
464 void
465 push_cleanup (tree decl, tree cleanup, bool eh_only)
467 tree stmt = build_stmt (input_location, CLEANUP_STMT, NULL, cleanup, decl);
468 CLEANUP_EH_ONLY (stmt) = eh_only;
469 add_stmt (stmt);
470 CLEANUP_BODY (stmt) = push_stmt_list ();
473 /* Begin a conditional that might contain a declaration. When generating
474 normal code, we want the declaration to appear before the statement
475 containing the conditional. When generating template code, we want the
476 conditional to be rendered as the raw DECL_EXPR. */
478 static void
479 begin_cond (tree *cond_p)
481 if (processing_template_decl)
482 *cond_p = push_stmt_list ();
485 /* Finish such a conditional. */
487 static void
488 finish_cond (tree *cond_p, tree expr)
490 if (processing_template_decl)
492 tree cond = pop_stmt_list (*cond_p);
494 if (expr == NULL_TREE)
495 /* Empty condition in 'for'. */
496 gcc_assert (empty_expr_stmt_p (cond));
497 else if (check_for_bare_parameter_packs (expr))
498 expr = error_mark_node;
499 else if (!empty_expr_stmt_p (cond))
500 expr = build2 (COMPOUND_EXPR, TREE_TYPE (expr), cond, expr);
502 *cond_p = expr;
505 /* If *COND_P specifies a conditional with a declaration, transform the
506 loop such that
507 while (A x = 42) { }
508 for (; A x = 42;) { }
509 becomes
510 while (true) { A x = 42; if (!x) break; }
511 for (;;) { A x = 42; if (!x) break; }
512 The statement list for BODY will be empty if the conditional did
513 not declare anything. */
515 static void
516 simplify_loop_decl_cond (tree *cond_p, tree body)
518 tree cond, if_stmt;
520 if (!TREE_SIDE_EFFECTS (body))
521 return;
523 cond = *cond_p;
524 *cond_p = boolean_true_node;
526 if_stmt = begin_if_stmt ();
527 cond = cp_build_unary_op (TRUTH_NOT_EXPR, cond, 0, tf_warning_or_error);
528 finish_if_stmt_cond (cond, if_stmt);
529 finish_break_stmt ();
530 finish_then_clause (if_stmt);
531 finish_if_stmt (if_stmt);
534 /* Finish a goto-statement. */
536 tree
537 finish_goto_stmt (tree destination)
539 if (TREE_CODE (destination) == IDENTIFIER_NODE)
540 destination = lookup_label (destination);
542 /* We warn about unused labels with -Wunused. That means we have to
543 mark the used labels as used. */
544 if (TREE_CODE (destination) == LABEL_DECL)
545 TREE_USED (destination) = 1;
546 else
548 destination = mark_rvalue_use (destination);
549 if (!processing_template_decl)
551 destination = cp_convert (ptr_type_node, destination,
552 tf_warning_or_error);
553 if (error_operand_p (destination))
554 return NULL_TREE;
555 destination
556 = fold_build_cleanup_point_expr (TREE_TYPE (destination),
557 destination);
561 check_goto (destination);
563 return add_stmt (build_stmt (input_location, GOTO_EXPR, destination));
566 /* COND is the condition-expression for an if, while, etc.,
567 statement. Convert it to a boolean value, if appropriate.
568 In addition, verify sequence points if -Wsequence-point is enabled. */
570 static tree
571 maybe_convert_cond (tree cond)
573 /* Empty conditions remain empty. */
574 if (!cond)
575 return NULL_TREE;
577 /* Wait until we instantiate templates before doing conversion. */
578 if (processing_template_decl)
579 return cond;
581 if (warn_sequence_point)
582 verify_sequence_points (cond);
584 /* Do the conversion. */
585 cond = convert_from_reference (cond);
587 if (TREE_CODE (cond) == MODIFY_EXPR
588 && !TREE_NO_WARNING (cond)
589 && warn_parentheses)
591 warning (OPT_Wparentheses,
592 "suggest parentheses around assignment used as truth value");
593 TREE_NO_WARNING (cond) = 1;
596 return condition_conversion (cond);
599 /* Finish an expression-statement, whose EXPRESSION is as indicated. */
601 tree
602 finish_expr_stmt (tree expr)
604 tree r = NULL_TREE;
606 if (expr != NULL_TREE)
608 if (!processing_template_decl)
610 if (warn_sequence_point)
611 verify_sequence_points (expr);
612 expr = convert_to_void (expr, ICV_STATEMENT, tf_warning_or_error);
614 else if (!type_dependent_expression_p (expr))
615 convert_to_void (build_non_dependent_expr (expr), ICV_STATEMENT,
616 tf_warning_or_error);
618 if (check_for_bare_parameter_packs (expr))
619 expr = error_mark_node;
621 /* Simplification of inner statement expressions, compound exprs,
622 etc can result in us already having an EXPR_STMT. */
623 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
625 if (TREE_CODE (expr) != EXPR_STMT)
626 expr = build_stmt (input_location, EXPR_STMT, expr);
627 expr = maybe_cleanup_point_expr_void (expr);
630 r = add_stmt (expr);
633 finish_stmt ();
635 return r;
639 /* Begin an if-statement. Returns a newly created IF_STMT if
640 appropriate. */
642 tree
643 begin_if_stmt (void)
645 tree r, scope;
646 scope = do_pushlevel (sk_cond);
647 r = build_stmt (input_location, IF_STMT, NULL_TREE,
648 NULL_TREE, NULL_TREE, scope);
649 begin_cond (&IF_COND (r));
650 return r;
653 /* Process the COND of an if-statement, which may be given by
654 IF_STMT. */
656 void
657 finish_if_stmt_cond (tree cond, tree if_stmt)
659 finish_cond (&IF_COND (if_stmt), maybe_convert_cond (cond));
660 add_stmt (if_stmt);
661 THEN_CLAUSE (if_stmt) = push_stmt_list ();
664 /* Finish the then-clause of an if-statement, which may be given by
665 IF_STMT. */
667 tree
668 finish_then_clause (tree if_stmt)
670 THEN_CLAUSE (if_stmt) = pop_stmt_list (THEN_CLAUSE (if_stmt));
671 return if_stmt;
674 /* Begin the else-clause of an if-statement. */
676 void
677 begin_else_clause (tree if_stmt)
679 ELSE_CLAUSE (if_stmt) = push_stmt_list ();
682 /* Finish the else-clause of an if-statement, which may be given by
683 IF_STMT. */
685 void
686 finish_else_clause (tree if_stmt)
688 ELSE_CLAUSE (if_stmt) = pop_stmt_list (ELSE_CLAUSE (if_stmt));
691 /* Finish an if-statement. */
693 void
694 finish_if_stmt (tree if_stmt)
696 tree scope = IF_SCOPE (if_stmt);
697 IF_SCOPE (if_stmt) = NULL;
698 add_stmt (do_poplevel (scope));
699 finish_stmt ();
702 /* Begin a while-statement. Returns a newly created WHILE_STMT if
703 appropriate. */
705 tree
706 begin_while_stmt (void)
708 tree r;
709 r = build_stmt (input_location, WHILE_STMT, NULL_TREE, NULL_TREE);
710 add_stmt (r);
711 WHILE_BODY (r) = do_pushlevel (sk_block);
712 begin_cond (&WHILE_COND (r));
713 return r;
716 /* Process the COND of a while-statement, which may be given by
717 WHILE_STMT. */
719 void
720 finish_while_stmt_cond (tree cond, tree while_stmt)
722 finish_cond (&WHILE_COND (while_stmt), maybe_convert_cond (cond));
723 simplify_loop_decl_cond (&WHILE_COND (while_stmt), WHILE_BODY (while_stmt));
726 /* Finish a while-statement, which may be given by WHILE_STMT. */
728 void
729 finish_while_stmt (tree while_stmt)
731 WHILE_BODY (while_stmt) = do_poplevel (WHILE_BODY (while_stmt));
732 finish_stmt ();
735 /* Begin a do-statement. Returns a newly created DO_STMT if
736 appropriate. */
738 tree
739 begin_do_stmt (void)
741 tree r = build_stmt (input_location, DO_STMT, NULL_TREE, NULL_TREE);
742 add_stmt (r);
743 DO_BODY (r) = push_stmt_list ();
744 return r;
747 /* Finish the body of a do-statement, which may be given by DO_STMT. */
749 void
750 finish_do_body (tree do_stmt)
752 tree body = DO_BODY (do_stmt) = pop_stmt_list (DO_BODY (do_stmt));
754 if (TREE_CODE (body) == STATEMENT_LIST && STATEMENT_LIST_TAIL (body))
755 body = STATEMENT_LIST_TAIL (body)->stmt;
757 if (IS_EMPTY_STMT (body))
758 warning (OPT_Wempty_body,
759 "suggest explicit braces around empty body in %<do%> statement");
762 /* Finish a do-statement, which may be given by DO_STMT, and whose
763 COND is as indicated. */
765 void
766 finish_do_stmt (tree cond, tree do_stmt)
768 cond = maybe_convert_cond (cond);
769 DO_COND (do_stmt) = cond;
770 finish_stmt ();
773 /* Finish a return-statement. The EXPRESSION returned, if any, is as
774 indicated. */
776 tree
777 finish_return_stmt (tree expr)
779 tree r;
780 bool no_warning;
782 expr = check_return_expr (expr, &no_warning);
784 if (flag_openmp && !check_omp_return ())
785 return error_mark_node;
786 if (!processing_template_decl)
788 if (warn_sequence_point)
789 verify_sequence_points (expr);
791 if (DECL_DESTRUCTOR_P (current_function_decl)
792 || (DECL_CONSTRUCTOR_P (current_function_decl)
793 && targetm.cxx.cdtor_returns_this ()))
795 /* Similarly, all destructors must run destructors for
796 base-classes before returning. So, all returns in a
797 destructor get sent to the DTOR_LABEL; finish_function emits
798 code to return a value there. */
799 return finish_goto_stmt (cdtor_label);
803 r = build_stmt (input_location, RETURN_EXPR, expr);
804 TREE_NO_WARNING (r) |= no_warning;
805 r = maybe_cleanup_point_expr_void (r);
806 r = add_stmt (r);
807 finish_stmt ();
809 return r;
812 /* Begin the scope of a for-statement or a range-for-statement.
813 Both the returned trees are to be used in a call to
814 begin_for_stmt or begin_range_for_stmt. */
816 tree
817 begin_for_scope (tree *init)
819 tree scope = NULL_TREE;
820 if (flag_new_for_scope > 0)
821 scope = do_pushlevel (sk_for);
823 if (processing_template_decl)
824 *init = push_stmt_list ();
825 else
826 *init = NULL_TREE;
828 return scope;
831 /* Begin a for-statement. Returns a new FOR_STMT.
832 SCOPE and INIT should be the return of begin_for_scope,
833 or both NULL_TREE */
835 tree
836 begin_for_stmt (tree scope, tree init)
838 tree r;
840 r = build_stmt (input_location, FOR_STMT, NULL_TREE, NULL_TREE,
841 NULL_TREE, NULL_TREE, NULL_TREE);
843 if (scope == NULL_TREE)
845 gcc_assert (!init || !(flag_new_for_scope > 0));
846 if (!init)
847 scope = begin_for_scope (&init);
849 FOR_INIT_STMT (r) = init;
850 FOR_SCOPE (r) = scope;
852 return r;
855 /* Finish the for-init-statement of a for-statement, which may be
856 given by FOR_STMT. */
858 void
859 finish_for_init_stmt (tree for_stmt)
861 if (processing_template_decl)
862 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
863 add_stmt (for_stmt);
864 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
865 begin_cond (&FOR_COND (for_stmt));
868 /* Finish the COND of a for-statement, which may be given by
869 FOR_STMT. */
871 void
872 finish_for_cond (tree cond, tree for_stmt)
874 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
875 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
878 /* Finish the increment-EXPRESSION in a for-statement, which may be
879 given by FOR_STMT. */
881 void
882 finish_for_expr (tree expr, tree for_stmt)
884 if (!expr)
885 return;
886 /* If EXPR is an overloaded function, issue an error; there is no
887 context available to use to perform overload resolution. */
888 if (type_unknown_p (expr))
890 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
891 expr = error_mark_node;
893 if (!processing_template_decl)
895 if (warn_sequence_point)
896 verify_sequence_points (expr);
897 expr = convert_to_void (expr, ICV_THIRD_IN_FOR,
898 tf_warning_or_error);
900 else if (!type_dependent_expression_p (expr))
901 convert_to_void (build_non_dependent_expr (expr), ICV_THIRD_IN_FOR,
902 tf_warning_or_error);
903 expr = maybe_cleanup_point_expr_void (expr);
904 if (check_for_bare_parameter_packs (expr))
905 expr = error_mark_node;
906 FOR_EXPR (for_stmt) = expr;
909 /* Finish the body of a for-statement, which may be given by
910 FOR_STMT. The increment-EXPR for the loop must be
911 provided.
912 It can also finish RANGE_FOR_STMT. */
914 void
915 finish_for_stmt (tree for_stmt)
917 if (TREE_CODE (for_stmt) == RANGE_FOR_STMT)
918 RANGE_FOR_BODY (for_stmt) = do_poplevel (RANGE_FOR_BODY (for_stmt));
919 else
920 FOR_BODY (for_stmt) = do_poplevel (FOR_BODY (for_stmt));
922 /* Pop the scope for the body of the loop. */
923 if (flag_new_for_scope > 0)
925 tree scope;
926 tree *scope_ptr = (TREE_CODE (for_stmt) == RANGE_FOR_STMT
927 ? &RANGE_FOR_SCOPE (for_stmt)
928 : &FOR_SCOPE (for_stmt));
929 scope = *scope_ptr;
930 *scope_ptr = NULL;
931 add_stmt (do_poplevel (scope));
934 finish_stmt ();
937 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
938 SCOPE and INIT should be the return of begin_for_scope,
939 or both NULL_TREE .
940 To finish it call finish_for_stmt(). */
942 tree
943 begin_range_for_stmt (tree scope, tree init)
945 tree r;
947 r = build_stmt (input_location, RANGE_FOR_STMT,
948 NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
950 if (scope == NULL_TREE)
952 gcc_assert (!init || !(flag_new_for_scope > 0));
953 if (!init)
954 scope = begin_for_scope (&init);
957 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
958 pop it now. */
959 if (init)
960 pop_stmt_list (init);
961 RANGE_FOR_SCOPE (r) = scope;
963 return r;
966 /* Finish the head of a range-based for statement, which may
967 be given by RANGE_FOR_STMT. DECL must be the declaration
968 and EXPR must be the loop expression. */
970 void
971 finish_range_for_decl (tree range_for_stmt, tree decl, tree expr)
973 RANGE_FOR_DECL (range_for_stmt) = decl;
974 RANGE_FOR_EXPR (range_for_stmt) = expr;
975 add_stmt (range_for_stmt);
976 RANGE_FOR_BODY (range_for_stmt) = do_pushlevel (sk_block);
979 /* Finish a break-statement. */
981 tree
982 finish_break_stmt (void)
984 /* In switch statements break is sometimes stylistically used after
985 a return statement. This can lead to spurious warnings about
986 control reaching the end of a non-void function when it is
987 inlined. Note that we are calling block_may_fallthru with
988 language specific tree nodes; this works because
989 block_may_fallthru returns true when given something it does not
990 understand. */
991 if (!block_may_fallthru (cur_stmt_list))
992 return void_zero_node;
993 return add_stmt (build_stmt (input_location, BREAK_STMT));
996 /* Finish a continue-statement. */
998 tree
999 finish_continue_stmt (void)
1001 return add_stmt (build_stmt (input_location, CONTINUE_STMT));
1004 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1005 appropriate. */
1007 tree
1008 begin_switch_stmt (void)
1010 tree r, scope;
1012 scope = do_pushlevel (sk_cond);
1013 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1015 begin_cond (&SWITCH_STMT_COND (r));
1017 return r;
1020 /* Finish the cond of a switch-statement. */
1022 void
1023 finish_switch_cond (tree cond, tree switch_stmt)
1025 tree orig_type = NULL;
1026 if (!processing_template_decl)
1028 /* Convert the condition to an integer or enumeration type. */
1029 cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
1030 if (cond == NULL_TREE)
1032 error ("switch quantity not an integer");
1033 cond = error_mark_node;
1035 orig_type = TREE_TYPE (cond);
1036 if (cond != error_mark_node)
1038 /* [stmt.switch]
1040 Integral promotions are performed. */
1041 cond = perform_integral_promotions (cond);
1042 cond = maybe_cleanup_point_expr (cond);
1045 if (check_for_bare_parameter_packs (cond))
1046 cond = error_mark_node;
1047 else if (!processing_template_decl && warn_sequence_point)
1048 verify_sequence_points (cond);
1050 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1051 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1052 add_stmt (switch_stmt);
1053 push_switch (switch_stmt);
1054 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1057 /* Finish the body of a switch-statement, which may be given by
1058 SWITCH_STMT. The COND to switch on is indicated. */
1060 void
1061 finish_switch_stmt (tree switch_stmt)
1063 tree scope;
1065 SWITCH_STMT_BODY (switch_stmt) =
1066 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1067 pop_switch ();
1068 finish_stmt ();
1070 scope = SWITCH_STMT_SCOPE (switch_stmt);
1071 SWITCH_STMT_SCOPE (switch_stmt) = NULL;
1072 add_stmt (do_poplevel (scope));
1075 /* Begin a try-block. Returns a newly-created TRY_BLOCK if
1076 appropriate. */
1078 tree
1079 begin_try_block (void)
1081 tree r = build_stmt (input_location, TRY_BLOCK, NULL_TREE, NULL_TREE);
1082 add_stmt (r);
1083 TRY_STMTS (r) = push_stmt_list ();
1084 return r;
1087 /* Likewise, for a function-try-block. The block returned in
1088 *COMPOUND_STMT is an artificial outer scope, containing the
1089 function-try-block. */
1091 tree
1092 begin_function_try_block (tree *compound_stmt)
1094 tree r;
1095 /* This outer scope does not exist in the C++ standard, but we need
1096 a place to put __FUNCTION__ and similar variables. */
1097 *compound_stmt = begin_compound_stmt (0);
1098 r = begin_try_block ();
1099 FN_TRY_BLOCK_P (r) = 1;
1100 return r;
1103 /* Finish a try-block, which may be given by TRY_BLOCK. */
1105 void
1106 finish_try_block (tree try_block)
1108 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1109 TRY_HANDLERS (try_block) = push_stmt_list ();
1112 /* Finish the body of a cleanup try-block, which may be given by
1113 TRY_BLOCK. */
1115 void
1116 finish_cleanup_try_block (tree try_block)
1118 TRY_STMTS (try_block) = pop_stmt_list (TRY_STMTS (try_block));
1121 /* Finish an implicitly generated try-block, with a cleanup is given
1122 by CLEANUP. */
1124 void
1125 finish_cleanup (tree cleanup, tree try_block)
1127 TRY_HANDLERS (try_block) = cleanup;
1128 CLEANUP_P (try_block) = 1;
1131 /* Likewise, for a function-try-block. */
1133 void
1134 finish_function_try_block (tree try_block)
1136 finish_try_block (try_block);
1137 /* FIXME : something queer about CTOR_INITIALIZER somehow following
1138 the try block, but moving it inside. */
1139 in_function_try_handler = 1;
1142 /* Finish a handler-sequence for a try-block, which may be given by
1143 TRY_BLOCK. */
1145 void
1146 finish_handler_sequence (tree try_block)
1148 TRY_HANDLERS (try_block) = pop_stmt_list (TRY_HANDLERS (try_block));
1149 check_handlers (TRY_HANDLERS (try_block));
1152 /* Finish the handler-seq for a function-try-block, given by
1153 TRY_BLOCK. COMPOUND_STMT is the outer block created by
1154 begin_function_try_block. */
1156 void
1157 finish_function_handler_sequence (tree try_block, tree compound_stmt)
1159 in_function_try_handler = 0;
1160 finish_handler_sequence (try_block);
1161 finish_compound_stmt (compound_stmt);
1164 /* Begin a handler. Returns a HANDLER if appropriate. */
1166 tree
1167 begin_handler (void)
1169 tree r;
1171 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE);
1172 add_stmt (r);
1174 /* Create a binding level for the eh_info and the exception object
1175 cleanup. */
1176 HANDLER_BODY (r) = do_pushlevel (sk_catch);
1178 return r;
1181 /* Finish the handler-parameters for a handler, which may be given by
1182 HANDLER. DECL is the declaration for the catch parameter, or NULL
1183 if this is a `catch (...)' clause. */
1185 void
1186 finish_handler_parms (tree decl, tree handler)
1188 tree type = NULL_TREE;
1189 if (processing_template_decl)
1191 if (decl)
1193 decl = pushdecl (decl);
1194 decl = push_template_decl (decl);
1195 HANDLER_PARMS (handler) = decl;
1196 type = TREE_TYPE (decl);
1199 else
1200 type = expand_start_catch_block (decl);
1201 HANDLER_TYPE (handler) = type;
1202 if (!processing_template_decl && type)
1203 mark_used (eh_type_info (type));
1206 /* Finish a handler, which may be given by HANDLER. The BLOCKs are
1207 the return value from the matching call to finish_handler_parms. */
1209 void
1210 finish_handler (tree handler)
1212 if (!processing_template_decl)
1213 expand_end_catch_block ();
1214 HANDLER_BODY (handler) = do_poplevel (HANDLER_BODY (handler));
1217 /* Begin a compound statement. FLAGS contains some bits that control the
1218 behavior and context. If BCS_NO_SCOPE is set, the compound statement
1219 does not define a scope. If BCS_FN_BODY is set, this is the outermost
1220 block of a function. If BCS_TRY_BLOCK is set, this is the block
1221 created on behalf of a TRY statement. Returns a token to be passed to
1222 finish_compound_stmt. */
1224 tree
1225 begin_compound_stmt (unsigned int flags)
1227 tree r;
1229 if (flags & BCS_NO_SCOPE)
1231 r = push_stmt_list ();
1232 STATEMENT_LIST_NO_SCOPE (r) = 1;
1234 /* Normally, we try hard to keep the BLOCK for a statement-expression.
1235 But, if it's a statement-expression with a scopeless block, there's
1236 nothing to keep, and we don't want to accidentally keep a block
1237 *inside* the scopeless block. */
1238 keep_next_level (false);
1240 else
1241 r = do_pushlevel (flags & BCS_TRY_BLOCK ? sk_try : sk_block);
1243 /* When processing a template, we need to remember where the braces were,
1244 so that we can set up identical scopes when instantiating the template
1245 later. BIND_EXPR is a handy candidate for this.
1246 Note that do_poplevel won't create a BIND_EXPR itself here (and thus
1247 result in nested BIND_EXPRs), since we don't build BLOCK nodes when
1248 processing templates. */
1249 if (processing_template_decl)
1251 r = build3 (BIND_EXPR, NULL, NULL, r, NULL);
1252 BIND_EXPR_TRY_BLOCK (r) = (flags & BCS_TRY_BLOCK) != 0;
1253 BIND_EXPR_BODY_BLOCK (r) = (flags & BCS_FN_BODY) != 0;
1254 TREE_SIDE_EFFECTS (r) = 1;
1257 return r;
1260 /* Finish a compound-statement, which is given by STMT. */
1262 void
1263 finish_compound_stmt (tree stmt)
1265 if (TREE_CODE (stmt) == BIND_EXPR)
1267 tree body = do_poplevel (BIND_EXPR_BODY (stmt));
1268 /* If the STATEMENT_LIST is empty and this BIND_EXPR isn't special,
1269 discard the BIND_EXPR so it can be merged with the containing
1270 STATEMENT_LIST. */
1271 if (TREE_CODE (body) == STATEMENT_LIST
1272 && STATEMENT_LIST_HEAD (body) == NULL
1273 && !BIND_EXPR_BODY_BLOCK (stmt)
1274 && !BIND_EXPR_TRY_BLOCK (stmt))
1275 stmt = body;
1276 else
1277 BIND_EXPR_BODY (stmt) = body;
1279 else if (STATEMENT_LIST_NO_SCOPE (stmt))
1280 stmt = pop_stmt_list (stmt);
1281 else
1283 /* Destroy any ObjC "super" receivers that may have been
1284 created. */
1285 objc_clear_super_receiver ();
1287 stmt = do_poplevel (stmt);
1290 /* ??? See c_end_compound_stmt wrt statement expressions. */
1291 add_stmt (stmt);
1292 finish_stmt ();
1295 /* Finish an asm-statement, whose components are a STRING, some
1296 OUTPUT_OPERANDS, some INPUT_OPERANDS, some CLOBBERS and some
1297 LABELS. Also note whether the asm-statement should be
1298 considered volatile. */
1300 tree
1301 finish_asm_stmt (int volatile_p, tree string, tree output_operands,
1302 tree input_operands, tree clobbers, tree labels)
1304 tree r;
1305 tree t;
1306 int ninputs = list_length (input_operands);
1307 int noutputs = list_length (output_operands);
1309 if (!processing_template_decl)
1311 const char *constraint;
1312 const char **oconstraints;
1313 bool allows_mem, allows_reg, is_inout;
1314 tree operand;
1315 int i;
1317 oconstraints = XALLOCAVEC (const char *, noutputs);
1319 string = resolve_asm_operand_names (string, output_operands,
1320 input_operands, labels);
1322 for (i = 0, t = output_operands; t; t = TREE_CHAIN (t), ++i)
1324 operand = TREE_VALUE (t);
1326 /* ??? Really, this should not be here. Users should be using a
1327 proper lvalue, dammit. But there's a long history of using
1328 casts in the output operands. In cases like longlong.h, this
1329 becomes a primitive form of typechecking -- if the cast can be
1330 removed, then the output operand had a type of the proper width;
1331 otherwise we'll get an error. Gross, but ... */
1332 STRIP_NOPS (operand);
1334 operand = mark_lvalue_use (operand);
1336 if (!lvalue_or_else (operand, lv_asm, tf_warning_or_error))
1337 operand = error_mark_node;
1339 if (operand != error_mark_node
1340 && (TREE_READONLY (operand)
1341 || CP_TYPE_CONST_P (TREE_TYPE (operand))
1342 /* Functions are not modifiable, even though they are
1343 lvalues. */
1344 || TREE_CODE (TREE_TYPE (operand)) == FUNCTION_TYPE
1345 || TREE_CODE (TREE_TYPE (operand)) == METHOD_TYPE
1346 /* If it's an aggregate and any field is const, then it is
1347 effectively const. */
1348 || (CLASS_TYPE_P (TREE_TYPE (operand))
1349 && C_TYPE_FIELDS_READONLY (TREE_TYPE (operand)))))
1350 cxx_readonly_error (operand, lv_asm);
1352 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1353 oconstraints[i] = constraint;
1355 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
1356 &allows_mem, &allows_reg, &is_inout))
1358 /* If the operand is going to end up in memory,
1359 mark it addressable. */
1360 if (!allows_reg && !cxx_mark_addressable (operand))
1361 operand = error_mark_node;
1363 else
1364 operand = error_mark_node;
1366 TREE_VALUE (t) = operand;
1369 for (i = 0, t = input_operands; t; ++i, t = TREE_CHAIN (t))
1371 constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (t)));
1372 bool constraint_parsed
1373 = parse_input_constraint (&constraint, i, ninputs, noutputs, 0,
1374 oconstraints, &allows_mem, &allows_reg);
1375 /* If the operand is going to end up in memory, don't call
1376 decay_conversion. */
1377 if (constraint_parsed && !allows_reg && allows_mem)
1378 operand = mark_lvalue_use (TREE_VALUE (t));
1379 else
1380 operand = decay_conversion (TREE_VALUE (t), tf_warning_or_error);
1382 /* If the type of the operand hasn't been determined (e.g.,
1383 because it involves an overloaded function), then issue
1384 an error message. There's no context available to
1385 resolve the overloading. */
1386 if (TREE_TYPE (operand) == unknown_type_node)
1388 error ("type of asm operand %qE could not be determined",
1389 TREE_VALUE (t));
1390 operand = error_mark_node;
1393 if (constraint_parsed)
1395 /* If the operand is going to end up in memory,
1396 mark it addressable. */
1397 if (!allows_reg && allows_mem)
1399 /* Strip the nops as we allow this case. FIXME, this really
1400 should be rejected or made deprecated. */
1401 STRIP_NOPS (operand);
1402 if (!cxx_mark_addressable (operand))
1403 operand = error_mark_node;
1406 else
1407 operand = error_mark_node;
1409 TREE_VALUE (t) = operand;
1413 r = build_stmt (input_location, ASM_EXPR, string,
1414 output_operands, input_operands,
1415 clobbers, labels);
1416 ASM_VOLATILE_P (r) = volatile_p || noutputs == 0;
1417 r = maybe_cleanup_point_expr_void (r);
1418 return add_stmt (r);
1421 /* Finish a label with the indicated NAME. Returns the new label. */
1423 tree
1424 finish_label_stmt (tree name)
1426 tree decl = define_label (input_location, name);
1428 if (decl == error_mark_node)
1429 return error_mark_node;
1431 add_stmt (build_stmt (input_location, LABEL_EXPR, decl));
1433 return decl;
1436 /* Finish a series of declarations for local labels. G++ allows users
1437 to declare "local" labels, i.e., labels with scope. This extension
1438 is useful when writing code involving statement-expressions. */
1440 void
1441 finish_label_decl (tree name)
1443 if (!at_function_scope_p ())
1445 error ("__label__ declarations are only allowed in function scopes");
1446 return;
1449 add_decl_expr (declare_local_label (name));
1452 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1454 void
1455 finish_decl_cleanup (tree decl, tree cleanup)
1457 push_cleanup (decl, cleanup, false);
1460 /* If the current scope exits with an exception, run CLEANUP. */
1462 void
1463 finish_eh_cleanup (tree cleanup)
1465 push_cleanup (NULL, cleanup, true);
1468 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1469 order they were written by the user. Each node is as for
1470 emit_mem_initializers. */
1472 void
1473 finish_mem_initializers (tree mem_inits)
1475 /* Reorder the MEM_INITS so that they are in the order they appeared
1476 in the source program. */
1477 mem_inits = nreverse (mem_inits);
1479 if (processing_template_decl)
1481 tree mem;
1483 for (mem = mem_inits; mem; mem = TREE_CHAIN (mem))
1485 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1486 check for bare parameter packs in the TREE_VALUE, because
1487 any parameter packs in the TREE_VALUE have already been
1488 bound as part of the TREE_PURPOSE. See
1489 make_pack_expansion for more information. */
1490 if (TREE_CODE (TREE_PURPOSE (mem)) != TYPE_PACK_EXPANSION
1491 && check_for_bare_parameter_packs (TREE_VALUE (mem)))
1492 TREE_VALUE (mem) = error_mark_node;
1495 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION,
1496 CTOR_INITIALIZER, mem_inits));
1498 else
1499 emit_mem_initializers (mem_inits);
1502 /* Finish a parenthesized expression EXPR. */
1504 tree
1505 finish_parenthesized_expr (tree expr)
1507 if (EXPR_P (expr))
1508 /* This inhibits warnings in c_common_truthvalue_conversion. */
1509 TREE_NO_WARNING (expr) = 1;
1511 if (TREE_CODE (expr) == OFFSET_REF
1512 || TREE_CODE (expr) == SCOPE_REF)
1513 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1514 enclosed in parentheses. */
1515 PTRMEM_OK_P (expr) = 0;
1517 if (TREE_CODE (expr) == STRING_CST)
1518 PAREN_STRING_LITERAL_P (expr) = 1;
1520 return expr;
1523 /* Finish a reference to a non-static data member (DECL) that is not
1524 preceded by `.' or `->'. */
1526 tree
1527 finish_non_static_data_member (tree decl, tree object, tree qualifying_scope)
1529 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
1531 if (!object)
1533 tree scope = qualifying_scope;
1534 if (scope == NULL_TREE)
1535 scope = context_for_name_lookup (decl);
1536 object = maybe_dummy_object (scope, NULL);
1539 if (object == error_mark_node)
1540 return error_mark_node;
1542 /* DR 613: Can use non-static data members without an associated
1543 object in sizeof/decltype/alignof. */
1544 if (is_dummy_object (object) && cp_unevaluated_operand == 0
1545 && (!processing_template_decl || !current_class_ref))
1547 if (current_function_decl
1548 && DECL_STATIC_FUNCTION_P (current_function_decl))
1549 error ("invalid use of member %q+D in static member function", decl);
1550 else
1551 error ("invalid use of non-static data member %q+D", decl);
1552 error ("from this location");
1554 return error_mark_node;
1557 if (current_class_ptr)
1558 TREE_USED (current_class_ptr) = 1;
1559 if (processing_template_decl && !qualifying_scope)
1561 tree type = TREE_TYPE (decl);
1563 if (TREE_CODE (type) == REFERENCE_TYPE)
1564 /* Quals on the object don't matter. */;
1565 else
1567 /* Set the cv qualifiers. */
1568 int quals = (current_class_ref
1569 ? cp_type_quals (TREE_TYPE (current_class_ref))
1570 : TYPE_UNQUALIFIED);
1572 if (DECL_MUTABLE_P (decl))
1573 quals &= ~TYPE_QUAL_CONST;
1575 quals |= cp_type_quals (TREE_TYPE (decl));
1576 type = cp_build_qualified_type (type, quals);
1579 return (convert_from_reference
1580 (build_min (COMPONENT_REF, type, object, decl, NULL_TREE)));
1582 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1583 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1584 for now. */
1585 else if (processing_template_decl)
1586 return build_qualified_name (TREE_TYPE (decl),
1587 qualifying_scope,
1588 decl,
1589 /*template_p=*/false);
1590 else
1592 tree access_type = TREE_TYPE (object);
1594 perform_or_defer_access_check (TYPE_BINFO (access_type), decl,
1595 decl, tf_warning_or_error);
1597 /* If the data member was named `C::M', convert `*this' to `C'
1598 first. */
1599 if (qualifying_scope)
1601 tree binfo = NULL_TREE;
1602 object = build_scoped_ref (object, qualifying_scope,
1603 &binfo);
1606 return build_class_member_access_expr (object, decl,
1607 /*access_path=*/NULL_TREE,
1608 /*preserve_reference=*/false,
1609 tf_warning_or_error);
1613 /* If we are currently parsing a template and we encountered a typedef
1614 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1615 adds the typedef to a list tied to the current template.
1616 At template instantiation time, that list is walked and access check
1617 performed for each typedef.
1618 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1620 void
1621 add_typedef_to_current_template_for_access_check (tree typedef_decl,
1622 tree context,
1623 location_t location)
1625 tree template_info = NULL;
1626 tree cs = current_scope ();
1628 if (!is_typedef_decl (typedef_decl)
1629 || !context
1630 || !CLASS_TYPE_P (context)
1631 || !cs)
1632 return;
1634 if (CLASS_TYPE_P (cs) || TREE_CODE (cs) == FUNCTION_DECL)
1635 template_info = get_template_info (cs);
1637 if (template_info
1638 && TI_TEMPLATE (template_info)
1639 && !currently_open_class (context))
1640 append_type_to_template_for_access_check (cs, typedef_decl,
1641 context, location);
1644 /* DECL was the declaration to which a qualified-id resolved. Issue
1645 an error message if it is not accessible. If OBJECT_TYPE is
1646 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1647 type of `*x', or `x', respectively. If the DECL was named as
1648 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1650 void
1651 check_accessibility_of_qualified_id (tree decl,
1652 tree object_type,
1653 tree nested_name_specifier)
1655 tree scope;
1656 tree qualifying_type = NULL_TREE;
1658 /* If we are parsing a template declaration and if decl is a typedef,
1659 add it to a list tied to the template.
1660 At template instantiation time, that list will be walked and
1661 access check performed. */
1662 add_typedef_to_current_template_for_access_check (decl,
1663 nested_name_specifier
1664 ? nested_name_specifier
1665 : DECL_CONTEXT (decl),
1666 input_location);
1668 /* If we're not checking, return immediately. */
1669 if (deferred_access_no_check)
1670 return;
1672 /* Determine the SCOPE of DECL. */
1673 scope = context_for_name_lookup (decl);
1674 /* If the SCOPE is not a type, then DECL is not a member. */
1675 if (!TYPE_P (scope))
1676 return;
1677 /* Compute the scope through which DECL is being accessed. */
1678 if (object_type
1679 /* OBJECT_TYPE might not be a class type; consider:
1681 class A { typedef int I; };
1682 I *p;
1683 p->A::I::~I();
1685 In this case, we will have "A::I" as the DECL, but "I" as the
1686 OBJECT_TYPE. */
1687 && CLASS_TYPE_P (object_type)
1688 && DERIVED_FROM_P (scope, object_type))
1689 /* If we are processing a `->' or `.' expression, use the type of the
1690 left-hand side. */
1691 qualifying_type = object_type;
1692 else if (nested_name_specifier)
1694 /* If the reference is to a non-static member of the
1695 current class, treat it as if it were referenced through
1696 `this'. */
1697 if (DECL_NONSTATIC_MEMBER_P (decl)
1698 && current_class_ptr
1699 && DERIVED_FROM_P (scope, current_class_type))
1700 qualifying_type = current_class_type;
1701 /* Otherwise, use the type indicated by the
1702 nested-name-specifier. */
1703 else
1704 qualifying_type = nested_name_specifier;
1706 else
1707 /* Otherwise, the name must be from the current class or one of
1708 its bases. */
1709 qualifying_type = currently_open_derived_class (scope);
1711 if (qualifying_type
1712 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1713 or similar in a default argument value. */
1714 && CLASS_TYPE_P (qualifying_type)
1715 && !dependent_type_p (qualifying_type))
1716 perform_or_defer_access_check (TYPE_BINFO (qualifying_type), decl,
1717 decl, tf_warning_or_error);
1720 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1721 class named to the left of the "::" operator. DONE is true if this
1722 expression is a complete postfix-expression; it is false if this
1723 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1724 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1725 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1726 is true iff this qualified name appears as a template argument. */
1728 tree
1729 finish_qualified_id_expr (tree qualifying_class,
1730 tree expr,
1731 bool done,
1732 bool address_p,
1733 bool template_p,
1734 bool template_arg_p)
1736 gcc_assert (TYPE_P (qualifying_class));
1738 if (error_operand_p (expr))
1739 return error_mark_node;
1741 if (DECL_P (expr) || BASELINK_P (expr))
1742 mark_used (expr);
1744 if (template_p)
1745 check_template_keyword (expr);
1747 /* If EXPR occurs as the operand of '&', use special handling that
1748 permits a pointer-to-member. */
1749 if (address_p && done)
1751 if (TREE_CODE (expr) == SCOPE_REF)
1752 expr = TREE_OPERAND (expr, 1);
1753 expr = build_offset_ref (qualifying_class, expr,
1754 /*address_p=*/true);
1755 return expr;
1758 /* Within the scope of a class, turn references to non-static
1759 members into expression of the form "this->...". */
1760 if (template_arg_p)
1761 /* But, within a template argument, we do not want make the
1762 transformation, as there is no "this" pointer. */
1764 else if (TREE_CODE (expr) == FIELD_DECL)
1766 push_deferring_access_checks (dk_no_check);
1767 expr = finish_non_static_data_member (expr, NULL_TREE,
1768 qualifying_class);
1769 pop_deferring_access_checks ();
1771 else if (BASELINK_P (expr) && !processing_template_decl)
1773 tree ob;
1775 /* See if any of the functions are non-static members. */
1776 /* If so, the expression may be relative to 'this'. */
1777 if (!shared_member_p (expr)
1778 && (ob = maybe_dummy_object (qualifying_class, NULL),
1779 !is_dummy_object (ob)))
1780 expr = (build_class_member_access_expr
1781 (ob,
1782 expr,
1783 BASELINK_ACCESS_BINFO (expr),
1784 /*preserve_reference=*/false,
1785 tf_warning_or_error));
1786 else if (done)
1787 /* The expression is a qualified name whose address is not
1788 being taken. */
1789 expr = build_offset_ref (qualifying_class, expr, /*address_p=*/false);
1791 else if (BASELINK_P (expr))
1793 else
1795 /* In a template, return a SCOPE_REF for most qualified-ids
1796 so that we can check access at instantiation time. But if
1797 we're looking at a member of the current instantiation, we
1798 know we have access and building up the SCOPE_REF confuses
1799 non-type template argument handling. */
1800 if (processing_template_decl
1801 && !currently_open_class (qualifying_class))
1802 expr = build_qualified_name (TREE_TYPE (expr),
1803 qualifying_class, expr,
1804 template_p);
1806 expr = convert_from_reference (expr);
1809 return expr;
1812 /* Begin a statement-expression. The value returned must be passed to
1813 finish_stmt_expr. */
1815 tree
1816 begin_stmt_expr (void)
1818 return push_stmt_list ();
1821 /* Process the final expression of a statement expression. EXPR can be
1822 NULL, if the final expression is empty. Return a STATEMENT_LIST
1823 containing all the statements in the statement-expression, or
1824 ERROR_MARK_NODE if there was an error. */
1826 tree
1827 finish_stmt_expr_expr (tree expr, tree stmt_expr)
1829 if (error_operand_p (expr))
1831 /* The type of the statement-expression is the type of the last
1832 expression. */
1833 TREE_TYPE (stmt_expr) = error_mark_node;
1834 return error_mark_node;
1837 /* If the last statement does not have "void" type, then the value
1838 of the last statement is the value of the entire expression. */
1839 if (expr)
1841 tree type = TREE_TYPE (expr);
1843 if (processing_template_decl)
1845 expr = build_stmt (input_location, EXPR_STMT, expr);
1846 expr = add_stmt (expr);
1847 /* Mark the last statement so that we can recognize it as such at
1848 template-instantiation time. */
1849 EXPR_STMT_STMT_EXPR_RESULT (expr) = 1;
1851 else if (VOID_TYPE_P (type))
1853 /* Just treat this like an ordinary statement. */
1854 expr = finish_expr_stmt (expr);
1856 else
1858 /* It actually has a value we need to deal with. First, force it
1859 to be an rvalue so that we won't need to build up a copy
1860 constructor call later when we try to assign it to something. */
1861 expr = force_rvalue (expr, tf_warning_or_error);
1862 if (error_operand_p (expr))
1863 return error_mark_node;
1865 /* Update for array-to-pointer decay. */
1866 type = TREE_TYPE (expr);
1868 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1869 normal statement, but don't convert to void or actually add
1870 the EXPR_STMT. */
1871 if (TREE_CODE (expr) != CLEANUP_POINT_EXPR)
1872 expr = maybe_cleanup_point_expr (expr);
1873 add_stmt (expr);
1876 /* The type of the statement-expression is the type of the last
1877 expression. */
1878 TREE_TYPE (stmt_expr) = type;
1881 return stmt_expr;
1884 /* Finish a statement-expression. EXPR should be the value returned
1885 by the previous begin_stmt_expr. Returns an expression
1886 representing the statement-expression. */
1888 tree
1889 finish_stmt_expr (tree stmt_expr, bool has_no_scope)
1891 tree type;
1892 tree result;
1894 if (error_operand_p (stmt_expr))
1896 pop_stmt_list (stmt_expr);
1897 return error_mark_node;
1900 gcc_assert (TREE_CODE (stmt_expr) == STATEMENT_LIST);
1902 type = TREE_TYPE (stmt_expr);
1903 result = pop_stmt_list (stmt_expr);
1904 TREE_TYPE (result) = type;
1906 if (processing_template_decl)
1908 result = build_min (STMT_EXPR, type, result);
1909 TREE_SIDE_EFFECTS (result) = 1;
1910 STMT_EXPR_NO_SCOPE (result) = has_no_scope;
1912 else if (CLASS_TYPE_P (type))
1914 /* Wrap the statement-expression in a TARGET_EXPR so that the
1915 temporary object created by the final expression is destroyed at
1916 the end of the full-expression containing the
1917 statement-expression. */
1918 result = force_target_expr (type, result, tf_warning_or_error);
1921 return result;
1924 /* Returns the expression which provides the value of STMT_EXPR. */
1926 tree
1927 stmt_expr_value_expr (tree stmt_expr)
1929 tree t = STMT_EXPR_STMT (stmt_expr);
1931 if (TREE_CODE (t) == BIND_EXPR)
1932 t = BIND_EXPR_BODY (t);
1934 if (TREE_CODE (t) == STATEMENT_LIST && STATEMENT_LIST_TAIL (t))
1935 t = STATEMENT_LIST_TAIL (t)->stmt;
1937 if (TREE_CODE (t) == EXPR_STMT)
1938 t = EXPR_STMT_EXPR (t);
1940 return t;
1943 /* Return TRUE iff EXPR_STMT is an empty list of
1944 expression statements. */
1946 bool
1947 empty_expr_stmt_p (tree expr_stmt)
1949 tree body = NULL_TREE;
1951 if (expr_stmt == void_zero_node)
1952 return true;
1954 if (expr_stmt)
1956 if (TREE_CODE (expr_stmt) == EXPR_STMT)
1957 body = EXPR_STMT_EXPR (expr_stmt);
1958 else if (TREE_CODE (expr_stmt) == STATEMENT_LIST)
1959 body = expr_stmt;
1962 if (body)
1964 if (TREE_CODE (body) == STATEMENT_LIST)
1965 return tsi_end_p (tsi_start (body));
1966 else
1967 return empty_expr_stmt_p (body);
1969 return false;
1972 /* Perform Koenig lookup. FN is the postfix-expression representing
1973 the function (or functions) to call; ARGS are the arguments to the
1974 call; if INCLUDE_STD then the `std' namespace is automatically
1975 considered an associated namespace (used in range-based for loops).
1976 Returns the functions to be considered by overload resolution. */
1978 tree
1979 perform_koenig_lookup (tree fn, vec<tree, va_gc> *args, bool include_std,
1980 tsubst_flags_t complain)
1982 tree identifier = NULL_TREE;
1983 tree functions = NULL_TREE;
1984 tree tmpl_args = NULL_TREE;
1985 bool template_id = false;
1987 if (TREE_CODE (fn) == TEMPLATE_ID_EXPR)
1989 /* Use a separate flag to handle null args. */
1990 template_id = true;
1991 tmpl_args = TREE_OPERAND (fn, 1);
1992 fn = TREE_OPERAND (fn, 0);
1995 /* Find the name of the overloaded function. */
1996 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1997 identifier = fn;
1998 else if (is_overloaded_fn (fn))
2000 functions = fn;
2001 identifier = DECL_NAME (get_first_fn (functions));
2003 else if (DECL_P (fn))
2005 functions = fn;
2006 identifier = DECL_NAME (fn);
2009 /* A call to a namespace-scope function using an unqualified name.
2011 Do Koenig lookup -- unless any of the arguments are
2012 type-dependent. */
2013 if (!any_type_dependent_arguments_p (args)
2014 && !any_dependent_template_arguments_p (tmpl_args))
2016 fn = lookup_arg_dependent (identifier, functions, args, include_std);
2017 if (!fn)
2019 /* The unqualified name could not be resolved. */
2020 if (complain)
2021 fn = unqualified_fn_lookup_error (identifier);
2022 else
2023 fn = identifier;
2027 if (fn && template_id)
2028 fn = build2 (TEMPLATE_ID_EXPR, unknown_type_node, fn, tmpl_args);
2030 return fn;
2033 /* Generate an expression for `FN (ARGS)'. This may change the
2034 contents of ARGS.
2036 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2037 as a virtual call, even if FN is virtual. (This flag is set when
2038 encountering an expression where the function name is explicitly
2039 qualified. For example a call to `X::f' never generates a virtual
2040 call.)
2042 Returns code for the call. */
2044 tree
2045 finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
2046 bool koenig_p, tsubst_flags_t complain)
2048 tree result;
2049 tree orig_fn;
2050 vec<tree, va_gc> *orig_args = NULL;
2052 if (fn == error_mark_node)
2053 return error_mark_node;
2055 gcc_assert (!TYPE_P (fn));
2057 orig_fn = fn;
2059 if (processing_template_decl)
2061 /* If the call expression is dependent, build a CALL_EXPR node
2062 with no type; type_dependent_expression_p recognizes
2063 expressions with no type as being dependent. */
2064 if (type_dependent_expression_p (fn)
2065 || any_type_dependent_arguments_p (*args)
2066 /* For a non-static member function that doesn't have an
2067 explicit object argument, we need to specifically
2068 test the type dependency of the "this" pointer because it
2069 is not included in *ARGS even though it is considered to
2070 be part of the list of arguments. Note that this is
2071 related to CWG issues 515 and 1005. */
2072 || (TREE_CODE (fn) != COMPONENT_REF
2073 && non_static_member_function_p (fn)
2074 && current_class_ref
2075 && type_dependent_expression_p (current_class_ref)))
2077 result = build_nt_call_vec (fn, *args);
2078 SET_EXPR_LOCATION (result, EXPR_LOC_OR_HERE (fn));
2079 KOENIG_LOOKUP_P (result) = koenig_p;
2080 if (cfun)
2084 tree fndecl = OVL_CURRENT (fn);
2085 if (TREE_CODE (fndecl) != FUNCTION_DECL
2086 || !TREE_THIS_VOLATILE (fndecl))
2087 break;
2088 fn = OVL_NEXT (fn);
2090 while (fn);
2091 if (!fn)
2092 current_function_returns_abnormally = 1;
2094 return result;
2096 orig_args = make_tree_vector_copy (*args);
2097 if (!BASELINK_P (fn)
2098 && TREE_CODE (fn) != PSEUDO_DTOR_EXPR
2099 && TREE_TYPE (fn) != unknown_type_node)
2100 fn = build_non_dependent_expr (fn);
2101 make_args_non_dependent (*args);
2104 if (TREE_CODE (fn) == COMPONENT_REF)
2106 tree member = TREE_OPERAND (fn, 1);
2107 if (BASELINK_P (member))
2109 tree object = TREE_OPERAND (fn, 0);
2110 return build_new_method_call (object, member,
2111 args, NULL_TREE,
2112 (disallow_virtual
2113 ? LOOKUP_NORMAL | LOOKUP_NONVIRTUAL
2114 : LOOKUP_NORMAL),
2115 /*fn_p=*/NULL,
2116 complain);
2120 if (is_overloaded_fn (fn))
2121 fn = baselink_for_fns (fn);
2123 result = NULL_TREE;
2124 if (BASELINK_P (fn))
2126 tree object;
2128 /* A call to a member function. From [over.call.func]:
2130 If the keyword this is in scope and refers to the class of
2131 that member function, or a derived class thereof, then the
2132 function call is transformed into a qualified function call
2133 using (*this) as the postfix-expression to the left of the
2134 . operator.... [Otherwise] a contrived object of type T
2135 becomes the implied object argument.
2137 In this situation:
2139 struct A { void f(); };
2140 struct B : public A {};
2141 struct C : public A { void g() { B::f(); }};
2143 "the class of that member function" refers to `A'. But 11.2
2144 [class.access.base] says that we need to convert 'this' to B* as
2145 part of the access, so we pass 'B' to maybe_dummy_object. */
2147 object = maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn)),
2148 NULL);
2150 if (processing_template_decl)
2152 if (type_dependent_expression_p (object))
2154 tree ret = build_nt_call_vec (orig_fn, orig_args);
2155 release_tree_vector (orig_args);
2156 return ret;
2158 object = build_non_dependent_expr (object);
2161 result = build_new_method_call (object, fn, args, NULL_TREE,
2162 (disallow_virtual
2163 ? LOOKUP_NORMAL|LOOKUP_NONVIRTUAL
2164 : LOOKUP_NORMAL),
2165 /*fn_p=*/NULL,
2166 complain);
2168 else if (is_overloaded_fn (fn))
2170 /* If the function is an overloaded builtin, resolve it. */
2171 if (TREE_CODE (fn) == FUNCTION_DECL
2172 && (DECL_BUILT_IN_CLASS (fn) == BUILT_IN_NORMAL
2173 || DECL_BUILT_IN_CLASS (fn) == BUILT_IN_MD))
2174 result = resolve_overloaded_builtin (input_location, fn, *args);
2176 if (!result)
2178 if (warn_sizeof_pointer_memaccess
2179 && !vec_safe_is_empty (*args)
2180 && !processing_template_decl)
2182 location_t sizeof_arg_loc[3];
2183 tree sizeof_arg[3];
2184 unsigned int i;
2185 for (i = 0; i < 3; i++)
2187 tree t;
2189 sizeof_arg_loc[i] = UNKNOWN_LOCATION;
2190 sizeof_arg[i] = NULL_TREE;
2191 if (i >= (*args)->length ())
2192 continue;
2193 t = (**args)[i];
2194 if (TREE_CODE (t) != SIZEOF_EXPR)
2195 continue;
2196 if (SIZEOF_EXPR_TYPE_P (t))
2197 sizeof_arg[i] = TREE_TYPE (TREE_OPERAND (t, 0));
2198 else
2199 sizeof_arg[i] = TREE_OPERAND (t, 0);
2200 sizeof_arg_loc[i] = EXPR_LOCATION (t);
2202 sizeof_pointer_memaccess_warning
2203 (sizeof_arg_loc, fn, *args,
2204 sizeof_arg, same_type_ignoring_top_level_qualifiers_p);
2207 /* A call to a namespace-scope function. */
2208 result = build_new_function_call (fn, args, koenig_p, complain);
2211 else if (TREE_CODE (fn) == PSEUDO_DTOR_EXPR)
2213 if (!vec_safe_is_empty (*args))
2214 error ("arguments to destructor are not allowed");
2215 /* Mark the pseudo-destructor call as having side-effects so
2216 that we do not issue warnings about its use. */
2217 result = build1 (NOP_EXPR,
2218 void_type_node,
2219 TREE_OPERAND (fn, 0));
2220 TREE_SIDE_EFFECTS (result) = 1;
2222 else if (CLASS_TYPE_P (TREE_TYPE (fn)))
2223 /* If the "function" is really an object of class type, it might
2224 have an overloaded `operator ()'. */
2225 result = build_op_call (fn, args, complain);
2227 if (!result)
2228 /* A call where the function is unknown. */
2229 result = cp_build_function_call_vec (fn, args, complain);
2231 if (processing_template_decl && result != error_mark_node)
2233 if (TREE_CODE (result) == INDIRECT_REF)
2234 result = TREE_OPERAND (result, 0);
2235 result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
2236 SET_EXPR_LOCATION (result, input_location);
2237 KOENIG_LOOKUP_P (result) = koenig_p;
2238 release_tree_vector (orig_args);
2239 result = convert_from_reference (result);
2242 if (koenig_p)
2244 /* Free garbage OVERLOADs from arg-dependent lookup. */
2245 tree next = NULL_TREE;
2246 for (fn = orig_fn;
2247 fn && TREE_CODE (fn) == OVERLOAD && OVL_ARG_DEPENDENT (fn);
2248 fn = next)
2250 if (processing_template_decl)
2251 /* In a template, we'll re-use them at instantiation time. */
2252 OVL_ARG_DEPENDENT (fn) = false;
2253 else
2255 next = OVL_CHAIN (fn);
2256 ggc_free (fn);
2261 return result;
2264 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2265 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2266 POSTDECREMENT_EXPR.) */
2268 tree
2269 finish_increment_expr (tree expr, enum tree_code code)
2271 return build_x_unary_op (input_location, code, expr, tf_warning_or_error);
2274 /* Finish a use of `this'. Returns an expression for `this'. */
2276 tree
2277 finish_this_expr (void)
2279 tree result;
2281 if (current_class_ptr)
2283 tree type = TREE_TYPE (current_class_ref);
2285 /* In a lambda expression, 'this' refers to the captured 'this'. */
2286 if (LAMBDA_TYPE_P (type))
2287 result = lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type));
2288 else
2289 result = current_class_ptr;
2292 else if (current_function_decl
2293 && DECL_STATIC_FUNCTION_P (current_function_decl))
2295 error ("%<this%> is unavailable for static member functions");
2296 result = error_mark_node;
2298 else
2300 if (current_function_decl)
2301 error ("invalid use of %<this%> in non-member function");
2302 else
2303 error ("invalid use of %<this%> at top level");
2304 result = error_mark_node;
2307 return result;
2310 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2311 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2312 the TYPE for the type given. If SCOPE is non-NULL, the expression
2313 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2315 tree
2316 finish_pseudo_destructor_expr (tree object, tree scope, tree destructor)
2318 if (object == error_mark_node || destructor == error_mark_node)
2319 return error_mark_node;
2321 gcc_assert (TYPE_P (destructor));
2323 if (!processing_template_decl)
2325 if (scope == error_mark_node)
2327 error ("invalid qualifying scope in pseudo-destructor name");
2328 return error_mark_node;
2330 if (scope && TYPE_P (scope) && !check_dtor_name (scope, destructor))
2332 error ("qualified type %qT does not match destructor name ~%qT",
2333 scope, destructor);
2334 return error_mark_node;
2338 /* [expr.pseudo] says both:
2340 The type designated by the pseudo-destructor-name shall be
2341 the same as the object type.
2343 and:
2345 The cv-unqualified versions of the object type and of the
2346 type designated by the pseudo-destructor-name shall be the
2347 same type.
2349 We implement the more generous second sentence, since that is
2350 what most other compilers do. */
2351 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object),
2352 destructor))
2354 error ("%qE is not of type %qT", object, destructor);
2355 return error_mark_node;
2359 return build3 (PSEUDO_DTOR_EXPR, void_type_node, object, scope, destructor);
2362 /* Finish an expression of the form CODE EXPR. */
2364 tree
2365 finish_unary_op_expr (location_t loc, enum tree_code code, tree expr)
2367 tree result = build_x_unary_op (loc, code, expr, tf_warning_or_error);
2368 if (TREE_OVERFLOW_P (result) && !TREE_OVERFLOW_P (expr))
2369 overflow_warning (input_location, result);
2371 return result;
2374 /* Finish a compound-literal expression. TYPE is the type to which
2375 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2377 tree
2378 finish_compound_literal (tree type, tree compound_literal,
2379 tsubst_flags_t complain)
2381 if (type == error_mark_node)
2382 return error_mark_node;
2384 if (TREE_CODE (type) == REFERENCE_TYPE)
2386 compound_literal
2387 = finish_compound_literal (TREE_TYPE (type), compound_literal,
2388 complain);
2389 return cp_build_c_cast (type, compound_literal, complain);
2392 if (!TYPE_OBJ_P (type))
2394 if (complain & tf_error)
2395 error ("compound literal of non-object type %qT", type);
2396 return error_mark_node;
2399 if (processing_template_decl)
2401 TREE_TYPE (compound_literal) = type;
2402 /* Mark the expression as a compound literal. */
2403 TREE_HAS_CONSTRUCTOR (compound_literal) = 1;
2404 return compound_literal;
2407 type = complete_type (type);
2409 if (TYPE_NON_AGGREGATE_CLASS (type))
2411 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2412 everywhere that deals with function arguments would be a pain, so
2413 just wrap it in a TREE_LIST. The parser set a flag so we know
2414 that it came from T{} rather than T({}). */
2415 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal) = 1;
2416 compound_literal = build_tree_list (NULL_TREE, compound_literal);
2417 return build_functional_cast (type, compound_literal, complain);
2420 if (TREE_CODE (type) == ARRAY_TYPE
2421 && check_array_initializer (NULL_TREE, type, compound_literal))
2422 return error_mark_node;
2423 compound_literal = reshape_init (type, compound_literal, complain);
2424 if (SCALAR_TYPE_P (type)
2425 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal)
2426 && (complain & tf_warning_or_error))
2427 check_narrowing (type, compound_literal);
2428 if (TREE_CODE (type) == ARRAY_TYPE
2429 && TYPE_DOMAIN (type) == NULL_TREE)
2431 cp_complete_array_type_or_error (&type, compound_literal,
2432 false, complain);
2433 if (type == error_mark_node)
2434 return error_mark_node;
2436 compound_literal = digest_init (type, compound_literal, complain);
2437 if (TREE_CODE (compound_literal) == CONSTRUCTOR)
2438 TREE_HAS_CONSTRUCTOR (compound_literal) = true;
2439 /* Put static/constant array temporaries in static variables, but always
2440 represent class temporaries with TARGET_EXPR so we elide copies. */
2441 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type))
2442 && TREE_CODE (type) == ARRAY_TYPE
2443 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type)
2444 && initializer_constant_valid_p (compound_literal, type))
2446 tree decl = create_temporary_var (type);
2447 DECL_INITIAL (decl) = compound_literal;
2448 TREE_STATIC (decl) = 1;
2449 if (literal_type_p (type) && CP_TYPE_CONST_NON_VOLATILE_P (type))
2451 /* 5.19 says that a constant expression can include an
2452 lvalue-rvalue conversion applied to "a glvalue of literal type
2453 that refers to a non-volatile temporary object initialized
2454 with a constant expression". Rather than try to communicate
2455 that this VAR_DECL is a temporary, just mark it constexpr. */
2456 DECL_DECLARED_CONSTEXPR_P (decl) = true;
2457 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl) = true;
2458 TREE_CONSTANT (decl) = true;
2460 cp_apply_type_quals_to_decl (cp_type_quals (type), decl);
2461 decl = pushdecl_top_level (decl);
2462 DECL_NAME (decl) = make_anon_name ();
2463 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
2464 return decl;
2466 else
2467 return get_target_expr_sfinae (compound_literal, complain);
2470 /* Return the declaration for the function-name variable indicated by
2471 ID. */
2473 tree
2474 finish_fname (tree id)
2476 tree decl;
2478 decl = fname_decl (input_location, C_RID_CODE (id), id);
2479 if (processing_template_decl && current_function_decl)
2480 decl = DECL_NAME (decl);
2481 return decl;
2484 /* Finish a translation unit. */
2486 void
2487 finish_translation_unit (void)
2489 /* In case there were missing closebraces,
2490 get us back to the global binding level. */
2491 pop_everything ();
2492 while (current_namespace != global_namespace)
2493 pop_namespace ();
2495 /* Do file scope __FUNCTION__ et al. */
2496 finish_fname_decls ();
2499 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2500 Returns the parameter. */
2502 tree
2503 finish_template_type_parm (tree aggr, tree identifier)
2505 if (aggr != class_type_node)
2507 permerror (input_location, "template type parameters must use the keyword %<class%> or %<typename%>");
2508 aggr = class_type_node;
2511 return build_tree_list (aggr, identifier);
2514 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2515 Returns the parameter. */
2517 tree
2518 finish_template_template_parm (tree aggr, tree identifier)
2520 tree decl = build_decl (input_location,
2521 TYPE_DECL, identifier, NULL_TREE);
2522 tree tmpl = build_lang_decl (TEMPLATE_DECL, identifier, NULL_TREE);
2523 DECL_TEMPLATE_PARMS (tmpl) = current_template_parms;
2524 DECL_TEMPLATE_RESULT (tmpl) = decl;
2525 DECL_ARTIFICIAL (decl) = 1;
2526 end_template_decl ();
2528 gcc_assert (DECL_TEMPLATE_PARMS (tmpl));
2530 check_default_tmpl_args (decl, DECL_TEMPLATE_PARMS (tmpl),
2531 /*is_primary=*/true, /*is_partial=*/false,
2532 /*is_friend=*/0);
2534 return finish_template_type_parm (aggr, tmpl);
2537 /* ARGUMENT is the default-argument value for a template template
2538 parameter. If ARGUMENT is invalid, issue error messages and return
2539 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2541 tree
2542 check_template_template_default_arg (tree argument)
2544 if (TREE_CODE (argument) != TEMPLATE_DECL
2545 && TREE_CODE (argument) != TEMPLATE_TEMPLATE_PARM
2546 && TREE_CODE (argument) != UNBOUND_CLASS_TEMPLATE)
2548 if (TREE_CODE (argument) == TYPE_DECL)
2549 error ("invalid use of type %qT as a default value for a template "
2550 "template-parameter", TREE_TYPE (argument));
2551 else
2552 error ("invalid default argument for a template template parameter");
2553 return error_mark_node;
2556 return argument;
2559 /* Begin a class definition, as indicated by T. */
2561 tree
2562 begin_class_definition (tree t)
2564 if (error_operand_p (t) || error_operand_p (TYPE_MAIN_DECL (t)))
2565 return error_mark_node;
2567 if (processing_template_parmlist)
2569 error ("definition of %q#T inside template parameter list", t);
2570 return error_mark_node;
2573 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2574 are passed the same as decimal scalar types. */
2575 if (TREE_CODE (t) == RECORD_TYPE
2576 && !processing_template_decl)
2578 tree ns = TYPE_CONTEXT (t);
2579 if (ns && TREE_CODE (ns) == NAMESPACE_DECL
2580 && DECL_CONTEXT (ns) == std_node
2581 && DECL_NAME (ns)
2582 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns)), "decimal"))
2584 const char *n = TYPE_NAME_STRING (t);
2585 if ((strcmp (n, "decimal32") == 0)
2586 || (strcmp (n, "decimal64") == 0)
2587 || (strcmp (n, "decimal128") == 0))
2588 TYPE_TRANSPARENT_AGGR (t) = 1;
2592 /* A non-implicit typename comes from code like:
2594 template <typename T> struct A {
2595 template <typename U> struct A<T>::B ...
2597 This is erroneous. */
2598 else if (TREE_CODE (t) == TYPENAME_TYPE)
2600 error ("invalid definition of qualified type %qT", t);
2601 t = error_mark_node;
2604 if (t == error_mark_node || ! MAYBE_CLASS_TYPE_P (t))
2606 t = make_class_type (RECORD_TYPE);
2607 pushtag (make_anon_name (), t, /*tag_scope=*/ts_current);
2610 if (TYPE_BEING_DEFINED (t))
2612 t = make_class_type (TREE_CODE (t));
2613 pushtag (TYPE_IDENTIFIER (t), t, /*tag_scope=*/ts_current);
2615 maybe_process_partial_specialization (t);
2616 pushclass (t);
2617 TYPE_BEING_DEFINED (t) = 1;
2619 if (flag_pack_struct)
2621 tree v;
2622 TYPE_PACKED (t) = 1;
2623 /* Even though the type is being defined for the first time
2624 here, there might have been a forward declaration, so there
2625 might be cv-qualified variants of T. */
2626 for (v = TYPE_NEXT_VARIANT (t); v; v = TYPE_NEXT_VARIANT (v))
2627 TYPE_PACKED (v) = 1;
2629 /* Reset the interface data, at the earliest possible
2630 moment, as it might have been set via a class foo;
2631 before. */
2632 if (! TYPE_ANONYMOUS_P (t))
2634 struct c_fileinfo *finfo = get_fileinfo (input_filename);
2635 CLASSTYPE_INTERFACE_ONLY (t) = finfo->interface_only;
2636 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2637 (t, finfo->interface_unknown);
2639 reset_specialization();
2641 /* Make a declaration for this class in its own scope. */
2642 build_self_reference ();
2644 return t;
2647 /* Finish the member declaration given by DECL. */
2649 void
2650 finish_member_declaration (tree decl)
2652 if (decl == error_mark_node || decl == NULL_TREE)
2653 return;
2655 if (decl == void_type_node)
2656 /* The COMPONENT was a friend, not a member, and so there's
2657 nothing for us to do. */
2658 return;
2660 /* We should see only one DECL at a time. */
2661 gcc_assert (DECL_CHAIN (decl) == NULL_TREE);
2663 /* Set up access control for DECL. */
2664 TREE_PRIVATE (decl)
2665 = (current_access_specifier == access_private_node);
2666 TREE_PROTECTED (decl)
2667 = (current_access_specifier == access_protected_node);
2668 if (TREE_CODE (decl) == TEMPLATE_DECL)
2670 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl)) = TREE_PRIVATE (decl);
2671 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl)) = TREE_PROTECTED (decl);
2674 /* Mark the DECL as a member of the current class, unless it's
2675 a member of an enumeration. */
2676 if (TREE_CODE (decl) != CONST_DECL)
2677 DECL_CONTEXT (decl) = current_class_type;
2679 /* Check for bare parameter packs in the member variable declaration. */
2680 if (TREE_CODE (decl) == FIELD_DECL)
2682 if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
2683 TREE_TYPE (decl) = error_mark_node;
2684 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl)))
2685 DECL_ATTRIBUTES (decl) = NULL_TREE;
2688 /* [dcl.link]
2690 A C language linkage is ignored for the names of class members
2691 and the member function type of class member functions. */
2692 if (DECL_LANG_SPECIFIC (decl) && DECL_LANGUAGE (decl) == lang_c)
2693 SET_DECL_LANGUAGE (decl, lang_cplusplus);
2695 /* Put functions on the TYPE_METHODS list and everything else on the
2696 TYPE_FIELDS list. Note that these are built up in reverse order.
2697 We reverse them (to obtain declaration order) in finish_struct. */
2698 if (TREE_CODE (decl) == FUNCTION_DECL
2699 || DECL_FUNCTION_TEMPLATE_P (decl))
2701 /* We also need to add this function to the
2702 CLASSTYPE_METHOD_VEC. */
2703 if (add_method (current_class_type, decl, NULL_TREE))
2705 DECL_CHAIN (decl) = TYPE_METHODS (current_class_type);
2706 TYPE_METHODS (current_class_type) = decl;
2708 maybe_add_class_template_decl_list (current_class_type, decl,
2709 /*friend_p=*/0);
2712 /* Enter the DECL into the scope of the class. */
2713 else if (pushdecl_class_level (decl))
2715 if (TREE_CODE (decl) == USING_DECL)
2717 /* For now, ignore class-scope USING_DECLS, so that
2718 debugging backends do not see them. */
2719 DECL_IGNORED_P (decl) = 1;
2722 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2723 go at the beginning. The reason is that lookup_field_1
2724 searches the list in order, and we want a field name to
2725 override a type name so that the "struct stat hack" will
2726 work. In particular:
2728 struct S { enum E { }; int E } s;
2729 s.E = 3;
2731 is valid. In addition, the FIELD_DECLs must be maintained in
2732 declaration order so that class layout works as expected.
2733 However, we don't need that order until class layout, so we
2734 save a little time by putting FIELD_DECLs on in reverse order
2735 here, and then reversing them in finish_struct_1. (We could
2736 also keep a pointer to the correct insertion points in the
2737 list.) */
2739 if (TREE_CODE (decl) == TYPE_DECL)
2740 TYPE_FIELDS (current_class_type)
2741 = chainon (TYPE_FIELDS (current_class_type), decl);
2742 else
2744 DECL_CHAIN (decl) = TYPE_FIELDS (current_class_type);
2745 TYPE_FIELDS (current_class_type) = decl;
2748 maybe_add_class_template_decl_list (current_class_type, decl,
2749 /*friend_p=*/0);
2752 if (pch_file)
2753 note_decl_for_pch (decl);
2756 /* DECL has been declared while we are building a PCH file. Perform
2757 actions that we might normally undertake lazily, but which can be
2758 performed now so that they do not have to be performed in
2759 translation units which include the PCH file. */
2761 void
2762 note_decl_for_pch (tree decl)
2764 gcc_assert (pch_file);
2766 /* There's a good chance that we'll have to mangle names at some
2767 point, even if only for emission in debugging information. */
2768 if ((TREE_CODE (decl) == VAR_DECL
2769 || TREE_CODE (decl) == FUNCTION_DECL)
2770 && !processing_template_decl)
2771 mangle_decl (decl);
2774 /* Finish processing a complete template declaration. The PARMS are
2775 the template parameters. */
2777 void
2778 finish_template_decl (tree parms)
2780 if (parms)
2781 end_template_decl ();
2782 else
2783 end_specialization ();
2786 /* Finish processing a template-id (which names a type) of the form
2787 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2788 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2789 the scope of template-id indicated. */
2791 tree
2792 finish_template_type (tree name, tree args, int entering_scope)
2794 tree type;
2796 type = lookup_template_class (name, args,
2797 NULL_TREE, NULL_TREE, entering_scope,
2798 tf_warning_or_error | tf_user);
2799 if (type == error_mark_node)
2800 return type;
2801 else if (CLASS_TYPE_P (type) && !alias_type_or_template_p (type))
2802 return TYPE_STUB_DECL (type);
2803 else
2804 return TYPE_NAME (type);
2807 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2808 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2809 BASE_CLASS, or NULL_TREE if an error occurred. The
2810 ACCESS_SPECIFIER is one of
2811 access_{default,public,protected_private}_node. For a virtual base
2812 we set TREE_TYPE. */
2814 tree
2815 finish_base_specifier (tree base, tree access, bool virtual_p)
2817 tree result;
2819 if (base == error_mark_node)
2821 error ("invalid base-class specification");
2822 result = NULL_TREE;
2824 else if (! MAYBE_CLASS_TYPE_P (base))
2826 error ("%qT is not a class type", base);
2827 result = NULL_TREE;
2829 else
2831 if (cp_type_quals (base) != 0)
2833 /* DR 484: Can a base-specifier name a cv-qualified
2834 class type? */
2835 base = TYPE_MAIN_VARIANT (base);
2837 result = build_tree_list (access, base);
2838 if (virtual_p)
2839 TREE_TYPE (result) = integer_type_node;
2842 return result;
2845 /* If FNS is a member function, a set of member functions, or a
2846 template-id referring to one or more member functions, return a
2847 BASELINK for FNS, incorporating the current access context.
2848 Otherwise, return FNS unchanged. */
2850 tree
2851 baselink_for_fns (tree fns)
2853 tree scope;
2854 tree cl;
2856 if (BASELINK_P (fns)
2857 || error_operand_p (fns))
2858 return fns;
2860 scope = ovl_scope (fns);
2861 if (!CLASS_TYPE_P (scope))
2862 return fns;
2864 cl = currently_open_derived_class (scope);
2865 if (!cl)
2866 cl = scope;
2867 cl = TYPE_BINFO (cl);
2868 return build_baselink (cl, cl, fns, /*optype=*/NULL_TREE);
2871 /* Returns true iff DECL is an automatic variable from a function outside
2872 the current one. */
2874 static bool
2875 outer_automatic_var_p (tree decl)
2877 return ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
2878 && DECL_FUNCTION_SCOPE_P (decl)
2879 && !TREE_STATIC (decl)
2880 && DECL_CONTEXT (decl) != current_function_decl);
2883 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2884 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2885 if non-NULL, is the type or namespace used to explicitly qualify
2886 ID_EXPRESSION. DECL is the entity to which that name has been
2887 resolved.
2889 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2890 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2891 be set to true if this expression isn't permitted in a
2892 constant-expression, but it is otherwise not set by this function.
2893 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2894 constant-expression, but a non-constant expression is also
2895 permissible.
2897 DONE is true if this expression is a complete postfix-expression;
2898 it is false if this expression is followed by '->', '[', '(', etc.
2899 ADDRESS_P is true iff this expression is the operand of '&'.
2900 TEMPLATE_P is true iff the qualified-id was of the form
2901 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
2902 appears as a template argument.
2904 If an error occurs, and it is the kind of error that might cause
2905 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2906 is the caller's responsibility to issue the message. *ERROR_MSG
2907 will be a string with static storage duration, so the caller need
2908 not "free" it.
2910 Return an expression for the entity, after issuing appropriate
2911 diagnostics. This function is also responsible for transforming a
2912 reference to a non-static member into a COMPONENT_REF that makes
2913 the use of "this" explicit.
2915 Upon return, *IDK will be filled in appropriately. */
2916 tree
2917 finish_id_expression (tree id_expression,
2918 tree decl,
2919 tree scope,
2920 cp_id_kind *idk,
2921 bool integral_constant_expression_p,
2922 bool allow_non_integral_constant_expression_p,
2923 bool *non_integral_constant_expression_p,
2924 bool template_p,
2925 bool done,
2926 bool address_p,
2927 bool template_arg_p,
2928 const char **error_msg,
2929 location_t location)
2931 decl = strip_using_decl (decl);
2933 /* Initialize the output parameters. */
2934 *idk = CP_ID_KIND_NONE;
2935 *error_msg = NULL;
2937 if (id_expression == error_mark_node)
2938 return error_mark_node;
2939 /* If we have a template-id, then no further lookup is
2940 required. If the template-id was for a template-class, we
2941 will sometimes have a TYPE_DECL at this point. */
2942 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
2943 || TREE_CODE (decl) == TYPE_DECL)
2945 /* Look up the name. */
2946 else
2948 if (decl == error_mark_node)
2950 /* Name lookup failed. */
2951 if (scope
2952 && (!TYPE_P (scope)
2953 || (!dependent_type_p (scope)
2954 && !(TREE_CODE (id_expression) == IDENTIFIER_NODE
2955 && IDENTIFIER_TYPENAME_P (id_expression)
2956 && dependent_type_p (TREE_TYPE (id_expression))))))
2958 /* If the qualifying type is non-dependent (and the name
2959 does not name a conversion operator to a dependent
2960 type), issue an error. */
2961 qualified_name_lookup_error (scope, id_expression, decl, location);
2962 return error_mark_node;
2964 else if (!scope)
2966 /* It may be resolved via Koenig lookup. */
2967 *idk = CP_ID_KIND_UNQUALIFIED;
2968 return id_expression;
2970 else
2971 decl = id_expression;
2973 /* If DECL is a variable that would be out of scope under
2974 ANSI/ISO rules, but in scope in the ARM, name lookup
2975 will succeed. Issue a diagnostic here. */
2976 else
2977 decl = check_for_out_of_scope_variable (decl);
2979 /* Remember that the name was used in the definition of
2980 the current class so that we can check later to see if
2981 the meaning would have been different after the class
2982 was entirely defined. */
2983 if (!scope && decl != error_mark_node
2984 && TREE_CODE (id_expression) == IDENTIFIER_NODE)
2985 maybe_note_name_used_in_class (id_expression, decl);
2987 /* Disallow uses of local variables from containing functions, except
2988 within lambda-expressions. */
2989 if (outer_automatic_var_p (decl)
2990 /* It's not a use (3.2) if we're in an unevaluated context. */
2991 && !cp_unevaluated_operand)
2993 tree context = DECL_CONTEXT (decl);
2994 tree containing_function = current_function_decl;
2995 tree lambda_stack = NULL_TREE;
2996 tree lambda_expr = NULL_TREE;
2997 tree initializer = convert_from_reference (decl);
2999 /* Mark it as used now even if the use is ill-formed. */
3000 mark_used (decl);
3002 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
3003 support for an approach in which a reference to a local
3004 [constant] automatic variable in a nested class or lambda body
3005 would enter the expression as an rvalue, which would reduce
3006 the complexity of the problem"
3008 FIXME update for final resolution of core issue 696. */
3009 if (decl_constant_var_p (decl))
3010 return integral_constant_value (decl);
3012 /* If we are in a lambda function, we can move out until we hit
3013 1. the context,
3014 2. a non-lambda function, or
3015 3. a non-default capturing lambda function. */
3016 while (context != containing_function
3017 && LAMBDA_FUNCTION_P (containing_function))
3019 lambda_expr = CLASSTYPE_LAMBDA_EXPR
3020 (DECL_CONTEXT (containing_function));
3022 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr)
3023 == CPLD_NONE)
3024 break;
3026 lambda_stack = tree_cons (NULL_TREE,
3027 lambda_expr,
3028 lambda_stack);
3030 containing_function
3031 = decl_function_context (containing_function);
3034 if (context == containing_function)
3036 decl = add_default_capture (lambda_stack,
3037 /*id=*/DECL_NAME (decl),
3038 initializer);
3040 else if (lambda_expr)
3042 error ("%qD is not captured", decl);
3043 return error_mark_node;
3045 else
3047 error (TREE_CODE (decl) == VAR_DECL
3048 ? G_("use of local variable with automatic storage from containing function")
3049 : G_("use of parameter from containing function"));
3050 error (" %q+#D declared here", decl);
3051 return error_mark_node;
3055 /* Also disallow uses of function parameters outside the function
3056 body, except inside an unevaluated context (i.e. decltype). */
3057 if (TREE_CODE (decl) == PARM_DECL
3058 && DECL_CONTEXT (decl) == NULL_TREE
3059 && !cp_unevaluated_operand)
3061 error ("use of parameter %qD outside function body", decl);
3062 return error_mark_node;
3066 /* If we didn't find anything, or what we found was a type,
3067 then this wasn't really an id-expression. */
3068 if (TREE_CODE (decl) == TEMPLATE_DECL
3069 && !DECL_FUNCTION_TEMPLATE_P (decl))
3071 *error_msg = "missing template arguments";
3072 return error_mark_node;
3074 else if (TREE_CODE (decl) == TYPE_DECL
3075 || TREE_CODE (decl) == NAMESPACE_DECL)
3077 *error_msg = "expected primary-expression";
3078 return error_mark_node;
3081 /* If the name resolved to a template parameter, there is no
3082 need to look it up again later. */
3083 if ((TREE_CODE (decl) == CONST_DECL && DECL_TEMPLATE_PARM_P (decl))
3084 || TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3086 tree r;
3088 *idk = CP_ID_KIND_NONE;
3089 if (TREE_CODE (decl) == TEMPLATE_PARM_INDEX)
3090 decl = TEMPLATE_PARM_DECL (decl);
3091 r = convert_from_reference (DECL_INITIAL (decl));
3093 if (integral_constant_expression_p
3094 && !dependent_type_p (TREE_TYPE (decl))
3095 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r))))
3097 if (!allow_non_integral_constant_expression_p)
3098 error ("template parameter %qD of type %qT is not allowed in "
3099 "an integral constant expression because it is not of "
3100 "integral or enumeration type", decl, TREE_TYPE (decl));
3101 *non_integral_constant_expression_p = true;
3103 return r;
3105 else
3107 bool dependent_p;
3109 /* If the declaration was explicitly qualified indicate
3110 that. The semantics of `A::f(3)' are different than
3111 `f(3)' if `f' is virtual. */
3112 *idk = (scope
3113 ? CP_ID_KIND_QUALIFIED
3114 : (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3115 ? CP_ID_KIND_TEMPLATE_ID
3116 : CP_ID_KIND_UNQUALIFIED));
3119 /* [temp.dep.expr]
3121 An id-expression is type-dependent if it contains an
3122 identifier that was declared with a dependent type.
3124 The standard is not very specific about an id-expression that
3125 names a set of overloaded functions. What if some of them
3126 have dependent types and some of them do not? Presumably,
3127 such a name should be treated as a dependent name. */
3128 /* Assume the name is not dependent. */
3129 dependent_p = false;
3130 if (!processing_template_decl)
3131 /* No names are dependent outside a template. */
3133 else if (TREE_CODE (decl) == CONST_DECL)
3134 /* We don't want to treat enumerators as dependent. */
3136 /* A template-id where the name of the template was not resolved
3137 is definitely dependent. */
3138 else if (TREE_CODE (decl) == TEMPLATE_ID_EXPR
3139 && (TREE_CODE (TREE_OPERAND (decl, 0))
3140 == IDENTIFIER_NODE))
3141 dependent_p = true;
3142 /* For anything except an overloaded function, just check its
3143 type. */
3144 else if (!is_overloaded_fn (decl))
3145 dependent_p
3146 = dependent_type_p (TREE_TYPE (decl));
3147 /* For a set of overloaded functions, check each of the
3148 functions. */
3149 else
3151 tree fns = decl;
3153 if (BASELINK_P (fns))
3154 fns = BASELINK_FUNCTIONS (fns);
3156 /* For a template-id, check to see if the template
3157 arguments are dependent. */
3158 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
3160 tree args = TREE_OPERAND (fns, 1);
3161 dependent_p = any_dependent_template_arguments_p (args);
3162 /* The functions are those referred to by the
3163 template-id. */
3164 fns = TREE_OPERAND (fns, 0);
3167 /* If there are no dependent template arguments, go through
3168 the overloaded functions. */
3169 while (fns && !dependent_p)
3171 tree fn = OVL_CURRENT (fns);
3173 /* Member functions of dependent classes are
3174 dependent. */
3175 if (TREE_CODE (fn) == FUNCTION_DECL
3176 && type_dependent_expression_p (fn))
3177 dependent_p = true;
3178 else if (TREE_CODE (fn) == TEMPLATE_DECL
3179 && dependent_template_p (fn))
3180 dependent_p = true;
3182 fns = OVL_NEXT (fns);
3186 /* If the name was dependent on a template parameter, we will
3187 resolve the name at instantiation time. */
3188 if (dependent_p)
3190 /* Create a SCOPE_REF for qualified names, if the scope is
3191 dependent. */
3192 if (scope)
3194 if (TYPE_P (scope))
3196 if (address_p && done)
3197 decl = finish_qualified_id_expr (scope, decl,
3198 done, address_p,
3199 template_p,
3200 template_arg_p);
3201 else
3203 tree type = NULL_TREE;
3204 if (DECL_P (decl) && !dependent_scope_p (scope))
3205 type = TREE_TYPE (decl);
3206 decl = build_qualified_name (type,
3207 scope,
3208 id_expression,
3209 template_p);
3212 if (TREE_TYPE (decl))
3213 decl = convert_from_reference (decl);
3214 return decl;
3216 /* A TEMPLATE_ID already contains all the information we
3217 need. */
3218 if (TREE_CODE (id_expression) == TEMPLATE_ID_EXPR)
3219 return id_expression;
3220 *idk = CP_ID_KIND_UNQUALIFIED_DEPENDENT;
3221 /* If we found a variable, then name lookup during the
3222 instantiation will always resolve to the same VAR_DECL
3223 (or an instantiation thereof). */
3224 if (TREE_CODE (decl) == VAR_DECL
3225 || TREE_CODE (decl) == PARM_DECL)
3227 mark_used (decl);
3228 return convert_from_reference (decl);
3230 /* The same is true for FIELD_DECL, but we also need to
3231 make sure that the syntax is correct. */
3232 else if (TREE_CODE (decl) == FIELD_DECL)
3234 /* Since SCOPE is NULL here, this is an unqualified name.
3235 Access checking has been performed during name lookup
3236 already. Turn off checking to avoid duplicate errors. */
3237 push_deferring_access_checks (dk_no_check);
3238 decl = finish_non_static_data_member
3239 (decl, NULL_TREE,
3240 /*qualifying_scope=*/NULL_TREE);
3241 pop_deferring_access_checks ();
3242 return decl;
3244 return id_expression;
3247 if (TREE_CODE (decl) == NAMESPACE_DECL)
3249 error ("use of namespace %qD as expression", decl);
3250 return error_mark_node;
3252 else if (DECL_CLASS_TEMPLATE_P (decl))
3254 error ("use of class template %qT as expression", decl);
3255 return error_mark_node;
3257 else if (TREE_CODE (decl) == TREE_LIST)
3259 /* Ambiguous reference to base members. */
3260 error ("request for member %qD is ambiguous in "
3261 "multiple inheritance lattice", id_expression);
3262 print_candidates (decl);
3263 return error_mark_node;
3266 /* Mark variable-like entities as used. Functions are similarly
3267 marked either below or after overload resolution. */
3268 if ((TREE_CODE (decl) == VAR_DECL
3269 || TREE_CODE (decl) == PARM_DECL
3270 || TREE_CODE (decl) == CONST_DECL
3271 || TREE_CODE (decl) == RESULT_DECL)
3272 && !mark_used (decl))
3273 return error_mark_node;
3275 /* Only certain kinds of names are allowed in constant
3276 expression. Template parameters have already
3277 been handled above. */
3278 if (! error_operand_p (decl)
3279 && integral_constant_expression_p
3280 && ! decl_constant_var_p (decl)
3281 && TREE_CODE (decl) != CONST_DECL
3282 && ! builtin_valid_in_constant_expr_p (decl))
3284 if (!allow_non_integral_constant_expression_p)
3286 error ("%qD cannot appear in a constant-expression", decl);
3287 return error_mark_node;
3289 *non_integral_constant_expression_p = true;
3292 tree wrap;
3293 if (TREE_CODE (decl) == VAR_DECL
3294 && !cp_unevaluated_operand
3295 && DECL_THREAD_LOCAL_P (decl)
3296 && (wrap = get_tls_wrapper_fn (decl)))
3298 /* Replace an evaluated use of the thread_local variable with
3299 a call to its wrapper. */
3300 decl = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
3302 else if (scope)
3304 decl = (adjust_result_of_qualified_name_lookup
3305 (decl, scope, current_nonlambda_class_type()));
3307 if (TREE_CODE (decl) == FUNCTION_DECL)
3308 mark_used (decl);
3310 if (TYPE_P (scope))
3311 decl = finish_qualified_id_expr (scope,
3312 decl,
3313 done,
3314 address_p,
3315 template_p,
3316 template_arg_p);
3317 else
3318 decl = convert_from_reference (decl);
3320 else if (TREE_CODE (decl) == FIELD_DECL)
3322 /* Since SCOPE is NULL here, this is an unqualified name.
3323 Access checking has been performed during name lookup
3324 already. Turn off checking to avoid duplicate errors. */
3325 push_deferring_access_checks (dk_no_check);
3326 decl = finish_non_static_data_member (decl, NULL_TREE,
3327 /*qualifying_scope=*/NULL_TREE);
3328 pop_deferring_access_checks ();
3330 else if (is_overloaded_fn (decl))
3332 tree first_fn;
3334 first_fn = get_first_fn (decl);
3335 if (TREE_CODE (first_fn) == TEMPLATE_DECL)
3336 first_fn = DECL_TEMPLATE_RESULT (first_fn);
3338 if (!really_overloaded_fn (decl)
3339 && !mark_used (first_fn))
3340 return error_mark_node;
3342 if (!template_arg_p
3343 && TREE_CODE (first_fn) == FUNCTION_DECL
3344 && DECL_FUNCTION_MEMBER_P (first_fn)
3345 && !shared_member_p (decl))
3347 /* A set of member functions. */
3348 decl = maybe_dummy_object (DECL_CONTEXT (first_fn), 0);
3349 return finish_class_member_access_expr (decl, id_expression,
3350 /*template_p=*/false,
3351 tf_warning_or_error);
3354 decl = baselink_for_fns (decl);
3356 else
3358 if (DECL_P (decl) && DECL_NONLOCAL (decl)
3359 && DECL_CLASS_SCOPE_P (decl))
3361 tree context = context_for_name_lookup (decl);
3362 if (context != current_class_type)
3364 tree path = currently_open_derived_class (context);
3365 perform_or_defer_access_check (TYPE_BINFO (path),
3366 decl, decl,
3367 tf_warning_or_error);
3371 decl = convert_from_reference (decl);
3375 if (TREE_DEPRECATED (decl))
3376 warn_deprecated_use (decl, NULL_TREE);
3378 return decl;
3381 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3382 use as a type-specifier. */
3384 tree
3385 finish_typeof (tree expr)
3387 tree type;
3389 if (type_dependent_expression_p (expr))
3391 type = cxx_make_type (TYPEOF_TYPE);
3392 TYPEOF_TYPE_EXPR (type) = expr;
3393 SET_TYPE_STRUCTURAL_EQUALITY (type);
3395 return type;
3398 expr = mark_type_use (expr);
3400 type = unlowered_expr_type (expr);
3402 if (!type || type == unknown_type_node)
3404 error ("type of %qE is unknown", expr);
3405 return error_mark_node;
3408 return type;
3411 /* Implement the __underlying_type keyword: Return the underlying
3412 type of TYPE, suitable for use as a type-specifier. */
3414 tree
3415 finish_underlying_type (tree type)
3417 tree underlying_type;
3419 if (processing_template_decl)
3421 underlying_type = cxx_make_type (UNDERLYING_TYPE);
3422 UNDERLYING_TYPE_TYPE (underlying_type) = type;
3423 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type);
3425 return underlying_type;
3428 complete_type (type);
3430 if (TREE_CODE (type) != ENUMERAL_TYPE)
3432 error ("%qT is not an enumeration type", type);
3433 return error_mark_node;
3436 underlying_type = ENUM_UNDERLYING_TYPE (type);
3438 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3439 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3440 See finish_enum_value_list for details. */
3441 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type))
3442 underlying_type
3443 = c_common_type_for_mode (TYPE_MODE (underlying_type),
3444 TYPE_UNSIGNED (underlying_type));
3446 return underlying_type;
3449 /* Implement the __direct_bases keyword: Return the direct base classes
3450 of type */
3452 tree
3453 calculate_direct_bases (tree type)
3455 vec<tree, va_gc> *vector = make_tree_vector();
3456 tree bases_vec = NULL_TREE;
3457 vec<tree, va_gc> *base_binfos;
3458 tree binfo;
3459 unsigned i;
3461 complete_type (type);
3463 if (!NON_UNION_CLASS_TYPE_P (type))
3464 return make_tree_vec (0);
3466 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type));
3468 /* Virtual bases are initialized first */
3469 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3471 if (BINFO_VIRTUAL_P (binfo))
3473 vec_safe_push (vector, binfo);
3477 /* Now non-virtuals */
3478 for (i = 0; base_binfos->iterate (i, &binfo); i++)
3480 if (!BINFO_VIRTUAL_P (binfo))
3482 vec_safe_push (vector, binfo);
3487 bases_vec = make_tree_vec (vector->length ());
3489 for (i = 0; i < vector->length (); ++i)
3491 TREE_VEC_ELT (bases_vec, i) = BINFO_TYPE ((*vector)[i]);
3493 return bases_vec;
3496 /* Implement the __bases keyword: Return the base classes
3497 of type */
3499 /* Find morally non-virtual base classes by walking binfo hierarchy */
3500 /* Virtual base classes are handled separately in finish_bases */
3502 static tree
3503 dfs_calculate_bases_pre (tree binfo, void * /*data_*/)
3505 /* Don't walk bases of virtual bases */
3506 return BINFO_VIRTUAL_P (binfo) ? dfs_skip_bases : NULL_TREE;
3509 static tree
3510 dfs_calculate_bases_post (tree binfo, void *data_)
3512 vec<tree, va_gc> **data = ((vec<tree, va_gc> **) data_);
3513 if (!BINFO_VIRTUAL_P (binfo))
3515 vec_safe_push (*data, BINFO_TYPE (binfo));
3517 return NULL_TREE;
3520 /* Calculates the morally non-virtual base classes of a class */
3521 static vec<tree, va_gc> *
3522 calculate_bases_helper (tree type)
3524 vec<tree, va_gc> *vector = make_tree_vector();
3526 /* Now add non-virtual base classes in order of construction */
3527 dfs_walk_all (TYPE_BINFO (type),
3528 dfs_calculate_bases_pre, dfs_calculate_bases_post, &vector);
3529 return vector;
3532 tree
3533 calculate_bases (tree type)
3535 vec<tree, va_gc> *vector = make_tree_vector();
3536 tree bases_vec = NULL_TREE;
3537 unsigned i;
3538 vec<tree, va_gc> *vbases;
3539 vec<tree, va_gc> *nonvbases;
3540 tree binfo;
3542 complete_type (type);
3544 if (!NON_UNION_CLASS_TYPE_P (type))
3545 return make_tree_vec (0);
3547 /* First go through virtual base classes */
3548 for (vbases = CLASSTYPE_VBASECLASSES (type), i = 0;
3549 vec_safe_iterate (vbases, i, &binfo); i++)
3551 vec<tree, va_gc> *vbase_bases;
3552 vbase_bases = calculate_bases_helper (BINFO_TYPE (binfo));
3553 vec_safe_splice (vector, vbase_bases);
3554 release_tree_vector (vbase_bases);
3557 /* Now for the non-virtual bases */
3558 nonvbases = calculate_bases_helper (type);
3559 vec_safe_splice (vector, nonvbases);
3560 release_tree_vector (nonvbases);
3562 /* Last element is entire class, so don't copy */
3563 bases_vec = make_tree_vec (vector->length () - 1);
3565 for (i = 0; i < vector->length () - 1; ++i)
3567 TREE_VEC_ELT (bases_vec, i) = (*vector)[i];
3569 release_tree_vector (vector);
3570 return bases_vec;
3573 tree
3574 finish_bases (tree type, bool direct)
3576 tree bases = NULL_TREE;
3578 if (!processing_template_decl)
3580 /* Parameter packs can only be used in templates */
3581 error ("Parameter pack __bases only valid in template declaration");
3582 return error_mark_node;
3585 bases = cxx_make_type (BASES);
3586 BASES_TYPE (bases) = type;
3587 BASES_DIRECT (bases) = direct;
3588 SET_TYPE_STRUCTURAL_EQUALITY (bases);
3590 return bases;
3593 /* Perform C++-specific checks for __builtin_offsetof before calling
3594 fold_offsetof. */
3596 tree
3597 finish_offsetof (tree expr)
3599 if (TREE_CODE (expr) == PSEUDO_DTOR_EXPR)
3601 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3602 TREE_OPERAND (expr, 2));
3603 return error_mark_node;
3605 if (TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
3606 || TREE_CODE (TREE_TYPE (expr)) == METHOD_TYPE
3607 || TREE_TYPE (expr) == unknown_type_node)
3609 if (TREE_CODE (expr) == COMPONENT_REF
3610 || TREE_CODE (expr) == COMPOUND_EXPR)
3611 expr = TREE_OPERAND (expr, 1);
3612 error ("cannot apply %<offsetof%> to member function %qD", expr);
3613 return error_mark_node;
3615 if (REFERENCE_REF_P (expr))
3616 expr = TREE_OPERAND (expr, 0);
3617 if (TREE_CODE (expr) == COMPONENT_REF)
3619 tree object = TREE_OPERAND (expr, 0);
3620 if (!complete_type_or_else (TREE_TYPE (object), object))
3621 return error_mark_node;
3623 return fold_offsetof (expr);
3626 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3627 function is broken out from the above for the benefit of the tree-ssa
3628 project. */
3630 void
3631 simplify_aggr_init_expr (tree *tp)
3633 tree aggr_init_expr = *tp;
3635 /* Form an appropriate CALL_EXPR. */
3636 tree fn = AGGR_INIT_EXPR_FN (aggr_init_expr);
3637 tree slot = AGGR_INIT_EXPR_SLOT (aggr_init_expr);
3638 tree type = TREE_TYPE (slot);
3640 tree call_expr;
3641 enum style_t { ctor, arg, pcc } style;
3643 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr))
3644 style = ctor;
3645 #ifdef PCC_STATIC_STRUCT_RETURN
3646 else if (1)
3647 style = pcc;
3648 #endif
3649 else
3651 gcc_assert (TREE_ADDRESSABLE (type));
3652 style = arg;
3655 call_expr = build_call_array_loc (input_location,
3656 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))),
3658 aggr_init_expr_nargs (aggr_init_expr),
3659 AGGR_INIT_EXPR_ARGP (aggr_init_expr));
3660 TREE_NOTHROW (call_expr) = TREE_NOTHROW (aggr_init_expr);
3662 if (style == ctor)
3664 /* Replace the first argument to the ctor with the address of the
3665 slot. */
3666 cxx_mark_addressable (slot);
3667 CALL_EXPR_ARG (call_expr, 0) =
3668 build1 (ADDR_EXPR, build_pointer_type (type), slot);
3670 else if (style == arg)
3672 /* Just mark it addressable here, and leave the rest to
3673 expand_call{,_inline}. */
3674 cxx_mark_addressable (slot);
3675 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true;
3676 call_expr = build2 (INIT_EXPR, TREE_TYPE (call_expr), slot, call_expr);
3678 else if (style == pcc)
3680 /* If we're using the non-reentrant PCC calling convention, then we
3681 need to copy the returned value out of the static buffer into the
3682 SLOT. */
3683 push_deferring_access_checks (dk_no_check);
3684 call_expr = build_aggr_init (slot, call_expr,
3685 DIRECT_BIND | LOOKUP_ONLYCONVERTING,
3686 tf_warning_or_error);
3687 pop_deferring_access_checks ();
3688 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot);
3691 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr))
3693 tree init = build_zero_init (type, NULL_TREE,
3694 /*static_storage_p=*/false);
3695 init = build2 (INIT_EXPR, void_type_node, slot, init);
3696 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (call_expr),
3697 init, call_expr);
3700 *tp = call_expr;
3703 /* Emit all thunks to FN that should be emitted when FN is emitted. */
3705 void
3706 emit_associated_thunks (tree fn)
3708 /* When we use vcall offsets, we emit thunks with the virtual
3709 functions to which they thunk. The whole point of vcall offsets
3710 is so that you can know statically the entire set of thunks that
3711 will ever be needed for a given virtual function, thereby
3712 enabling you to output all the thunks with the function itself. */
3713 if (DECL_VIRTUAL_P (fn)
3714 /* Do not emit thunks for extern template instantiations. */
3715 && ! DECL_REALLY_EXTERN (fn))
3717 tree thunk;
3719 for (thunk = DECL_THUNKS (fn); thunk; thunk = DECL_CHAIN (thunk))
3721 if (!THUNK_ALIAS (thunk))
3723 use_thunk (thunk, /*emit_p=*/1);
3724 if (DECL_RESULT_THUNK_P (thunk))
3726 tree probe;
3728 for (probe = DECL_THUNKS (thunk);
3729 probe; probe = DECL_CHAIN (probe))
3730 use_thunk (probe, /*emit_p=*/1);
3733 else
3734 gcc_assert (!DECL_THUNKS (thunk));
3739 /* Returns true iff FUN is an instantiation of a constexpr function
3740 template. */
3742 static inline bool
3743 is_instantiation_of_constexpr (tree fun)
3745 return (DECL_TEMPLOID_INSTANTIATION (fun)
3746 && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
3747 (DECL_TI_TEMPLATE (fun))));
3750 /* Generate RTL for FN. */
3752 bool
3753 expand_or_defer_fn_1 (tree fn)
3755 /* When the parser calls us after finishing the body of a template
3756 function, we don't really want to expand the body. */
3757 if (processing_template_decl)
3759 /* Normally, collection only occurs in rest_of_compilation. So,
3760 if we don't collect here, we never collect junk generated
3761 during the processing of templates until we hit a
3762 non-template function. It's not safe to do this inside a
3763 nested class, though, as the parser may have local state that
3764 is not a GC root. */
3765 if (!function_depth)
3766 ggc_collect ();
3767 return false;
3770 gcc_assert (DECL_SAVED_TREE (fn));
3772 /* If this is a constructor or destructor body, we have to clone
3773 it. */
3774 if (maybe_clone_body (fn))
3776 /* We don't want to process FN again, so pretend we've written
3777 it out, even though we haven't. */
3778 TREE_ASM_WRITTEN (fn) = 1;
3779 /* If this is an instantiation of a constexpr function, keep
3780 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
3781 if (!is_instantiation_of_constexpr (fn))
3782 DECL_SAVED_TREE (fn) = NULL_TREE;
3783 return false;
3786 /* We make a decision about linkage for these functions at the end
3787 of the compilation. Until that point, we do not want the back
3788 end to output them -- but we do want it to see the bodies of
3789 these functions so that it can inline them as appropriate. */
3790 if (DECL_DECLARED_INLINE_P (fn) || DECL_IMPLICIT_INSTANTIATION (fn))
3792 if (DECL_INTERFACE_KNOWN (fn))
3793 /* We've already made a decision as to how this function will
3794 be handled. */;
3795 else if (!at_eof)
3797 DECL_EXTERNAL (fn) = 1;
3798 DECL_NOT_REALLY_EXTERN (fn) = 1;
3799 note_vague_linkage_fn (fn);
3800 /* A non-template inline function with external linkage will
3801 always be COMDAT. As we must eventually determine the
3802 linkage of all functions, and as that causes writes to
3803 the data mapped in from the PCH file, it's advantageous
3804 to mark the functions at this point. */
3805 if (!DECL_IMPLICIT_INSTANTIATION (fn))
3807 /* This function must have external linkage, as
3808 otherwise DECL_INTERFACE_KNOWN would have been
3809 set. */
3810 gcc_assert (TREE_PUBLIC (fn));
3811 comdat_linkage (fn);
3812 DECL_INTERFACE_KNOWN (fn) = 1;
3815 else
3816 import_export_decl (fn);
3818 /* If the user wants us to keep all inline functions, then mark
3819 this function as needed so that finish_file will make sure to
3820 output it later. Similarly, all dllexport'd functions must
3821 be emitted; there may be callers in other DLLs. */
3822 if ((flag_keep_inline_functions
3823 && DECL_DECLARED_INLINE_P (fn)
3824 && !DECL_REALLY_EXTERN (fn))
3825 || (flag_keep_inline_dllexport
3826 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn))))
3828 mark_needed (fn);
3829 DECL_EXTERNAL (fn) = 0;
3833 /* There's no reason to do any of the work here if we're only doing
3834 semantic analysis; this code just generates RTL. */
3835 if (flag_syntax_only)
3836 return false;
3838 return true;
3841 void
3842 expand_or_defer_fn (tree fn)
3844 if (expand_or_defer_fn_1 (fn))
3846 function_depth++;
3848 /* Expand or defer, at the whim of the compilation unit manager. */
3849 cgraph_finalize_function (fn, function_depth > 1);
3850 emit_associated_thunks (fn);
3852 function_depth--;
3856 struct nrv_data
3858 tree var;
3859 tree result;
3860 hash_table <pointer_hash <tree_node> > visited;
3863 /* Helper function for walk_tree, used by finalize_nrv below. */
3865 static tree
3866 finalize_nrv_r (tree* tp, int* walk_subtrees, void* data)
3868 struct nrv_data *dp = (struct nrv_data *)data;
3869 tree_node **slot;
3871 /* No need to walk into types. There wouldn't be any need to walk into
3872 non-statements, except that we have to consider STMT_EXPRs. */
3873 if (TYPE_P (*tp))
3874 *walk_subtrees = 0;
3875 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3876 but differs from using NULL_TREE in that it indicates that we care
3877 about the value of the RESULT_DECL. */
3878 else if (TREE_CODE (*tp) == RETURN_EXPR)
3879 TREE_OPERAND (*tp, 0) = dp->result;
3880 /* Change all cleanups for the NRV to only run when an exception is
3881 thrown. */
3882 else if (TREE_CODE (*tp) == CLEANUP_STMT
3883 && CLEANUP_DECL (*tp) == dp->var)
3884 CLEANUP_EH_ONLY (*tp) = 1;
3885 /* Replace the DECL_EXPR for the NRV with an initialization of the
3886 RESULT_DECL, if needed. */
3887 else if (TREE_CODE (*tp) == DECL_EXPR
3888 && DECL_EXPR_DECL (*tp) == dp->var)
3890 tree init;
3891 if (DECL_INITIAL (dp->var)
3892 && DECL_INITIAL (dp->var) != error_mark_node)
3893 init = build2 (INIT_EXPR, void_type_node, dp->result,
3894 DECL_INITIAL (dp->var));
3895 else
3896 init = build_empty_stmt (EXPR_LOCATION (*tp));
3897 DECL_INITIAL (dp->var) = NULL_TREE;
3898 SET_EXPR_LOCATION (init, EXPR_LOCATION (*tp));
3899 *tp = init;
3901 /* And replace all uses of the NRV with the RESULT_DECL. */
3902 else if (*tp == dp->var)
3903 *tp = dp->result;
3905 /* Avoid walking into the same tree more than once. Unfortunately, we
3906 can't just use walk_tree_without duplicates because it would only call
3907 us for the first occurrence of dp->var in the function body. */
3908 slot = dp->visited.find_slot (*tp, INSERT);
3909 if (*slot)
3910 *walk_subtrees = 0;
3911 else
3912 *slot = *tp;
3914 /* Keep iterating. */
3915 return NULL_TREE;
3918 /* Called from finish_function to implement the named return value
3919 optimization by overriding all the RETURN_EXPRs and pertinent
3920 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3921 RESULT_DECL for the function. */
3923 void
3924 finalize_nrv (tree *tp, tree var, tree result)
3926 struct nrv_data data;
3928 /* Copy name from VAR to RESULT. */
3929 DECL_NAME (result) = DECL_NAME (var);
3930 /* Don't forget that we take its address. */
3931 TREE_ADDRESSABLE (result) = TREE_ADDRESSABLE (var);
3932 /* Finally set DECL_VALUE_EXPR to avoid assigning
3933 a stack slot at -O0 for the original var and debug info
3934 uses RESULT location for VAR. */
3935 SET_DECL_VALUE_EXPR (var, result);
3936 DECL_HAS_VALUE_EXPR_P (var) = 1;
3938 data.var = var;
3939 data.result = result;
3940 data.visited.create (37);
3941 cp_walk_tree (tp, finalize_nrv_r, &data, 0);
3942 data.visited.dispose ();
3945 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
3947 bool
3948 cxx_omp_create_clause_info (tree c, tree type, bool need_default_ctor,
3949 bool need_copy_ctor, bool need_copy_assignment)
3951 int save_errorcount = errorcount;
3952 tree info, t;
3954 /* Always allocate 3 elements for simplicity. These are the
3955 function decls for the ctor, dtor, and assignment op.
3956 This layout is known to the three lang hooks,
3957 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3958 and cxx_omp_clause_assign_op. */
3959 info = make_tree_vec (3);
3960 CP_OMP_CLAUSE_INFO (c) = info;
3962 if (need_default_ctor || need_copy_ctor)
3964 if (need_default_ctor)
3965 t = get_default_ctor (type);
3966 else
3967 t = get_copy_ctor (type, tf_warning_or_error);
3969 if (t && !trivial_fn_p (t))
3970 TREE_VEC_ELT (info, 0) = t;
3973 if ((need_default_ctor || need_copy_ctor)
3974 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type))
3975 TREE_VEC_ELT (info, 1) = get_dtor (type, tf_warning_or_error);
3977 if (need_copy_assignment)
3979 t = get_copy_assign (type);
3981 if (t && !trivial_fn_p (t))
3982 TREE_VEC_ELT (info, 2) = t;
3985 return errorcount != save_errorcount;
3988 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
3989 Remove any elements from the list that are invalid. */
3991 tree
3992 finish_omp_clauses (tree clauses)
3994 bitmap_head generic_head, firstprivate_head, lastprivate_head;
3995 tree c, t, *pc = &clauses;
3996 const char *name;
3998 bitmap_obstack_initialize (NULL);
3999 bitmap_initialize (&generic_head, &bitmap_default_obstack);
4000 bitmap_initialize (&firstprivate_head, &bitmap_default_obstack);
4001 bitmap_initialize (&lastprivate_head, &bitmap_default_obstack);
4003 for (pc = &clauses, c = clauses; c ; c = *pc)
4005 bool remove = false;
4007 switch (OMP_CLAUSE_CODE (c))
4009 case OMP_CLAUSE_SHARED:
4010 name = "shared";
4011 goto check_dup_generic;
4012 case OMP_CLAUSE_PRIVATE:
4013 name = "private";
4014 goto check_dup_generic;
4015 case OMP_CLAUSE_REDUCTION:
4016 name = "reduction";
4017 goto check_dup_generic;
4018 case OMP_CLAUSE_COPYPRIVATE:
4019 name = "copyprivate";
4020 goto check_dup_generic;
4021 case OMP_CLAUSE_COPYIN:
4022 name = "copyin";
4023 goto check_dup_generic;
4024 check_dup_generic:
4025 t = OMP_CLAUSE_DECL (c);
4026 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4028 if (processing_template_decl)
4029 break;
4030 if (DECL_P (t))
4031 error ("%qD is not a variable in clause %qs", t, name);
4032 else
4033 error ("%qE is not a variable in clause %qs", t, name);
4034 remove = true;
4036 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4037 || bitmap_bit_p (&firstprivate_head, DECL_UID (t))
4038 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
4040 error ("%qD appears more than once in data clauses", t);
4041 remove = true;
4043 else
4044 bitmap_set_bit (&generic_head, DECL_UID (t));
4045 break;
4047 case OMP_CLAUSE_FIRSTPRIVATE:
4048 t = OMP_CLAUSE_DECL (c);
4049 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4051 if (processing_template_decl)
4052 break;
4053 if (DECL_P (t))
4054 error ("%qD is not a variable in clause %<firstprivate%>", t);
4055 else
4056 error ("%qE is not a variable in clause %<firstprivate%>", t);
4057 remove = true;
4059 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4060 || bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4062 error ("%qD appears more than once in data clauses", t);
4063 remove = true;
4065 else
4066 bitmap_set_bit (&firstprivate_head, DECL_UID (t));
4067 break;
4069 case OMP_CLAUSE_LASTPRIVATE:
4070 t = OMP_CLAUSE_DECL (c);
4071 if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4073 if (processing_template_decl)
4074 break;
4075 if (DECL_P (t))
4076 error ("%qD is not a variable in clause %<lastprivate%>", t);
4077 else
4078 error ("%qE is not a variable in clause %<lastprivate%>", t);
4079 remove = true;
4081 else if (bitmap_bit_p (&generic_head, DECL_UID (t))
4082 || bitmap_bit_p (&lastprivate_head, DECL_UID (t)))
4084 error ("%qD appears more than once in data clauses", t);
4085 remove = true;
4087 else
4088 bitmap_set_bit (&lastprivate_head, DECL_UID (t));
4089 break;
4091 case OMP_CLAUSE_IF:
4092 t = OMP_CLAUSE_IF_EXPR (c);
4093 t = maybe_convert_cond (t);
4094 if (t == error_mark_node)
4095 remove = true;
4096 else if (!processing_template_decl)
4097 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4098 OMP_CLAUSE_IF_EXPR (c) = t;
4099 break;
4101 case OMP_CLAUSE_FINAL:
4102 t = OMP_CLAUSE_FINAL_EXPR (c);
4103 t = maybe_convert_cond (t);
4104 if (t == error_mark_node)
4105 remove = true;
4106 else if (!processing_template_decl)
4107 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4108 OMP_CLAUSE_FINAL_EXPR (c) = t;
4109 break;
4111 case OMP_CLAUSE_NUM_THREADS:
4112 t = OMP_CLAUSE_NUM_THREADS_EXPR (c);
4113 if (t == error_mark_node)
4114 remove = true;
4115 else if (!type_dependent_expression_p (t)
4116 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4118 error ("num_threads expression must be integral");
4119 remove = true;
4121 else
4123 t = mark_rvalue_use (t);
4124 if (!processing_template_decl)
4125 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4126 OMP_CLAUSE_NUM_THREADS_EXPR (c) = t;
4128 break;
4130 case OMP_CLAUSE_SCHEDULE:
4131 t = OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c);
4132 if (t == NULL)
4134 else if (t == error_mark_node)
4135 remove = true;
4136 else if (!type_dependent_expression_p (t)
4137 && !INTEGRAL_TYPE_P (TREE_TYPE (t)))
4139 error ("schedule chunk size expression must be integral");
4140 remove = true;
4142 else
4144 t = mark_rvalue_use (t);
4145 if (!processing_template_decl)
4146 t = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4147 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c) = t;
4149 break;
4151 case OMP_CLAUSE_NOWAIT:
4152 case OMP_CLAUSE_ORDERED:
4153 case OMP_CLAUSE_DEFAULT:
4154 case OMP_CLAUSE_UNTIED:
4155 case OMP_CLAUSE_COLLAPSE:
4156 case OMP_CLAUSE_MERGEABLE:
4157 break;
4159 default:
4160 gcc_unreachable ();
4163 if (remove)
4164 *pc = OMP_CLAUSE_CHAIN (c);
4165 else
4166 pc = &OMP_CLAUSE_CHAIN (c);
4169 for (pc = &clauses, c = clauses; c ; c = *pc)
4171 enum omp_clause_code c_kind = OMP_CLAUSE_CODE (c);
4172 bool remove = false;
4173 bool need_complete_non_reference = false;
4174 bool need_default_ctor = false;
4175 bool need_copy_ctor = false;
4176 bool need_copy_assignment = false;
4177 bool need_implicitly_determined = false;
4178 tree type, inner_type;
4180 switch (c_kind)
4182 case OMP_CLAUSE_SHARED:
4183 name = "shared";
4184 need_implicitly_determined = true;
4185 break;
4186 case OMP_CLAUSE_PRIVATE:
4187 name = "private";
4188 need_complete_non_reference = true;
4189 need_default_ctor = true;
4190 need_implicitly_determined = true;
4191 break;
4192 case OMP_CLAUSE_FIRSTPRIVATE:
4193 name = "firstprivate";
4194 need_complete_non_reference = true;
4195 need_copy_ctor = true;
4196 need_implicitly_determined = true;
4197 break;
4198 case OMP_CLAUSE_LASTPRIVATE:
4199 name = "lastprivate";
4200 need_complete_non_reference = true;
4201 need_copy_assignment = true;
4202 need_implicitly_determined = true;
4203 break;
4204 case OMP_CLAUSE_REDUCTION:
4205 name = "reduction";
4206 need_implicitly_determined = true;
4207 break;
4208 case OMP_CLAUSE_COPYPRIVATE:
4209 name = "copyprivate";
4210 need_copy_assignment = true;
4211 break;
4212 case OMP_CLAUSE_COPYIN:
4213 name = "copyin";
4214 need_copy_assignment = true;
4215 break;
4216 default:
4217 pc = &OMP_CLAUSE_CHAIN (c);
4218 continue;
4221 t = OMP_CLAUSE_DECL (c);
4222 if (processing_template_decl
4223 && TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != PARM_DECL)
4225 pc = &OMP_CLAUSE_CHAIN (c);
4226 continue;
4229 switch (c_kind)
4231 case OMP_CLAUSE_LASTPRIVATE:
4232 if (!bitmap_bit_p (&firstprivate_head, DECL_UID (t)))
4233 need_default_ctor = true;
4234 break;
4236 case OMP_CLAUSE_REDUCTION:
4237 if (AGGREGATE_TYPE_P (TREE_TYPE (t))
4238 || POINTER_TYPE_P (TREE_TYPE (t)))
4240 error ("%qE has invalid type for %<reduction%>", t);
4241 remove = true;
4243 else if (FLOAT_TYPE_P (TREE_TYPE (t)))
4245 enum tree_code r_code = OMP_CLAUSE_REDUCTION_CODE (c);
4246 switch (r_code)
4248 case PLUS_EXPR:
4249 case MULT_EXPR:
4250 case MINUS_EXPR:
4251 case MIN_EXPR:
4252 case MAX_EXPR:
4253 break;
4254 default:
4255 error ("%qE has invalid type for %<reduction(%s)%>",
4256 t, operator_name_info[r_code].name);
4257 remove = true;
4260 break;
4262 case OMP_CLAUSE_COPYIN:
4263 if (TREE_CODE (t) != VAR_DECL || !DECL_THREAD_LOCAL_P (t))
4265 error ("%qE must be %<threadprivate%> for %<copyin%>", t);
4266 remove = true;
4268 break;
4270 default:
4271 break;
4274 if (need_complete_non_reference || need_copy_assignment)
4276 t = require_complete_type (t);
4277 if (t == error_mark_node)
4278 remove = true;
4279 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
4280 && need_complete_non_reference)
4282 error ("%qE has reference type for %qs", t, name);
4283 remove = true;
4286 if (need_implicitly_determined)
4288 const char *share_name = NULL;
4290 if (TREE_CODE (t) == VAR_DECL && DECL_THREAD_LOCAL_P (t))
4291 share_name = "threadprivate";
4292 else switch (cxx_omp_predetermined_sharing (t))
4294 case OMP_CLAUSE_DEFAULT_UNSPECIFIED:
4295 break;
4296 case OMP_CLAUSE_DEFAULT_SHARED:
4297 /* const vars may be specified in firstprivate clause. */
4298 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
4299 && cxx_omp_const_qual_no_mutable (t))
4300 break;
4301 share_name = "shared";
4302 break;
4303 case OMP_CLAUSE_DEFAULT_PRIVATE:
4304 share_name = "private";
4305 break;
4306 default:
4307 gcc_unreachable ();
4309 if (share_name)
4311 error ("%qE is predetermined %qs for %qs",
4312 t, share_name, name);
4313 remove = true;
4317 /* We're interested in the base element, not arrays. */
4318 inner_type = type = TREE_TYPE (t);
4319 while (TREE_CODE (inner_type) == ARRAY_TYPE)
4320 inner_type = TREE_TYPE (inner_type);
4322 /* Check for special function availability by building a call to one.
4323 Save the results, because later we won't be in the right context
4324 for making these queries. */
4325 if (CLASS_TYPE_P (inner_type)
4326 && COMPLETE_TYPE_P (inner_type)
4327 && (need_default_ctor || need_copy_ctor || need_copy_assignment)
4328 && !type_dependent_expression_p (t)
4329 && cxx_omp_create_clause_info (c, inner_type, need_default_ctor,
4330 need_copy_ctor, need_copy_assignment))
4331 remove = true;
4333 if (remove)
4334 *pc = OMP_CLAUSE_CHAIN (c);
4335 else
4336 pc = &OMP_CLAUSE_CHAIN (c);
4339 bitmap_obstack_release (NULL);
4340 return clauses;
4343 /* For all variables in the tree_list VARS, mark them as thread local. */
4345 void
4346 finish_omp_threadprivate (tree vars)
4348 tree t;
4350 /* Mark every variable in VARS to be assigned thread local storage. */
4351 for (t = vars; t; t = TREE_CHAIN (t))
4353 tree v = TREE_PURPOSE (t);
4355 if (error_operand_p (v))
4357 else if (TREE_CODE (v) != VAR_DECL)
4358 error ("%<threadprivate%> %qD is not file, namespace "
4359 "or block scope variable", v);
4360 /* If V had already been marked threadprivate, it doesn't matter
4361 whether it had been used prior to this point. */
4362 else if (TREE_USED (v)
4363 && (DECL_LANG_SPECIFIC (v) == NULL
4364 || !CP_DECL_THREADPRIVATE_P (v)))
4365 error ("%qE declared %<threadprivate%> after first use", v);
4366 else if (! TREE_STATIC (v) && ! DECL_EXTERNAL (v))
4367 error ("automatic variable %qE cannot be %<threadprivate%>", v);
4368 else if (! COMPLETE_TYPE_P (complete_type (TREE_TYPE (v))))
4369 error ("%<threadprivate%> %qE has incomplete type", v);
4370 else if (TREE_STATIC (v) && TYPE_P (CP_DECL_CONTEXT (v))
4371 && CP_DECL_CONTEXT (v) != current_class_type)
4372 error ("%<threadprivate%> %qE directive not "
4373 "in %qT definition", v, CP_DECL_CONTEXT (v));
4374 else
4376 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
4377 if (DECL_LANG_SPECIFIC (v) == NULL)
4379 retrofit_lang_decl (v);
4381 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4382 after the allocation of the lang_decl structure. */
4383 if (DECL_DISCRIMINATOR_P (v))
4384 DECL_LANG_SPECIFIC (v)->u.base.u2sel = 1;
4387 if (! DECL_THREAD_LOCAL_P (v))
4389 DECL_TLS_MODEL (v) = decl_default_tls_model (v);
4390 /* If rtl has been already set for this var, call
4391 make_decl_rtl once again, so that encode_section_info
4392 has a chance to look at the new decl flags. */
4393 if (DECL_RTL_SET_P (v))
4394 make_decl_rtl (v);
4396 CP_DECL_THREADPRIVATE_P (v) = 1;
4401 /* Build an OpenMP structured block. */
4403 tree
4404 begin_omp_structured_block (void)
4406 return do_pushlevel (sk_omp);
4409 tree
4410 finish_omp_structured_block (tree block)
4412 return do_poplevel (block);
4415 /* Similarly, except force the retention of the BLOCK. */
4417 tree
4418 begin_omp_parallel (void)
4420 keep_next_level (true);
4421 return begin_omp_structured_block ();
4424 tree
4425 finish_omp_parallel (tree clauses, tree body)
4427 tree stmt;
4429 body = finish_omp_structured_block (body);
4431 stmt = make_node (OMP_PARALLEL);
4432 TREE_TYPE (stmt) = void_type_node;
4433 OMP_PARALLEL_CLAUSES (stmt) = clauses;
4434 OMP_PARALLEL_BODY (stmt) = body;
4436 return add_stmt (stmt);
4439 tree
4440 begin_omp_task (void)
4442 keep_next_level (true);
4443 return begin_omp_structured_block ();
4446 tree
4447 finish_omp_task (tree clauses, tree body)
4449 tree stmt;
4451 body = finish_omp_structured_block (body);
4453 stmt = make_node (OMP_TASK);
4454 TREE_TYPE (stmt) = void_type_node;
4455 OMP_TASK_CLAUSES (stmt) = clauses;
4456 OMP_TASK_BODY (stmt) = body;
4458 return add_stmt (stmt);
4461 /* Helper function for finish_omp_for. Convert Ith random access iterator
4462 into integral iterator. Return FALSE if successful. */
4464 static bool
4465 handle_omp_for_class_iterator (int i, location_t locus, tree declv, tree initv,
4466 tree condv, tree incrv, tree *body,
4467 tree *pre_body, tree clauses)
4469 tree diff, iter_init, iter_incr = NULL, last;
4470 tree incr_var = NULL, orig_pre_body, orig_body, c;
4471 tree decl = TREE_VEC_ELT (declv, i);
4472 tree init = TREE_VEC_ELT (initv, i);
4473 tree cond = TREE_VEC_ELT (condv, i);
4474 tree incr = TREE_VEC_ELT (incrv, i);
4475 tree iter = decl;
4476 location_t elocus = locus;
4478 if (init && EXPR_HAS_LOCATION (init))
4479 elocus = EXPR_LOCATION (init);
4481 switch (TREE_CODE (cond))
4483 case GT_EXPR:
4484 case GE_EXPR:
4485 case LT_EXPR:
4486 case LE_EXPR:
4487 if (TREE_OPERAND (cond, 1) == iter)
4488 cond = build2 (swap_tree_comparison (TREE_CODE (cond)),
4489 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0));
4490 if (TREE_OPERAND (cond, 0) != iter)
4491 cond = error_mark_node;
4492 else
4494 tree tem = build_x_binary_op (EXPR_LOCATION (cond),
4495 TREE_CODE (cond),
4496 iter, ERROR_MARK,
4497 TREE_OPERAND (cond, 1), ERROR_MARK,
4498 NULL, tf_warning_or_error);
4499 if (error_operand_p (tem))
4500 return true;
4502 break;
4503 default:
4504 cond = error_mark_node;
4505 break;
4507 if (cond == error_mark_node)
4509 error_at (elocus, "invalid controlling predicate");
4510 return true;
4512 diff = build_x_binary_op (elocus, MINUS_EXPR, TREE_OPERAND (cond, 1),
4513 ERROR_MARK, iter, ERROR_MARK, NULL,
4514 tf_warning_or_error);
4515 if (error_operand_p (diff))
4516 return true;
4517 if (TREE_CODE (TREE_TYPE (diff)) != INTEGER_TYPE)
4519 error_at (elocus, "difference between %qE and %qD does not have integer type",
4520 TREE_OPERAND (cond, 1), iter);
4521 return true;
4524 switch (TREE_CODE (incr))
4526 case PREINCREMENT_EXPR:
4527 case PREDECREMENT_EXPR:
4528 case POSTINCREMENT_EXPR:
4529 case POSTDECREMENT_EXPR:
4530 if (TREE_OPERAND (incr, 0) != iter)
4532 incr = error_mark_node;
4533 break;
4535 iter_incr = build_x_unary_op (EXPR_LOCATION (incr),
4536 TREE_CODE (incr), iter,
4537 tf_warning_or_error);
4538 if (error_operand_p (iter_incr))
4539 return true;
4540 else if (TREE_CODE (incr) == PREINCREMENT_EXPR
4541 || TREE_CODE (incr) == POSTINCREMENT_EXPR)
4542 incr = integer_one_node;
4543 else
4544 incr = integer_minus_one_node;
4545 break;
4546 case MODIFY_EXPR:
4547 if (TREE_OPERAND (incr, 0) != iter)
4548 incr = error_mark_node;
4549 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
4550 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
4552 tree rhs = TREE_OPERAND (incr, 1);
4553 if (TREE_OPERAND (rhs, 0) == iter)
4555 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 1)))
4556 != INTEGER_TYPE)
4557 incr = error_mark_node;
4558 else
4560 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
4561 iter, TREE_CODE (rhs),
4562 TREE_OPERAND (rhs, 1),
4563 tf_warning_or_error);
4564 if (error_operand_p (iter_incr))
4565 return true;
4566 incr = TREE_OPERAND (rhs, 1);
4567 incr = cp_convert (TREE_TYPE (diff), incr,
4568 tf_warning_or_error);
4569 if (TREE_CODE (rhs) == MINUS_EXPR)
4571 incr = build1 (NEGATE_EXPR, TREE_TYPE (diff), incr);
4572 incr = fold_if_not_in_template (incr);
4574 if (TREE_CODE (incr) != INTEGER_CST
4575 && (TREE_CODE (incr) != NOP_EXPR
4576 || (TREE_CODE (TREE_OPERAND (incr, 0))
4577 != INTEGER_CST)))
4578 iter_incr = NULL;
4581 else if (TREE_OPERAND (rhs, 1) == iter)
4583 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs, 0))) != INTEGER_TYPE
4584 || TREE_CODE (rhs) != PLUS_EXPR)
4585 incr = error_mark_node;
4586 else
4588 iter_incr = build_x_binary_op (EXPR_LOCATION (rhs),
4589 PLUS_EXPR,
4590 TREE_OPERAND (rhs, 0),
4591 ERROR_MARK, iter,
4592 ERROR_MARK, NULL,
4593 tf_warning_or_error);
4594 if (error_operand_p (iter_incr))
4595 return true;
4596 iter_incr = build_x_modify_expr (EXPR_LOCATION (rhs),
4597 iter, NOP_EXPR,
4598 iter_incr,
4599 tf_warning_or_error);
4600 if (error_operand_p (iter_incr))
4601 return true;
4602 incr = TREE_OPERAND (rhs, 0);
4603 iter_incr = NULL;
4606 else
4607 incr = error_mark_node;
4609 else
4610 incr = error_mark_node;
4611 break;
4612 default:
4613 incr = error_mark_node;
4614 break;
4617 if (incr == error_mark_node)
4619 error_at (elocus, "invalid increment expression");
4620 return true;
4623 incr = cp_convert (TREE_TYPE (diff), incr, tf_warning_or_error);
4624 for (c = clauses; c ; c = OMP_CLAUSE_CHAIN (c))
4625 if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE
4626 && OMP_CLAUSE_DECL (c) == iter)
4627 break;
4629 decl = create_temporary_var (TREE_TYPE (diff));
4630 pushdecl (decl);
4631 add_decl_expr (decl);
4632 last = create_temporary_var (TREE_TYPE (diff));
4633 pushdecl (last);
4634 add_decl_expr (last);
4635 if (c && iter_incr == NULL)
4637 incr_var = create_temporary_var (TREE_TYPE (diff));
4638 pushdecl (incr_var);
4639 add_decl_expr (incr_var);
4641 gcc_assert (stmts_are_full_exprs_p ());
4643 orig_pre_body = *pre_body;
4644 *pre_body = push_stmt_list ();
4645 if (orig_pre_body)
4646 add_stmt (orig_pre_body);
4647 if (init != NULL)
4648 finish_expr_stmt (build_x_modify_expr (elocus,
4649 iter, NOP_EXPR, init,
4650 tf_warning_or_error));
4651 init = build_int_cst (TREE_TYPE (diff), 0);
4652 if (c && iter_incr == NULL)
4654 finish_expr_stmt (build_x_modify_expr (elocus,
4655 incr_var, NOP_EXPR,
4656 incr, tf_warning_or_error));
4657 incr = incr_var;
4658 iter_incr = build_x_modify_expr (elocus,
4659 iter, PLUS_EXPR, incr,
4660 tf_warning_or_error);
4662 finish_expr_stmt (build_x_modify_expr (elocus,
4663 last, NOP_EXPR, init,
4664 tf_warning_or_error));
4665 *pre_body = pop_stmt_list (*pre_body);
4667 cond = cp_build_binary_op (elocus,
4668 TREE_CODE (cond), decl, diff,
4669 tf_warning_or_error);
4670 incr = build_modify_expr (elocus, decl, NULL_TREE, PLUS_EXPR,
4671 elocus, incr, NULL_TREE);
4673 orig_body = *body;
4674 *body = push_stmt_list ();
4675 iter_init = build2 (MINUS_EXPR, TREE_TYPE (diff), decl, last);
4676 iter_init = build_x_modify_expr (elocus,
4677 iter, PLUS_EXPR, iter_init,
4678 tf_warning_or_error);
4679 iter_init = build1 (NOP_EXPR, void_type_node, iter_init);
4680 finish_expr_stmt (iter_init);
4681 finish_expr_stmt (build_x_modify_expr (elocus,
4682 last, NOP_EXPR, decl,
4683 tf_warning_or_error));
4684 add_stmt (orig_body);
4685 *body = pop_stmt_list (*body);
4687 if (c)
4689 OMP_CLAUSE_LASTPRIVATE_STMT (c) = push_stmt_list ();
4690 finish_expr_stmt (iter_incr);
4691 OMP_CLAUSE_LASTPRIVATE_STMT (c)
4692 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c));
4695 TREE_VEC_ELT (declv, i) = decl;
4696 TREE_VEC_ELT (initv, i) = init;
4697 TREE_VEC_ELT (condv, i) = cond;
4698 TREE_VEC_ELT (incrv, i) = incr;
4700 return false;
4703 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
4704 are directly for their associated operands in the statement. DECL
4705 and INIT are a combo; if DECL is NULL then INIT ought to be a
4706 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
4707 optional statements that need to go before the loop into its
4708 sk_omp scope. */
4710 tree
4711 finish_omp_for (location_t locus, tree declv, tree initv, tree condv,
4712 tree incrv, tree body, tree pre_body, tree clauses)
4714 tree omp_for = NULL, orig_incr = NULL;
4715 tree decl, init, cond, incr;
4716 location_t elocus;
4717 int i;
4719 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv));
4720 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv));
4721 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv));
4722 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4724 decl = TREE_VEC_ELT (declv, i);
4725 init = TREE_VEC_ELT (initv, i);
4726 cond = TREE_VEC_ELT (condv, i);
4727 incr = TREE_VEC_ELT (incrv, i);
4728 elocus = locus;
4730 if (decl == NULL)
4732 if (init != NULL)
4733 switch (TREE_CODE (init))
4735 case MODIFY_EXPR:
4736 decl = TREE_OPERAND (init, 0);
4737 init = TREE_OPERAND (init, 1);
4738 break;
4739 case MODOP_EXPR:
4740 if (TREE_CODE (TREE_OPERAND (init, 1)) == NOP_EXPR)
4742 decl = TREE_OPERAND (init, 0);
4743 init = TREE_OPERAND (init, 2);
4745 break;
4746 default:
4747 break;
4750 if (decl == NULL)
4752 error_at (locus,
4753 "expected iteration declaration or initialization");
4754 return NULL;
4758 if (init && EXPR_HAS_LOCATION (init))
4759 elocus = EXPR_LOCATION (init);
4761 if (cond == NULL)
4763 error_at (elocus, "missing controlling predicate");
4764 return NULL;
4767 if (incr == NULL)
4769 error_at (elocus, "missing increment expression");
4770 return NULL;
4773 TREE_VEC_ELT (declv, i) = decl;
4774 TREE_VEC_ELT (initv, i) = init;
4777 if (dependent_omp_for_p (declv, initv, condv, incrv))
4779 tree stmt;
4781 stmt = make_node (OMP_FOR);
4783 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
4785 /* This is really just a place-holder. We'll be decomposing this
4786 again and going through the cp_build_modify_expr path below when
4787 we instantiate the thing. */
4788 TREE_VEC_ELT (initv, i)
4789 = build2 (MODIFY_EXPR, void_type_node, TREE_VEC_ELT (declv, i),
4790 TREE_VEC_ELT (initv, i));
4793 TREE_TYPE (stmt) = void_type_node;
4794 OMP_FOR_INIT (stmt) = initv;
4795 OMP_FOR_COND (stmt) = condv;
4796 OMP_FOR_INCR (stmt) = incrv;
4797 OMP_FOR_BODY (stmt) = body;
4798 OMP_FOR_PRE_BODY (stmt) = pre_body;
4799 OMP_FOR_CLAUSES (stmt) = clauses;
4801 SET_EXPR_LOCATION (stmt, locus);
4802 return add_stmt (stmt);
4805 if (processing_template_decl)
4806 orig_incr = make_tree_vec (TREE_VEC_LENGTH (incrv));
4808 for (i = 0; i < TREE_VEC_LENGTH (declv); )
4810 decl = TREE_VEC_ELT (declv, i);
4811 init = TREE_VEC_ELT (initv, i);
4812 cond = TREE_VEC_ELT (condv, i);
4813 incr = TREE_VEC_ELT (incrv, i);
4814 if (orig_incr)
4815 TREE_VEC_ELT (orig_incr, i) = incr;
4816 elocus = locus;
4818 if (init && EXPR_HAS_LOCATION (init))
4819 elocus = EXPR_LOCATION (init);
4821 if (!DECL_P (decl))
4823 error_at (elocus, "expected iteration declaration or initialization");
4824 return NULL;
4827 if (incr && TREE_CODE (incr) == MODOP_EXPR)
4829 if (orig_incr)
4830 TREE_VEC_ELT (orig_incr, i) = incr;
4831 incr = cp_build_modify_expr (TREE_OPERAND (incr, 0),
4832 TREE_CODE (TREE_OPERAND (incr, 1)),
4833 TREE_OPERAND (incr, 2),
4834 tf_warning_or_error);
4837 if (CLASS_TYPE_P (TREE_TYPE (decl)))
4839 if (handle_omp_for_class_iterator (i, locus, declv, initv, condv,
4840 incrv, &body, &pre_body, clauses))
4841 return NULL;
4842 continue;
4845 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))
4846 && TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE)
4848 error_at (elocus, "invalid type for iteration variable %qE", decl);
4849 return NULL;
4852 if (!processing_template_decl)
4854 init = fold_build_cleanup_point_expr (TREE_TYPE (init), init);
4855 init = cp_build_modify_expr (decl, NOP_EXPR, init, tf_warning_or_error);
4857 else
4858 init = build2 (MODIFY_EXPR, void_type_node, decl, init);
4859 if (cond
4860 && TREE_SIDE_EFFECTS (cond)
4861 && COMPARISON_CLASS_P (cond)
4862 && !processing_template_decl)
4864 tree t = TREE_OPERAND (cond, 0);
4865 if (TREE_SIDE_EFFECTS (t)
4866 && t != decl
4867 && (TREE_CODE (t) != NOP_EXPR
4868 || TREE_OPERAND (t, 0) != decl))
4869 TREE_OPERAND (cond, 0)
4870 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4872 t = TREE_OPERAND (cond, 1);
4873 if (TREE_SIDE_EFFECTS (t)
4874 && t != decl
4875 && (TREE_CODE (t) != NOP_EXPR
4876 || TREE_OPERAND (t, 0) != decl))
4877 TREE_OPERAND (cond, 1)
4878 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4880 if (decl == error_mark_node || init == error_mark_node)
4881 return NULL;
4883 TREE_VEC_ELT (declv, i) = decl;
4884 TREE_VEC_ELT (initv, i) = init;
4885 TREE_VEC_ELT (condv, i) = cond;
4886 TREE_VEC_ELT (incrv, i) = incr;
4887 i++;
4890 if (IS_EMPTY_STMT (pre_body))
4891 pre_body = NULL;
4893 omp_for = c_finish_omp_for (locus, declv, initv, condv, incrv,
4894 body, pre_body);
4896 if (omp_for == NULL)
4897 return NULL;
4899 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++)
4901 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0);
4902 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i);
4904 if (TREE_CODE (incr) != MODIFY_EXPR)
4905 continue;
4907 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr, 1))
4908 && BINARY_CLASS_P (TREE_OPERAND (incr, 1))
4909 && !processing_template_decl)
4911 tree t = TREE_OPERAND (TREE_OPERAND (incr, 1), 0);
4912 if (TREE_SIDE_EFFECTS (t)
4913 && t != decl
4914 && (TREE_CODE (t) != NOP_EXPR
4915 || TREE_OPERAND (t, 0) != decl))
4916 TREE_OPERAND (TREE_OPERAND (incr, 1), 0)
4917 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4919 t = TREE_OPERAND (TREE_OPERAND (incr, 1), 1);
4920 if (TREE_SIDE_EFFECTS (t)
4921 && t != decl
4922 && (TREE_CODE (t) != NOP_EXPR
4923 || TREE_OPERAND (t, 0) != decl))
4924 TREE_OPERAND (TREE_OPERAND (incr, 1), 1)
4925 = fold_build_cleanup_point_expr (TREE_TYPE (t), t);
4928 if (orig_incr)
4929 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i);
4931 if (omp_for != NULL)
4932 OMP_FOR_CLAUSES (omp_for) = clauses;
4933 return omp_for;
4936 void
4937 finish_omp_atomic (enum tree_code code, enum tree_code opcode, tree lhs,
4938 tree rhs, tree v, tree lhs1, tree rhs1)
4940 tree orig_lhs;
4941 tree orig_rhs;
4942 tree orig_v;
4943 tree orig_lhs1;
4944 tree orig_rhs1;
4945 bool dependent_p;
4946 tree stmt;
4948 orig_lhs = lhs;
4949 orig_rhs = rhs;
4950 orig_v = v;
4951 orig_lhs1 = lhs1;
4952 orig_rhs1 = rhs1;
4953 dependent_p = false;
4954 stmt = NULL_TREE;
4956 /* Even in a template, we can detect invalid uses of the atomic
4957 pragma if neither LHS nor RHS is type-dependent. */
4958 if (processing_template_decl)
4960 dependent_p = (type_dependent_expression_p (lhs)
4961 || (rhs && type_dependent_expression_p (rhs))
4962 || (v && type_dependent_expression_p (v))
4963 || (lhs1 && type_dependent_expression_p (lhs1))
4964 || (rhs1 && type_dependent_expression_p (rhs1)));
4965 if (!dependent_p)
4967 lhs = build_non_dependent_expr (lhs);
4968 if (rhs)
4969 rhs = build_non_dependent_expr (rhs);
4970 if (v)
4971 v = build_non_dependent_expr (v);
4972 if (lhs1)
4973 lhs1 = build_non_dependent_expr (lhs1);
4974 if (rhs1)
4975 rhs1 = build_non_dependent_expr (rhs1);
4978 if (!dependent_p)
4980 stmt = c_finish_omp_atomic (input_location, code, opcode, lhs, rhs,
4981 v, lhs1, rhs1);
4982 if (stmt == error_mark_node)
4983 return;
4985 if (processing_template_decl)
4987 if (code == OMP_ATOMIC_READ)
4989 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs),
4990 OMP_ATOMIC_READ, orig_lhs);
4991 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
4993 else
4995 if (opcode == NOP_EXPR)
4996 stmt = build2 (MODIFY_EXPR, void_type_node, orig_lhs, orig_rhs);
4997 else
4998 stmt = build2 (opcode, void_type_node, orig_lhs, orig_rhs);
4999 if (orig_rhs1)
5000 stmt = build_min_nt_loc (EXPR_LOCATION (orig_rhs1),
5001 COMPOUND_EXPR, orig_rhs1, stmt);
5002 if (code != OMP_ATOMIC)
5004 stmt = build_min_nt_loc (EXPR_LOCATION (orig_lhs1),
5005 code, orig_lhs1, stmt);
5006 stmt = build2 (MODIFY_EXPR, void_type_node, orig_v, stmt);
5009 stmt = build2 (OMP_ATOMIC, void_type_node, integer_zero_node, stmt);
5011 add_stmt (stmt);
5014 void
5015 finish_omp_barrier (void)
5017 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_BARRIER);
5018 vec<tree, va_gc> *vec = make_tree_vector ();
5019 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5020 release_tree_vector (vec);
5021 finish_expr_stmt (stmt);
5024 void
5025 finish_omp_flush (void)
5027 tree fn = builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE);
5028 vec<tree, va_gc> *vec = make_tree_vector ();
5029 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5030 release_tree_vector (vec);
5031 finish_expr_stmt (stmt);
5034 void
5035 finish_omp_taskwait (void)
5037 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT);
5038 vec<tree, va_gc> *vec = make_tree_vector ();
5039 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5040 release_tree_vector (vec);
5041 finish_expr_stmt (stmt);
5044 void
5045 finish_omp_taskyield (void)
5047 tree fn = builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD);
5048 vec<tree, va_gc> *vec = make_tree_vector ();
5049 tree stmt = finish_call_expr (fn, &vec, false, false, tf_warning_or_error);
5050 release_tree_vector (vec);
5051 finish_expr_stmt (stmt);
5054 /* Begin a __transaction_atomic or __transaction_relaxed statement.
5055 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
5056 should create an extra compound stmt. */
5058 tree
5059 begin_transaction_stmt (location_t loc, tree *pcompound, int flags)
5061 tree r;
5063 if (pcompound)
5064 *pcompound = begin_compound_stmt (0);
5066 r = build_stmt (loc, TRANSACTION_EXPR, NULL_TREE);
5068 /* Only add the statement to the function if support enabled. */
5069 if (flag_tm)
5070 add_stmt (r);
5071 else
5072 error_at (loc, ((flags & TM_STMT_ATTR_RELAXED) != 0
5073 ? G_("%<__transaction_relaxed%> without "
5074 "transactional memory support enabled")
5075 : G_("%<__transaction_atomic%> without "
5076 "transactional memory support enabled")));
5078 TRANSACTION_EXPR_BODY (r) = push_stmt_list ();
5079 return r;
5082 /* End a __transaction_atomic or __transaction_relaxed statement.
5083 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
5084 and we should end the compound. If NOEX is non-NULL, we wrap the body in
5085 a MUST_NOT_THROW_EXPR with NOEX as condition. */
5087 void
5088 finish_transaction_stmt (tree stmt, tree compound_stmt, int flags, tree noex)
5090 TRANSACTION_EXPR_BODY (stmt) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt));
5091 TRANSACTION_EXPR_OUTER (stmt) = (flags & TM_STMT_ATTR_OUTER) != 0;
5092 TRANSACTION_EXPR_RELAXED (stmt) = (flags & TM_STMT_ATTR_RELAXED) != 0;
5093 TRANSACTION_EXPR_IS_STMT (stmt) = 1;
5095 /* noexcept specifications are not allowed for function transactions. */
5096 gcc_assert (!(noex && compound_stmt));
5097 if (noex)
5099 tree body = build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt),
5100 noex);
5101 SET_EXPR_LOCATION (body, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt)));
5102 TREE_SIDE_EFFECTS (body) = 1;
5103 TRANSACTION_EXPR_BODY (stmt) = body;
5106 if (compound_stmt)
5107 finish_compound_stmt (compound_stmt);
5108 finish_stmt ();
5111 /* Build a __transaction_atomic or __transaction_relaxed expression. If
5112 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
5113 condition. */
5115 tree
5116 build_transaction_expr (location_t loc, tree expr, int flags, tree noex)
5118 tree ret;
5119 if (noex)
5121 expr = build_must_not_throw_expr (expr, noex);
5122 SET_EXPR_LOCATION (expr, loc);
5123 TREE_SIDE_EFFECTS (expr) = 1;
5125 ret = build1 (TRANSACTION_EXPR, TREE_TYPE (expr), expr);
5126 if (flags & TM_STMT_ATTR_RELAXED)
5127 TRANSACTION_EXPR_RELAXED (ret) = 1;
5128 SET_EXPR_LOCATION (ret, loc);
5129 return ret;
5132 void
5133 init_cp_semantics (void)
5137 /* Build a STATIC_ASSERT for a static assertion with the condition
5138 CONDITION and the message text MESSAGE. LOCATION is the location
5139 of the static assertion in the source code. When MEMBER_P, this
5140 static assertion is a member of a class. */
5141 void
5142 finish_static_assert (tree condition, tree message, location_t location,
5143 bool member_p)
5145 if (message == NULL_TREE
5146 || message == error_mark_node
5147 || condition == NULL_TREE
5148 || condition == error_mark_node)
5149 return;
5151 if (check_for_bare_parameter_packs (condition))
5152 condition = error_mark_node;
5154 if (type_dependent_expression_p (condition)
5155 || value_dependent_expression_p (condition))
5157 /* We're in a template; build a STATIC_ASSERT and put it in
5158 the right place. */
5159 tree assertion;
5161 assertion = make_node (STATIC_ASSERT);
5162 STATIC_ASSERT_CONDITION (assertion) = condition;
5163 STATIC_ASSERT_MESSAGE (assertion) = message;
5164 STATIC_ASSERT_SOURCE_LOCATION (assertion) = location;
5166 if (member_p)
5167 maybe_add_class_template_decl_list (current_class_type,
5168 assertion,
5169 /*friend_p=*/0);
5170 else
5171 add_stmt (assertion);
5173 return;
5176 /* Fold the expression and convert it to a boolean value. */
5177 condition = fold_non_dependent_expr (condition);
5178 condition = cp_convert (boolean_type_node, condition, tf_warning_or_error);
5179 condition = maybe_constant_value (condition);
5181 if (TREE_CODE (condition) == INTEGER_CST && !integer_zerop (condition))
5182 /* Do nothing; the condition is satisfied. */
5184 else
5186 location_t saved_loc = input_location;
5188 input_location = location;
5189 if (TREE_CODE (condition) == INTEGER_CST
5190 && integer_zerop (condition))
5191 /* Report the error. */
5192 error ("static assertion failed: %s", TREE_STRING_POINTER (message));
5193 else if (condition && condition != error_mark_node)
5195 error ("non-constant condition for static assertion");
5196 cxx_constant_value (condition);
5198 input_location = saved_loc;
5202 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
5203 suitable for use as a type-specifier.
5205 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
5206 id-expression or a class member access, FALSE when it was parsed as
5207 a full expression. */
5209 tree
5210 finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
5211 tsubst_flags_t complain)
5213 tree type = NULL_TREE;
5215 if (!expr || error_operand_p (expr))
5216 return error_mark_node;
5218 if (TYPE_P (expr)
5219 || TREE_CODE (expr) == TYPE_DECL
5220 || (TREE_CODE (expr) == BIT_NOT_EXPR
5221 && TYPE_P (TREE_OPERAND (expr, 0))))
5223 if (complain & tf_error)
5224 error ("argument to decltype must be an expression");
5225 return error_mark_node;
5228 /* Depending on the resolution of DR 1172, we may later need to distinguish
5229 instantiation-dependent but not type-dependent expressions so that, say,
5230 A<decltype(sizeof(T))>::U doesn't require 'typename'. */
5231 if (instantiation_dependent_expression_p (expr))
5233 type = cxx_make_type (DECLTYPE_TYPE);
5234 DECLTYPE_TYPE_EXPR (type) = expr;
5235 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)
5236 = id_expression_or_member_access_p;
5237 SET_TYPE_STRUCTURAL_EQUALITY (type);
5239 return type;
5242 /* The type denoted by decltype(e) is defined as follows: */
5244 expr = resolve_nondeduced_context (expr);
5246 if (type_unknown_p (expr))
5248 if (complain & tf_error)
5249 error ("decltype cannot resolve address of overloaded function");
5250 return error_mark_node;
5253 if (invalid_nonstatic_memfn_p (expr, complain))
5254 return error_mark_node;
5256 /* To get the size of a static data member declared as an array of
5257 unknown bound, we need to instantiate it. */
5258 if (TREE_CODE (expr) == VAR_DECL
5259 && VAR_HAD_UNKNOWN_BOUND (expr)
5260 && DECL_TEMPLATE_INSTANTIATION (expr))
5261 instantiate_decl (expr, /*defer_ok*/true, /*expl_inst_mem*/false);
5263 if (id_expression_or_member_access_p)
5265 /* If e is an id-expression or a class member access (5.2.5
5266 [expr.ref]), decltype(e) is defined as the type of the entity
5267 named by e. If there is no such entity, or e names a set of
5268 overloaded functions, the program is ill-formed. */
5269 if (TREE_CODE (expr) == IDENTIFIER_NODE)
5270 expr = lookup_name (expr);
5272 if (TREE_CODE (expr) == INDIRECT_REF)
5273 /* This can happen when the expression is, e.g., "a.b". Just
5274 look at the underlying operand. */
5275 expr = TREE_OPERAND (expr, 0);
5277 if (TREE_CODE (expr) == OFFSET_REF
5278 || TREE_CODE (expr) == MEMBER_REF
5279 || TREE_CODE (expr) == SCOPE_REF)
5280 /* We're only interested in the field itself. If it is a
5281 BASELINK, we will need to see through it in the next
5282 step. */
5283 expr = TREE_OPERAND (expr, 1);
5285 if (BASELINK_P (expr))
5286 /* See through BASELINK nodes to the underlying function. */
5287 expr = BASELINK_FUNCTIONS (expr);
5289 switch (TREE_CODE (expr))
5291 case FIELD_DECL:
5292 if (DECL_BIT_FIELD_TYPE (expr))
5294 type = DECL_BIT_FIELD_TYPE (expr);
5295 break;
5297 /* Fall through for fields that aren't bitfields. */
5299 case FUNCTION_DECL:
5300 case VAR_DECL:
5301 case CONST_DECL:
5302 case PARM_DECL:
5303 case RESULT_DECL:
5304 case TEMPLATE_PARM_INDEX:
5305 expr = mark_type_use (expr);
5306 type = TREE_TYPE (expr);
5307 break;
5309 case ERROR_MARK:
5310 type = error_mark_node;
5311 break;
5313 case COMPONENT_REF:
5314 mark_type_use (expr);
5315 type = is_bitfield_expr_with_lowered_type (expr);
5316 if (!type)
5317 type = TREE_TYPE (TREE_OPERAND (expr, 1));
5318 break;
5320 case BIT_FIELD_REF:
5321 gcc_unreachable ();
5323 case INTEGER_CST:
5324 case PTRMEM_CST:
5325 /* We can get here when the id-expression refers to an
5326 enumerator or non-type template parameter. */
5327 type = TREE_TYPE (expr);
5328 break;
5330 default:
5331 gcc_unreachable ();
5332 return error_mark_node;
5335 else
5337 /* Within a lambda-expression:
5339 Every occurrence of decltype((x)) where x is a possibly
5340 parenthesized id-expression that names an entity of
5341 automatic storage duration is treated as if x were
5342 transformed into an access to a corresponding data member
5343 of the closure type that would have been declared if x
5344 were a use of the denoted entity. */
5345 if (outer_automatic_var_p (expr)
5346 && current_function_decl
5347 && LAMBDA_FUNCTION_P (current_function_decl))
5348 type = capture_decltype (expr);
5349 else if (error_operand_p (expr))
5350 type = error_mark_node;
5351 else if (expr == current_class_ptr)
5352 /* If the expression is just "this", we want the
5353 cv-unqualified pointer for the "this" type. */
5354 type = TYPE_MAIN_VARIANT (TREE_TYPE (expr));
5355 else
5357 /* Otherwise, where T is the type of e, if e is an lvalue,
5358 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
5359 cp_lvalue_kind clk = lvalue_kind (expr);
5360 type = unlowered_expr_type (expr);
5361 gcc_assert (TREE_CODE (type) != REFERENCE_TYPE);
5363 /* For vector types, pick a non-opaque variant. */
5364 if (TREE_CODE (type) == VECTOR_TYPE)
5365 type = strip_typedefs (type);
5367 if (clk != clk_none && !(clk & clk_class))
5368 type = cp_build_reference_type (type, (clk & clk_rvalueref));
5372 return type;
5375 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
5376 __has_nothrow_copy, depending on assign_p. */
5378 static bool
5379 classtype_has_nothrow_assign_or_copy_p (tree type, bool assign_p)
5381 tree fns;
5383 if (assign_p)
5385 int ix;
5386 ix = lookup_fnfields_1 (type, ansi_assopname (NOP_EXPR));
5387 if (ix < 0)
5388 return false;
5389 fns = (*CLASSTYPE_METHOD_VEC (type))[ix];
5391 else if (TYPE_HAS_COPY_CTOR (type))
5393 /* If construction of the copy constructor was postponed, create
5394 it now. */
5395 if (CLASSTYPE_LAZY_COPY_CTOR (type))
5396 lazily_declare_fn (sfk_copy_constructor, type);
5397 if (CLASSTYPE_LAZY_MOVE_CTOR (type))
5398 lazily_declare_fn (sfk_move_constructor, type);
5399 fns = CLASSTYPE_CONSTRUCTORS (type);
5401 else
5402 return false;
5404 for (; fns; fns = OVL_NEXT (fns))
5406 tree fn = OVL_CURRENT (fns);
5408 if (assign_p)
5410 if (copy_fn_p (fn) == 0)
5411 continue;
5413 else if (copy_fn_p (fn) <= 0)
5414 continue;
5416 if (!TYPE_NOTHROW_P (TREE_TYPE (fn)))
5417 return false;
5420 return true;
5423 /* Actually evaluates the trait. */
5425 static bool
5426 trait_expr_value (cp_trait_kind kind, tree type1, tree type2)
5428 enum tree_code type_code1;
5429 tree t;
5431 type_code1 = TREE_CODE (type1);
5433 switch (kind)
5435 case CPTK_HAS_NOTHROW_ASSIGN:
5436 type1 = strip_array_types (type1);
5437 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5438 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN, type1, type2)
5439 || (CLASS_TYPE_P (type1)
5440 && classtype_has_nothrow_assign_or_copy_p (type1,
5441 true))));
5443 case CPTK_HAS_TRIVIAL_ASSIGN:
5444 /* ??? The standard seems to be missing the "or array of such a class
5445 type" wording for this trait. */
5446 type1 = strip_array_types (type1);
5447 return (!CP_TYPE_CONST_P (type1) && type_code1 != REFERENCE_TYPE
5448 && (trivial_type_p (type1)
5449 || (CLASS_TYPE_P (type1)
5450 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1))));
5452 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5453 type1 = strip_array_types (type1);
5454 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR, type1, type2)
5455 || (CLASS_TYPE_P (type1)
5456 && (t = locate_ctor (type1))
5457 && TYPE_NOTHROW_P (TREE_TYPE (t))));
5459 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5460 type1 = strip_array_types (type1);
5461 return (trivial_type_p (type1)
5462 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_DFLT (type1)));
5464 case CPTK_HAS_NOTHROW_COPY:
5465 type1 = strip_array_types (type1);
5466 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY, type1, type2)
5467 || (CLASS_TYPE_P (type1)
5468 && classtype_has_nothrow_assign_or_copy_p (type1, false)));
5470 case CPTK_HAS_TRIVIAL_COPY:
5471 /* ??? The standard seems to be missing the "or array of such a class
5472 type" wording for this trait. */
5473 type1 = strip_array_types (type1);
5474 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5475 || (CLASS_TYPE_P (type1) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1)));
5477 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5478 type1 = strip_array_types (type1);
5479 return (trivial_type_p (type1) || type_code1 == REFERENCE_TYPE
5480 || (CLASS_TYPE_P (type1)
5481 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1)));
5483 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5484 return type_has_virtual_destructor (type1);
5486 case CPTK_IS_ABSTRACT:
5487 return (ABSTRACT_CLASS_TYPE_P (type1));
5489 case CPTK_IS_BASE_OF:
5490 return (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5491 && DERIVED_FROM_P (type1, type2));
5493 case CPTK_IS_CLASS:
5494 return (NON_UNION_CLASS_TYPE_P (type1));
5496 case CPTK_IS_CONVERTIBLE_TO:
5497 /* TODO */
5498 return false;
5500 case CPTK_IS_EMPTY:
5501 return (NON_UNION_CLASS_TYPE_P (type1) && CLASSTYPE_EMPTY_P (type1));
5503 case CPTK_IS_ENUM:
5504 return (type_code1 == ENUMERAL_TYPE);
5506 case CPTK_IS_FINAL:
5507 return (CLASS_TYPE_P (type1) && CLASSTYPE_FINAL (type1));
5509 case CPTK_IS_LITERAL_TYPE:
5510 return (literal_type_p (type1));
5512 case CPTK_IS_POD:
5513 return (pod_type_p (type1));
5515 case CPTK_IS_POLYMORPHIC:
5516 return (CLASS_TYPE_P (type1) && TYPE_POLYMORPHIC_P (type1));
5518 case CPTK_IS_STD_LAYOUT:
5519 return (std_layout_type_p (type1));
5521 case CPTK_IS_TRIVIAL:
5522 return (trivial_type_p (type1));
5524 case CPTK_IS_UNION:
5525 return (type_code1 == UNION_TYPE);
5527 default:
5528 gcc_unreachable ();
5529 return false;
5533 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
5534 void, or a complete type, returns it, otherwise NULL_TREE. */
5536 static tree
5537 check_trait_type (tree type)
5539 if (TREE_CODE (type) == ARRAY_TYPE && !TYPE_DOMAIN (type)
5540 && COMPLETE_TYPE_P (TREE_TYPE (type)))
5541 return type;
5543 if (VOID_TYPE_P (type))
5544 return type;
5546 return complete_type_or_else (strip_array_types (type), NULL_TREE);
5549 /* Process a trait expression. */
5551 tree
5552 finish_trait_expr (cp_trait_kind kind, tree type1, tree type2)
5554 gcc_assert (kind == CPTK_HAS_NOTHROW_ASSIGN
5555 || kind == CPTK_HAS_NOTHROW_CONSTRUCTOR
5556 || kind == CPTK_HAS_NOTHROW_COPY
5557 || kind == CPTK_HAS_TRIVIAL_ASSIGN
5558 || kind == CPTK_HAS_TRIVIAL_CONSTRUCTOR
5559 || kind == CPTK_HAS_TRIVIAL_COPY
5560 || kind == CPTK_HAS_TRIVIAL_DESTRUCTOR
5561 || kind == CPTK_HAS_VIRTUAL_DESTRUCTOR
5562 || kind == CPTK_IS_ABSTRACT
5563 || kind == CPTK_IS_BASE_OF
5564 || kind == CPTK_IS_CLASS
5565 || kind == CPTK_IS_CONVERTIBLE_TO
5566 || kind == CPTK_IS_EMPTY
5567 || kind == CPTK_IS_ENUM
5568 || kind == CPTK_IS_FINAL
5569 || kind == CPTK_IS_LITERAL_TYPE
5570 || kind == CPTK_IS_POD
5571 || kind == CPTK_IS_POLYMORPHIC
5572 || kind == CPTK_IS_STD_LAYOUT
5573 || kind == CPTK_IS_TRIVIAL
5574 || kind == CPTK_IS_UNION);
5576 if (kind == CPTK_IS_CONVERTIBLE_TO)
5578 sorry ("__is_convertible_to");
5579 return error_mark_node;
5582 if (type1 == error_mark_node
5583 || ((kind == CPTK_IS_BASE_OF || kind == CPTK_IS_CONVERTIBLE_TO)
5584 && type2 == error_mark_node))
5585 return error_mark_node;
5587 if (processing_template_decl)
5589 tree trait_expr = make_node (TRAIT_EXPR);
5590 TREE_TYPE (trait_expr) = boolean_type_node;
5591 TRAIT_EXPR_TYPE1 (trait_expr) = type1;
5592 TRAIT_EXPR_TYPE2 (trait_expr) = type2;
5593 TRAIT_EXPR_KIND (trait_expr) = kind;
5594 return trait_expr;
5597 switch (kind)
5599 case CPTK_HAS_NOTHROW_ASSIGN:
5600 case CPTK_HAS_TRIVIAL_ASSIGN:
5601 case CPTK_HAS_NOTHROW_CONSTRUCTOR:
5602 case CPTK_HAS_TRIVIAL_CONSTRUCTOR:
5603 case CPTK_HAS_NOTHROW_COPY:
5604 case CPTK_HAS_TRIVIAL_COPY:
5605 case CPTK_HAS_TRIVIAL_DESTRUCTOR:
5606 case CPTK_HAS_VIRTUAL_DESTRUCTOR:
5607 case CPTK_IS_ABSTRACT:
5608 case CPTK_IS_EMPTY:
5609 case CPTK_IS_FINAL:
5610 case CPTK_IS_LITERAL_TYPE:
5611 case CPTK_IS_POD:
5612 case CPTK_IS_POLYMORPHIC:
5613 case CPTK_IS_STD_LAYOUT:
5614 case CPTK_IS_TRIVIAL:
5615 if (!check_trait_type (type1))
5616 return error_mark_node;
5617 break;
5619 case CPTK_IS_BASE_OF:
5620 if (NON_UNION_CLASS_TYPE_P (type1) && NON_UNION_CLASS_TYPE_P (type2)
5621 && !same_type_ignoring_top_level_qualifiers_p (type1, type2)
5622 && !complete_type_or_else (type2, NULL_TREE))
5623 /* We already issued an error. */
5624 return error_mark_node;
5625 break;
5627 case CPTK_IS_CLASS:
5628 case CPTK_IS_ENUM:
5629 case CPTK_IS_UNION:
5630 break;
5632 case CPTK_IS_CONVERTIBLE_TO:
5633 default:
5634 gcc_unreachable ();
5637 return (trait_expr_value (kind, type1, type2)
5638 ? boolean_true_node : boolean_false_node);
5641 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5642 which is ignored for C++. */
5644 void
5645 set_float_const_decimal64 (void)
5649 void
5650 clear_float_const_decimal64 (void)
5654 bool
5655 float_const_decimal64_p (void)
5657 return 0;
5661 /* Return true if T is a literal type. */
5663 bool
5664 literal_type_p (tree t)
5666 if (SCALAR_TYPE_P (t)
5667 || TREE_CODE (t) == VECTOR_TYPE
5668 || TREE_CODE (t) == REFERENCE_TYPE)
5669 return true;
5670 if (CLASS_TYPE_P (t))
5672 t = complete_type (t);
5673 gcc_assert (COMPLETE_TYPE_P (t) || errorcount);
5674 return CLASSTYPE_LITERAL_P (t);
5676 if (TREE_CODE (t) == ARRAY_TYPE)
5677 return literal_type_p (strip_array_types (t));
5678 return false;
5681 /* If DECL is a variable declared `constexpr', require its type
5682 be literal. Return the DECL if OK, otherwise NULL. */
5684 tree
5685 ensure_literal_type_for_constexpr_object (tree decl)
5687 tree type = TREE_TYPE (decl);
5688 if (TREE_CODE (decl) == VAR_DECL && DECL_DECLARED_CONSTEXPR_P (decl)
5689 && !processing_template_decl)
5691 if (CLASS_TYPE_P (type) && !COMPLETE_TYPE_P (complete_type (type)))
5692 /* Don't complain here, we'll complain about incompleteness
5693 when we try to initialize the variable. */;
5694 else if (!literal_type_p (type))
5696 error ("the type %qT of constexpr variable %qD is not literal",
5697 type, decl);
5698 explain_non_literal_class (type);
5699 return NULL;
5702 return decl;
5705 /* Representation of entries in the constexpr function definition table. */
5707 typedef struct GTY(()) constexpr_fundef {
5708 tree decl;
5709 tree body;
5710 } constexpr_fundef;
5712 /* This table holds all constexpr function definitions seen in
5713 the current translation unit. */
5715 static GTY ((param_is (constexpr_fundef))) htab_t constexpr_fundef_table;
5717 /* Utility function used for managing the constexpr function table.
5718 Return true if the entries pointed to by P and Q are for the
5719 same constexpr function. */
5721 static inline int
5722 constexpr_fundef_equal (const void *p, const void *q)
5724 const constexpr_fundef *lhs = (const constexpr_fundef *) p;
5725 const constexpr_fundef *rhs = (const constexpr_fundef *) q;
5726 return lhs->decl == rhs->decl;
5729 /* Utility function used for managing the constexpr function table.
5730 Return a hash value for the entry pointed to by Q. */
5732 static inline hashval_t
5733 constexpr_fundef_hash (const void *p)
5735 const constexpr_fundef *fundef = (const constexpr_fundef *) p;
5736 return DECL_UID (fundef->decl);
5739 /* Return a previously saved definition of function FUN. */
5741 static constexpr_fundef *
5742 retrieve_constexpr_fundef (tree fun)
5744 constexpr_fundef fundef = { NULL, NULL };
5745 if (constexpr_fundef_table == NULL)
5746 return NULL;
5748 fundef.decl = fun;
5749 return (constexpr_fundef *) htab_find (constexpr_fundef_table, &fundef);
5752 /* Check whether the parameter and return types of FUN are valid for a
5753 constexpr function, and complain if COMPLAIN. */
5755 static bool
5756 is_valid_constexpr_fn (tree fun, bool complain)
5758 tree parm = FUNCTION_FIRST_USER_PARM (fun);
5759 bool ret = true;
5760 for (; parm != NULL; parm = TREE_CHAIN (parm))
5761 if (!literal_type_p (TREE_TYPE (parm)))
5763 ret = false;
5764 if (complain)
5766 error ("invalid type for parameter %d of constexpr "
5767 "function %q+#D", DECL_PARM_INDEX (parm), fun);
5768 explain_non_literal_class (TREE_TYPE (parm));
5772 if (!DECL_CONSTRUCTOR_P (fun))
5774 tree rettype = TREE_TYPE (TREE_TYPE (fun));
5775 if (!literal_type_p (rettype))
5777 ret = false;
5778 if (complain)
5780 error ("invalid return type %qT of constexpr function %q+D",
5781 rettype, fun);
5782 explain_non_literal_class (rettype);
5786 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5787 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
5789 ret = false;
5790 if (complain)
5792 error ("enclosing class of constexpr non-static member "
5793 "function %q+#D is not a literal type", fun);
5794 explain_non_literal_class (DECL_CONTEXT (fun));
5798 else if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fun)))
5800 ret = false;
5801 if (complain)
5802 error ("%q#T has virtual base classes", DECL_CONTEXT (fun));
5805 return ret;
5808 /* Subroutine of build_constexpr_constructor_member_initializers.
5809 The expression tree T represents a data member initialization
5810 in a (constexpr) constructor definition. Build a pairing of
5811 the data member with its initializer, and prepend that pair
5812 to the existing initialization pair INITS. */
5814 static bool
5815 build_data_member_initialization (tree t, vec<constructor_elt, va_gc> **vec)
5817 tree member, init;
5818 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
5819 t = TREE_OPERAND (t, 0);
5820 if (TREE_CODE (t) == EXPR_STMT)
5821 t = TREE_OPERAND (t, 0);
5822 if (t == error_mark_node)
5823 return false;
5824 if (TREE_CODE (t) == STATEMENT_LIST)
5826 tree_stmt_iterator i;
5827 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5829 if (! build_data_member_initialization (tsi_stmt (i), vec))
5830 return false;
5832 return true;
5834 if (TREE_CODE (t) == CLEANUP_STMT)
5836 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5837 but we can in a constexpr constructor for a non-literal class. Just
5838 ignore it; either all the initialization will be constant, in which
5839 case the cleanup can't run, or it can't be constexpr.
5840 Still recurse into CLEANUP_BODY. */
5841 return build_data_member_initialization (CLEANUP_BODY (t), vec);
5843 if (TREE_CODE (t) == CONVERT_EXPR)
5844 t = TREE_OPERAND (t, 0);
5845 if (TREE_CODE (t) == INIT_EXPR
5846 || TREE_CODE (t) == MODIFY_EXPR)
5848 member = TREE_OPERAND (t, 0);
5849 init = unshare_expr (TREE_OPERAND (t, 1));
5851 else
5853 gcc_assert (TREE_CODE (t) == CALL_EXPR);
5854 member = CALL_EXPR_ARG (t, 0);
5855 /* We don't use build_cplus_new here because it complains about
5856 abstract bases. Leaving the call unwrapped means that it has the
5857 wrong type, but cxx_eval_constant_expression doesn't care. */
5858 init = unshare_expr (t);
5860 if (TREE_CODE (member) == INDIRECT_REF)
5861 member = TREE_OPERAND (member, 0);
5862 if (TREE_CODE (member) == NOP_EXPR)
5864 tree op = member;
5865 STRIP_NOPS (op);
5866 if (TREE_CODE (op) == ADDR_EXPR)
5868 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5869 (TREE_TYPE (TREE_TYPE (op)),
5870 TREE_TYPE (TREE_TYPE (member))));
5871 /* Initializing a cv-qualified member; we need to look through
5872 the const_cast. */
5873 member = op;
5875 else if (op == current_class_ptr
5876 && (same_type_ignoring_top_level_qualifiers_p
5877 (TREE_TYPE (TREE_TYPE (member)),
5878 current_class_type)))
5879 /* Delegating constructor. */
5880 member = op;
5881 else
5883 /* This is an initializer for an empty base; keep it for now so
5884 we can check it in cxx_eval_bare_aggregate. */
5885 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
5888 if (TREE_CODE (member) == ADDR_EXPR)
5889 member = TREE_OPERAND (member, 0);
5890 if (TREE_CODE (member) == COMPONENT_REF
5891 /* If we're initializing a member of a subaggregate, it's a vtable
5892 pointer. Leave it as COMPONENT_REF so we remember the path to get
5893 to the vfield. */
5894 && TREE_CODE (TREE_OPERAND (member, 0)) != COMPONENT_REF)
5895 member = TREE_OPERAND (member, 1);
5896 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
5897 return true;
5900 /* Make sure that there are no statements after LAST in the constructor
5901 body represented by LIST. */
5903 bool
5904 check_constexpr_ctor_body (tree last, tree list)
5906 bool ok = true;
5907 if (TREE_CODE (list) == STATEMENT_LIST)
5909 tree_stmt_iterator i = tsi_last (list);
5910 for (; !tsi_end_p (i); tsi_prev (&i))
5912 tree t = tsi_stmt (i);
5913 if (t == last)
5914 break;
5915 if (TREE_CODE (t) == BIND_EXPR)
5917 if (!check_constexpr_ctor_body (last, BIND_EXPR_BODY (t)))
5918 return false;
5919 else
5920 continue;
5922 /* We currently allow typedefs and static_assert.
5923 FIXME allow them in the standard, too. */
5924 if (TREE_CODE (t) != STATIC_ASSERT)
5926 ok = false;
5927 break;
5931 else if (list != last
5932 && TREE_CODE (list) != STATIC_ASSERT)
5933 ok = false;
5934 if (!ok)
5936 error ("constexpr constructor does not have empty body");
5937 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
5939 return ok;
5942 /* V is a vector of constructor elements built up for the base and member
5943 initializers of a constructor for TYPE. They need to be in increasing
5944 offset order, which they might not be yet if TYPE has a primary base
5945 which is not first in the base-clause. */
5947 static vec<constructor_elt, va_gc> *
5948 sort_constexpr_mem_initializers (tree type, vec<constructor_elt, va_gc> *v)
5950 tree pri = CLASSTYPE_PRIMARY_BINFO (type);
5951 constructor_elt elt;
5952 int i;
5954 if (pri == NULL_TREE
5955 || pri == BINFO_BASE_BINFO (TYPE_BINFO (type), 0))
5956 return v;
5958 /* Find the element for the primary base and move it to the beginning of
5959 the vec. */
5960 vec<constructor_elt, va_gc> &vref = *v;
5961 pri = BINFO_TYPE (pri);
5962 for (i = 1; ; ++i)
5963 if (TREE_TYPE (vref[i].index) == pri)
5964 break;
5966 elt = vref[i];
5967 for (; i > 0; --i)
5968 vref[i] = vref[i-1];
5969 vref[0] = elt;
5970 return v;
5973 /* Build compile-time evalable representations of member-initializer list
5974 for a constexpr constructor. */
5976 static tree
5977 build_constexpr_constructor_member_initializers (tree type, tree body)
5979 vec<constructor_elt, va_gc> *vec = NULL;
5980 bool ok = true;
5981 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR
5982 || TREE_CODE (body) == EH_SPEC_BLOCK)
5983 body = TREE_OPERAND (body, 0);
5984 if (TREE_CODE (body) == STATEMENT_LIST)
5985 body = STATEMENT_LIST_HEAD (body)->stmt;
5986 body = BIND_EXPR_BODY (body);
5987 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
5989 body = TREE_OPERAND (body, 0);
5990 if (TREE_CODE (body) == EXPR_STMT)
5991 body = TREE_OPERAND (body, 0);
5992 if (TREE_CODE (body) == INIT_EXPR
5993 && (same_type_ignoring_top_level_qualifiers_p
5994 (TREE_TYPE (TREE_OPERAND (body, 0)),
5995 current_class_type)))
5997 /* Trivial copy. */
5998 return TREE_OPERAND (body, 1);
6000 ok = build_data_member_initialization (body, &vec);
6002 else if (TREE_CODE (body) == STATEMENT_LIST)
6004 tree_stmt_iterator i;
6005 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
6007 ok = build_data_member_initialization (tsi_stmt (i), &vec);
6008 if (!ok)
6009 break;
6012 else if (TREE_CODE (body) == TRY_BLOCK)
6014 error ("body of %<constexpr%> constructor cannot be "
6015 "a function-try-block");
6016 return error_mark_node;
6018 else if (EXPR_P (body))
6019 ok = build_data_member_initialization (body, &vec);
6020 else
6021 gcc_assert (errorcount > 0);
6022 if (ok)
6024 if (vec_safe_length (vec) > 0)
6026 /* In a delegating constructor, return the target. */
6027 constructor_elt *ce = &(*vec)[0];
6028 if (ce->index == current_class_ptr)
6030 body = ce->value;
6031 vec_free (vec);
6032 return body;
6035 vec = sort_constexpr_mem_initializers (type, vec);
6036 return build_constructor (type, vec);
6038 else
6039 return error_mark_node;
6042 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
6043 declared to be constexpr, or a sub-statement thereof. Returns the
6044 return value if suitable, error_mark_node for a statement not allowed in
6045 a constexpr function, or NULL_TREE if no return value was found. */
6047 static tree
6048 constexpr_fn_retval (tree body)
6050 switch (TREE_CODE (body))
6052 case STATEMENT_LIST:
6054 tree_stmt_iterator i;
6055 tree expr = NULL_TREE;
6056 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
6058 tree s = constexpr_fn_retval (tsi_stmt (i));
6059 if (s == error_mark_node)
6060 return error_mark_node;
6061 else if (s == NULL_TREE)
6062 /* Keep iterating. */;
6063 else if (expr)
6064 /* Multiple return statements. */
6065 return error_mark_node;
6066 else
6067 expr = s;
6069 return expr;
6072 case RETURN_EXPR:
6073 return unshare_expr (TREE_OPERAND (body, 0));
6075 case DECL_EXPR:
6076 if (TREE_CODE (DECL_EXPR_DECL (body)) == USING_DECL)
6077 return NULL_TREE;
6078 return error_mark_node;
6080 case CLEANUP_POINT_EXPR:
6081 return constexpr_fn_retval (TREE_OPERAND (body, 0));
6083 case USING_STMT:
6084 return NULL_TREE;
6086 default:
6087 return error_mark_node;
6091 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
6092 FUN; do the necessary transformations to turn it into a single expression
6093 that we can store in the hash table. */
6095 static tree
6096 massage_constexpr_body (tree fun, tree body)
6098 if (DECL_CONSTRUCTOR_P (fun))
6099 body = build_constexpr_constructor_member_initializers
6100 (DECL_CONTEXT (fun), body);
6101 else
6103 if (TREE_CODE (body) == EH_SPEC_BLOCK)
6104 body = EH_SPEC_STMTS (body);
6105 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
6106 body = TREE_OPERAND (body, 0);
6107 if (TREE_CODE (body) == BIND_EXPR)
6108 body = BIND_EXPR_BODY (body);
6109 body = constexpr_fn_retval (body);
6111 return body;
6114 /* FUN is a constexpr constructor with massaged body BODY. Return true
6115 if some bases/fields are uninitialized, and complain if COMPLAIN. */
6117 static bool
6118 cx_check_missing_mem_inits (tree fun, tree body, bool complain)
6120 bool bad;
6121 tree field;
6122 unsigned i, nelts;
6123 tree ctype;
6125 if (TREE_CODE (body) != CONSTRUCTOR)
6126 return false;
6128 nelts = CONSTRUCTOR_NELTS (body);
6129 ctype = DECL_CONTEXT (fun);
6130 field = TYPE_FIELDS (ctype);
6132 if (TREE_CODE (ctype) == UNION_TYPE)
6134 if (nelts == 0 && next_initializable_field (field))
6136 if (complain)
6137 error ("%<constexpr%> constructor for union %qT must "
6138 "initialize exactly one non-static data member", ctype);
6139 return true;
6141 return false;
6144 bad = false;
6145 for (i = 0; i <= nelts; ++i)
6147 tree index;
6148 if (i == nelts)
6149 index = NULL_TREE;
6150 else
6152 index = CONSTRUCTOR_ELT (body, i)->index;
6153 /* Skip base and vtable inits. */
6154 if (TREE_CODE (index) != FIELD_DECL
6155 || DECL_ARTIFICIAL (index))
6156 continue;
6158 for (; field != index; field = DECL_CHAIN (field))
6160 tree ftype;
6161 if (TREE_CODE (field) != FIELD_DECL
6162 || (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
6163 || DECL_ARTIFICIAL (field))
6164 continue;
6165 ftype = strip_array_types (TREE_TYPE (field));
6166 if (type_has_constexpr_default_constructor (ftype))
6168 /* It's OK to skip a member with a trivial constexpr ctor.
6169 A constexpr ctor that isn't trivial should have been
6170 added in by now. */
6171 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype)
6172 || errorcount != 0);
6173 continue;
6175 if (!complain)
6176 return true;
6177 error ("uninitialized member %qD in %<constexpr%> constructor",
6178 field);
6179 bad = true;
6181 if (field == NULL_TREE)
6182 break;
6183 field = DECL_CHAIN (field);
6186 return bad;
6189 /* We are processing the definition of the constexpr function FUN.
6190 Check that its BODY fulfills the propriate requirements and
6191 enter it in the constexpr function definition table.
6192 For constructor BODY is actually the TREE_LIST of the
6193 member-initializer list. */
6195 tree
6196 register_constexpr_fundef (tree fun, tree body)
6198 constexpr_fundef entry;
6199 constexpr_fundef **slot;
6201 if (!is_valid_constexpr_fn (fun, !DECL_GENERATED_P (fun)))
6202 return NULL;
6204 body = massage_constexpr_body (fun, body);
6205 if (body == NULL_TREE || body == error_mark_node)
6207 if (!DECL_CONSTRUCTOR_P (fun))
6208 error ("body of constexpr function %qD not a return-statement", fun);
6209 return NULL;
6212 if (!potential_rvalue_constant_expression (body))
6214 if (!DECL_GENERATED_P (fun))
6215 require_potential_rvalue_constant_expression (body);
6216 return NULL;
6219 if (DECL_CONSTRUCTOR_P (fun)
6220 && cx_check_missing_mem_inits (fun, body, !DECL_GENERATED_P (fun)))
6221 return NULL;
6223 /* Create the constexpr function table if necessary. */
6224 if (constexpr_fundef_table == NULL)
6225 constexpr_fundef_table = htab_create_ggc (101,
6226 constexpr_fundef_hash,
6227 constexpr_fundef_equal,
6228 ggc_free);
6229 entry.decl = fun;
6230 entry.body = body;
6231 slot = (constexpr_fundef **)
6232 htab_find_slot (constexpr_fundef_table, &entry, INSERT);
6234 gcc_assert (*slot == NULL);
6235 *slot = ggc_alloc_constexpr_fundef ();
6236 **slot = entry;
6238 return fun;
6241 /* FUN is a non-constexpr function called in a context that requires a
6242 constant expression. If it comes from a constexpr template, explain why
6243 the instantiation isn't constexpr. */
6245 void
6246 explain_invalid_constexpr_fn (tree fun)
6248 static struct pointer_set_t *diagnosed;
6249 tree body;
6250 location_t save_loc;
6251 /* Only diagnose defaulted functions or instantiations. */
6252 if (!DECL_DEFAULTED_FN (fun)
6253 && !is_instantiation_of_constexpr (fun))
6254 return;
6255 if (diagnosed == NULL)
6256 diagnosed = pointer_set_create ();
6257 if (pointer_set_insert (diagnosed, fun) != 0)
6258 /* Already explained. */
6259 return;
6261 save_loc = input_location;
6262 input_location = DECL_SOURCE_LOCATION (fun);
6263 inform (0, "%q+D is not usable as a constexpr function because:", fun);
6264 /* First check the declaration. */
6265 if (is_valid_constexpr_fn (fun, true))
6267 /* Then if it's OK, the body. */
6268 if (DECL_DEFAULTED_FN (fun))
6269 explain_implicit_non_constexpr (fun);
6270 else
6272 body = massage_constexpr_body (fun, DECL_SAVED_TREE (fun));
6273 require_potential_rvalue_constant_expression (body);
6274 if (DECL_CONSTRUCTOR_P (fun))
6275 cx_check_missing_mem_inits (fun, body, true);
6278 input_location = save_loc;
6281 /* Objects of this type represent calls to constexpr functions
6282 along with the bindings of parameters to their arguments, for
6283 the purpose of compile time evaluation. */
6285 typedef struct GTY(()) constexpr_call {
6286 /* Description of the constexpr function definition. */
6287 constexpr_fundef *fundef;
6288 /* Parameter bindings environment. A TREE_LIST where each TREE_PURPOSE
6289 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
6290 Note: This arrangement is made to accomodate the use of
6291 iterative_hash_template_arg (see pt.c). If you change this
6292 representation, also change the hash calculation in
6293 cxx_eval_call_expression. */
6294 tree bindings;
6295 /* Result of the call.
6296 NULL means the call is being evaluated.
6297 error_mark_node means that the evaluation was erroneous;
6298 otherwise, the actuall value of the call. */
6299 tree result;
6300 /* The hash of this call; we remember it here to avoid having to
6301 recalculate it when expanding the hash table. */
6302 hashval_t hash;
6303 } constexpr_call;
6305 /* A table of all constexpr calls that have been evaluated by the
6306 compiler in this translation unit. */
6308 static GTY ((param_is (constexpr_call))) htab_t constexpr_call_table;
6310 static tree cxx_eval_constant_expression (const constexpr_call *, tree,
6311 bool, bool, bool *, bool *);
6313 /* Compute a hash value for a constexpr call representation. */
6315 static hashval_t
6316 constexpr_call_hash (const void *p)
6318 const constexpr_call *info = (const constexpr_call *) p;
6319 return info->hash;
6322 /* Return 1 if the objects pointed to by P and Q represent calls
6323 to the same constexpr function with the same arguments.
6324 Otherwise, return 0. */
6326 static int
6327 constexpr_call_equal (const void *p, const void *q)
6329 const constexpr_call *lhs = (const constexpr_call *) p;
6330 const constexpr_call *rhs = (const constexpr_call *) q;
6331 tree lhs_bindings;
6332 tree rhs_bindings;
6333 if (lhs == rhs)
6334 return 1;
6335 if (!constexpr_fundef_equal (lhs->fundef, rhs->fundef))
6336 return 0;
6337 lhs_bindings = lhs->bindings;
6338 rhs_bindings = rhs->bindings;
6339 while (lhs_bindings != NULL && rhs_bindings != NULL)
6341 tree lhs_arg = TREE_VALUE (lhs_bindings);
6342 tree rhs_arg = TREE_VALUE (rhs_bindings);
6343 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
6344 if (!cp_tree_equal (lhs_arg, rhs_arg))
6345 return 0;
6346 lhs_bindings = TREE_CHAIN (lhs_bindings);
6347 rhs_bindings = TREE_CHAIN (rhs_bindings);
6349 return lhs_bindings == rhs_bindings;
6352 /* Initialize the constexpr call table, if needed. */
6354 static void
6355 maybe_initialize_constexpr_call_table (void)
6357 if (constexpr_call_table == NULL)
6358 constexpr_call_table = htab_create_ggc (101,
6359 constexpr_call_hash,
6360 constexpr_call_equal,
6361 ggc_free);
6364 /* Return true if T designates the implied `this' parameter. */
6366 static inline bool
6367 is_this_parameter (tree t)
6369 return t == current_class_ptr;
6372 /* We have an expression tree T that represents a call, either CALL_EXPR
6373 or AGGR_INIT_EXPR. If the call is lexically to a named function,
6374 retrun the _DECL for that function. */
6376 static tree
6377 get_function_named_in_call (tree t)
6379 tree fun = NULL;
6380 switch (TREE_CODE (t))
6382 case CALL_EXPR:
6383 fun = CALL_EXPR_FN (t);
6384 break;
6386 case AGGR_INIT_EXPR:
6387 fun = AGGR_INIT_EXPR_FN (t);
6388 break;
6390 default:
6391 gcc_unreachable();
6392 break;
6394 if (TREE_CODE (fun) == ADDR_EXPR
6395 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
6396 fun = TREE_OPERAND (fun, 0);
6397 return fun;
6400 /* We have an expression tree T that represents a call, either CALL_EXPR
6401 or AGGR_INIT_EXPR. Return the Nth argument. */
6403 static inline tree
6404 get_nth_callarg (tree t, int n)
6406 switch (TREE_CODE (t))
6408 case CALL_EXPR:
6409 return CALL_EXPR_ARG (t, n);
6411 case AGGR_INIT_EXPR:
6412 return AGGR_INIT_EXPR_ARG (t, n);
6414 default:
6415 gcc_unreachable ();
6416 return NULL;
6420 /* Look up the binding of the function parameter T in a constexpr
6421 function call context CALL. */
6423 static tree
6424 lookup_parameter_binding (const constexpr_call *call, tree t)
6426 tree b = purpose_member (t, call->bindings);
6427 return TREE_VALUE (b);
6430 /* Attempt to evaluate T which represents a call to a builtin function.
6431 We assume here that all builtin functions evaluate to scalar types
6432 represented by _CST nodes. */
6434 static tree
6435 cxx_eval_builtin_function_call (const constexpr_call *call, tree t,
6436 bool allow_non_constant, bool addr,
6437 bool *non_constant_p, bool *overflow_p)
6439 const int nargs = call_expr_nargs (t);
6440 tree *args = (tree *) alloca (nargs * sizeof (tree));
6441 tree new_call;
6442 int i;
6443 for (i = 0; i < nargs; ++i)
6445 args[i] = cxx_eval_constant_expression (call, CALL_EXPR_ARG (t, i),
6446 allow_non_constant, addr,
6447 non_constant_p, overflow_p);
6448 if (allow_non_constant && *non_constant_p)
6449 return t;
6451 if (*non_constant_p)
6452 return t;
6453 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
6454 CALL_EXPR_FN (t), nargs, args);
6455 new_call = fold (new_call);
6456 VERIFY_CONSTANT (new_call);
6457 return new_call;
6460 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
6461 the type of the value to match. */
6463 static tree
6464 adjust_temp_type (tree type, tree temp)
6466 if (TREE_TYPE (temp) == type)
6467 return temp;
6468 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
6469 if (TREE_CODE (temp) == CONSTRUCTOR)
6470 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
6471 gcc_assert (scalarish_type_p (type));
6472 return cp_fold_convert (type, temp);
6475 /* Subroutine of cxx_eval_call_expression.
6476 We are processing a call expression (either CALL_EXPR or
6477 AGGR_INIT_EXPR) in the call context of OLD_CALL. Evaluate
6478 all arguments and bind their values to correspondings
6479 parameters, making up the NEW_CALL context. */
6481 static void
6482 cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t,
6483 constexpr_call *new_call,
6484 bool allow_non_constant,
6485 bool *non_constant_p, bool *overflow_p)
6487 const int nargs = call_expr_nargs (t);
6488 tree fun = new_call->fundef->decl;
6489 tree parms = DECL_ARGUMENTS (fun);
6490 int i;
6491 for (i = 0; i < nargs; ++i)
6493 tree x, arg;
6494 tree type = parms ? TREE_TYPE (parms) : void_type_node;
6495 /* For member function, the first argument is a pointer to the implied
6496 object. And for an object contruction, don't bind `this' before
6497 it is fully constructed. */
6498 if (i == 0 && DECL_CONSTRUCTOR_P (fun))
6499 goto next;
6500 x = get_nth_callarg (t, i);
6501 arg = cxx_eval_constant_expression (old_call, x, allow_non_constant,
6502 TREE_CODE (type) == REFERENCE_TYPE,
6503 non_constant_p, overflow_p);
6504 /* Don't VERIFY_CONSTANT here. */
6505 if (*non_constant_p && allow_non_constant)
6506 return;
6507 /* Just discard ellipsis args after checking their constantitude. */
6508 if (!parms)
6509 continue;
6510 if (*non_constant_p)
6511 /* Don't try to adjust the type of non-constant args. */
6512 goto next;
6514 /* Make sure the binding has the same type as the parm. */
6515 if (TREE_CODE (type) != REFERENCE_TYPE)
6516 arg = adjust_temp_type (type, arg);
6517 new_call->bindings = tree_cons (parms, arg, new_call->bindings);
6518 next:
6519 parms = TREE_CHAIN (parms);
6523 /* Variables and functions to manage constexpr call expansion context.
6524 These do not need to be marked for PCH or GC. */
6526 /* FIXME remember and print actual constant arguments. */
6527 static vec<tree> call_stack = vNULL;
6528 static int call_stack_tick;
6529 static int last_cx_error_tick;
6531 static bool
6532 push_cx_call_context (tree call)
6534 ++call_stack_tick;
6535 if (!EXPR_HAS_LOCATION (call))
6536 SET_EXPR_LOCATION (call, input_location);
6537 call_stack.safe_push (call);
6538 if (call_stack.length () > (unsigned) max_constexpr_depth)
6539 return false;
6540 return true;
6543 static void
6544 pop_cx_call_context (void)
6546 ++call_stack_tick;
6547 call_stack.pop ();
6550 vec<tree>
6551 cx_error_context (void)
6553 vec<tree> r = vNULL;
6554 if (call_stack_tick != last_cx_error_tick
6555 && !call_stack.is_empty ())
6556 r = call_stack;
6557 last_cx_error_tick = call_stack_tick;
6558 return r;
6561 /* Subroutine of cxx_eval_constant_expression.
6562 Evaluate the call expression tree T in the context of OLD_CALL expression
6563 evaluation. */
6565 static tree
6566 cxx_eval_call_expression (const constexpr_call *old_call, tree t,
6567 bool allow_non_constant, bool addr,
6568 bool *non_constant_p, bool *overflow_p)
6570 location_t loc = EXPR_LOC_OR_HERE (t);
6571 tree fun = get_function_named_in_call (t);
6572 tree result;
6573 constexpr_call new_call = { NULL, NULL, NULL, 0 };
6574 constexpr_call **slot;
6575 constexpr_call *entry;
6576 bool depth_ok;
6578 if (TREE_CODE (fun) != FUNCTION_DECL)
6580 /* Might be a constexpr function pointer. */
6581 fun = cxx_eval_constant_expression (old_call, fun, allow_non_constant,
6582 /*addr*/false, non_constant_p, overflow_p);
6583 if (TREE_CODE (fun) == ADDR_EXPR)
6584 fun = TREE_OPERAND (fun, 0);
6586 if (TREE_CODE (fun) != FUNCTION_DECL)
6588 if (!allow_non_constant && !*non_constant_p)
6589 error_at (loc, "expression %qE does not designate a constexpr "
6590 "function", fun);
6591 *non_constant_p = true;
6592 return t;
6594 if (DECL_CLONED_FUNCTION_P (fun))
6595 fun = DECL_CLONED_FUNCTION (fun);
6596 if (is_builtin_fn (fun))
6597 return cxx_eval_builtin_function_call (old_call, t, allow_non_constant,
6598 addr, non_constant_p, overflow_p);
6599 if (!DECL_DECLARED_CONSTEXPR_P (fun))
6601 if (!allow_non_constant)
6603 error_at (loc, "call to non-constexpr function %qD", fun);
6604 explain_invalid_constexpr_fn (fun);
6606 *non_constant_p = true;
6607 return t;
6610 /* Shortcut trivial copy constructor/op=. */
6611 if (call_expr_nargs (t) == 2 && trivial_fn_p (fun))
6613 tree arg = convert_from_reference (get_nth_callarg (t, 1));
6614 return cxx_eval_constant_expression (old_call, arg, allow_non_constant,
6615 addr, non_constant_p, overflow_p);
6618 /* If in direct recursive call, optimize definition search. */
6619 if (old_call != NULL && old_call->fundef->decl == fun)
6620 new_call.fundef = old_call->fundef;
6621 else
6623 new_call.fundef = retrieve_constexpr_fundef (fun);
6624 if (new_call.fundef == NULL || new_call.fundef->body == NULL)
6626 if (!allow_non_constant)
6628 if (DECL_INITIAL (fun))
6630 /* The definition of fun was somehow unsuitable. */
6631 error_at (loc, "%qD called in a constant expression", fun);
6632 explain_invalid_constexpr_fn (fun);
6634 else
6635 error_at (loc, "%qD used before its definition", fun);
6637 *non_constant_p = true;
6638 return t;
6641 cxx_bind_parameters_in_call (old_call, t, &new_call,
6642 allow_non_constant, non_constant_p, overflow_p);
6643 if (*non_constant_p)
6644 return t;
6646 depth_ok = push_cx_call_context (t);
6648 new_call.hash
6649 = iterative_hash_template_arg (new_call.bindings,
6650 constexpr_fundef_hash (new_call.fundef));
6652 /* If we have seen this call before, we are done. */
6653 maybe_initialize_constexpr_call_table ();
6654 slot = (constexpr_call **)
6655 htab_find_slot (constexpr_call_table, &new_call, INSERT);
6656 entry = *slot;
6657 if (entry == NULL)
6659 /* We need to keep a pointer to the entry, not just the slot, as the
6660 slot can move in the call to cxx_eval_builtin_function_call. */
6661 *slot = entry = ggc_alloc_constexpr_call ();
6662 *entry = new_call;
6664 /* Calls which are in progress have their result set to NULL
6665 so that we can detect circular dependencies. */
6666 else if (entry->result == NULL)
6668 if (!allow_non_constant)
6669 error ("call has circular dependency");
6670 *non_constant_p = true;
6671 entry->result = result = error_mark_node;
6674 if (!depth_ok)
6676 if (!allow_non_constant)
6677 error ("constexpr evaluation depth exceeds maximum of %d (use "
6678 "-fconstexpr-depth= to increase the maximum)",
6679 max_constexpr_depth);
6680 *non_constant_p = true;
6681 entry->result = result = error_mark_node;
6683 else
6685 result = entry->result;
6686 if (!result || result == error_mark_node)
6687 result = (cxx_eval_constant_expression
6688 (&new_call, new_call.fundef->body,
6689 allow_non_constant, addr,
6690 non_constant_p, overflow_p));
6691 if (result == error_mark_node)
6692 *non_constant_p = true;
6693 if (*non_constant_p)
6694 entry->result = result = error_mark_node;
6695 else
6697 /* If this was a call to initialize an object, set the type of
6698 the CONSTRUCTOR to the type of that object. */
6699 if (DECL_CONSTRUCTOR_P (fun))
6701 tree ob_arg = get_nth_callarg (t, 0);
6702 STRIP_NOPS (ob_arg);
6703 gcc_assert (TREE_CODE (TREE_TYPE (ob_arg)) == POINTER_TYPE
6704 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg))));
6705 result = adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg)),
6706 result);
6708 entry->result = result;
6712 pop_cx_call_context ();
6713 return unshare_expr (result);
6716 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
6718 bool
6719 reduced_constant_expression_p (tree t)
6721 /* FIXME are we calling this too much? */
6722 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
6725 /* Some expressions may have constant operands but are not constant
6726 themselves, such as 1/0. Call this function (or rather, the macro
6727 following it) to check for that condition.
6729 We only call this in places that require an arithmetic constant, not in
6730 places where we might have a non-constant expression that can be a
6731 component of a constant expression, such as the address of a constexpr
6732 variable that might be dereferenced later. */
6734 static bool
6735 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p,
6736 bool *overflow_p)
6738 if (!*non_constant_p && !reduced_constant_expression_p (t))
6740 if (!allow_non_constant)
6741 error ("%q+E is not a constant expression", t);
6742 *non_constant_p = true;
6744 if (TREE_OVERFLOW_P (t))
6746 if (!allow_non_constant)
6748 permerror (input_location, "overflow in constant expression");
6749 /* If we're being permissive (and are in an enforcing
6750 context), ignore the overflow. */
6751 if (flag_permissive)
6752 return *non_constant_p;
6754 *overflow_p = true;
6756 return *non_constant_p;
6759 /* Subroutine of cxx_eval_constant_expression.
6760 Attempt to reduce the unary expression tree T to a compile time value.
6761 If successful, return the value. Otherwise issue a diagnostic
6762 and return error_mark_node. */
6764 static tree
6765 cxx_eval_unary_expression (const constexpr_call *call, tree t,
6766 bool allow_non_constant, bool addr,
6767 bool *non_constant_p, bool *overflow_p)
6769 tree r;
6770 tree orig_arg = TREE_OPERAND (t, 0);
6771 tree arg = cxx_eval_constant_expression (call, orig_arg, allow_non_constant,
6772 addr, non_constant_p, overflow_p);
6773 VERIFY_CONSTANT (arg);
6774 if (arg == orig_arg)
6775 return t;
6776 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), arg);
6777 VERIFY_CONSTANT (r);
6778 return r;
6781 /* Subroutine of cxx_eval_constant_expression.
6782 Like cxx_eval_unary_expression, except for binary expressions. */
6784 static tree
6785 cxx_eval_binary_expression (const constexpr_call *call, tree t,
6786 bool allow_non_constant, bool addr,
6787 bool *non_constant_p, bool *overflow_p)
6789 tree r;
6790 tree orig_lhs = TREE_OPERAND (t, 0);
6791 tree orig_rhs = TREE_OPERAND (t, 1);
6792 tree lhs, rhs;
6793 lhs = cxx_eval_constant_expression (call, orig_lhs,
6794 allow_non_constant, addr,
6795 non_constant_p, overflow_p);
6796 VERIFY_CONSTANT (lhs);
6797 rhs = cxx_eval_constant_expression (call, orig_rhs,
6798 allow_non_constant, addr,
6799 non_constant_p, overflow_p);
6800 VERIFY_CONSTANT (rhs);
6801 if (lhs == orig_lhs && rhs == orig_rhs)
6802 return t;
6803 r = fold_build2 (TREE_CODE (t), TREE_TYPE (t), lhs, rhs);
6804 VERIFY_CONSTANT (r);
6805 return r;
6808 /* Subroutine of cxx_eval_constant_expression.
6809 Attempt to evaluate condition expressions. Dead branches are not
6810 looked into. */
6812 static tree
6813 cxx_eval_conditional_expression (const constexpr_call *call, tree t,
6814 bool allow_non_constant, bool addr,
6815 bool *non_constant_p, bool *overflow_p)
6817 tree val = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
6818 allow_non_constant, addr,
6819 non_constant_p, overflow_p);
6820 VERIFY_CONSTANT (val);
6821 /* Don't VERIFY_CONSTANT the other operands. */
6822 if (integer_zerop (val))
6823 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 2),
6824 allow_non_constant, addr,
6825 non_constant_p, overflow_p);
6826 return cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
6827 allow_non_constant, addr,
6828 non_constant_p, overflow_p);
6831 /* Subroutine of cxx_eval_constant_expression.
6832 Attempt to reduce a reference to an array slot. */
6834 static tree
6835 cxx_eval_array_reference (const constexpr_call *call, tree t,
6836 bool allow_non_constant, bool addr,
6837 bool *non_constant_p, bool *overflow_p)
6839 tree oldary = TREE_OPERAND (t, 0);
6840 tree ary = cxx_eval_constant_expression (call, oldary,
6841 allow_non_constant, addr,
6842 non_constant_p, overflow_p);
6843 tree index, oldidx;
6844 HOST_WIDE_INT i;
6845 tree elem_type;
6846 unsigned len, elem_nchars = 1;
6847 if (*non_constant_p)
6848 return t;
6849 oldidx = TREE_OPERAND (t, 1);
6850 index = cxx_eval_constant_expression (call, oldidx,
6851 allow_non_constant, false,
6852 non_constant_p, overflow_p);
6853 VERIFY_CONSTANT (index);
6854 if (addr && ary == oldary && index == oldidx)
6855 return t;
6856 else if (addr)
6857 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
6858 elem_type = TREE_TYPE (TREE_TYPE (ary));
6859 if (TREE_CODE (ary) == CONSTRUCTOR)
6860 len = CONSTRUCTOR_NELTS (ary);
6861 else if (TREE_CODE (ary) == STRING_CST)
6863 elem_nchars = (TYPE_PRECISION (elem_type)
6864 / TYPE_PRECISION (char_type_node));
6865 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
6867 else
6869 /* We can't do anything with other tree codes, so use
6870 VERIFY_CONSTANT to complain and fail. */
6871 VERIFY_CONSTANT (ary);
6872 gcc_unreachable ();
6874 if (compare_tree_int (index, len) >= 0)
6876 if (tree_int_cst_lt (index, array_type_nelts_top (TREE_TYPE (ary))))
6878 /* If it's within the array bounds but doesn't have an explicit
6879 initializer, it's value-initialized. */
6880 tree val = build_value_init (elem_type, tf_warning_or_error);
6881 return cxx_eval_constant_expression (call, val,
6882 allow_non_constant, addr,
6883 non_constant_p, overflow_p);
6886 if (!allow_non_constant)
6887 error ("array subscript out of bound");
6888 *non_constant_p = true;
6889 return t;
6891 i = tree_low_cst (index, 0);
6892 if (TREE_CODE (ary) == CONSTRUCTOR)
6893 return (*CONSTRUCTOR_ELTS (ary))[i].value;
6894 else if (elem_nchars == 1)
6895 return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary))),
6896 TREE_STRING_POINTER (ary)[i]);
6897 else
6899 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (ary)));
6900 return native_interpret_expr (type, (const unsigned char *)
6901 TREE_STRING_POINTER (ary)
6902 + i * elem_nchars, elem_nchars);
6904 /* Don't VERIFY_CONSTANT here. */
6907 /* Subroutine of cxx_eval_constant_expression.
6908 Attempt to reduce a field access of a value of class type. */
6910 static tree
6911 cxx_eval_component_reference (const constexpr_call *call, tree t,
6912 bool allow_non_constant, bool addr,
6913 bool *non_constant_p, bool *overflow_p)
6915 unsigned HOST_WIDE_INT i;
6916 tree field;
6917 tree value;
6918 tree part = TREE_OPERAND (t, 1);
6919 tree orig_whole = TREE_OPERAND (t, 0);
6920 tree whole = cxx_eval_constant_expression (call, orig_whole,
6921 allow_non_constant, addr,
6922 non_constant_p, overflow_p);
6923 if (whole == orig_whole)
6924 return t;
6925 if (addr)
6926 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
6927 whole, part, NULL_TREE);
6928 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6929 CONSTRUCTOR. */
6930 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6932 if (!allow_non_constant)
6933 error ("%qE is not a constant expression", orig_whole);
6934 *non_constant_p = true;
6936 if (DECL_MUTABLE_P (part))
6938 if (!allow_non_constant)
6939 error ("mutable %qD is not usable in a constant expression", part);
6940 *non_constant_p = true;
6942 if (*non_constant_p)
6943 return t;
6944 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
6946 if (field == part)
6947 return value;
6949 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
6950 && CONSTRUCTOR_NELTS (whole) > 0)
6952 /* DR 1188 says we don't have to deal with this. */
6953 if (!allow_non_constant)
6954 error ("accessing %qD member instead of initialized %qD member in "
6955 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
6956 *non_constant_p = true;
6957 return t;
6960 /* If there's no explicit init for this field, it's value-initialized. */
6961 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
6962 return cxx_eval_constant_expression (call, value,
6963 allow_non_constant, addr,
6964 non_constant_p, overflow_p);
6967 /* Subroutine of cxx_eval_constant_expression.
6968 Attempt to reduce a field access of a value of class type that is
6969 expressed as a BIT_FIELD_REF. */
6971 static tree
6972 cxx_eval_bit_field_ref (const constexpr_call *call, tree t,
6973 bool allow_non_constant, bool addr,
6974 bool *non_constant_p, bool *overflow_p)
6976 tree orig_whole = TREE_OPERAND (t, 0);
6977 tree retval, fldval, utype, mask;
6978 bool fld_seen = false;
6979 HOST_WIDE_INT istart, isize;
6980 tree whole = cxx_eval_constant_expression (call, orig_whole,
6981 allow_non_constant, addr,
6982 non_constant_p, overflow_p);
6983 tree start, field, value;
6984 unsigned HOST_WIDE_INT i;
6986 if (whole == orig_whole)
6987 return t;
6988 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
6989 CONSTRUCTOR. */
6990 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
6992 if (!allow_non_constant)
6993 error ("%qE is not a constant expression", orig_whole);
6994 *non_constant_p = true;
6996 if (*non_constant_p)
6997 return t;
6999 start = TREE_OPERAND (t, 2);
7000 istart = tree_low_cst (start, 0);
7001 isize = tree_low_cst (TREE_OPERAND (t, 1), 0);
7002 utype = TREE_TYPE (t);
7003 if (!TYPE_UNSIGNED (utype))
7004 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
7005 retval = build_int_cst (utype, 0);
7006 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
7008 tree bitpos = bit_position (field);
7009 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
7010 return value;
7011 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
7012 && TREE_CODE (value) == INTEGER_CST
7013 && host_integerp (bitpos, 0)
7014 && host_integerp (DECL_SIZE (field), 0))
7016 HOST_WIDE_INT bit = tree_low_cst (bitpos, 0);
7017 HOST_WIDE_INT sz = tree_low_cst (DECL_SIZE (field), 0);
7018 HOST_WIDE_INT shift;
7019 if (bit >= istart && bit + sz <= istart + isize)
7021 fldval = fold_convert (utype, value);
7022 mask = build_int_cst_type (utype, -1);
7023 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
7024 size_int (TYPE_PRECISION (utype) - sz));
7025 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
7026 size_int (TYPE_PRECISION (utype) - sz));
7027 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
7028 shift = bit - istart;
7029 if (BYTES_BIG_ENDIAN)
7030 shift = TYPE_PRECISION (utype) - shift - sz;
7031 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
7032 size_int (shift));
7033 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
7034 fld_seen = true;
7038 if (fld_seen)
7039 return fold_convert (TREE_TYPE (t), retval);
7040 gcc_unreachable ();
7041 return error_mark_node;
7044 /* Subroutine of cxx_eval_constant_expression.
7045 Evaluate a short-circuited logical expression T in the context
7046 of a given constexpr CALL. BAILOUT_VALUE is the value for
7047 early return. CONTINUE_VALUE is used here purely for
7048 sanity check purposes. */
7050 static tree
7051 cxx_eval_logical_expression (const constexpr_call *call, tree t,
7052 tree bailout_value, tree continue_value,
7053 bool allow_non_constant, bool addr,
7054 bool *non_constant_p, bool *overflow_p)
7056 tree r;
7057 tree lhs = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7058 allow_non_constant, addr,
7059 non_constant_p, overflow_p);
7060 VERIFY_CONSTANT (lhs);
7061 if (tree_int_cst_equal (lhs, bailout_value))
7062 return lhs;
7063 gcc_assert (tree_int_cst_equal (lhs, continue_value));
7064 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7065 allow_non_constant, addr, non_constant_p, overflow_p);
7066 VERIFY_CONSTANT (r);
7067 return r;
7070 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
7071 CONSTRUCTOR elements to initialize (part of) an object containing that
7072 field. Return a pointer to the constructor_elt corresponding to the
7073 initialization of the field. */
7075 static constructor_elt *
7076 base_field_constructor_elt (vec<constructor_elt, va_gc> *v, tree ref)
7078 tree aggr = TREE_OPERAND (ref, 0);
7079 tree field = TREE_OPERAND (ref, 1);
7080 HOST_WIDE_INT i;
7081 constructor_elt *ce;
7083 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
7085 if (TREE_CODE (aggr) == COMPONENT_REF)
7087 constructor_elt *base_ce
7088 = base_field_constructor_elt (v, aggr);
7089 v = CONSTRUCTOR_ELTS (base_ce->value);
7092 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
7093 if (ce->index == field)
7094 return ce;
7096 gcc_unreachable ();
7097 return NULL;
7100 /* Subroutine of cxx_eval_constant_expression.
7101 The expression tree T denotes a C-style array or a C-style
7102 aggregate. Reduce it to a constant expression. */
7104 static tree
7105 cxx_eval_bare_aggregate (const constexpr_call *call, tree t,
7106 bool allow_non_constant, bool addr,
7107 bool *non_constant_p, bool *overflow_p)
7109 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
7110 vec<constructor_elt, va_gc> *n;
7111 vec_alloc (n, vec_safe_length (v));
7112 constructor_elt *ce;
7113 HOST_WIDE_INT i;
7114 bool changed = false;
7115 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
7116 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
7118 tree elt = cxx_eval_constant_expression (call, ce->value,
7119 allow_non_constant, addr,
7120 non_constant_p, overflow_p);
7121 /* Don't VERIFY_CONSTANT here. */
7122 if (allow_non_constant && *non_constant_p)
7123 goto fail;
7124 if (elt != ce->value)
7125 changed = true;
7126 if (ce->index && TREE_CODE (ce->index) == COMPONENT_REF)
7128 /* This is an initialization of a vfield inside a base
7129 subaggregate that we already initialized; push this
7130 initialization into the previous initialization. */
7131 constructor_elt *inner = base_field_constructor_elt (n, ce->index);
7132 inner->value = elt;
7134 else if (ce->index && TREE_CODE (ce->index) == NOP_EXPR)
7136 /* This is an initializer for an empty base; now that we've
7137 checked that it's constant, we can ignore it. */
7138 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (ce->index))));
7140 else
7141 CONSTRUCTOR_APPEND_ELT (n, ce->index, elt);
7143 if (*non_constant_p || !changed)
7145 fail:
7146 vec_free (n);
7147 return t;
7149 t = build_constructor (TREE_TYPE (t), n);
7150 TREE_CONSTANT (t) = true;
7151 if (TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
7152 t = fold (t);
7153 return t;
7156 /* Subroutine of cxx_eval_constant_expression.
7157 The expression tree T is a VEC_INIT_EXPR which denotes the desired
7158 initialization of a non-static data member of array type. Reduce it to a
7159 CONSTRUCTOR.
7161 Note that apart from value-initialization (when VALUE_INIT is true),
7162 this is only intended to support value-initialization and the
7163 initializations done by defaulted constructors for classes with
7164 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
7165 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
7166 for the copy/move constructor. */
7168 static tree
7169 cxx_eval_vec_init_1 (const constexpr_call *call, tree atype, tree init,
7170 bool value_init, bool allow_non_constant, bool addr,
7171 bool *non_constant_p, bool *overflow_p)
7173 tree elttype = TREE_TYPE (atype);
7174 int max = tree_low_cst (array_type_nelts (atype), 0);
7175 vec<constructor_elt, va_gc> *n;
7176 vec_alloc (n, max + 1);
7177 bool pre_init = false;
7178 int i;
7180 /* For the default constructor, build up a call to the default
7181 constructor of the element type. We only need to handle class types
7182 here, as for a constructor to be constexpr, all members must be
7183 initialized, which for a defaulted default constructor means they must
7184 be of a class type with a constexpr default constructor. */
7185 if (TREE_CODE (elttype) == ARRAY_TYPE)
7186 /* We only do this at the lowest level. */;
7187 else if (value_init)
7189 init = build_value_init (elttype, tf_warning_or_error);
7190 init = cxx_eval_constant_expression
7191 (call, init, allow_non_constant, addr, non_constant_p, overflow_p);
7192 pre_init = true;
7194 else if (!init)
7196 vec<tree, va_gc> *argvec = make_tree_vector ();
7197 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
7198 &argvec, elttype, LOOKUP_NORMAL,
7199 tf_warning_or_error);
7200 release_tree_vector (argvec);
7201 init = cxx_eval_constant_expression (call, init, allow_non_constant,
7202 addr, non_constant_p, overflow_p);
7203 pre_init = true;
7206 if (*non_constant_p && !allow_non_constant)
7207 goto fail;
7209 for (i = 0; i <= max; ++i)
7211 tree idx = build_int_cst (size_type_node, i);
7212 tree eltinit;
7213 if (TREE_CODE (elttype) == ARRAY_TYPE)
7215 /* A multidimensional array; recurse. */
7216 if (value_init || init == NULL_TREE)
7217 eltinit = NULL_TREE;
7218 else
7219 eltinit = cp_build_array_ref (input_location, init, idx,
7220 tf_warning_or_error);
7221 eltinit = cxx_eval_vec_init_1 (call, elttype, eltinit, value_init,
7222 allow_non_constant, addr,
7223 non_constant_p, overflow_p);
7225 else if (pre_init)
7227 /* Initializing an element using value or default initialization
7228 we just pre-built above. */
7229 if (i == 0)
7230 eltinit = init;
7231 else
7232 eltinit = unshare_expr (init);
7234 else
7236 /* Copying an element. */
7237 vec<tree, va_gc> *argvec;
7238 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7239 (atype, TREE_TYPE (init)));
7240 eltinit = cp_build_array_ref (input_location, init, idx,
7241 tf_warning_or_error);
7242 if (!real_lvalue_p (init))
7243 eltinit = move (eltinit);
7244 argvec = make_tree_vector ();
7245 argvec->quick_push (eltinit);
7246 eltinit = (build_special_member_call
7247 (NULL_TREE, complete_ctor_identifier, &argvec,
7248 elttype, LOOKUP_NORMAL, tf_warning_or_error));
7249 release_tree_vector (argvec);
7250 eltinit = cxx_eval_constant_expression
7251 (call, eltinit, allow_non_constant, addr, non_constant_p, overflow_p);
7253 if (*non_constant_p && !allow_non_constant)
7254 goto fail;
7255 CONSTRUCTOR_APPEND_ELT (n, idx, eltinit);
7258 if (!*non_constant_p)
7260 init = build_constructor (atype, n);
7261 TREE_CONSTANT (init) = true;
7262 return init;
7265 fail:
7266 vec_free (n);
7267 return init;
7270 static tree
7271 cxx_eval_vec_init (const constexpr_call *call, tree t,
7272 bool allow_non_constant, bool addr,
7273 bool *non_constant_p, bool *overflow_p)
7275 tree atype = TREE_TYPE (t);
7276 tree init = VEC_INIT_EXPR_INIT (t);
7277 tree r = cxx_eval_vec_init_1 (call, atype, init,
7278 VEC_INIT_EXPR_VALUE_INIT (t),
7279 allow_non_constant, addr, non_constant_p, overflow_p);
7280 if (*non_constant_p)
7281 return t;
7282 else
7283 return r;
7286 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
7287 match. We want to be less strict for simple *& folding; if we have a
7288 non-const temporary that we access through a const pointer, that should
7289 work. We handle this here rather than change fold_indirect_ref_1
7290 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
7291 don't really make sense outside of constant expression evaluation. Also
7292 we want to allow folding to COMPONENT_REF, which could cause trouble
7293 with TBAA in fold_indirect_ref_1.
7295 Try to keep this function synced with fold_indirect_ref_1. */
7297 static tree
7298 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
7300 tree sub, subtype;
7302 sub = op0;
7303 STRIP_NOPS (sub);
7304 subtype = TREE_TYPE (sub);
7305 if (!POINTER_TYPE_P (subtype))
7306 return NULL_TREE;
7308 if (TREE_CODE (sub) == ADDR_EXPR)
7310 tree op = TREE_OPERAND (sub, 0);
7311 tree optype = TREE_TYPE (op);
7313 /* *&CONST_DECL -> to the value of the const decl. */
7314 if (TREE_CODE (op) == CONST_DECL)
7315 return DECL_INITIAL (op);
7316 /* *&p => p; make sure to handle *&"str"[cst] here. */
7317 if (same_type_ignoring_top_level_qualifiers_p (optype, type))
7319 tree fop = fold_read_from_constant_string (op);
7320 if (fop)
7321 return fop;
7322 else
7323 return op;
7325 /* *(foo *)&fooarray => fooarray[0] */
7326 else if (TREE_CODE (optype) == ARRAY_TYPE
7327 && (same_type_ignoring_top_level_qualifiers_p
7328 (type, TREE_TYPE (optype))))
7330 tree type_domain = TYPE_DOMAIN (optype);
7331 tree min_val = size_zero_node;
7332 if (type_domain && TYPE_MIN_VALUE (type_domain))
7333 min_val = TYPE_MIN_VALUE (type_domain);
7334 return build4_loc (loc, ARRAY_REF, type, op, min_val,
7335 NULL_TREE, NULL_TREE);
7337 /* *(foo *)&complexfoo => __real__ complexfoo */
7338 else if (TREE_CODE (optype) == COMPLEX_TYPE
7339 && (same_type_ignoring_top_level_qualifiers_p
7340 (type, TREE_TYPE (optype))))
7341 return fold_build1_loc (loc, REALPART_EXPR, type, op);
7342 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
7343 else if (TREE_CODE (optype) == VECTOR_TYPE
7344 && (same_type_ignoring_top_level_qualifiers_p
7345 (type, TREE_TYPE (optype))))
7347 tree part_width = TYPE_SIZE (type);
7348 tree index = bitsize_int (0);
7349 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
7351 /* Also handle conversion to an empty base class, which
7352 is represented with a NOP_EXPR. */
7353 else if (is_empty_class (type)
7354 && CLASS_TYPE_P (optype)
7355 && DERIVED_FROM_P (type, optype))
7357 *empty_base = true;
7358 return op;
7360 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
7361 else if (RECORD_OR_UNION_TYPE_P (optype))
7363 tree field = TYPE_FIELDS (optype);
7364 for (; field; field = DECL_CHAIN (field))
7365 if (TREE_CODE (field) == FIELD_DECL
7366 && integer_zerop (byte_position (field))
7367 && (same_type_ignoring_top_level_qualifiers_p
7368 (TREE_TYPE (field), type)))
7370 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
7371 break;
7375 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
7376 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
7378 tree op00 = TREE_OPERAND (sub, 0);
7379 tree op01 = TREE_OPERAND (sub, 1);
7381 STRIP_NOPS (op00);
7382 if (TREE_CODE (op00) == ADDR_EXPR)
7384 tree op00type;
7385 op00 = TREE_OPERAND (op00, 0);
7386 op00type = TREE_TYPE (op00);
7388 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
7389 if (TREE_CODE (op00type) == VECTOR_TYPE
7390 && (same_type_ignoring_top_level_qualifiers_p
7391 (type, TREE_TYPE (op00type))))
7393 HOST_WIDE_INT offset = tree_low_cst (op01, 0);
7394 tree part_width = TYPE_SIZE (type);
7395 unsigned HOST_WIDE_INT part_widthi = tree_low_cst (part_width, 0)/BITS_PER_UNIT;
7396 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
7397 tree index = bitsize_int (indexi);
7399 if (offset/part_widthi <= TYPE_VECTOR_SUBPARTS (op00type))
7400 return fold_build3_loc (loc,
7401 BIT_FIELD_REF, type, op00,
7402 part_width, index);
7405 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
7406 else if (TREE_CODE (op00type) == COMPLEX_TYPE
7407 && (same_type_ignoring_top_level_qualifiers_p
7408 (type, TREE_TYPE (op00type))))
7410 tree size = TYPE_SIZE_UNIT (type);
7411 if (tree_int_cst_equal (size, op01))
7412 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
7414 /* ((foo *)&fooarray)[1] => fooarray[1] */
7415 else if (TREE_CODE (op00type) == ARRAY_TYPE
7416 && (same_type_ignoring_top_level_qualifiers_p
7417 (type, TREE_TYPE (op00type))))
7419 tree type_domain = TYPE_DOMAIN (op00type);
7420 tree min_val = size_zero_node;
7421 if (type_domain && TYPE_MIN_VALUE (type_domain))
7422 min_val = TYPE_MIN_VALUE (type_domain);
7423 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
7424 TYPE_SIZE_UNIT (type));
7425 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
7426 return build4_loc (loc, ARRAY_REF, type, op00, op01,
7427 NULL_TREE, NULL_TREE);
7429 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
7430 else if (RECORD_OR_UNION_TYPE_P (op00type))
7432 tree field = TYPE_FIELDS (op00type);
7433 for (; field; field = DECL_CHAIN (field))
7434 if (TREE_CODE (field) == FIELD_DECL
7435 && tree_int_cst_equal (byte_position (field), op01)
7436 && (same_type_ignoring_top_level_qualifiers_p
7437 (TREE_TYPE (field), type)))
7439 return fold_build3 (COMPONENT_REF, type, op00,
7440 field, NULL_TREE);
7441 break;
7446 /* *(foo *)fooarrptreturn> (*fooarrptr)[0] */
7447 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
7448 && (same_type_ignoring_top_level_qualifiers_p
7449 (type, TREE_TYPE (TREE_TYPE (subtype)))))
7451 tree type_domain;
7452 tree min_val = size_zero_node;
7453 sub = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
7454 if (!sub)
7455 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
7456 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
7457 if (type_domain && TYPE_MIN_VALUE (type_domain))
7458 min_val = TYPE_MIN_VALUE (type_domain);
7459 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
7460 NULL_TREE);
7463 return NULL_TREE;
7466 static tree
7467 cxx_eval_indirect_ref (const constexpr_call *call, tree t,
7468 bool allow_non_constant, bool addr,
7469 bool *non_constant_p, bool *overflow_p)
7471 tree orig_op0 = TREE_OPERAND (t, 0);
7472 tree op0 = cxx_eval_constant_expression (call, orig_op0, allow_non_constant,
7473 /*addr*/false, non_constant_p, overflow_p);
7474 bool empty_base = false;
7475 tree r;
7477 /* Don't VERIFY_CONSTANT here. */
7478 if (*non_constant_p)
7479 return t;
7481 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
7482 &empty_base);
7484 if (r)
7485 r = cxx_eval_constant_expression (call, r, allow_non_constant,
7486 addr, non_constant_p, overflow_p);
7487 else
7489 tree sub = op0;
7490 STRIP_NOPS (sub);
7491 if (TREE_CODE (sub) == POINTER_PLUS_EXPR)
7493 sub = TREE_OPERAND (sub, 0);
7494 STRIP_NOPS (sub);
7496 if (TREE_CODE (sub) == ADDR_EXPR)
7498 /* We couldn't fold to a constant value. Make sure it's not
7499 something we should have been able to fold. */
7500 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
7501 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
7502 /* DR 1188 says we don't have to deal with this. */
7503 if (!allow_non_constant)
7504 error ("accessing value of %qE through a %qT glvalue in a "
7505 "constant expression", build_fold_indirect_ref (sub),
7506 TREE_TYPE (t));
7507 *non_constant_p = true;
7508 return t;
7512 /* If we're pulling out the value of an empty base, make sure
7513 that the whole object is constant and then return an empty
7514 CONSTRUCTOR. */
7515 if (empty_base)
7517 VERIFY_CONSTANT (r);
7518 r = build_constructor (TREE_TYPE (t), NULL);
7519 TREE_CONSTANT (r) = true;
7522 if (r == NULL_TREE)
7524 if (!addr)
7525 VERIFY_CONSTANT (t);
7526 return t;
7528 return r;
7531 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
7532 Shared between potential_constant_expression and
7533 cxx_eval_constant_expression. */
7535 static void
7536 non_const_var_error (tree r)
7538 tree type = TREE_TYPE (r);
7539 error ("the value of %qD is not usable in a constant "
7540 "expression", r);
7541 /* Avoid error cascade. */
7542 if (DECL_INITIAL (r) == error_mark_node)
7543 return;
7544 if (DECL_DECLARED_CONSTEXPR_P (r))
7545 inform (DECL_SOURCE_LOCATION (r),
7546 "%qD used in its own initializer", r);
7547 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
7549 if (!CP_TYPE_CONST_P (type))
7550 inform (DECL_SOURCE_LOCATION (r),
7551 "%q#D is not const", r);
7552 else if (CP_TYPE_VOLATILE_P (type))
7553 inform (DECL_SOURCE_LOCATION (r),
7554 "%q#D is volatile", r);
7555 else if (!DECL_INITIAL (r)
7556 || !TREE_CONSTANT (DECL_INITIAL (r)))
7557 inform (DECL_SOURCE_LOCATION (r),
7558 "%qD was not initialized with a constant "
7559 "expression", r);
7560 else
7561 gcc_unreachable ();
7563 else
7565 if (cxx_dialect >= cxx0x && !DECL_DECLARED_CONSTEXPR_P (r))
7566 inform (DECL_SOURCE_LOCATION (r),
7567 "%qD was not declared %<constexpr%>", r);
7568 else
7569 inform (DECL_SOURCE_LOCATION (r),
7570 "%qD does not have integral or enumeration type",
7575 /* Evaluate VEC_PERM_EXPR (v1, v2, mask). */
7576 static tree
7577 cxx_eval_vec_perm_expr (const constexpr_call *call, tree t,
7578 bool allow_non_constant, bool addr,
7579 bool *non_constant_p, bool *overflow_p)
7581 int i;
7582 tree args[3];
7583 tree val;
7584 tree elttype = TREE_TYPE (t);
7586 for (i = 0; i < 3; i++)
7588 args[i] = cxx_eval_constant_expression (call, TREE_OPERAND (t, i),
7589 allow_non_constant, addr,
7590 non_constant_p, overflow_p);
7591 if (*non_constant_p)
7592 goto fail;
7595 gcc_assert (TREE_CODE (TREE_TYPE (args[0])) == VECTOR_TYPE);
7596 gcc_assert (TREE_CODE (TREE_TYPE (args[1])) == VECTOR_TYPE);
7597 gcc_assert (TREE_CODE (TREE_TYPE (args[2])) == VECTOR_TYPE);
7599 val = fold_ternary_loc (EXPR_LOCATION (t), VEC_PERM_EXPR, elttype,
7600 args[0], args[1], args[2]);
7601 if (val != NULL_TREE)
7602 return val;
7604 fail:
7605 return t;
7608 /* Attempt to reduce the expression T to a constant value.
7609 On failure, issue diagnostic and return error_mark_node. */
7610 /* FIXME unify with c_fully_fold */
7612 static tree
7613 cxx_eval_constant_expression (const constexpr_call *call, tree t,
7614 bool allow_non_constant, bool addr,
7615 bool *non_constant_p, bool *overflow_p)
7617 tree r = t;
7619 if (t == error_mark_node)
7621 *non_constant_p = true;
7622 return t;
7624 if (CONSTANT_CLASS_P (t))
7626 if (TREE_CODE (t) == PTRMEM_CST)
7627 t = cplus_expand_constant (t);
7628 else if (TREE_OVERFLOW (t) && (!flag_permissive || allow_non_constant))
7629 *overflow_p = true;
7630 return t;
7632 if (TREE_CODE (t) != NOP_EXPR
7633 && reduced_constant_expression_p (t))
7634 return fold (t);
7636 switch (TREE_CODE (t))
7638 case VAR_DECL:
7639 if (addr)
7640 return t;
7641 /* else fall through. */
7642 case CONST_DECL:
7643 r = integral_constant_value (t);
7644 if (TREE_CODE (r) == TARGET_EXPR
7645 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
7646 r = TARGET_EXPR_INITIAL (r);
7647 if (DECL_P (r))
7649 if (!allow_non_constant)
7650 non_const_var_error (r);
7651 *non_constant_p = true;
7653 break;
7655 case FUNCTION_DECL:
7656 case TEMPLATE_DECL:
7657 case LABEL_DECL:
7658 return t;
7660 case PARM_DECL:
7661 if (call && DECL_CONTEXT (t) == call->fundef->decl)
7663 if (DECL_ARTIFICIAL (t) && DECL_CONSTRUCTOR_P (DECL_CONTEXT (t)))
7665 if (!allow_non_constant)
7666 sorry ("use of the value of the object being constructed "
7667 "in a constant expression");
7668 *non_constant_p = true;
7670 else
7671 r = lookup_parameter_binding (call, t);
7673 else if (addr)
7674 /* Defer in case this is only used for its type. */;
7675 else
7677 if (!allow_non_constant)
7678 error ("%qE is not a constant expression", t);
7679 *non_constant_p = true;
7681 break;
7683 case CALL_EXPR:
7684 case AGGR_INIT_EXPR:
7685 r = cxx_eval_call_expression (call, t, allow_non_constant, addr,
7686 non_constant_p, overflow_p);
7687 break;
7689 case TARGET_EXPR:
7690 if (!literal_type_p (TREE_TYPE (t)))
7692 if (!allow_non_constant)
7694 error ("temporary of non-literal type %qT in a "
7695 "constant expression", TREE_TYPE (t));
7696 explain_non_literal_class (TREE_TYPE (t));
7698 *non_constant_p = true;
7699 break;
7701 /* else fall through. */
7702 case INIT_EXPR:
7703 /* Pass false for 'addr' because these codes indicate
7704 initialization of a temporary. */
7705 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7706 allow_non_constant, false,
7707 non_constant_p, overflow_p);
7708 if (!*non_constant_p)
7709 /* Adjust the type of the result to the type of the temporary. */
7710 r = adjust_temp_type (TREE_TYPE (t), r);
7711 break;
7713 case SCOPE_REF:
7714 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 1),
7715 allow_non_constant, addr,
7716 non_constant_p, overflow_p);
7717 break;
7719 case RETURN_EXPR:
7720 case NON_LVALUE_EXPR:
7721 case TRY_CATCH_EXPR:
7722 case CLEANUP_POINT_EXPR:
7723 case MUST_NOT_THROW_EXPR:
7724 case SAVE_EXPR:
7725 r = cxx_eval_constant_expression (call, TREE_OPERAND (t, 0),
7726 allow_non_constant, addr,
7727 non_constant_p, overflow_p);
7728 break;
7730 /* These differ from cxx_eval_unary_expression in that this doesn't
7731 check for a constant operand or result; an address can be
7732 constant without its operand being, and vice versa. */
7733 case INDIRECT_REF:
7734 r = cxx_eval_indirect_ref (call, t, allow_non_constant, addr,
7735 non_constant_p, overflow_p);
7736 break;
7738 case ADDR_EXPR:
7740 tree oldop = TREE_OPERAND (t, 0);
7741 tree op = cxx_eval_constant_expression (call, oldop,
7742 allow_non_constant,
7743 /*addr*/true,
7744 non_constant_p, overflow_p);
7745 /* Don't VERIFY_CONSTANT here. */
7746 if (*non_constant_p)
7747 return t;
7748 /* This function does more aggressive folding than fold itself. */
7749 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
7750 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
7751 return t;
7752 break;
7755 case REALPART_EXPR:
7756 case IMAGPART_EXPR:
7757 case CONJ_EXPR:
7758 case FIX_TRUNC_EXPR:
7759 case FLOAT_EXPR:
7760 case NEGATE_EXPR:
7761 case ABS_EXPR:
7762 case BIT_NOT_EXPR:
7763 case TRUTH_NOT_EXPR:
7764 case FIXED_CONVERT_EXPR:
7765 r = cxx_eval_unary_expression (call, t, allow_non_constant, addr,
7766 non_constant_p, overflow_p);
7767 break;
7769 case SIZEOF_EXPR:
7770 if (SIZEOF_EXPR_TYPE_P (t))
7771 r = cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t, 0)),
7772 SIZEOF_EXPR, false);
7773 else if (TYPE_P (TREE_OPERAND (t, 0)))
7774 r = cxx_sizeof_or_alignof_type (TREE_OPERAND (t, 0), SIZEOF_EXPR,
7775 false);
7776 else
7777 r = cxx_sizeof_or_alignof_expr (TREE_OPERAND (t, 0), SIZEOF_EXPR,
7778 false);
7779 if (r == error_mark_node)
7780 r = size_one_node;
7781 VERIFY_CONSTANT (r);
7782 break;
7784 case COMPOUND_EXPR:
7786 /* check_return_expr sometimes wraps a TARGET_EXPR in a
7787 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
7788 introduced by build_call_a. */
7789 tree op0 = TREE_OPERAND (t, 0);
7790 tree op1 = TREE_OPERAND (t, 1);
7791 STRIP_NOPS (op1);
7792 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
7793 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
7794 r = cxx_eval_constant_expression (call, op0, allow_non_constant,
7795 addr, non_constant_p, overflow_p);
7796 else
7798 /* Check that the LHS is constant and then discard it. */
7799 cxx_eval_constant_expression (call, op0, allow_non_constant,
7800 false, non_constant_p, overflow_p);
7801 op1 = TREE_OPERAND (t, 1);
7802 r = cxx_eval_constant_expression (call, op1, allow_non_constant,
7803 addr, non_constant_p, overflow_p);
7806 break;
7808 case POINTER_PLUS_EXPR:
7809 case PLUS_EXPR:
7810 case MINUS_EXPR:
7811 case MULT_EXPR:
7812 case TRUNC_DIV_EXPR:
7813 case CEIL_DIV_EXPR:
7814 case FLOOR_DIV_EXPR:
7815 case ROUND_DIV_EXPR:
7816 case TRUNC_MOD_EXPR:
7817 case CEIL_MOD_EXPR:
7818 case ROUND_MOD_EXPR:
7819 case RDIV_EXPR:
7820 case EXACT_DIV_EXPR:
7821 case MIN_EXPR:
7822 case MAX_EXPR:
7823 case LSHIFT_EXPR:
7824 case RSHIFT_EXPR:
7825 case LROTATE_EXPR:
7826 case RROTATE_EXPR:
7827 case BIT_IOR_EXPR:
7828 case BIT_XOR_EXPR:
7829 case BIT_AND_EXPR:
7830 case TRUTH_XOR_EXPR:
7831 case LT_EXPR:
7832 case LE_EXPR:
7833 case GT_EXPR:
7834 case GE_EXPR:
7835 case EQ_EXPR:
7836 case NE_EXPR:
7837 case UNORDERED_EXPR:
7838 case ORDERED_EXPR:
7839 case UNLT_EXPR:
7840 case UNLE_EXPR:
7841 case UNGT_EXPR:
7842 case UNGE_EXPR:
7843 case UNEQ_EXPR:
7844 case RANGE_EXPR:
7845 case COMPLEX_EXPR:
7846 r = cxx_eval_binary_expression (call, t, allow_non_constant, addr,
7847 non_constant_p, overflow_p);
7848 break;
7850 /* fold can introduce non-IF versions of these; still treat them as
7851 short-circuiting. */
7852 case TRUTH_AND_EXPR:
7853 case TRUTH_ANDIF_EXPR:
7854 r = cxx_eval_logical_expression (call, t, boolean_false_node,
7855 boolean_true_node,
7856 allow_non_constant, addr,
7857 non_constant_p, overflow_p);
7858 break;
7860 case TRUTH_OR_EXPR:
7861 case TRUTH_ORIF_EXPR:
7862 r = cxx_eval_logical_expression (call, t, boolean_true_node,
7863 boolean_false_node,
7864 allow_non_constant, addr,
7865 non_constant_p, overflow_p);
7866 break;
7868 case ARRAY_REF:
7869 r = cxx_eval_array_reference (call, t, allow_non_constant, addr,
7870 non_constant_p, overflow_p);
7871 break;
7873 case COMPONENT_REF:
7874 r = cxx_eval_component_reference (call, t, allow_non_constant, addr,
7875 non_constant_p, overflow_p);
7876 break;
7878 case BIT_FIELD_REF:
7879 r = cxx_eval_bit_field_ref (call, t, allow_non_constant, addr,
7880 non_constant_p, overflow_p);
7881 break;
7883 case COND_EXPR:
7884 case VEC_COND_EXPR:
7885 r = cxx_eval_conditional_expression (call, t, allow_non_constant, addr,
7886 non_constant_p, overflow_p);
7887 break;
7889 case CONSTRUCTOR:
7890 r = cxx_eval_bare_aggregate (call, t, allow_non_constant, addr,
7891 non_constant_p, overflow_p);
7892 break;
7894 case VEC_INIT_EXPR:
7895 /* We can get this in a defaulted constructor for a class with a
7896 non-static data member of array type. Either the initializer will
7897 be NULL, meaning default-initialization, or it will be an lvalue
7898 or xvalue of the same type, meaning direct-initialization from the
7899 corresponding member. */
7900 r = cxx_eval_vec_init (call, t, allow_non_constant, addr,
7901 non_constant_p, overflow_p);
7902 break;
7904 case VEC_PERM_EXPR:
7905 r = cxx_eval_vec_perm_expr (call, t, allow_non_constant, addr,
7906 non_constant_p, overflow_p);
7907 break;
7909 case CONVERT_EXPR:
7910 case VIEW_CONVERT_EXPR:
7911 case NOP_EXPR:
7913 tree oldop = TREE_OPERAND (t, 0);
7914 tree op = cxx_eval_constant_expression (call, oldop,
7915 allow_non_constant, addr,
7916 non_constant_p, overflow_p);
7917 if (*non_constant_p)
7918 return t;
7919 if (op == oldop)
7920 /* We didn't fold at the top so we could check for ptr-int
7921 conversion. */
7922 return fold (t);
7923 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), op);
7924 /* Conversion of an out-of-range value has implementation-defined
7925 behavior; the language considers it different from arithmetic
7926 overflow, which is undefined. */
7927 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
7928 TREE_OVERFLOW (r) = false;
7930 break;
7932 case EMPTY_CLASS_EXPR:
7933 /* This is good enough for a function argument that might not get
7934 used, and they can't do anything with it, so just return it. */
7935 return t;
7937 case LAMBDA_EXPR:
7938 case PREINCREMENT_EXPR:
7939 case POSTINCREMENT_EXPR:
7940 case PREDECREMENT_EXPR:
7941 case POSTDECREMENT_EXPR:
7942 case NEW_EXPR:
7943 case VEC_NEW_EXPR:
7944 case DELETE_EXPR:
7945 case VEC_DELETE_EXPR:
7946 case THROW_EXPR:
7947 case MODIFY_EXPR:
7948 case MODOP_EXPR:
7949 /* GCC internal stuff. */
7950 case VA_ARG_EXPR:
7951 case OBJ_TYPE_REF:
7952 case WITH_CLEANUP_EXPR:
7953 case STATEMENT_LIST:
7954 case BIND_EXPR:
7955 case NON_DEPENDENT_EXPR:
7956 case BASELINK:
7957 case EXPR_STMT:
7958 case OFFSET_REF:
7959 if (!allow_non_constant)
7960 error_at (EXPR_LOC_OR_HERE (t),
7961 "expression %qE is not a constant-expression", t);
7962 *non_constant_p = true;
7963 break;
7965 default:
7966 internal_error ("unexpected expression %qE of kind %s", t,
7967 tree_code_name[TREE_CODE (t)]);
7968 *non_constant_p = true;
7969 break;
7972 if (r == error_mark_node)
7973 *non_constant_p = true;
7975 if (*non_constant_p)
7976 return t;
7977 else
7978 return r;
7981 static tree
7982 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant)
7984 bool non_constant_p = false;
7985 bool overflow_p = false;
7986 tree r = cxx_eval_constant_expression (NULL, t, allow_non_constant,
7987 false, &non_constant_p, &overflow_p);
7989 verify_constant (r, allow_non_constant, &non_constant_p, &overflow_p);
7991 if (TREE_CODE (t) != CONSTRUCTOR
7992 && cp_has_mutable_p (TREE_TYPE (t)))
7994 /* We allow a mutable type if the original expression was a
7995 CONSTRUCTOR so that we can do aggregate initialization of
7996 constexpr variables. */
7997 if (!allow_non_constant)
7998 error ("%qT cannot be the type of a complete constant expression "
7999 "because it has mutable sub-objects", TREE_TYPE (t));
8000 non_constant_p = true;
8003 /* Technically we should check this for all subexpressions, but that
8004 runs into problems with our internal representation of pointer
8005 subtraction and the 5.19 rules are still in flux. */
8006 if (CONVERT_EXPR_CODE_P (TREE_CODE (r))
8007 && ARITHMETIC_TYPE_P (TREE_TYPE (r))
8008 && TREE_CODE (TREE_OPERAND (r, 0)) == ADDR_EXPR)
8010 if (!allow_non_constant)
8011 error ("conversion from pointer type %qT "
8012 "to arithmetic type %qT in a constant-expression",
8013 TREE_TYPE (TREE_OPERAND (r, 0)), TREE_TYPE (r));
8014 non_constant_p = true;
8017 if (!non_constant_p && overflow_p)
8018 non_constant_p = true;
8020 if (non_constant_p && !allow_non_constant)
8021 return error_mark_node;
8022 else if (non_constant_p && TREE_CONSTANT (r))
8024 /* This isn't actually constant, so unset TREE_CONSTANT. */
8025 if (EXPR_P (r))
8026 r = copy_node (r);
8027 else if (TREE_CODE (r) == CONSTRUCTOR)
8028 r = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (r), r);
8029 else
8030 r = build_nop (TREE_TYPE (r), r);
8031 TREE_CONSTANT (r) = false;
8033 else if (non_constant_p || r == t)
8034 return t;
8036 if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
8038 if (TREE_CODE (t) == TARGET_EXPR
8039 && TARGET_EXPR_INITIAL (t) == r)
8040 return t;
8041 else
8043 r = get_target_expr (r);
8044 TREE_CONSTANT (r) = true;
8045 return r;
8048 else
8049 return r;
8052 /* Returns true if T is a valid subexpression of a constant expression,
8053 even if it isn't itself a constant expression. */
8055 bool
8056 is_sub_constant_expr (tree t)
8058 bool non_constant_p = false;
8059 bool overflow_p = false;
8060 cxx_eval_constant_expression (NULL, t, true, false, &non_constant_p,
8061 &overflow_p);
8062 return !non_constant_p && !overflow_p;
8065 /* If T represents a constant expression returns its reduced value.
8066 Otherwise return error_mark_node. If T is dependent, then
8067 return NULL. */
8069 tree
8070 cxx_constant_value (tree t)
8072 return cxx_eval_outermost_constant_expr (t, false);
8075 /* If T is a constant expression, returns its reduced value.
8076 Otherwise, if T does not have TREE_CONSTANT set, returns T.
8077 Otherwise, returns a version of T without TREE_CONSTANT. */
8079 tree
8080 maybe_constant_value (tree t)
8082 tree r;
8084 if (type_dependent_expression_p (t)
8085 || type_unknown_p (t)
8086 || BRACE_ENCLOSED_INITIALIZER_P (t)
8087 || !potential_constant_expression (t)
8088 || value_dependent_expression_p (t))
8090 if (TREE_OVERFLOW_P (t))
8092 t = build_nop (TREE_TYPE (t), t);
8093 TREE_CONSTANT (t) = false;
8095 return t;
8098 r = cxx_eval_outermost_constant_expr (t, true);
8099 #ifdef ENABLE_CHECKING
8100 /* cp_tree_equal looks through NOPs, so allow them. */
8101 gcc_assert (r == t
8102 || CONVERT_EXPR_P (t)
8103 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
8104 || !cp_tree_equal (r, t));
8105 #endif
8106 return r;
8109 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
8110 than wrapped in a TARGET_EXPR. */
8112 tree
8113 maybe_constant_init (tree t)
8115 t = maybe_constant_value (t);
8116 if (TREE_CODE (t) == TARGET_EXPR)
8118 tree init = TARGET_EXPR_INITIAL (t);
8119 if (TREE_CODE (init) == CONSTRUCTOR)
8120 t = init;
8122 return t;
8125 #if 0
8126 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
8127 /* Return true if the object referred to by REF has automatic or thread
8128 local storage. */
8130 enum { ck_ok, ck_bad, ck_unknown };
8131 static int
8132 check_automatic_or_tls (tree ref)
8134 enum machine_mode mode;
8135 HOST_WIDE_INT bitsize, bitpos;
8136 tree offset;
8137 int volatilep = 0, unsignedp = 0;
8138 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
8139 &mode, &unsignedp, &volatilep, false);
8140 duration_kind dk;
8142 /* If there isn't a decl in the middle, we don't know the linkage here,
8143 and this isn't a constant expression anyway. */
8144 if (!DECL_P (decl))
8145 return ck_unknown;
8146 dk = decl_storage_duration (decl);
8147 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
8149 #endif
8151 /* Return true if T denotes a potentially constant expression. Issue
8152 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
8153 an lvalue-rvalue conversion is implied.
8155 C++0x [expr.const] used to say
8157 6 An expression is a potential constant expression if it is
8158 a constant expression where all occurences of function
8159 parameters are replaced by arbitrary constant expressions
8160 of the appropriate type.
8162 2 A conditional expression is a constant expression unless it
8163 involves one of the following as a potentially evaluated
8164 subexpression (3.2), but subexpressions of logical AND (5.14),
8165 logical OR (5.15), and conditional (5.16) operations that are
8166 not evaluated are not considered. */
8168 static bool
8169 potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
8171 enum { any = false, rval = true };
8172 int i;
8173 tree tmp;
8175 if (t == error_mark_node)
8176 return false;
8177 if (t == NULL_TREE)
8178 return true;
8179 if (TREE_THIS_VOLATILE (t))
8181 if (flags & tf_error)
8182 error ("expression %qE has side-effects", t);
8183 return false;
8185 if (CONSTANT_CLASS_P (t))
8186 return true;
8188 switch (TREE_CODE (t))
8190 case FUNCTION_DECL:
8191 case BASELINK:
8192 case TEMPLATE_DECL:
8193 case OVERLOAD:
8194 case TEMPLATE_ID_EXPR:
8195 case LABEL_DECL:
8196 case CONST_DECL:
8197 case SIZEOF_EXPR:
8198 case ALIGNOF_EXPR:
8199 case OFFSETOF_EXPR:
8200 case NOEXCEPT_EXPR:
8201 case TEMPLATE_PARM_INDEX:
8202 case TRAIT_EXPR:
8203 case IDENTIFIER_NODE:
8204 case USERDEF_LITERAL:
8205 /* We can see a FIELD_DECL in a pointer-to-member expression. */
8206 case FIELD_DECL:
8207 case PARM_DECL:
8208 case USING_DECL:
8209 return true;
8211 case AGGR_INIT_EXPR:
8212 case CALL_EXPR:
8213 /* -- an invocation of a function other than a constexpr function
8214 or a constexpr constructor. */
8216 tree fun = get_function_named_in_call (t);
8217 const int nargs = call_expr_nargs (t);
8218 i = 0;
8220 if (is_overloaded_fn (fun))
8222 if (TREE_CODE (fun) == FUNCTION_DECL)
8224 if (builtin_valid_in_constant_expr_p (fun))
8225 return true;
8226 if (!DECL_DECLARED_CONSTEXPR_P (fun)
8227 /* Allow any built-in function; if the expansion
8228 isn't constant, we'll deal with that then. */
8229 && !is_builtin_fn (fun))
8231 if (flags & tf_error)
8233 error_at (EXPR_LOC_OR_HERE (t),
8234 "call to non-constexpr function %qD", fun);
8235 explain_invalid_constexpr_fn (fun);
8237 return false;
8239 /* A call to a non-static member function takes the address
8240 of the object as the first argument. But in a constant
8241 expression the address will be folded away, so look
8242 through it now. */
8243 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
8244 && !DECL_CONSTRUCTOR_P (fun))
8246 tree x = get_nth_callarg (t, 0);
8247 if (is_this_parameter (x))
8249 if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
8251 if (flags & tf_error)
8252 sorry ("calling a member function of the "
8253 "object being constructed in a constant "
8254 "expression");
8255 return false;
8257 /* Otherwise OK. */;
8259 else if (!potential_constant_expression_1 (x, rval, flags))
8260 return false;
8261 i = 1;
8264 else
8265 fun = get_first_fn (fun);
8266 /* Skip initial arguments to base constructors. */
8267 if (DECL_BASE_CONSTRUCTOR_P (fun))
8268 i = num_artificial_parms_for (fun);
8269 fun = DECL_ORIGIN (fun);
8271 else
8273 if (potential_constant_expression_1 (fun, rval, flags))
8274 /* Might end up being a constant function pointer. */;
8275 else
8276 return false;
8278 for (; i < nargs; ++i)
8280 tree x = get_nth_callarg (t, i);
8281 if (!potential_constant_expression_1 (x, rval, flags))
8282 return false;
8284 return true;
8287 case NON_LVALUE_EXPR:
8288 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
8289 -- an lvalue of integral type that refers to a non-volatile
8290 const variable or static data member initialized with
8291 constant expressions, or
8293 -- an lvalue of literal type that refers to non-volatile
8294 object defined with constexpr, or that refers to a
8295 sub-object of such an object; */
8296 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval, flags);
8298 case VAR_DECL:
8299 if (want_rval && !decl_constant_var_p (t)
8300 && !dependent_type_p (TREE_TYPE (t)))
8302 if (flags & tf_error)
8303 non_const_var_error (t);
8304 return false;
8306 return true;
8308 case NOP_EXPR:
8309 case CONVERT_EXPR:
8310 case VIEW_CONVERT_EXPR:
8311 /* -- a reinterpret_cast. FIXME not implemented, and this rule
8312 may change to something more specific to type-punning (DR 1312). */
8314 tree from = TREE_OPERAND (t, 0);
8315 return (potential_constant_expression_1
8316 (from, TREE_CODE (t) != VIEW_CONVERT_EXPR, flags));
8319 case ADDR_EXPR:
8320 /* -- a unary operator & that is applied to an lvalue that
8321 designates an object with thread or automatic storage
8322 duration; */
8323 t = TREE_OPERAND (t, 0);
8324 #if 0
8325 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
8326 any checking here, as we might dereference the pointer later. If
8327 we remove this code, also remove check_automatic_or_tls. */
8328 i = check_automatic_or_tls (t);
8329 if (i == ck_ok)
8330 return true;
8331 if (i == ck_bad)
8333 if (flags & tf_error)
8334 error ("address-of an object %qE with thread local or "
8335 "automatic storage is not a constant expression", t);
8336 return false;
8338 #endif
8339 return potential_constant_expression_1 (t, any, flags);
8341 case COMPONENT_REF:
8342 case BIT_FIELD_REF:
8343 case ARROW_EXPR:
8344 case OFFSET_REF:
8345 /* -- a class member access unless its postfix-expression is
8346 of literal type or of pointer to literal type. */
8347 /* This test would be redundant, as it follows from the
8348 postfix-expression being a potential constant expression. */
8349 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8350 want_rval, flags);
8352 case EXPR_PACK_EXPANSION:
8353 return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t),
8354 want_rval, flags);
8356 case INDIRECT_REF:
8358 tree x = TREE_OPERAND (t, 0);
8359 STRIP_NOPS (x);
8360 if (is_this_parameter (x))
8362 if (want_rval && DECL_CONTEXT (x)
8363 && DECL_CONSTRUCTOR_P (DECL_CONTEXT (x)))
8365 if (flags & tf_error)
8366 sorry ("use of the value of the object being constructed "
8367 "in a constant expression");
8368 return false;
8370 return true;
8372 return potential_constant_expression_1 (x, rval, flags);
8375 case LAMBDA_EXPR:
8376 case DYNAMIC_CAST_EXPR:
8377 case PSEUDO_DTOR_EXPR:
8378 case PREINCREMENT_EXPR:
8379 case POSTINCREMENT_EXPR:
8380 case PREDECREMENT_EXPR:
8381 case POSTDECREMENT_EXPR:
8382 case NEW_EXPR:
8383 case VEC_NEW_EXPR:
8384 case DELETE_EXPR:
8385 case VEC_DELETE_EXPR:
8386 case THROW_EXPR:
8387 case MODIFY_EXPR:
8388 case MODOP_EXPR:
8389 /* GCC internal stuff. */
8390 case VA_ARG_EXPR:
8391 case OBJ_TYPE_REF:
8392 case WITH_CLEANUP_EXPR:
8393 case CLEANUP_POINT_EXPR:
8394 case MUST_NOT_THROW_EXPR:
8395 case TRY_CATCH_EXPR:
8396 case STATEMENT_LIST:
8397 /* Don't bother trying to define a subset of statement-expressions to
8398 be constant-expressions, at least for now. */
8399 case STMT_EXPR:
8400 case EXPR_STMT:
8401 case BIND_EXPR:
8402 case TRANSACTION_EXPR:
8403 case IF_STMT:
8404 case DO_STMT:
8405 case FOR_STMT:
8406 case WHILE_STMT:
8407 if (flags & tf_error)
8408 error ("expression %qE is not a constant-expression", t);
8409 return false;
8411 case TYPEID_EXPR:
8412 /* -- a typeid expression whose operand is of polymorphic
8413 class type; */
8415 tree e = TREE_OPERAND (t, 0);
8416 if (!TYPE_P (e) && !type_dependent_expression_p (e)
8417 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
8419 if (flags & tf_error)
8420 error ("typeid-expression is not a constant expression "
8421 "because %qE is of polymorphic type", e);
8422 return false;
8424 return true;
8427 case MINUS_EXPR:
8428 /* -- a subtraction where both operands are pointers. */
8429 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8430 && TYPE_PTR_P (TREE_OPERAND (t, 1)))
8432 if (flags & tf_error)
8433 error ("difference of two pointer expressions is not "
8434 "a constant expression");
8435 return false;
8437 want_rval = true;
8438 goto binary;
8440 case LT_EXPR:
8441 case LE_EXPR:
8442 case GT_EXPR:
8443 case GE_EXPR:
8444 case EQ_EXPR:
8445 case NE_EXPR:
8446 /* -- a relational or equality operator where at least
8447 one of the operands is a pointer. */
8448 if (TYPE_PTR_P (TREE_OPERAND (t, 0))
8449 || TYPE_PTR_P (TREE_OPERAND (t, 1)))
8451 if (flags & tf_error)
8452 error ("pointer comparison expression is not a "
8453 "constant expression");
8454 return false;
8456 want_rval = true;
8457 goto binary;
8459 case BIT_NOT_EXPR:
8460 /* A destructor. */
8461 if (TYPE_P (TREE_OPERAND (t, 0)))
8462 return true;
8463 /* else fall through. */
8465 case REALPART_EXPR:
8466 case IMAGPART_EXPR:
8467 case CONJ_EXPR:
8468 case SAVE_EXPR:
8469 case FIX_TRUNC_EXPR:
8470 case FLOAT_EXPR:
8471 case NEGATE_EXPR:
8472 case ABS_EXPR:
8473 case TRUTH_NOT_EXPR:
8474 case FIXED_CONVERT_EXPR:
8475 case UNARY_PLUS_EXPR:
8476 return potential_constant_expression_1 (TREE_OPERAND (t, 0), rval,
8477 flags);
8479 case CAST_EXPR:
8480 case CONST_CAST_EXPR:
8481 case STATIC_CAST_EXPR:
8482 case REINTERPRET_CAST_EXPR:
8483 case IMPLICIT_CONV_EXPR:
8484 return (potential_constant_expression_1
8485 (TREE_OPERAND (t, 0),
8486 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE, flags));
8488 case PAREN_EXPR:
8489 case NON_DEPENDENT_EXPR:
8490 /* For convenience. */
8491 case RETURN_EXPR:
8492 return potential_constant_expression_1 (TREE_OPERAND (t, 0),
8493 want_rval, flags);
8495 case SCOPE_REF:
8496 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8497 want_rval, flags);
8499 case TARGET_EXPR:
8500 if (!literal_type_p (TREE_TYPE (t)))
8502 if (flags & tf_error)
8504 error ("temporary of non-literal type %qT in a "
8505 "constant expression", TREE_TYPE (t));
8506 explain_non_literal_class (TREE_TYPE (t));
8508 return false;
8510 case INIT_EXPR:
8511 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8512 rval, flags);
8514 case CONSTRUCTOR:
8516 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
8517 constructor_elt *ce;
8518 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
8519 if (!potential_constant_expression_1 (ce->value, want_rval, flags))
8520 return false;
8521 return true;
8524 case TREE_LIST:
8526 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
8527 || DECL_P (TREE_PURPOSE (t)));
8528 if (!potential_constant_expression_1 (TREE_VALUE (t), want_rval,
8529 flags))
8530 return false;
8531 if (TREE_CHAIN (t) == NULL_TREE)
8532 return true;
8533 return potential_constant_expression_1 (TREE_CHAIN (t), want_rval,
8534 flags);
8537 case TRUNC_DIV_EXPR:
8538 case CEIL_DIV_EXPR:
8539 case FLOOR_DIV_EXPR:
8540 case ROUND_DIV_EXPR:
8541 case TRUNC_MOD_EXPR:
8542 case CEIL_MOD_EXPR:
8543 case ROUND_MOD_EXPR:
8545 tree denom = TREE_OPERAND (t, 1);
8546 /* We can't call maybe_constant_value on an expression
8547 that hasn't been through fold_non_dependent_expr yet. */
8548 if (!processing_template_decl)
8549 denom = maybe_constant_value (denom);
8550 if (integer_zerop (denom))
8552 if (flags & tf_error)
8553 error ("division by zero is not a constant-expression");
8554 return false;
8556 else
8558 want_rval = true;
8559 goto binary;
8563 case COMPOUND_EXPR:
8565 /* check_return_expr sometimes wraps a TARGET_EXPR in a
8566 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
8567 introduced by build_call_a. */
8568 tree op0 = TREE_OPERAND (t, 0);
8569 tree op1 = TREE_OPERAND (t, 1);
8570 STRIP_NOPS (op1);
8571 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
8572 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
8573 return potential_constant_expression_1 (op0, want_rval, flags);
8574 else
8575 goto binary;
8578 /* If the first operand is the non-short-circuit constant, look at
8579 the second operand; otherwise we only care about the first one for
8580 potentiality. */
8581 case TRUTH_AND_EXPR:
8582 case TRUTH_ANDIF_EXPR:
8583 tmp = boolean_true_node;
8584 goto truth;
8585 case TRUTH_OR_EXPR:
8586 case TRUTH_ORIF_EXPR:
8587 tmp = boolean_false_node;
8588 truth:
8590 tree op = TREE_OPERAND (t, 0);
8591 if (!potential_constant_expression_1 (op, rval, flags))
8592 return false;
8593 if (!processing_template_decl)
8594 op = maybe_constant_value (op);
8595 if (tree_int_cst_equal (op, tmp))
8596 return potential_constant_expression_1 (TREE_OPERAND (t, 1), rval, flags);
8597 else
8598 return true;
8601 case PLUS_EXPR:
8602 case MULT_EXPR:
8603 case POINTER_PLUS_EXPR:
8604 case RDIV_EXPR:
8605 case EXACT_DIV_EXPR:
8606 case MIN_EXPR:
8607 case MAX_EXPR:
8608 case LSHIFT_EXPR:
8609 case RSHIFT_EXPR:
8610 case LROTATE_EXPR:
8611 case RROTATE_EXPR:
8612 case BIT_IOR_EXPR:
8613 case BIT_XOR_EXPR:
8614 case BIT_AND_EXPR:
8615 case TRUTH_XOR_EXPR:
8616 case UNORDERED_EXPR:
8617 case ORDERED_EXPR:
8618 case UNLT_EXPR:
8619 case UNLE_EXPR:
8620 case UNGT_EXPR:
8621 case UNGE_EXPR:
8622 case UNEQ_EXPR:
8623 case LTGT_EXPR:
8624 case RANGE_EXPR:
8625 case COMPLEX_EXPR:
8626 want_rval = true;
8627 /* Fall through. */
8628 case ARRAY_REF:
8629 case ARRAY_RANGE_REF:
8630 case MEMBER_REF:
8631 case DOTSTAR_EXPR:
8632 binary:
8633 for (i = 0; i < 2; ++i)
8634 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8635 want_rval, flags))
8636 return false;
8637 return true;
8639 case FMA_EXPR:
8640 case VEC_PERM_EXPR:
8641 for (i = 0; i < 3; ++i)
8642 if (!potential_constant_expression_1 (TREE_OPERAND (t, i),
8643 true, flags))
8644 return false;
8645 return true;
8647 case COND_EXPR:
8648 case VEC_COND_EXPR:
8649 /* If the condition is a known constant, we know which of the legs we
8650 care about; otherwise we only require that the condition and
8651 either of the legs be potentially constant. */
8652 tmp = TREE_OPERAND (t, 0);
8653 if (!potential_constant_expression_1 (tmp, rval, flags))
8654 return false;
8655 if (!processing_template_decl)
8656 tmp = maybe_constant_value (tmp);
8657 if (integer_zerop (tmp))
8658 return potential_constant_expression_1 (TREE_OPERAND (t, 2),
8659 want_rval, flags);
8660 else if (TREE_CODE (tmp) == INTEGER_CST)
8661 return potential_constant_expression_1 (TREE_OPERAND (t, 1),
8662 want_rval, flags);
8663 for (i = 1; i < 3; ++i)
8664 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
8665 want_rval, tf_none))
8666 return true;
8667 if (flags & tf_error)
8668 error ("expression %qE is not a constant-expression", t);
8669 return false;
8671 case VEC_INIT_EXPR:
8672 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
8673 return true;
8674 if (flags & tf_error)
8676 error ("non-constant array initialization");
8677 diagnose_non_constexpr_vec_init (t);
8679 return false;
8681 default:
8682 if (objc_is_property_ref (t))
8683 return false;
8685 sorry ("unexpected AST of kind %s", tree_code_name[TREE_CODE (t)]);
8686 gcc_unreachable();
8687 return false;
8691 /* The main entry point to the above. */
8693 bool
8694 potential_constant_expression (tree t)
8696 return potential_constant_expression_1 (t, false, tf_none);
8699 /* As above, but require a constant rvalue. */
8701 bool
8702 potential_rvalue_constant_expression (tree t)
8704 return potential_constant_expression_1 (t, true, tf_none);
8707 /* Like above, but complain about non-constant expressions. */
8709 bool
8710 require_potential_constant_expression (tree t)
8712 return potential_constant_expression_1 (t, false, tf_warning_or_error);
8715 /* Cross product of the above. */
8717 bool
8718 require_potential_rvalue_constant_expression (tree t)
8720 return potential_constant_expression_1 (t, true, tf_warning_or_error);
8723 /* Constructor for a lambda expression. */
8725 tree
8726 build_lambda_expr (void)
8728 tree lambda = make_node (LAMBDA_EXPR);
8729 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) = CPLD_NONE;
8730 LAMBDA_EXPR_CAPTURE_LIST (lambda) = NULL_TREE;
8731 LAMBDA_EXPR_THIS_CAPTURE (lambda) = NULL_TREE;
8732 LAMBDA_EXPR_PENDING_PROXIES (lambda) = NULL;
8733 LAMBDA_EXPR_RETURN_TYPE (lambda) = NULL_TREE;
8734 LAMBDA_EXPR_MUTABLE_P (lambda) = false;
8735 return lambda;
8738 /* Create the closure object for a LAMBDA_EXPR. */
8740 tree
8741 build_lambda_object (tree lambda_expr)
8743 /* Build aggregate constructor call.
8744 - cp_parser_braced_list
8745 - cp_parser_functional_cast */
8746 vec<constructor_elt, va_gc> *elts = NULL;
8747 tree node, expr, type;
8748 location_t saved_loc;
8750 if (processing_template_decl)
8751 return lambda_expr;
8753 /* Make sure any error messages refer to the lambda-introducer. */
8754 saved_loc = input_location;
8755 input_location = LAMBDA_EXPR_LOCATION (lambda_expr);
8757 for (node = LAMBDA_EXPR_CAPTURE_LIST (lambda_expr);
8758 node;
8759 node = TREE_CHAIN (node))
8761 tree field = TREE_PURPOSE (node);
8762 tree val = TREE_VALUE (node);
8764 if (field == error_mark_node)
8766 expr = error_mark_node;
8767 goto out;
8770 if (DECL_P (val))
8771 mark_used (val);
8773 /* Mere mortals can't copy arrays with aggregate initialization, so
8774 do some magic to make it work here. */
8775 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE)
8776 val = build_array_copy (val);
8777 else if (DECL_NORMAL_CAPTURE_P (field)
8778 && TREE_CODE (TREE_TYPE (field)) != REFERENCE_TYPE)
8780 /* "the entities that are captured by copy are used to
8781 direct-initialize each corresponding non-static data
8782 member of the resulting closure object."
8784 There's normally no way to express direct-initialization
8785 from an element of a CONSTRUCTOR, so we build up a special
8786 TARGET_EXPR to bypass the usual copy-initialization. */
8787 val = force_rvalue (val, tf_warning_or_error);
8788 if (TREE_CODE (val) == TARGET_EXPR)
8789 TARGET_EXPR_DIRECT_INIT_P (val) = true;
8792 CONSTRUCTOR_APPEND_ELT (elts, DECL_NAME (field), val);
8795 expr = build_constructor (init_list_type_node, elts);
8796 CONSTRUCTOR_IS_DIRECT_INIT (expr) = 1;
8798 /* N2927: "[The closure] class type is not an aggregate."
8799 But we briefly treat it as an aggregate to make this simpler. */
8800 type = LAMBDA_EXPR_CLOSURE (lambda_expr);
8801 CLASSTYPE_NON_AGGREGATE (type) = 0;
8802 expr = finish_compound_literal (type, expr, tf_warning_or_error);
8803 CLASSTYPE_NON_AGGREGATE (type) = 1;
8805 out:
8806 input_location = saved_loc;
8807 return expr;
8810 /* Return an initialized RECORD_TYPE for LAMBDA.
8811 LAMBDA must have its explicit captures already. */
8813 tree
8814 begin_lambda_type (tree lambda)
8816 tree type;
8819 /* Unique name. This is just like an unnamed class, but we cannot use
8820 make_anon_name because of certain checks against TYPE_ANONYMOUS_P. */
8821 tree name;
8822 name = make_lambda_name ();
8824 /* Create the new RECORD_TYPE for this lambda. */
8825 type = xref_tag (/*tag_code=*/record_type,
8826 name,
8827 /*scope=*/ts_within_enclosing_non_class,
8828 /*template_header_p=*/false);
8831 /* Designate it as a struct so that we can use aggregate initialization. */
8832 CLASSTYPE_DECLARED_CLASS (type) = false;
8834 /* Cross-reference the expression and the type. */
8835 LAMBDA_EXPR_CLOSURE (lambda) = type;
8836 CLASSTYPE_LAMBDA_EXPR (type) = lambda;
8838 /* Clear base types. */
8839 xref_basetypes (type, /*bases=*/NULL_TREE);
8841 /* Start the class. */
8842 type = begin_class_definition (type);
8843 if (type == error_mark_node)
8844 return error_mark_node;
8846 return type;
8849 /* Returns the type to use for the return type of the operator() of a
8850 closure class. */
8852 tree
8853 lambda_return_type (tree expr)
8855 if (expr == NULL_TREE)
8856 return void_type_node;
8857 if (type_unknown_p (expr)
8858 || BRACE_ENCLOSED_INITIALIZER_P (expr))
8860 cxx_incomplete_type_error (expr, TREE_TYPE (expr));
8861 return void_type_node;
8863 gcc_checking_assert (!type_dependent_expression_p (expr));
8864 return cv_unqualified (type_decays_to (unlowered_expr_type (expr)));
8867 /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
8868 closure type. */
8870 tree
8871 lambda_function (tree lambda)
8873 tree type;
8874 if (TREE_CODE (lambda) == LAMBDA_EXPR)
8875 type = LAMBDA_EXPR_CLOSURE (lambda);
8876 else
8877 type = lambda;
8878 gcc_assert (LAMBDA_TYPE_P (type));
8879 /* Don't let debug_tree cause instantiation. */
8880 if (CLASSTYPE_TEMPLATE_INSTANTIATION (type)
8881 && !COMPLETE_OR_OPEN_TYPE_P (type))
8882 return NULL_TREE;
8883 lambda = lookup_member (type, ansi_opname (CALL_EXPR),
8884 /*protect=*/0, /*want_type=*/false,
8885 tf_warning_or_error);
8886 if (lambda)
8887 lambda = BASELINK_FUNCTIONS (lambda);
8888 return lambda;
8891 /* Returns the type to use for the FIELD_DECL corresponding to the
8892 capture of EXPR.
8893 The caller should add REFERENCE_TYPE for capture by reference. */
8895 tree
8896 lambda_capture_field_type (tree expr)
8898 tree type;
8899 if (type_dependent_expression_p (expr))
8901 type = cxx_make_type (DECLTYPE_TYPE);
8902 DECLTYPE_TYPE_EXPR (type) = expr;
8903 DECLTYPE_FOR_LAMBDA_CAPTURE (type) = true;
8904 SET_TYPE_STRUCTURAL_EQUALITY (type);
8906 else
8907 type = non_reference (unlowered_expr_type (expr));
8908 return type;
8911 /* Insert the deduced return type for an auto function. */
8913 void
8914 apply_deduced_return_type (tree fco, tree return_type)
8916 tree result;
8918 if (return_type == error_mark_node)
8919 return;
8921 if (LAMBDA_FUNCTION_P (fco))
8923 tree lambda = CLASSTYPE_LAMBDA_EXPR (current_class_type);
8924 LAMBDA_EXPR_RETURN_TYPE (lambda) = return_type;
8927 if (DECL_CONV_FN_P (fco))
8928 DECL_NAME (fco) = mangle_conv_op_name_for_type (return_type);
8930 TREE_TYPE (fco) = change_return_type (return_type, TREE_TYPE (fco));
8932 result = DECL_RESULT (fco);
8933 if (result == NULL_TREE)
8934 return;
8935 if (TREE_TYPE (result) == return_type)
8936 return;
8938 /* We already have a DECL_RESULT from start_preparsed_function.
8939 Now we need to redo the work it and allocate_struct_function
8940 did to reflect the new type. */
8941 gcc_assert (current_function_decl == fco);
8942 result = build_decl (input_location, RESULT_DECL, NULL_TREE,
8943 TYPE_MAIN_VARIANT (return_type));
8944 DECL_ARTIFICIAL (result) = 1;
8945 DECL_IGNORED_P (result) = 1;
8946 cp_apply_type_quals_to_decl (cp_type_quals (return_type),
8947 result);
8949 DECL_RESULT (fco) = result;
8951 if (!processing_template_decl)
8953 bool aggr = aggregate_value_p (result, fco);
8954 #ifdef PCC_STATIC_STRUCT_RETURN
8955 cfun->returns_pcc_struct = aggr;
8956 #endif
8957 cfun->returns_struct = aggr;
8962 /* DECL is a local variable or parameter from the surrounding scope of a
8963 lambda-expression. Returns the decltype for a use of the capture field
8964 for DECL even if it hasn't been captured yet. */
8966 static tree
8967 capture_decltype (tree decl)
8969 tree lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
8970 /* FIXME do lookup instead of list walk? */
8971 tree cap = value_member (decl, LAMBDA_EXPR_CAPTURE_LIST (lam));
8972 tree type;
8974 if (cap)
8975 type = TREE_TYPE (TREE_PURPOSE (cap));
8976 else
8977 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam))
8979 case CPLD_NONE:
8980 error ("%qD is not captured", decl);
8981 return error_mark_node;
8983 case CPLD_COPY:
8984 type = TREE_TYPE (decl);
8985 if (TREE_CODE (type) == REFERENCE_TYPE
8986 && TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE)
8987 type = TREE_TYPE (type);
8988 break;
8990 case CPLD_REFERENCE:
8991 type = TREE_TYPE (decl);
8992 if (TREE_CODE (type) != REFERENCE_TYPE)
8993 type = build_reference_type (TREE_TYPE (decl));
8994 break;
8996 default:
8997 gcc_unreachable ();
9000 if (TREE_CODE (type) != REFERENCE_TYPE)
9002 if (!LAMBDA_EXPR_MUTABLE_P (lam))
9003 type = cp_build_qualified_type (type, (cp_type_quals (type)
9004 |TYPE_QUAL_CONST));
9005 type = build_reference_type (type);
9007 return type;
9010 /* Returns true iff DECL is a lambda capture proxy variable created by
9011 build_capture_proxy. */
9013 bool
9014 is_capture_proxy (tree decl)
9016 return (TREE_CODE (decl) == VAR_DECL
9017 && DECL_HAS_VALUE_EXPR_P (decl)
9018 && !DECL_ANON_UNION_VAR_P (decl)
9019 && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl)));
9022 /* Returns true iff DECL is a capture proxy for a normal capture
9023 (i.e. without explicit initializer). */
9025 bool
9026 is_normal_capture_proxy (tree decl)
9028 if (!is_capture_proxy (decl))
9029 /* It's not a capture proxy. */
9030 return false;
9032 /* It is a capture proxy, is it a normal capture? */
9033 tree val = DECL_VALUE_EXPR (decl);
9034 if (val == error_mark_node)
9035 return true;
9037 gcc_assert (TREE_CODE (val) == COMPONENT_REF);
9038 val = TREE_OPERAND (val, 1);
9039 return DECL_NORMAL_CAPTURE_P (val);
9042 /* VAR is a capture proxy created by build_capture_proxy; add it to the
9043 current function, which is the operator() for the appropriate lambda. */
9045 void
9046 insert_capture_proxy (tree var)
9048 cp_binding_level *b;
9049 int skip;
9050 tree stmt_list;
9052 /* Put the capture proxy in the extra body block so that it won't clash
9053 with a later local variable. */
9054 b = current_binding_level;
9055 for (skip = 0; ; ++skip)
9057 cp_binding_level *n = b->level_chain;
9058 if (n->kind == sk_function_parms)
9059 break;
9060 b = n;
9062 pushdecl_with_scope (var, b, false);
9064 /* And put a DECL_EXPR in the STATEMENT_LIST for the same block. */
9065 var = build_stmt (DECL_SOURCE_LOCATION (var), DECL_EXPR, var);
9066 stmt_list = (*stmt_list_stack)[stmt_list_stack->length () - 1 - skip];
9067 gcc_assert (stmt_list);
9068 append_to_statement_list_force (var, &stmt_list);
9071 /* We've just finished processing a lambda; if the containing scope is also
9072 a lambda, insert any capture proxies that were created while processing
9073 the nested lambda. */
9075 void
9076 insert_pending_capture_proxies (void)
9078 tree lam;
9079 vec<tree, va_gc> *proxies;
9080 unsigned i;
9082 if (!current_function_decl || !LAMBDA_FUNCTION_P (current_function_decl))
9083 return;
9085 lam = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl));
9086 proxies = LAMBDA_EXPR_PENDING_PROXIES (lam);
9087 for (i = 0; i < vec_safe_length (proxies); ++i)
9089 tree var = (*proxies)[i];
9090 insert_capture_proxy (var);
9092 release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam));
9093 LAMBDA_EXPR_PENDING_PROXIES (lam) = NULL;
9096 /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
9097 return the type we want the proxy to have: the type of the field itself,
9098 with added const-qualification if the lambda isn't mutable and the
9099 capture is by value. */
9101 tree
9102 lambda_proxy_type (tree ref)
9104 tree type;
9105 if (REFERENCE_REF_P (ref))
9106 ref = TREE_OPERAND (ref, 0);
9107 type = TREE_TYPE (ref);
9108 if (!dependent_type_p (type))
9109 return type;
9110 type = cxx_make_type (DECLTYPE_TYPE);
9111 DECLTYPE_TYPE_EXPR (type) = ref;
9112 DECLTYPE_FOR_LAMBDA_PROXY (type) = true;
9113 SET_TYPE_STRUCTURAL_EQUALITY (type);
9114 return type;
9117 /* MEMBER is a capture field in a lambda closure class. Now that we're
9118 inside the operator(), build a placeholder var for future lookups and
9119 debugging. */
9121 tree
9122 build_capture_proxy (tree member)
9124 tree var, object, fn, closure, name, lam, type;
9126 closure = DECL_CONTEXT (member);
9127 fn = lambda_function (closure);
9128 lam = CLASSTYPE_LAMBDA_EXPR (closure);
9130 /* The proxy variable forwards to the capture field. */
9131 object = build_fold_indirect_ref (DECL_ARGUMENTS (fn));
9132 object = finish_non_static_data_member (member, object, NULL_TREE);
9133 if (REFERENCE_REF_P (object))
9134 object = TREE_OPERAND (object, 0);
9136 /* Remove the __ inserted by add_capture. */
9137 name = get_identifier (IDENTIFIER_POINTER (DECL_NAME (member)) + 2);
9139 type = lambda_proxy_type (object);
9140 var = build_decl (input_location, VAR_DECL, name, type);
9141 SET_DECL_VALUE_EXPR (var, object);
9142 DECL_HAS_VALUE_EXPR_P (var) = 1;
9143 DECL_ARTIFICIAL (var) = 1;
9144 TREE_USED (var) = 1;
9145 DECL_CONTEXT (var) = fn;
9147 if (name == this_identifier)
9149 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam) == member);
9150 LAMBDA_EXPR_THIS_CAPTURE (lam) = var;
9153 if (fn == current_function_decl)
9154 insert_capture_proxy (var);
9155 else
9156 vec_safe_push (LAMBDA_EXPR_PENDING_PROXIES (lam), var);
9158 return var;
9161 /* From an ID and INITIALIZER, create a capture (by reference if
9162 BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
9163 and return it. */
9165 tree
9166 add_capture (tree lambda, tree id, tree initializer, bool by_reference_p,
9167 bool explicit_init_p)
9169 char *buf;
9170 tree type, member, name;
9172 type = lambda_capture_field_type (initializer);
9173 if (by_reference_p)
9175 type = build_reference_type (type);
9176 if (!real_lvalue_p (initializer))
9177 error ("cannot capture %qE by reference", initializer);
9179 else
9180 /* Capture by copy requires a complete type. */
9181 type = complete_type (type);
9183 /* Add __ to the beginning of the field name so that user code
9184 won't find the field with name lookup. We can't just leave the name
9185 unset because template instantiation uses the name to find
9186 instantiated fields. */
9187 buf = (char *) alloca (IDENTIFIER_LENGTH (id) + 3);
9188 buf[1] = buf[0] = '_';
9189 memcpy (buf + 2, IDENTIFIER_POINTER (id),
9190 IDENTIFIER_LENGTH (id) + 1);
9191 name = get_identifier (buf);
9193 /* If TREE_TYPE isn't set, we're still in the introducer, so check
9194 for duplicates. */
9195 if (!LAMBDA_EXPR_CLOSURE (lambda))
9197 if (IDENTIFIER_MARKED (name))
9199 pedwarn (input_location, 0,
9200 "already captured %qD in lambda expression", id);
9201 return NULL_TREE;
9203 IDENTIFIER_MARKED (name) = true;
9206 /* Make member variable. */
9207 member = build_lang_decl (FIELD_DECL, name, type);
9209 if (!explicit_init_p)
9210 /* Normal captures are invisible to name lookup but uses are replaced
9211 with references to the capture field; we implement this by only
9212 really making them invisible in unevaluated context; see
9213 qualify_lookup. For now, let's make explicitly initialized captures
9214 always visible. */
9215 DECL_NORMAL_CAPTURE_P (member) = true;
9217 if (id == this_identifier)
9218 LAMBDA_EXPR_THIS_CAPTURE (lambda) = member;
9220 /* Add it to the appropriate closure class if we've started it. */
9221 if (current_class_type
9222 && current_class_type == LAMBDA_EXPR_CLOSURE (lambda))
9223 finish_member_declaration (member);
9225 LAMBDA_EXPR_CAPTURE_LIST (lambda)
9226 = tree_cons (member, initializer, LAMBDA_EXPR_CAPTURE_LIST (lambda));
9228 if (LAMBDA_EXPR_CLOSURE (lambda))
9229 return build_capture_proxy (member);
9230 /* For explicit captures we haven't started the function yet, so we wait
9231 and build the proxy from cp_parser_lambda_body. */
9232 return NULL_TREE;
9235 /* Register all the capture members on the list CAPTURES, which is the
9236 LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
9238 void
9239 register_capture_members (tree captures)
9241 if (captures == NULL_TREE)
9242 return;
9244 register_capture_members (TREE_CHAIN (captures));
9245 /* We set this in add_capture to avoid duplicates. */
9246 IDENTIFIER_MARKED (DECL_NAME (TREE_PURPOSE (captures))) = false;
9247 finish_member_declaration (TREE_PURPOSE (captures));
9250 /* Similar to add_capture, except this works on a stack of nested lambdas.
9251 BY_REFERENCE_P in this case is derived from the default capture mode.
9252 Returns the capture for the lambda at the bottom of the stack. */
9254 tree
9255 add_default_capture (tree lambda_stack, tree id, tree initializer)
9257 bool this_capture_p = (id == this_identifier);
9259 tree var = NULL_TREE;
9261 tree saved_class_type = current_class_type;
9263 tree node;
9265 for (node = lambda_stack;
9266 node;
9267 node = TREE_CHAIN (node))
9269 tree lambda = TREE_VALUE (node);
9271 current_class_type = LAMBDA_EXPR_CLOSURE (lambda);
9272 var = add_capture (lambda,
9274 initializer,
9275 /*by_reference_p=*/
9276 (!this_capture_p
9277 && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda)
9278 == CPLD_REFERENCE)),
9279 /*explicit_init_p=*/false);
9280 initializer = convert_from_reference (var);
9283 current_class_type = saved_class_type;
9285 return var;
9288 /* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
9289 INDIRECT_REF, possibly adding it through default capturing. */
9291 tree
9292 lambda_expr_this_capture (tree lambda)
9294 tree result;
9296 tree this_capture = LAMBDA_EXPR_THIS_CAPTURE (lambda);
9298 /* Try to default capture 'this' if we can. */
9299 if (!this_capture
9300 && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) != CPLD_NONE)
9302 tree containing_function = TYPE_CONTEXT (LAMBDA_EXPR_CLOSURE (lambda));
9303 tree lambda_stack = tree_cons (NULL_TREE, lambda, NULL_TREE);
9304 tree init = NULL_TREE;
9306 /* If we are in a lambda function, we can move out until we hit:
9307 1. a non-lambda function,
9308 2. a lambda function capturing 'this', or
9309 3. a non-default capturing lambda function. */
9310 while (LAMBDA_FUNCTION_P (containing_function))
9312 tree lambda
9313 = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function));
9315 if (LAMBDA_EXPR_THIS_CAPTURE (lambda))
9317 /* An outer lambda has already captured 'this'. */
9318 init = LAMBDA_EXPR_THIS_CAPTURE (lambda);
9319 break;
9322 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda) == CPLD_NONE)
9323 /* An outer lambda won't let us capture 'this'. */
9324 break;
9326 lambda_stack = tree_cons (NULL_TREE,
9327 lambda,
9328 lambda_stack);
9330 containing_function = decl_function_context (containing_function);
9333 if (!init && DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function)
9334 && !LAMBDA_FUNCTION_P (containing_function))
9335 /* First parameter is 'this'. */
9336 init = DECL_ARGUMENTS (containing_function);
9338 if (init)
9339 this_capture = add_default_capture (lambda_stack,
9340 /*id=*/this_identifier,
9341 init);
9344 if (!this_capture)
9346 error ("%<this%> was not captured for this lambda function");
9347 result = error_mark_node;
9349 else
9351 /* To make sure that current_class_ref is for the lambda. */
9352 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref))
9353 == LAMBDA_EXPR_CLOSURE (lambda));
9355 result = this_capture;
9357 /* If 'this' is captured, each use of 'this' is transformed into an
9358 access to the corresponding unnamed data member of the closure
9359 type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
9360 ensures that the transformed expression is an rvalue. ] */
9361 result = rvalue (result);
9364 return result;
9367 /* Returns the method basetype of the innermost non-lambda function, or
9368 NULL_TREE if none. */
9370 tree
9371 nonlambda_method_basetype (void)
9373 tree fn, type;
9374 if (!current_class_ref)
9375 return NULL_TREE;
9377 type = current_class_type;
9378 if (!LAMBDA_TYPE_P (type))
9379 return type;
9381 /* Find the nearest enclosing non-lambda function. */
9382 fn = TYPE_NAME (type);
9384 fn = decl_function_context (fn);
9385 while (fn && LAMBDA_FUNCTION_P (fn));
9387 if (!fn || !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn))
9388 return NULL_TREE;
9390 return TYPE_METHOD_BASETYPE (TREE_TYPE (fn));
9393 /* If the closure TYPE has a static op(), also add a conversion to function
9394 pointer. */
9396 void
9397 maybe_add_lambda_conv_op (tree type)
9399 bool nested = (current_function_decl != NULL_TREE);
9400 tree callop = lambda_function (type);
9401 tree rettype, name, fntype, fn, body, compound_stmt;
9402 tree thistype, stattype, statfn, convfn, call, arg;
9403 vec<tree, va_gc> *argvec;
9405 if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type)) != NULL_TREE)
9406 return;
9408 if (processing_template_decl)
9409 return;
9411 stattype = build_function_type (TREE_TYPE (TREE_TYPE (callop)),
9412 FUNCTION_ARG_CHAIN (callop));
9414 /* First build up the conversion op. */
9416 rettype = build_pointer_type (stattype);
9417 name = mangle_conv_op_name_for_type (rettype);
9418 thistype = cp_build_qualified_type (type, TYPE_QUAL_CONST);
9419 fntype = build_method_type_directly (thistype, rettype, void_list_node);
9420 fn = convfn = build_lang_decl (FUNCTION_DECL, name, fntype);
9421 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9423 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9424 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9425 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9427 SET_OVERLOADED_OPERATOR_CODE (fn, TYPE_EXPR);
9428 grokclassfn (type, fn, NO_SPECIAL);
9429 set_linkage_according_to_type (type, fn);
9430 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9431 DECL_IN_AGGR_P (fn) = 1;
9432 DECL_ARTIFICIAL (fn) = 1;
9433 DECL_NOT_REALLY_EXTERN (fn) = 1;
9434 DECL_DECLARED_INLINE_P (fn) = 1;
9435 DECL_ARGUMENTS (fn) = build_this_parm (fntype, TYPE_QUAL_CONST);
9436 if (nested)
9437 DECL_INTERFACE_KNOWN (fn) = 1;
9439 add_method (type, fn, NULL_TREE);
9441 /* Generic thunk code fails for varargs; we'll complain in mark_used if
9442 the conversion op is used. */
9443 if (varargs_function_p (callop))
9445 DECL_DELETED_FN (fn) = 1;
9446 return;
9449 /* Now build up the thunk to be returned. */
9451 name = get_identifier ("_FUN");
9452 fn = statfn = build_lang_decl (FUNCTION_DECL, name, stattype);
9453 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (callop);
9454 if (TARGET_PTRMEMFUNC_VBIT_LOCATION == ptrmemfunc_vbit_in_pfn
9455 && DECL_ALIGN (fn) < 2 * BITS_PER_UNIT)
9456 DECL_ALIGN (fn) = 2 * BITS_PER_UNIT;
9457 grokclassfn (type, fn, NO_SPECIAL);
9458 set_linkage_according_to_type (type, fn);
9459 rest_of_decl_compilation (fn, toplevel_bindings_p (), at_eof);
9460 DECL_IN_AGGR_P (fn) = 1;
9461 DECL_ARTIFICIAL (fn) = 1;
9462 DECL_NOT_REALLY_EXTERN (fn) = 1;
9463 DECL_DECLARED_INLINE_P (fn) = 1;
9464 DECL_STATIC_FUNCTION_P (fn) = 1;
9465 DECL_ARGUMENTS (fn) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop)));
9466 for (arg = DECL_ARGUMENTS (fn); arg; arg = DECL_CHAIN (arg))
9467 DECL_CONTEXT (arg) = fn;
9468 if (nested)
9469 DECL_INTERFACE_KNOWN (fn) = 1;
9471 add_method (type, fn, NULL_TREE);
9473 if (nested)
9474 push_function_context ();
9475 else
9476 /* Still increment function_depth so that we don't GC in the
9477 middle of an expression. */
9478 ++function_depth;
9480 /* Generate the body of the thunk. */
9482 start_preparsed_function (statfn, NULL_TREE,
9483 SF_PRE_PARSED | SF_INCLASS_INLINE);
9484 if (DECL_ONE_ONLY (statfn))
9486 /* Put the thunk in the same comdat group as the call op. */
9487 symtab_add_to_same_comdat_group
9488 ((symtab_node) cgraph_get_create_node (statfn),
9489 (symtab_node) cgraph_get_create_node (callop));
9491 body = begin_function_body ();
9492 compound_stmt = begin_compound_stmt (0);
9494 arg = build1 (NOP_EXPR, TREE_TYPE (DECL_ARGUMENTS (callop)),
9495 null_pointer_node);
9496 argvec = make_tree_vector ();
9497 argvec->quick_push (arg);
9498 for (arg = DECL_ARGUMENTS (statfn); arg; arg = DECL_CHAIN (arg))
9500 mark_exp_read (arg);
9501 vec_safe_push (argvec, arg);
9503 call = build_call_a (callop, argvec->length (), argvec->address ());
9504 CALL_FROM_THUNK_P (call) = 1;
9505 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call)))
9506 call = build_cplus_new (TREE_TYPE (call), call, tf_warning_or_error);
9507 call = convert_from_reference (call);
9508 finish_return_stmt (call);
9510 finish_compound_stmt (compound_stmt);
9511 finish_function_body (body);
9513 expand_or_defer_fn (finish_function (2));
9515 /* Generate the body of the conversion op. */
9517 start_preparsed_function (convfn, NULL_TREE,
9518 SF_PRE_PARSED | SF_INCLASS_INLINE);
9519 body = begin_function_body ();
9520 compound_stmt = begin_compound_stmt (0);
9522 finish_return_stmt (decay_conversion (statfn, tf_warning_or_error));
9524 finish_compound_stmt (compound_stmt);
9525 finish_function_body (body);
9527 expand_or_defer_fn (finish_function (2));
9529 if (nested)
9530 pop_function_context ();
9531 else
9532 --function_depth;
9535 /* Returns true iff VAL is a lambda-related declaration which should
9536 be ignored by unqualified lookup. */
9538 bool
9539 is_lambda_ignored_entity (tree val)
9541 /* In unevaluated context, look past normal capture proxies. */
9542 if (cp_unevaluated_operand && is_normal_capture_proxy (val))
9543 return true;
9545 /* Always ignore lambda fields, their names are only for debugging. */
9546 if (TREE_CODE (val) == FIELD_DECL
9547 && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val)))
9548 return true;
9550 /* None of the lookups that use qualify_lookup want the op() from the
9551 lambda; they want the one from the enclosing class. */
9552 if (TREE_CODE (val) == FUNCTION_DECL && LAMBDA_FUNCTION_P (val))
9553 return true;
9555 return false;
9558 #include "gt-cp-semantics.h"