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-2013 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)
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/>. */
28 #include "coretypes.h"
32 #include "c-family/c-common.h"
33 #include "c-family/c-objc.h"
34 #include "tree-inline.h"
39 #include "diagnostic.h"
41 #include "tree-iterator.h"
46 #include "hash-table.h"
48 static bool verify_constant (tree
, bool, bool *, bool *);
49 #define VERIFY_CONSTANT(X) \
51 if (verify_constant ((X), allow_non_constant, non_constant_p, overflow_p)) \
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
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
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
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:
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
;
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. */
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
++;
153 deferred_access e
= {NULL
, deferring
};
154 vec_safe_push (deferred_access_stack
, e
);
158 /* Resume deferring access checks again after we stopped doing
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. */
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
181 pop_deferring_access_checks (void)
183 if (deferred_access_no_check
)
184 deferred_access_no_check
--;
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
)
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. */
208 pop_to_parent_deferring_access_checks (void)
210 if (deferred_access_no_check
)
211 deferred_access_no_check
--;
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
)
224 perform_access_checks (checks
, tf_warning_or_error
);
228 /* Merge with parent. */
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
)
241 /* Insert into parent's checks. */
242 vec_safe_push (ptr
->deferred_access_checks
, *chk
);
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,
256 perform_access_checks (vec
<deferred_access_check
, va_gc
> *checks
,
257 tsubst_flags_t complain
)
260 deferred_access_check
*chk
;
261 location_t loc
= input_location
;
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.
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. */
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. */
304 perform_or_defer_access_check (tree binfo
, tree decl
, tree diag_decl
,
305 tsubst_flags_t complain
)
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
)
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
)
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
);
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
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
);
381 /* Returns the stmt_tree to which statements are currently being added. */
384 current_stmt_tree (void)
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. */
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
);
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. */
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
);
416 /* Create a declaration statement for the declaration given by the DECL. */
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
);
428 /* Finish a scope. */
431 do_poplevel (tree stmt_list
)
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. */
449 /* Begin a new scope. */
452 do_pushlevel (scope_kind sk
)
454 tree ret
= push_stmt_list ();
455 if (stmts_are_full_exprs_p ())
456 begin_scope (sk
, NULL
);
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. */
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
;
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. */
479 begin_cond (tree
*cond_p
)
481 if (processing_template_decl
)
482 *cond_p
= push_stmt_list ();
485 /* Finish such a conditional. */
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
);
505 /* If *COND_P specifies a conditional with a declaration, transform the
508 for (; A x = 42;) { }
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. */
516 simplify_loop_decl_cond (tree
*cond_p
, tree body
)
520 if (!TREE_SIDE_EFFECTS (body
))
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. */
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;
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
))
556 = fold_build_cleanup_point_expr (TREE_TYPE (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. */
571 maybe_convert_cond (tree cond
)
573 /* Empty conditions remain empty. */
577 /* Wait until we instantiate templates before doing conversion. */
578 if (processing_template_decl
)
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
)
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. */
602 finish_expr_stmt (tree expr
)
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
);
639 /* Begin an if-statement. Returns a newly created IF_STMT if
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
));
653 /* Process the COND of an if-statement, which may be given by
657 finish_if_stmt_cond (tree cond
, tree if_stmt
)
659 finish_cond (&IF_COND (if_stmt
), maybe_convert_cond (cond
));
661 THEN_CLAUSE (if_stmt
) = push_stmt_list ();
664 /* Finish the then-clause of an if-statement, which may be given by
668 finish_then_clause (tree if_stmt
)
670 THEN_CLAUSE (if_stmt
) = pop_stmt_list (THEN_CLAUSE (if_stmt
));
674 /* Begin the else-clause of an if-statement. */
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
686 finish_else_clause (tree if_stmt
)
688 ELSE_CLAUSE (if_stmt
) = pop_stmt_list (ELSE_CLAUSE (if_stmt
));
691 /* Finish an if-statement. */
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
));
702 /* Begin a while-statement. Returns a newly created WHILE_STMT if
706 begin_while_stmt (void)
709 r
= build_stmt (input_location
, WHILE_STMT
, NULL_TREE
, NULL_TREE
);
711 WHILE_BODY (r
) = do_pushlevel (sk_block
);
712 begin_cond (&WHILE_COND (r
));
716 /* Process the COND of a while-statement, which may be given by
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. */
729 finish_while_stmt (tree while_stmt
)
731 WHILE_BODY (while_stmt
) = do_poplevel (WHILE_BODY (while_stmt
));
735 /* Begin a do-statement. Returns a newly created DO_STMT if
741 tree r
= build_stmt (input_location
, DO_STMT
, NULL_TREE
, NULL_TREE
);
743 DO_BODY (r
) = push_stmt_list ();
747 /* Finish the body of a do-statement, which may be given by DO_STMT. */
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. */
766 finish_do_stmt (tree cond
, tree do_stmt
)
768 cond
= maybe_convert_cond (cond
);
769 DO_COND (do_stmt
) = cond
;
773 /* Finish a return-statement. The EXPRESSION returned, if any, is as
777 finish_return_stmt (tree expr
)
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
);
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. */
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 ();
831 /* Begin a for-statement. Returns a new FOR_STMT.
832 SCOPE and INIT should be the return of begin_for_scope,
836 begin_for_stmt (tree scope
, tree init
)
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));
847 scope
= begin_for_scope (&init
);
849 FOR_INIT_STMT (r
) = init
;
850 FOR_SCOPE (r
) = scope
;
855 /* Finish the for-init-statement of a for-statement, which may be
856 given by FOR_STMT. */
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
));
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
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. */
882 finish_for_expr (tree expr
, tree for_stmt
)
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
912 It can also finish RANGE_FOR_STMT. */
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
));
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)
926 tree
*scope_ptr
= (TREE_CODE (for_stmt
) == RANGE_FOR_STMT
927 ? &RANGE_FOR_SCOPE (for_stmt
)
928 : &FOR_SCOPE (for_stmt
));
931 add_stmt (do_poplevel (scope
));
937 /* Begin a range-for-statement. Returns a new RANGE_FOR_STMT.
938 SCOPE and INIT should be the return of begin_for_scope,
940 To finish it call finish_for_stmt(). */
943 begin_range_for_stmt (tree scope
, tree init
)
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));
954 scope
= begin_for_scope (&init
);
957 /* RANGE_FOR_STMTs do not use nor save the init tree, so we
960 pop_stmt_list (init
);
961 RANGE_FOR_SCOPE (r
) = scope
;
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. */
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. */
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
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. */
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
1008 begin_switch_stmt (void)
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
));
1020 /* Finish the cond of a switch-statement. */
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
)
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. */
1061 finish_switch_stmt (tree switch_stmt
)
1065 SWITCH_STMT_BODY (switch_stmt
) =
1066 pop_stmt_list (SWITCH_STMT_BODY (switch_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
1079 begin_try_block (void)
1081 tree r
= build_stmt (input_location
, TRY_BLOCK
, NULL_TREE
, NULL_TREE
);
1083 TRY_STMTS (r
) = push_stmt_list ();
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. */
1092 begin_function_try_block (tree
*compound_stmt
)
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;
1103 /* Finish a try-block, which may be given by TRY_BLOCK. */
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
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
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. */
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
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. */
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. */
1167 begin_handler (void)
1171 r
= build_stmt (input_location
, HANDLER
, NULL_TREE
, NULL_TREE
);
1174 /* Create a binding level for the eh_info and the exception object
1176 HANDLER_BODY (r
) = do_pushlevel (sk_catch
);
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. */
1186 finish_handler_parms (tree decl
, tree handler
)
1188 tree type
= NULL_TREE
;
1189 if (processing_template_decl
)
1193 decl
= pushdecl (decl
);
1194 decl
= push_template_decl (decl
);
1195 HANDLER_PARMS (handler
) = decl
;
1196 type
= TREE_TYPE (decl
);
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. */
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. */
1225 begin_compound_stmt (unsigned int flags
)
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);
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;
1260 /* Finish a compound-statement, which is given by STMT. */
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
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
))
1277 BIND_EXPR_BODY (stmt
) = body
;
1279 else if (STATEMENT_LIST_NO_SCOPE (stmt
))
1280 stmt
= pop_stmt_list (stmt
);
1283 /* Destroy any ObjC "super" receivers that may have been
1285 objc_clear_super_receiver ();
1287 stmt
= do_poplevel (stmt
);
1290 /* ??? See c_end_compound_stmt wrt statement expressions. */
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. */
1301 finish_asm_stmt (int volatile_p
, tree string
, tree output_operands
,
1302 tree input_operands
, tree clobbers
, tree labels
)
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
;
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
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
;
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
));
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",
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
;
1405 else if (!allows_reg
&& !allows_mem
)
1407 /* If constraint allows neither register nor memory,
1408 try harder to get a constant. */
1409 tree constop
= maybe_constant_value (operand
);
1410 if (TREE_CONSTANT (constop
))
1415 operand
= error_mark_node
;
1417 TREE_VALUE (t
) = operand
;
1421 r
= build_stmt (input_location
, ASM_EXPR
, string
,
1422 output_operands
, input_operands
,
1424 ASM_VOLATILE_P (r
) = volatile_p
|| noutputs
== 0;
1425 r
= maybe_cleanup_point_expr_void (r
);
1426 return add_stmt (r
);
1429 /* Finish a label with the indicated NAME. Returns the new label. */
1432 finish_label_stmt (tree name
)
1434 tree decl
= define_label (input_location
, name
);
1436 if (decl
== error_mark_node
)
1437 return error_mark_node
;
1439 add_stmt (build_stmt (input_location
, LABEL_EXPR
, decl
));
1444 /* Finish a series of declarations for local labels. G++ allows users
1445 to declare "local" labels, i.e., labels with scope. This extension
1446 is useful when writing code involving statement-expressions. */
1449 finish_label_decl (tree name
)
1451 if (!at_function_scope_p ())
1453 error ("__label__ declarations are only allowed in function scopes");
1457 add_decl_expr (declare_local_label (name
));
1460 /* When DECL goes out of scope, make sure that CLEANUP is executed. */
1463 finish_decl_cleanup (tree decl
, tree cleanup
)
1465 push_cleanup (decl
, cleanup
, false);
1468 /* If the current scope exits with an exception, run CLEANUP. */
1471 finish_eh_cleanup (tree cleanup
)
1473 push_cleanup (NULL
, cleanup
, true);
1476 /* The MEM_INITS is a list of mem-initializers, in reverse of the
1477 order they were written by the user. Each node is as for
1478 emit_mem_initializers. */
1481 finish_mem_initializers (tree mem_inits
)
1483 /* Reorder the MEM_INITS so that they are in the order they appeared
1484 in the source program. */
1485 mem_inits
= nreverse (mem_inits
);
1487 if (processing_template_decl
)
1491 for (mem
= mem_inits
; mem
; mem
= TREE_CHAIN (mem
))
1493 /* If the TREE_PURPOSE is a TYPE_PACK_EXPANSION, skip the
1494 check for bare parameter packs in the TREE_VALUE, because
1495 any parameter packs in the TREE_VALUE have already been
1496 bound as part of the TREE_PURPOSE. See
1497 make_pack_expansion for more information. */
1498 if (TREE_CODE (TREE_PURPOSE (mem
)) != TYPE_PACK_EXPANSION
1499 && check_for_bare_parameter_packs (TREE_VALUE (mem
)))
1500 TREE_VALUE (mem
) = error_mark_node
;
1503 add_stmt (build_min_nt_loc (UNKNOWN_LOCATION
,
1504 CTOR_INITIALIZER
, mem_inits
));
1507 emit_mem_initializers (mem_inits
);
1510 /* Finish a parenthesized expression EXPR. */
1513 finish_parenthesized_expr (tree expr
)
1516 /* This inhibits warnings in c_common_truthvalue_conversion. */
1517 TREE_NO_WARNING (expr
) = 1;
1519 if (TREE_CODE (expr
) == OFFSET_REF
1520 || TREE_CODE (expr
) == SCOPE_REF
)
1521 /* [expr.unary.op]/3 The qualified id of a pointer-to-member must not be
1522 enclosed in parentheses. */
1523 PTRMEM_OK_P (expr
) = 0;
1525 if (TREE_CODE (expr
) == STRING_CST
)
1526 PAREN_STRING_LITERAL_P (expr
) = 1;
1531 /* Finish a reference to a non-static data member (DECL) that is not
1532 preceded by `.' or `->'. */
1535 finish_non_static_data_member (tree decl
, tree object
, tree qualifying_scope
)
1537 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
1541 tree scope
= qualifying_scope
;
1542 if (scope
== NULL_TREE
)
1543 scope
= context_for_name_lookup (decl
);
1544 object
= maybe_dummy_object (scope
, NULL
);
1547 object
= maybe_resolve_dummy (object
);
1548 if (object
== error_mark_node
)
1549 return error_mark_node
;
1551 /* DR 613: Can use non-static data members without an associated
1552 object in sizeof/decltype/alignof. */
1553 if (is_dummy_object (object
) && cp_unevaluated_operand
== 0
1554 && (!processing_template_decl
|| !current_class_ref
))
1556 if (current_function_decl
1557 && DECL_STATIC_FUNCTION_P (current_function_decl
))
1558 error ("invalid use of member %q+D in static member function", decl
);
1560 error ("invalid use of non-static data member %q+D", decl
);
1561 error ("from this location");
1563 return error_mark_node
;
1566 if (current_class_ptr
)
1567 TREE_USED (current_class_ptr
) = 1;
1568 if (processing_template_decl
&& !qualifying_scope
)
1570 tree type
= TREE_TYPE (decl
);
1572 if (TREE_CODE (type
) == REFERENCE_TYPE
)
1573 /* Quals on the object don't matter. */;
1576 /* Set the cv qualifiers. */
1577 int quals
= (current_class_ref
1578 ? cp_type_quals (TREE_TYPE (current_class_ref
))
1579 : TYPE_UNQUALIFIED
);
1581 if (DECL_MUTABLE_P (decl
))
1582 quals
&= ~TYPE_QUAL_CONST
;
1584 quals
|= cp_type_quals (TREE_TYPE (decl
));
1585 type
= cp_build_qualified_type (type
, quals
);
1588 return (convert_from_reference
1589 (build_min (COMPONENT_REF
, type
, object
, decl
, NULL_TREE
)));
1591 /* If PROCESSING_TEMPLATE_DECL is nonzero here, then
1592 QUALIFYING_SCOPE is also non-null. Wrap this in a SCOPE_REF
1594 else if (processing_template_decl
)
1595 return build_qualified_name (TREE_TYPE (decl
),
1598 /*template_p=*/false);
1601 tree access_type
= TREE_TYPE (object
);
1603 perform_or_defer_access_check (TYPE_BINFO (access_type
), decl
,
1604 decl
, tf_warning_or_error
);
1606 /* If the data member was named `C::M', convert `*this' to `C'
1608 if (qualifying_scope
)
1610 tree binfo
= NULL_TREE
;
1611 object
= build_scoped_ref (object
, qualifying_scope
,
1615 return build_class_member_access_expr (object
, decl
,
1616 /*access_path=*/NULL_TREE
,
1617 /*preserve_reference=*/false,
1618 tf_warning_or_error
);
1622 /* If we are currently parsing a template and we encountered a typedef
1623 TYPEDEF_DECL that is being accessed though CONTEXT, this function
1624 adds the typedef to a list tied to the current template.
1625 At template instantiation time, that list is walked and access check
1626 performed for each typedef.
1627 LOCATION is the location of the usage point of TYPEDEF_DECL. */
1630 add_typedef_to_current_template_for_access_check (tree typedef_decl
,
1632 location_t location
)
1634 tree template_info
= NULL
;
1635 tree cs
= current_scope ();
1637 if (!is_typedef_decl (typedef_decl
)
1639 || !CLASS_TYPE_P (context
)
1643 if (CLASS_TYPE_P (cs
) || TREE_CODE (cs
) == FUNCTION_DECL
)
1644 template_info
= get_template_info (cs
);
1647 && TI_TEMPLATE (template_info
)
1648 && !currently_open_class (context
))
1649 append_type_to_template_for_access_check (cs
, typedef_decl
,
1653 /* DECL was the declaration to which a qualified-id resolved. Issue
1654 an error message if it is not accessible. If OBJECT_TYPE is
1655 non-NULL, we have just seen `x->' or `x.' and OBJECT_TYPE is the
1656 type of `*x', or `x', respectively. If the DECL was named as
1657 `A::B' then NESTED_NAME_SPECIFIER is `A'. */
1660 check_accessibility_of_qualified_id (tree decl
,
1662 tree nested_name_specifier
)
1665 tree qualifying_type
= NULL_TREE
;
1667 /* If we are parsing a template declaration and if decl is a typedef,
1668 add it to a list tied to the template.
1669 At template instantiation time, that list will be walked and
1670 access check performed. */
1671 add_typedef_to_current_template_for_access_check (decl
,
1672 nested_name_specifier
1673 ? nested_name_specifier
1674 : DECL_CONTEXT (decl
),
1677 /* If we're not checking, return immediately. */
1678 if (deferred_access_no_check
)
1681 /* Determine the SCOPE of DECL. */
1682 scope
= context_for_name_lookup (decl
);
1683 /* If the SCOPE is not a type, then DECL is not a member. */
1684 if (!TYPE_P (scope
))
1686 /* Compute the scope through which DECL is being accessed. */
1688 /* OBJECT_TYPE might not be a class type; consider:
1690 class A { typedef int I; };
1694 In this case, we will have "A::I" as the DECL, but "I" as the
1696 && CLASS_TYPE_P (object_type
)
1697 && DERIVED_FROM_P (scope
, object_type
))
1698 /* If we are processing a `->' or `.' expression, use the type of the
1700 qualifying_type
= object_type
;
1701 else if (nested_name_specifier
)
1703 /* If the reference is to a non-static member of the
1704 current class, treat it as if it were referenced through
1706 if (DECL_NONSTATIC_MEMBER_P (decl
)
1707 && current_class_ptr
1708 && DERIVED_FROM_P (scope
, current_class_type
))
1709 qualifying_type
= current_class_type
;
1710 /* Otherwise, use the type indicated by the
1711 nested-name-specifier. */
1713 qualifying_type
= nested_name_specifier
;
1716 /* Otherwise, the name must be from the current class or one of
1718 qualifying_type
= currently_open_derived_class (scope
);
1721 /* It is possible for qualifying type to be a TEMPLATE_TYPE_PARM
1722 or similar in a default argument value. */
1723 && CLASS_TYPE_P (qualifying_type
)
1724 && !dependent_type_p (qualifying_type
))
1725 perform_or_defer_access_check (TYPE_BINFO (qualifying_type
), decl
,
1726 decl
, tf_warning_or_error
);
1729 /* EXPR is the result of a qualified-id. The QUALIFYING_CLASS was the
1730 class named to the left of the "::" operator. DONE is true if this
1731 expression is a complete postfix-expression; it is false if this
1732 expression is followed by '->', '[', '(', etc. ADDRESS_P is true
1733 iff this expression is the operand of '&'. TEMPLATE_P is true iff
1734 the qualified-id was of the form "A::template B". TEMPLATE_ARG_P
1735 is true iff this qualified name appears as a template argument. */
1738 finish_qualified_id_expr (tree qualifying_class
,
1743 bool template_arg_p
)
1745 gcc_assert (TYPE_P (qualifying_class
));
1747 if (error_operand_p (expr
))
1748 return error_mark_node
;
1750 if (DECL_P (expr
) || BASELINK_P (expr
))
1754 check_template_keyword (expr
);
1756 /* If EXPR occurs as the operand of '&', use special handling that
1757 permits a pointer-to-member. */
1758 if (address_p
&& done
)
1760 if (TREE_CODE (expr
) == SCOPE_REF
)
1761 expr
= TREE_OPERAND (expr
, 1);
1762 expr
= build_offset_ref (qualifying_class
, expr
,
1763 /*address_p=*/true);
1767 /* Within the scope of a class, turn references to non-static
1768 members into expression of the form "this->...". */
1770 /* But, within a template argument, we do not want make the
1771 transformation, as there is no "this" pointer. */
1773 else if (TREE_CODE (expr
) == FIELD_DECL
)
1775 push_deferring_access_checks (dk_no_check
);
1776 expr
= finish_non_static_data_member (expr
, NULL_TREE
,
1778 pop_deferring_access_checks ();
1780 else if (BASELINK_P (expr
) && !processing_template_decl
)
1782 /* See if any of the functions are non-static members. */
1783 /* If so, the expression may be relative to 'this'. */
1784 if (!shared_member_p (expr
)
1785 && current_class_ptr
1786 && DERIVED_FROM_P (qualifying_class
,
1787 current_nonlambda_class_type ()))
1788 expr
= (build_class_member_access_expr
1789 (maybe_dummy_object (qualifying_class
, NULL
),
1791 BASELINK_ACCESS_BINFO (expr
),
1792 /*preserve_reference=*/false,
1793 tf_warning_or_error
));
1795 /* The expression is a qualified name whose address is not
1797 expr
= build_offset_ref (qualifying_class
, expr
, /*address_p=*/false);
1799 else if (BASELINK_P (expr
))
1803 /* In a template, return a SCOPE_REF for most qualified-ids
1804 so that we can check access at instantiation time. But if
1805 we're looking at a member of the current instantiation, we
1806 know we have access and building up the SCOPE_REF confuses
1807 non-type template argument handling. */
1808 if (processing_template_decl
1809 && !currently_open_class (qualifying_class
))
1810 expr
= build_qualified_name (TREE_TYPE (expr
),
1811 qualifying_class
, expr
,
1814 expr
= convert_from_reference (expr
);
1820 /* Begin a statement-expression. The value returned must be passed to
1821 finish_stmt_expr. */
1824 begin_stmt_expr (void)
1826 return push_stmt_list ();
1829 /* Process the final expression of a statement expression. EXPR can be
1830 NULL, if the final expression is empty. Return a STATEMENT_LIST
1831 containing all the statements in the statement-expression, or
1832 ERROR_MARK_NODE if there was an error. */
1835 finish_stmt_expr_expr (tree expr
, tree stmt_expr
)
1837 if (error_operand_p (expr
))
1839 /* The type of the statement-expression is the type of the last
1841 TREE_TYPE (stmt_expr
) = error_mark_node
;
1842 return error_mark_node
;
1845 /* If the last statement does not have "void" type, then the value
1846 of the last statement is the value of the entire expression. */
1849 tree type
= TREE_TYPE (expr
);
1851 if (processing_template_decl
)
1853 expr
= build_stmt (input_location
, EXPR_STMT
, expr
);
1854 expr
= add_stmt (expr
);
1855 /* Mark the last statement so that we can recognize it as such at
1856 template-instantiation time. */
1857 EXPR_STMT_STMT_EXPR_RESULT (expr
) = 1;
1859 else if (VOID_TYPE_P (type
))
1861 /* Just treat this like an ordinary statement. */
1862 expr
= finish_expr_stmt (expr
);
1866 /* It actually has a value we need to deal with. First, force it
1867 to be an rvalue so that we won't need to build up a copy
1868 constructor call later when we try to assign it to something. */
1869 expr
= force_rvalue (expr
, tf_warning_or_error
);
1870 if (error_operand_p (expr
))
1871 return error_mark_node
;
1873 /* Update for array-to-pointer decay. */
1874 type
= TREE_TYPE (expr
);
1876 /* Wrap it in a CLEANUP_POINT_EXPR and add it to the list like a
1877 normal statement, but don't convert to void or actually add
1879 if (TREE_CODE (expr
) != CLEANUP_POINT_EXPR
)
1880 expr
= maybe_cleanup_point_expr (expr
);
1884 /* The type of the statement-expression is the type of the last
1886 TREE_TYPE (stmt_expr
) = type
;
1892 /* Finish a statement-expression. EXPR should be the value returned
1893 by the previous begin_stmt_expr. Returns an expression
1894 representing the statement-expression. */
1897 finish_stmt_expr (tree stmt_expr
, bool has_no_scope
)
1902 if (error_operand_p (stmt_expr
))
1904 pop_stmt_list (stmt_expr
);
1905 return error_mark_node
;
1908 gcc_assert (TREE_CODE (stmt_expr
) == STATEMENT_LIST
);
1910 type
= TREE_TYPE (stmt_expr
);
1911 result
= pop_stmt_list (stmt_expr
);
1912 TREE_TYPE (result
) = type
;
1914 if (processing_template_decl
)
1916 result
= build_min (STMT_EXPR
, type
, result
);
1917 TREE_SIDE_EFFECTS (result
) = 1;
1918 STMT_EXPR_NO_SCOPE (result
) = has_no_scope
;
1920 else if (CLASS_TYPE_P (type
))
1922 /* Wrap the statement-expression in a TARGET_EXPR so that the
1923 temporary object created by the final expression is destroyed at
1924 the end of the full-expression containing the
1925 statement-expression. */
1926 result
= force_target_expr (type
, result
, tf_warning_or_error
);
1932 /* Returns the expression which provides the value of STMT_EXPR. */
1935 stmt_expr_value_expr (tree stmt_expr
)
1937 tree t
= STMT_EXPR_STMT (stmt_expr
);
1939 if (TREE_CODE (t
) == BIND_EXPR
)
1940 t
= BIND_EXPR_BODY (t
);
1942 if (TREE_CODE (t
) == STATEMENT_LIST
&& STATEMENT_LIST_TAIL (t
))
1943 t
= STATEMENT_LIST_TAIL (t
)->stmt
;
1945 if (TREE_CODE (t
) == EXPR_STMT
)
1946 t
= EXPR_STMT_EXPR (t
);
1951 /* Return TRUE iff EXPR_STMT is an empty list of
1952 expression statements. */
1955 empty_expr_stmt_p (tree expr_stmt
)
1957 tree body
= NULL_TREE
;
1959 if (expr_stmt
== void_zero_node
)
1964 if (TREE_CODE (expr_stmt
) == EXPR_STMT
)
1965 body
= EXPR_STMT_EXPR (expr_stmt
);
1966 else if (TREE_CODE (expr_stmt
) == STATEMENT_LIST
)
1972 if (TREE_CODE (body
) == STATEMENT_LIST
)
1973 return tsi_end_p (tsi_start (body
));
1975 return empty_expr_stmt_p (body
);
1980 /* Perform Koenig lookup. FN is the postfix-expression representing
1981 the function (or functions) to call; ARGS are the arguments to the
1982 call; if INCLUDE_STD then the `std' namespace is automatically
1983 considered an associated namespace (used in range-based for loops).
1984 Returns the functions to be considered by overload resolution. */
1987 perform_koenig_lookup (tree fn
, vec
<tree
, va_gc
> *args
, bool include_std
,
1988 tsubst_flags_t complain
)
1990 tree identifier
= NULL_TREE
;
1991 tree functions
= NULL_TREE
;
1992 tree tmpl_args
= NULL_TREE
;
1993 bool template_id
= false;
1995 if (TREE_CODE (fn
) == TEMPLATE_ID_EXPR
)
1997 /* Use a separate flag to handle null args. */
1999 tmpl_args
= TREE_OPERAND (fn
, 1);
2000 fn
= TREE_OPERAND (fn
, 0);
2003 /* Find the name of the overloaded function. */
2004 if (TREE_CODE (fn
) == IDENTIFIER_NODE
)
2006 else if (is_overloaded_fn (fn
))
2009 identifier
= DECL_NAME (get_first_fn (functions
));
2011 else if (DECL_P (fn
))
2014 identifier
= DECL_NAME (fn
);
2017 /* A call to a namespace-scope function using an unqualified name.
2019 Do Koenig lookup -- unless any of the arguments are
2021 if (!any_type_dependent_arguments_p (args
)
2022 && !any_dependent_template_arguments_p (tmpl_args
))
2024 fn
= lookup_arg_dependent (identifier
, functions
, args
, include_std
);
2027 /* The unqualified name could not be resolved. */
2029 fn
= unqualified_fn_lookup_error (identifier
);
2035 if (fn
&& template_id
)
2036 fn
= build2 (TEMPLATE_ID_EXPR
, unknown_type_node
, fn
, tmpl_args
);
2041 /* Generate an expression for `FN (ARGS)'. This may change the
2044 If DISALLOW_VIRTUAL is true, the call to FN will be not generated
2045 as a virtual call, even if FN is virtual. (This flag is set when
2046 encountering an expression where the function name is explicitly
2047 qualified. For example a call to `X::f' never generates a virtual
2050 Returns code for the call. */
2053 finish_call_expr (tree fn
, vec
<tree
, va_gc
> **args
, bool disallow_virtual
,
2054 bool koenig_p
, tsubst_flags_t complain
)
2058 vec
<tree
, va_gc
> *orig_args
= NULL
;
2060 if (fn
== error_mark_node
)
2061 return error_mark_node
;
2063 gcc_assert (!TYPE_P (fn
));
2067 if (processing_template_decl
)
2069 /* If the call expression is dependent, build a CALL_EXPR node
2070 with no type; type_dependent_expression_p recognizes
2071 expressions with no type as being dependent. */
2072 if (type_dependent_expression_p (fn
)
2073 || any_type_dependent_arguments_p (*args
)
2074 /* For a non-static member function that doesn't have an
2075 explicit object argument, we need to specifically
2076 test the type dependency of the "this" pointer because it
2077 is not included in *ARGS even though it is considered to
2078 be part of the list of arguments. Note that this is
2079 related to CWG issues 515 and 1005. */
2080 || (TREE_CODE (fn
) != COMPONENT_REF
2081 && non_static_member_function_p (fn
)
2082 && current_class_ref
2083 && type_dependent_expression_p (current_class_ref
)))
2085 result
= build_nt_call_vec (fn
, *args
);
2086 SET_EXPR_LOCATION (result
, EXPR_LOC_OR_HERE (fn
));
2087 KOENIG_LOOKUP_P (result
) = koenig_p
;
2092 tree fndecl
= OVL_CURRENT (fn
);
2093 if (TREE_CODE (fndecl
) != FUNCTION_DECL
2094 || !TREE_THIS_VOLATILE (fndecl
))
2100 current_function_returns_abnormally
= 1;
2104 orig_args
= make_tree_vector_copy (*args
);
2105 if (!BASELINK_P (fn
)
2106 && TREE_CODE (fn
) != PSEUDO_DTOR_EXPR
2107 && TREE_TYPE (fn
) != unknown_type_node
)
2108 fn
= build_non_dependent_expr (fn
);
2109 make_args_non_dependent (*args
);
2112 if (TREE_CODE (fn
) == COMPONENT_REF
)
2114 tree member
= TREE_OPERAND (fn
, 1);
2115 if (BASELINK_P (member
))
2117 tree object
= TREE_OPERAND (fn
, 0);
2118 return build_new_method_call (object
, member
,
2121 ? LOOKUP_NORMAL
| LOOKUP_NONVIRTUAL
2128 if (is_overloaded_fn (fn
))
2129 fn
= baselink_for_fns (fn
);
2132 if (BASELINK_P (fn
))
2136 /* A call to a member function. From [over.call.func]:
2138 If the keyword this is in scope and refers to the class of
2139 that member function, or a derived class thereof, then the
2140 function call is transformed into a qualified function call
2141 using (*this) as the postfix-expression to the left of the
2142 . operator.... [Otherwise] a contrived object of type T
2143 becomes the implied object argument.
2147 struct A { void f(); };
2148 struct B : public A {};
2149 struct C : public A { void g() { B::f(); }};
2151 "the class of that member function" refers to `A'. But 11.2
2152 [class.access.base] says that we need to convert 'this' to B* as
2153 part of the access, so we pass 'B' to maybe_dummy_object. */
2155 object
= maybe_dummy_object (BINFO_TYPE (BASELINK_ACCESS_BINFO (fn
)),
2158 if (processing_template_decl
)
2160 if (type_dependent_expression_p (object
))
2162 tree ret
= build_nt_call_vec (orig_fn
, orig_args
);
2163 release_tree_vector (orig_args
);
2166 object
= build_non_dependent_expr (object
);
2169 result
= build_new_method_call (object
, fn
, args
, NULL_TREE
,
2171 ? LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
2176 else if (is_overloaded_fn (fn
))
2178 /* If the function is an overloaded builtin, resolve it. */
2179 if (TREE_CODE (fn
) == FUNCTION_DECL
2180 && (DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_NORMAL
2181 || DECL_BUILT_IN_CLASS (fn
) == BUILT_IN_MD
))
2182 result
= resolve_overloaded_builtin (input_location
, fn
, *args
);
2186 if (warn_sizeof_pointer_memaccess
2187 && !vec_safe_is_empty (*args
)
2188 && !processing_template_decl
)
2190 location_t sizeof_arg_loc
[3];
2193 for (i
= 0; i
< 3; i
++)
2197 sizeof_arg_loc
[i
] = UNKNOWN_LOCATION
;
2198 sizeof_arg
[i
] = NULL_TREE
;
2199 if (i
>= (*args
)->length ())
2202 if (TREE_CODE (t
) != SIZEOF_EXPR
)
2204 if (SIZEOF_EXPR_TYPE_P (t
))
2205 sizeof_arg
[i
] = TREE_TYPE (TREE_OPERAND (t
, 0));
2207 sizeof_arg
[i
] = TREE_OPERAND (t
, 0);
2208 sizeof_arg_loc
[i
] = EXPR_LOCATION (t
);
2210 sizeof_pointer_memaccess_warning
2211 (sizeof_arg_loc
, fn
, *args
,
2212 sizeof_arg
, same_type_ignoring_top_level_qualifiers_p
);
2215 /* A call to a namespace-scope function. */
2216 result
= build_new_function_call (fn
, args
, koenig_p
, complain
);
2219 else if (TREE_CODE (fn
) == PSEUDO_DTOR_EXPR
)
2221 if (!vec_safe_is_empty (*args
))
2222 error ("arguments to destructor are not allowed");
2223 /* Mark the pseudo-destructor call as having side-effects so
2224 that we do not issue warnings about its use. */
2225 result
= build1 (NOP_EXPR
,
2227 TREE_OPERAND (fn
, 0));
2228 TREE_SIDE_EFFECTS (result
) = 1;
2230 else if (CLASS_TYPE_P (TREE_TYPE (fn
)))
2231 /* If the "function" is really an object of class type, it might
2232 have an overloaded `operator ()'. */
2233 result
= build_op_call (fn
, args
, complain
);
2236 /* A call where the function is unknown. */
2237 result
= cp_build_function_call_vec (fn
, args
, complain
);
2239 if (processing_template_decl
&& result
!= error_mark_node
)
2241 if (TREE_CODE (result
) == INDIRECT_REF
)
2242 result
= TREE_OPERAND (result
, 0);
2243 result
= build_call_vec (TREE_TYPE (result
), orig_fn
, orig_args
);
2244 SET_EXPR_LOCATION (result
, input_location
);
2245 KOENIG_LOOKUP_P (result
) = koenig_p
;
2246 release_tree_vector (orig_args
);
2247 result
= convert_from_reference (result
);
2252 /* Free garbage OVERLOADs from arg-dependent lookup. */
2253 tree next
= NULL_TREE
;
2255 fn
&& TREE_CODE (fn
) == OVERLOAD
&& OVL_ARG_DEPENDENT (fn
);
2258 if (processing_template_decl
)
2259 /* In a template, we'll re-use them at instantiation time. */
2260 OVL_ARG_DEPENDENT (fn
) = false;
2263 next
= OVL_CHAIN (fn
);
2272 /* Finish a call to a postfix increment or decrement or EXPR. (Which
2273 is indicated by CODE, which should be POSTINCREMENT_EXPR or
2274 POSTDECREMENT_EXPR.) */
2277 finish_increment_expr (tree expr
, enum tree_code code
)
2279 return build_x_unary_op (input_location
, code
, expr
, tf_warning_or_error
);
2282 /* Finish a use of `this'. Returns an expression for `this'. */
2285 finish_this_expr (void)
2289 if (current_class_ptr
)
2291 tree type
= TREE_TYPE (current_class_ref
);
2293 /* In a lambda expression, 'this' refers to the captured 'this'. */
2294 if (LAMBDA_TYPE_P (type
))
2295 result
= lambda_expr_this_capture (CLASSTYPE_LAMBDA_EXPR (type
));
2297 result
= current_class_ptr
;
2300 else if (current_function_decl
2301 && DECL_STATIC_FUNCTION_P (current_function_decl
))
2303 error ("%<this%> is unavailable for static member functions");
2304 result
= error_mark_node
;
2308 if (current_function_decl
)
2309 error ("invalid use of %<this%> in non-member function");
2311 error ("invalid use of %<this%> at top level");
2312 result
= error_mark_node
;
2318 /* Finish a pseudo-destructor expression. If SCOPE is NULL, the
2319 expression was of the form `OBJECT.~DESTRUCTOR' where DESTRUCTOR is
2320 the TYPE for the type given. If SCOPE is non-NULL, the expression
2321 was of the form `OBJECT.SCOPE::~DESTRUCTOR'. */
2324 finish_pseudo_destructor_expr (tree object
, tree scope
, tree destructor
)
2326 if (object
== error_mark_node
|| destructor
== error_mark_node
)
2327 return error_mark_node
;
2329 gcc_assert (TYPE_P (destructor
));
2331 if (!processing_template_decl
)
2333 if (scope
== error_mark_node
)
2335 error ("invalid qualifying scope in pseudo-destructor name");
2336 return error_mark_node
;
2338 if (scope
&& TYPE_P (scope
) && !check_dtor_name (scope
, destructor
))
2340 error ("qualified type %qT does not match destructor name ~%qT",
2342 return error_mark_node
;
2346 /* [expr.pseudo] says both:
2348 The type designated by the pseudo-destructor-name shall be
2349 the same as the object type.
2353 The cv-unqualified versions of the object type and of the
2354 type designated by the pseudo-destructor-name shall be the
2357 We implement the more generous second sentence, since that is
2358 what most other compilers do. */
2359 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (object
),
2362 error ("%qE is not of type %qT", object
, destructor
);
2363 return error_mark_node
;
2367 return build3 (PSEUDO_DTOR_EXPR
, void_type_node
, object
, scope
, destructor
);
2370 /* Finish an expression of the form CODE EXPR. */
2373 finish_unary_op_expr (location_t loc
, enum tree_code code
, tree expr
)
2375 tree result
= build_x_unary_op (loc
, code
, expr
, tf_warning_or_error
);
2376 if (TREE_OVERFLOW_P (result
) && !TREE_OVERFLOW_P (expr
))
2377 overflow_warning (input_location
, result
);
2382 /* Finish a compound-literal expression. TYPE is the type to which
2383 the CONSTRUCTOR in COMPOUND_LITERAL is being cast. */
2386 finish_compound_literal (tree type
, tree compound_literal
,
2387 tsubst_flags_t complain
)
2389 if (type
== error_mark_node
)
2390 return error_mark_node
;
2392 if (TREE_CODE (type
) == REFERENCE_TYPE
)
2395 = finish_compound_literal (TREE_TYPE (type
), compound_literal
,
2397 return cp_build_c_cast (type
, compound_literal
, complain
);
2400 if (!TYPE_OBJ_P (type
))
2402 if (complain
& tf_error
)
2403 error ("compound literal of non-object type %qT", type
);
2404 return error_mark_node
;
2407 if (processing_template_decl
)
2409 TREE_TYPE (compound_literal
) = type
;
2410 /* Mark the expression as a compound literal. */
2411 TREE_HAS_CONSTRUCTOR (compound_literal
) = 1;
2412 return compound_literal
;
2415 type
= complete_type (type
);
2417 if (TYPE_NON_AGGREGATE_CLASS (type
))
2419 /* Trying to deal with a CONSTRUCTOR instead of a TREE_LIST
2420 everywhere that deals with function arguments would be a pain, so
2421 just wrap it in a TREE_LIST. The parser set a flag so we know
2422 that it came from T{} rather than T({}). */
2423 CONSTRUCTOR_IS_DIRECT_INIT (compound_literal
) = 1;
2424 compound_literal
= build_tree_list (NULL_TREE
, compound_literal
);
2425 return build_functional_cast (type
, compound_literal
, complain
);
2428 if (TREE_CODE (type
) == ARRAY_TYPE
2429 && check_array_initializer (NULL_TREE
, type
, compound_literal
))
2430 return error_mark_node
;
2431 compound_literal
= reshape_init (type
, compound_literal
, complain
);
2432 if (SCALAR_TYPE_P (type
)
2433 && !BRACE_ENCLOSED_INITIALIZER_P (compound_literal
)
2434 && (complain
& tf_warning_or_error
))
2435 check_narrowing (type
, compound_literal
);
2436 if (TREE_CODE (type
) == ARRAY_TYPE
2437 && TYPE_DOMAIN (type
) == NULL_TREE
)
2439 cp_complete_array_type_or_error (&type
, compound_literal
,
2441 if (type
== error_mark_node
)
2442 return error_mark_node
;
2444 compound_literal
= digest_init (type
, compound_literal
, complain
);
2445 if (TREE_CODE (compound_literal
) == CONSTRUCTOR
)
2446 TREE_HAS_CONSTRUCTOR (compound_literal
) = true;
2447 /* Put static/constant array temporaries in static variables, but always
2448 represent class temporaries with TARGET_EXPR so we elide copies. */
2449 if ((!at_function_scope_p () || CP_TYPE_CONST_P (type
))
2450 && TREE_CODE (type
) == ARRAY_TYPE
2451 && !TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
)
2452 && initializer_constant_valid_p (compound_literal
, type
))
2454 tree decl
= create_temporary_var (type
);
2455 DECL_INITIAL (decl
) = compound_literal
;
2456 TREE_STATIC (decl
) = 1;
2457 if (literal_type_p (type
) && CP_TYPE_CONST_NON_VOLATILE_P (type
))
2459 /* 5.19 says that a constant expression can include an
2460 lvalue-rvalue conversion applied to "a glvalue of literal type
2461 that refers to a non-volatile temporary object initialized
2462 with a constant expression". Rather than try to communicate
2463 that this VAR_DECL is a temporary, just mark it constexpr. */
2464 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
2465 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (decl
) = true;
2466 TREE_CONSTANT (decl
) = true;
2468 cp_apply_type_quals_to_decl (cp_type_quals (type
), decl
);
2469 decl
= pushdecl_top_level (decl
);
2470 DECL_NAME (decl
) = make_anon_name ();
2471 SET_DECL_ASSEMBLER_NAME (decl
, DECL_NAME (decl
));
2475 return get_target_expr_sfinae (compound_literal
, complain
);
2478 /* Return the declaration for the function-name variable indicated by
2482 finish_fname (tree id
)
2486 decl
= fname_decl (input_location
, C_RID_CODE (id
), id
);
2487 if (processing_template_decl
&& current_function_decl
)
2488 decl
= DECL_NAME (decl
);
2492 /* Finish a translation unit. */
2495 finish_translation_unit (void)
2497 /* In case there were missing closebraces,
2498 get us back to the global binding level. */
2500 while (current_namespace
!= global_namespace
)
2503 /* Do file scope __FUNCTION__ et al. */
2504 finish_fname_decls ();
2507 /* Finish a template type parameter, specified as AGGR IDENTIFIER.
2508 Returns the parameter. */
2511 finish_template_type_parm (tree aggr
, tree identifier
)
2513 if (aggr
!= class_type_node
)
2515 permerror (input_location
, "template type parameters must use the keyword %<class%> or %<typename%>");
2516 aggr
= class_type_node
;
2519 return build_tree_list (aggr
, identifier
);
2522 /* Finish a template template parameter, specified as AGGR IDENTIFIER.
2523 Returns the parameter. */
2526 finish_template_template_parm (tree aggr
, tree identifier
)
2528 tree decl
= build_decl (input_location
,
2529 TYPE_DECL
, identifier
, NULL_TREE
);
2530 tree tmpl
= build_lang_decl (TEMPLATE_DECL
, identifier
, NULL_TREE
);
2531 DECL_TEMPLATE_PARMS (tmpl
) = current_template_parms
;
2532 DECL_TEMPLATE_RESULT (tmpl
) = decl
;
2533 DECL_ARTIFICIAL (decl
) = 1;
2534 end_template_decl ();
2536 gcc_assert (DECL_TEMPLATE_PARMS (tmpl
));
2538 check_default_tmpl_args (decl
, DECL_TEMPLATE_PARMS (tmpl
),
2539 /*is_primary=*/true, /*is_partial=*/false,
2542 return finish_template_type_parm (aggr
, tmpl
);
2545 /* ARGUMENT is the default-argument value for a template template
2546 parameter. If ARGUMENT is invalid, issue error messages and return
2547 the ERROR_MARK_NODE. Otherwise, ARGUMENT itself is returned. */
2550 check_template_template_default_arg (tree argument
)
2552 if (TREE_CODE (argument
) != TEMPLATE_DECL
2553 && TREE_CODE (argument
) != TEMPLATE_TEMPLATE_PARM
2554 && TREE_CODE (argument
) != UNBOUND_CLASS_TEMPLATE
)
2556 if (TREE_CODE (argument
) == TYPE_DECL
)
2557 error ("invalid use of type %qT as a default value for a template "
2558 "template-parameter", TREE_TYPE (argument
));
2560 error ("invalid default argument for a template template parameter");
2561 return error_mark_node
;
2567 /* Begin a class definition, as indicated by T. */
2570 begin_class_definition (tree t
)
2572 if (error_operand_p (t
) || error_operand_p (TYPE_MAIN_DECL (t
)))
2573 return error_mark_node
;
2575 if (processing_template_parmlist
)
2577 error ("definition of %q#T inside template parameter list", t
);
2578 return error_mark_node
;
2581 /* According to the C++ ABI, decimal classes defined in ISO/IEC TR 24733
2582 are passed the same as decimal scalar types. */
2583 if (TREE_CODE (t
) == RECORD_TYPE
2584 && !processing_template_decl
)
2586 tree ns
= TYPE_CONTEXT (t
);
2587 if (ns
&& TREE_CODE (ns
) == NAMESPACE_DECL
2588 && DECL_CONTEXT (ns
) == std_node
2590 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (ns
)), "decimal"))
2592 const char *n
= TYPE_NAME_STRING (t
);
2593 if ((strcmp (n
, "decimal32") == 0)
2594 || (strcmp (n
, "decimal64") == 0)
2595 || (strcmp (n
, "decimal128") == 0))
2596 TYPE_TRANSPARENT_AGGR (t
) = 1;
2600 /* A non-implicit typename comes from code like:
2602 template <typename T> struct A {
2603 template <typename U> struct A<T>::B ...
2605 This is erroneous. */
2606 else if (TREE_CODE (t
) == TYPENAME_TYPE
)
2608 error ("invalid definition of qualified type %qT", t
);
2609 t
= error_mark_node
;
2612 if (t
== error_mark_node
|| ! MAYBE_CLASS_TYPE_P (t
))
2614 t
= make_class_type (RECORD_TYPE
);
2615 pushtag (make_anon_name (), t
, /*tag_scope=*/ts_current
);
2618 if (TYPE_BEING_DEFINED (t
))
2620 t
= make_class_type (TREE_CODE (t
));
2621 pushtag (TYPE_IDENTIFIER (t
), t
, /*tag_scope=*/ts_current
);
2623 maybe_process_partial_specialization (t
);
2625 TYPE_BEING_DEFINED (t
) = 1;
2627 if (flag_pack_struct
)
2630 TYPE_PACKED (t
) = 1;
2631 /* Even though the type is being defined for the first time
2632 here, there might have been a forward declaration, so there
2633 might be cv-qualified variants of T. */
2634 for (v
= TYPE_NEXT_VARIANT (t
); v
; v
= TYPE_NEXT_VARIANT (v
))
2635 TYPE_PACKED (v
) = 1;
2637 /* Reset the interface data, at the earliest possible
2638 moment, as it might have been set via a class foo;
2640 if (! TYPE_ANONYMOUS_P (t
))
2642 struct c_fileinfo
*finfo
= get_fileinfo (input_filename
);
2643 CLASSTYPE_INTERFACE_ONLY (t
) = finfo
->interface_only
;
2644 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
2645 (t
, finfo
->interface_unknown
);
2647 reset_specialization();
2649 /* Make a declaration for this class in its own scope. */
2650 build_self_reference ();
2655 /* Finish the member declaration given by DECL. */
2658 finish_member_declaration (tree decl
)
2660 if (decl
== error_mark_node
|| decl
== NULL_TREE
)
2663 if (decl
== void_type_node
)
2664 /* The COMPONENT was a friend, not a member, and so there's
2665 nothing for us to do. */
2668 /* We should see only one DECL at a time. */
2669 gcc_assert (DECL_CHAIN (decl
) == NULL_TREE
);
2671 /* Set up access control for DECL. */
2673 = (current_access_specifier
== access_private_node
);
2674 TREE_PROTECTED (decl
)
2675 = (current_access_specifier
== access_protected_node
);
2676 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
2678 TREE_PRIVATE (DECL_TEMPLATE_RESULT (decl
)) = TREE_PRIVATE (decl
);
2679 TREE_PROTECTED (DECL_TEMPLATE_RESULT (decl
)) = TREE_PROTECTED (decl
);
2682 /* Mark the DECL as a member of the current class, unless it's
2683 a member of an enumeration. */
2684 if (TREE_CODE (decl
) != CONST_DECL
)
2685 DECL_CONTEXT (decl
) = current_class_type
;
2687 /* Check for bare parameter packs in the member variable declaration. */
2688 if (TREE_CODE (decl
) == FIELD_DECL
)
2690 if (check_for_bare_parameter_packs (TREE_TYPE (decl
)))
2691 TREE_TYPE (decl
) = error_mark_node
;
2692 if (check_for_bare_parameter_packs (DECL_ATTRIBUTES (decl
)))
2693 DECL_ATTRIBUTES (decl
) = NULL_TREE
;
2698 A C language linkage is ignored for the names of class members
2699 and the member function type of class member functions. */
2700 if (DECL_LANG_SPECIFIC (decl
) && DECL_LANGUAGE (decl
) == lang_c
)
2701 SET_DECL_LANGUAGE (decl
, lang_cplusplus
);
2703 /* Put functions on the TYPE_METHODS list and everything else on the
2704 TYPE_FIELDS list. Note that these are built up in reverse order.
2705 We reverse them (to obtain declaration order) in finish_struct. */
2706 if (TREE_CODE (decl
) == FUNCTION_DECL
2707 || DECL_FUNCTION_TEMPLATE_P (decl
))
2709 /* We also need to add this function to the
2710 CLASSTYPE_METHOD_VEC. */
2711 if (add_method (current_class_type
, decl
, NULL_TREE
))
2713 DECL_CHAIN (decl
) = TYPE_METHODS (current_class_type
);
2714 TYPE_METHODS (current_class_type
) = decl
;
2716 maybe_add_class_template_decl_list (current_class_type
, decl
,
2720 /* Enter the DECL into the scope of the class. */
2721 else if (pushdecl_class_level (decl
))
2723 if (TREE_CODE (decl
) == USING_DECL
)
2725 /* For now, ignore class-scope USING_DECLS, so that
2726 debugging backends do not see them. */
2727 DECL_IGNORED_P (decl
) = 1;
2730 /* All TYPE_DECLs go at the end of TYPE_FIELDS. Ordinary fields
2731 go at the beginning. The reason is that lookup_field_1
2732 searches the list in order, and we want a field name to
2733 override a type name so that the "struct stat hack" will
2734 work. In particular:
2736 struct S { enum E { }; int E } s;
2739 is valid. In addition, the FIELD_DECLs must be maintained in
2740 declaration order so that class layout works as expected.
2741 However, we don't need that order until class layout, so we
2742 save a little time by putting FIELD_DECLs on in reverse order
2743 here, and then reversing them in finish_struct_1. (We could
2744 also keep a pointer to the correct insertion points in the
2747 if (TREE_CODE (decl
) == TYPE_DECL
)
2748 TYPE_FIELDS (current_class_type
)
2749 = chainon (TYPE_FIELDS (current_class_type
), decl
);
2752 DECL_CHAIN (decl
) = TYPE_FIELDS (current_class_type
);
2753 TYPE_FIELDS (current_class_type
) = decl
;
2756 maybe_add_class_template_decl_list (current_class_type
, decl
,
2761 note_decl_for_pch (decl
);
2764 /* DECL has been declared while we are building a PCH file. Perform
2765 actions that we might normally undertake lazily, but which can be
2766 performed now so that they do not have to be performed in
2767 translation units which include the PCH file. */
2770 note_decl_for_pch (tree decl
)
2772 gcc_assert (pch_file
);
2774 /* There's a good chance that we'll have to mangle names at some
2775 point, even if only for emission in debugging information. */
2776 if ((TREE_CODE (decl
) == VAR_DECL
2777 || TREE_CODE (decl
) == FUNCTION_DECL
)
2778 && !processing_template_decl
)
2782 /* Finish processing a complete template declaration. The PARMS are
2783 the template parameters. */
2786 finish_template_decl (tree parms
)
2789 end_template_decl ();
2791 end_specialization ();
2794 /* Finish processing a template-id (which names a type) of the form
2795 NAME < ARGS >. Return the TYPE_DECL for the type named by the
2796 template-id. If ENTERING_SCOPE is nonzero we are about to enter
2797 the scope of template-id indicated. */
2800 finish_template_type (tree name
, tree args
, int entering_scope
)
2804 type
= lookup_template_class (name
, args
,
2805 NULL_TREE
, NULL_TREE
, entering_scope
,
2806 tf_warning_or_error
| tf_user
);
2807 if (type
== error_mark_node
)
2809 else if (CLASS_TYPE_P (type
) && !alias_type_or_template_p (type
))
2810 return TYPE_STUB_DECL (type
);
2812 return TYPE_NAME (type
);
2815 /* Finish processing a BASE_CLASS with the indicated ACCESS_SPECIFIER.
2816 Return a TREE_LIST containing the ACCESS_SPECIFIER and the
2817 BASE_CLASS, or NULL_TREE if an error occurred. The
2818 ACCESS_SPECIFIER is one of
2819 access_{default,public,protected_private}_node. For a virtual base
2820 we set TREE_TYPE. */
2823 finish_base_specifier (tree base
, tree access
, bool virtual_p
)
2827 if (base
== error_mark_node
)
2829 error ("invalid base-class specification");
2832 else if (! MAYBE_CLASS_TYPE_P (base
))
2834 error ("%qT is not a class type", base
);
2839 if (cp_type_quals (base
) != 0)
2841 /* DR 484: Can a base-specifier name a cv-qualified
2843 base
= TYPE_MAIN_VARIANT (base
);
2845 result
= build_tree_list (access
, base
);
2847 TREE_TYPE (result
) = integer_type_node
;
2853 /* If FNS is a member function, a set of member functions, or a
2854 template-id referring to one or more member functions, return a
2855 BASELINK for FNS, incorporating the current access context.
2856 Otherwise, return FNS unchanged. */
2859 baselink_for_fns (tree fns
)
2864 if (BASELINK_P (fns
)
2865 || error_operand_p (fns
))
2868 scope
= ovl_scope (fns
);
2869 if (!CLASS_TYPE_P (scope
))
2872 cl
= currently_open_derived_class (scope
);
2875 cl
= TYPE_BINFO (cl
);
2876 return build_baselink (cl
, cl
, fns
, /*optype=*/NULL_TREE
);
2879 /* Returns true iff DECL is a variable from a function outside
2883 outer_var_p (tree decl
)
2885 return ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
)
2886 && DECL_FUNCTION_SCOPE_P (decl
)
2887 && DECL_CONTEXT (decl
) != current_function_decl
);
2890 /* As above, but also checks that DECL is automatic. */
2893 outer_automatic_var_p (tree decl
)
2895 return (outer_var_p (decl
)
2896 && !TREE_STATIC (decl
));
2899 /* ID_EXPRESSION is a representation of parsed, but unprocessed,
2900 id-expression. (See cp_parser_id_expression for details.) SCOPE,
2901 if non-NULL, is the type or namespace used to explicitly qualify
2902 ID_EXPRESSION. DECL is the entity to which that name has been
2905 *CONSTANT_EXPRESSION_P is true if we are presently parsing a
2906 constant-expression. In that case, *NON_CONSTANT_EXPRESSION_P will
2907 be set to true if this expression isn't permitted in a
2908 constant-expression, but it is otherwise not set by this function.
2909 *ALLOW_NON_CONSTANT_EXPRESSION_P is true if we are parsing a
2910 constant-expression, but a non-constant expression is also
2913 DONE is true if this expression is a complete postfix-expression;
2914 it is false if this expression is followed by '->', '[', '(', etc.
2915 ADDRESS_P is true iff this expression is the operand of '&'.
2916 TEMPLATE_P is true iff the qualified-id was of the form
2917 "A::template B". TEMPLATE_ARG_P is true iff this qualified name
2918 appears as a template argument.
2920 If an error occurs, and it is the kind of error that might cause
2921 the parser to abort a tentative parse, *ERROR_MSG is filled in. It
2922 is the caller's responsibility to issue the message. *ERROR_MSG
2923 will be a string with static storage duration, so the caller need
2926 Return an expression for the entity, after issuing appropriate
2927 diagnostics. This function is also responsible for transforming a
2928 reference to a non-static member into a COMPONENT_REF that makes
2929 the use of "this" explicit.
2931 Upon return, *IDK will be filled in appropriately. */
2933 finish_id_expression (tree id_expression
,
2937 bool integral_constant_expression_p
,
2938 bool allow_non_integral_constant_expression_p
,
2939 bool *non_integral_constant_expression_p
,
2943 bool template_arg_p
,
2944 const char **error_msg
,
2945 location_t location
)
2947 decl
= strip_using_decl (decl
);
2949 /* Initialize the output parameters. */
2950 *idk
= CP_ID_KIND_NONE
;
2953 if (id_expression
== error_mark_node
)
2954 return error_mark_node
;
2955 /* If we have a template-id, then no further lookup is
2956 required. If the template-id was for a template-class, we
2957 will sometimes have a TYPE_DECL at this point. */
2958 else if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
2959 || TREE_CODE (decl
) == TYPE_DECL
)
2961 /* Look up the name. */
2964 if (decl
== error_mark_node
)
2966 /* Name lookup failed. */
2969 || (!dependent_type_p (scope
)
2970 && !(TREE_CODE (id_expression
) == IDENTIFIER_NODE
2971 && IDENTIFIER_TYPENAME_P (id_expression
)
2972 && dependent_type_p (TREE_TYPE (id_expression
))))))
2974 /* If the qualifying type is non-dependent (and the name
2975 does not name a conversion operator to a dependent
2976 type), issue an error. */
2977 qualified_name_lookup_error (scope
, id_expression
, decl
, location
);
2978 return error_mark_node
;
2982 /* It may be resolved via Koenig lookup. */
2983 *idk
= CP_ID_KIND_UNQUALIFIED
;
2984 return id_expression
;
2987 decl
= id_expression
;
2989 /* If DECL is a variable that would be out of scope under
2990 ANSI/ISO rules, but in scope in the ARM, name lookup
2991 will succeed. Issue a diagnostic here. */
2993 decl
= check_for_out_of_scope_variable (decl
);
2995 /* Remember that the name was used in the definition of
2996 the current class so that we can check later to see if
2997 the meaning would have been different after the class
2998 was entirely defined. */
2999 if (!scope
&& decl
!= error_mark_node
3000 && TREE_CODE (id_expression
) == IDENTIFIER_NODE
)
3001 maybe_note_name_used_in_class (id_expression
, decl
);
3003 /* Disallow uses of local variables from containing functions, except
3004 within lambda-expressions. */
3005 if (!outer_var_p (decl
)
3006 /* It's not a use (3.2) if we're in an unevaluated context. */
3007 || cp_unevaluated_operand
)
3009 else if (TREE_STATIC (decl
))
3011 if (processing_template_decl
)
3012 /* For a use of an outer static var, return the identifier so
3013 that we'll look it up again in the instantiation. */
3014 return id_expression
;
3018 tree context
= DECL_CONTEXT (decl
);
3019 tree containing_function
= current_function_decl
;
3020 tree lambda_stack
= NULL_TREE
;
3021 tree lambda_expr
= NULL_TREE
;
3022 tree initializer
= convert_from_reference (decl
);
3024 /* Mark it as used now even if the use is ill-formed. */
3027 /* Core issue 696: "[At the July 2009 meeting] the CWG expressed
3028 support for an approach in which a reference to a local
3029 [constant] automatic variable in a nested class or lambda body
3030 would enter the expression as an rvalue, which would reduce
3031 the complexity of the problem"
3033 FIXME update for final resolution of core issue 696. */
3034 if (decl_constant_var_p (decl
))
3036 if (processing_template_decl
)
3037 /* In a template, the constant value may not be in a usable
3038 form, so look it up again at instantiation time. */
3039 return id_expression
;
3041 return integral_constant_value (decl
);
3044 /* If we are in a lambda function, we can move out until we hit
3046 2. a non-lambda function, or
3047 3. a non-default capturing lambda function. */
3048 while (context
!= containing_function
3049 && LAMBDA_FUNCTION_P (containing_function
))
3051 lambda_expr
= CLASSTYPE_LAMBDA_EXPR
3052 (DECL_CONTEXT (containing_function
));
3054 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda_expr
)
3058 lambda_stack
= tree_cons (NULL_TREE
,
3063 = decl_function_context (containing_function
);
3066 if (context
== containing_function
)
3068 decl
= add_default_capture (lambda_stack
,
3069 /*id=*/DECL_NAME (decl
),
3072 else if (lambda_expr
)
3074 error ("%qD is not captured", decl
);
3075 return error_mark_node
;
3079 error (TREE_CODE (decl
) == VAR_DECL
3080 ? G_("use of local variable with automatic storage from containing function")
3081 : G_("use of parameter from containing function"));
3082 error (" %q+#D declared here", decl
);
3083 return error_mark_node
;
3087 /* Also disallow uses of function parameters outside the function
3088 body, except inside an unevaluated context (i.e. decltype). */
3089 if (TREE_CODE (decl
) == PARM_DECL
3090 && DECL_CONTEXT (decl
) == NULL_TREE
3091 && !cp_unevaluated_operand
)
3093 error ("use of parameter %qD outside function body", decl
);
3094 return error_mark_node
;
3098 /* If we didn't find anything, or what we found was a type,
3099 then this wasn't really an id-expression. */
3100 if (TREE_CODE (decl
) == TEMPLATE_DECL
3101 && !DECL_FUNCTION_TEMPLATE_P (decl
))
3103 *error_msg
= "missing template arguments";
3104 return error_mark_node
;
3106 else if (TREE_CODE (decl
) == TYPE_DECL
3107 || TREE_CODE (decl
) == NAMESPACE_DECL
)
3109 *error_msg
= "expected primary-expression";
3110 return error_mark_node
;
3113 /* If the name resolved to a template parameter, there is no
3114 need to look it up again later. */
3115 if ((TREE_CODE (decl
) == CONST_DECL
&& DECL_TEMPLATE_PARM_P (decl
))
3116 || TREE_CODE (decl
) == TEMPLATE_PARM_INDEX
)
3120 *idk
= CP_ID_KIND_NONE
;
3121 if (TREE_CODE (decl
) == TEMPLATE_PARM_INDEX
)
3122 decl
= TEMPLATE_PARM_DECL (decl
);
3123 r
= convert_from_reference (DECL_INITIAL (decl
));
3125 if (integral_constant_expression_p
3126 && !dependent_type_p (TREE_TYPE (decl
))
3127 && !(INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (r
))))
3129 if (!allow_non_integral_constant_expression_p
)
3130 error ("template parameter %qD of type %qT is not allowed in "
3131 "an integral constant expression because it is not of "
3132 "integral or enumeration type", decl
, TREE_TYPE (decl
));
3133 *non_integral_constant_expression_p
= true;
3141 /* If the declaration was explicitly qualified indicate
3142 that. The semantics of `A::f(3)' are different than
3143 `f(3)' if `f' is virtual. */
3145 ? CP_ID_KIND_QUALIFIED
3146 : (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
3147 ? CP_ID_KIND_TEMPLATE_ID
3148 : CP_ID_KIND_UNQUALIFIED
));
3153 An id-expression is type-dependent if it contains an
3154 identifier that was declared with a dependent type.
3156 The standard is not very specific about an id-expression that
3157 names a set of overloaded functions. What if some of them
3158 have dependent types and some of them do not? Presumably,
3159 such a name should be treated as a dependent name. */
3160 /* Assume the name is not dependent. */
3161 dependent_p
= false;
3162 if (!processing_template_decl
)
3163 /* No names are dependent outside a template. */
3165 else if (TREE_CODE (decl
) == CONST_DECL
)
3166 /* We don't want to treat enumerators as dependent. */
3168 /* A template-id where the name of the template was not resolved
3169 is definitely dependent. */
3170 else if (TREE_CODE (decl
) == TEMPLATE_ID_EXPR
3171 && (TREE_CODE (TREE_OPERAND (decl
, 0))
3172 == IDENTIFIER_NODE
))
3174 /* For anything except an overloaded function, just check its
3176 else if (!is_overloaded_fn (decl
))
3178 = dependent_type_p (TREE_TYPE (decl
));
3179 /* For a set of overloaded functions, check each of the
3185 if (BASELINK_P (fns
))
3186 fns
= BASELINK_FUNCTIONS (fns
);
3188 /* For a template-id, check to see if the template
3189 arguments are dependent. */
3190 if (TREE_CODE (fns
) == TEMPLATE_ID_EXPR
)
3192 tree args
= TREE_OPERAND (fns
, 1);
3193 dependent_p
= any_dependent_template_arguments_p (args
);
3194 /* The functions are those referred to by the
3196 fns
= TREE_OPERAND (fns
, 0);
3199 /* If there are no dependent template arguments, go through
3200 the overloaded functions. */
3201 while (fns
&& !dependent_p
)
3203 tree fn
= OVL_CURRENT (fns
);
3205 /* Member functions of dependent classes are
3207 if (TREE_CODE (fn
) == FUNCTION_DECL
3208 && type_dependent_expression_p (fn
))
3210 else if (TREE_CODE (fn
) == TEMPLATE_DECL
3211 && dependent_template_p (fn
))
3214 fns
= OVL_NEXT (fns
);
3218 /* If the name was dependent on a template parameter, we will
3219 resolve the name at instantiation time. */
3222 /* Create a SCOPE_REF for qualified names, if the scope is
3228 if (address_p
&& done
)
3229 decl
= finish_qualified_id_expr (scope
, decl
,
3235 tree type
= NULL_TREE
;
3236 if (DECL_P (decl
) && !dependent_scope_p (scope
))
3237 type
= TREE_TYPE (decl
);
3238 decl
= build_qualified_name (type
,
3244 if (TREE_TYPE (decl
))
3245 decl
= convert_from_reference (decl
);
3248 /* A TEMPLATE_ID already contains all the information we
3250 if (TREE_CODE (id_expression
) == TEMPLATE_ID_EXPR
)
3251 return id_expression
;
3252 *idk
= CP_ID_KIND_UNQUALIFIED_DEPENDENT
;
3253 /* If we found a variable, then name lookup during the
3254 instantiation will always resolve to the same VAR_DECL
3255 (or an instantiation thereof). */
3256 if (TREE_CODE (decl
) == VAR_DECL
3257 || TREE_CODE (decl
) == PARM_DECL
)
3260 return convert_from_reference (decl
);
3262 /* The same is true for FIELD_DECL, but we also need to
3263 make sure that the syntax is correct. */
3264 else if (TREE_CODE (decl
) == FIELD_DECL
)
3266 /* Since SCOPE is NULL here, this is an unqualified name.
3267 Access checking has been performed during name lookup
3268 already. Turn off checking to avoid duplicate errors. */
3269 push_deferring_access_checks (dk_no_check
);
3270 decl
= finish_non_static_data_member
3272 /*qualifying_scope=*/NULL_TREE
);
3273 pop_deferring_access_checks ();
3276 return id_expression
;
3279 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
3281 error ("use of namespace %qD as expression", decl
);
3282 return error_mark_node
;
3284 else if (DECL_CLASS_TEMPLATE_P (decl
))
3286 error ("use of class template %qT as expression", decl
);
3287 return error_mark_node
;
3289 else if (TREE_CODE (decl
) == TREE_LIST
)
3291 /* Ambiguous reference to base members. */
3292 error ("request for member %qD is ambiguous in "
3293 "multiple inheritance lattice", id_expression
);
3294 print_candidates (decl
);
3295 return error_mark_node
;
3298 /* Mark variable-like entities as used. Functions are similarly
3299 marked either below or after overload resolution. */
3300 if ((TREE_CODE (decl
) == VAR_DECL
3301 || TREE_CODE (decl
) == PARM_DECL
3302 || TREE_CODE (decl
) == CONST_DECL
3303 || TREE_CODE (decl
) == RESULT_DECL
)
3304 && !mark_used (decl
))
3305 return error_mark_node
;
3307 /* Only certain kinds of names are allowed in constant
3308 expression. Template parameters have already
3309 been handled above. */
3310 if (! error_operand_p (decl
)
3311 && integral_constant_expression_p
3312 && ! decl_constant_var_p (decl
)
3313 && TREE_CODE (decl
) != CONST_DECL
3314 && ! builtin_valid_in_constant_expr_p (decl
))
3316 if (!allow_non_integral_constant_expression_p
)
3318 error ("%qD cannot appear in a constant-expression", decl
);
3319 return error_mark_node
;
3321 *non_integral_constant_expression_p
= true;
3325 if (TREE_CODE (decl
) == VAR_DECL
3326 && !cp_unevaluated_operand
3327 && DECL_THREAD_LOCAL_P (decl
)
3328 && (wrap
= get_tls_wrapper_fn (decl
)))
3330 /* Replace an evaluated use of the thread_local variable with
3331 a call to its wrapper. */
3332 decl
= build_cxx_call (wrap
, 0, NULL
, tf_warning_or_error
);
3336 decl
= (adjust_result_of_qualified_name_lookup
3337 (decl
, scope
, current_nonlambda_class_type()));
3339 if (TREE_CODE (decl
) == FUNCTION_DECL
)
3343 decl
= finish_qualified_id_expr (scope
,
3350 decl
= convert_from_reference (decl
);
3352 else if (TREE_CODE (decl
) == FIELD_DECL
)
3354 /* Since SCOPE is NULL here, this is an unqualified name.
3355 Access checking has been performed during name lookup
3356 already. Turn off checking to avoid duplicate errors. */
3357 push_deferring_access_checks (dk_no_check
);
3358 decl
= finish_non_static_data_member (decl
, NULL_TREE
,
3359 /*qualifying_scope=*/NULL_TREE
);
3360 pop_deferring_access_checks ();
3362 else if (is_overloaded_fn (decl
))
3366 first_fn
= get_first_fn (decl
);
3367 if (TREE_CODE (first_fn
) == TEMPLATE_DECL
)
3368 first_fn
= DECL_TEMPLATE_RESULT (first_fn
);
3370 if (!really_overloaded_fn (decl
)
3371 && !mark_used (first_fn
))
3372 return error_mark_node
;
3375 && TREE_CODE (first_fn
) == FUNCTION_DECL
3376 && DECL_FUNCTION_MEMBER_P (first_fn
)
3377 && !shared_member_p (decl
))
3379 /* A set of member functions. */
3380 decl
= maybe_dummy_object (DECL_CONTEXT (first_fn
), 0);
3381 return finish_class_member_access_expr (decl
, id_expression
,
3382 /*template_p=*/false,
3383 tf_warning_or_error
);
3386 decl
= baselink_for_fns (decl
);
3390 if (DECL_P (decl
) && DECL_NONLOCAL (decl
)
3391 && DECL_CLASS_SCOPE_P (decl
))
3393 tree context
= context_for_name_lookup (decl
);
3394 if (context
!= current_class_type
)
3396 tree path
= currently_open_derived_class (context
);
3397 perform_or_defer_access_check (TYPE_BINFO (path
),
3399 tf_warning_or_error
);
3403 decl
= convert_from_reference (decl
);
3407 if (TREE_DEPRECATED (decl
))
3408 warn_deprecated_use (decl
, NULL_TREE
);
3413 /* Implement the __typeof keyword: Return the type of EXPR, suitable for
3414 use as a type-specifier. */
3417 finish_typeof (tree expr
)
3421 if (type_dependent_expression_p (expr
))
3423 type
= cxx_make_type (TYPEOF_TYPE
);
3424 TYPEOF_TYPE_EXPR (type
) = expr
;
3425 SET_TYPE_STRUCTURAL_EQUALITY (type
);
3430 expr
= mark_type_use (expr
);
3432 type
= unlowered_expr_type (expr
);
3434 if (!type
|| type
== unknown_type_node
)
3436 error ("type of %qE is unknown", expr
);
3437 return error_mark_node
;
3443 /* Implement the __underlying_type keyword: Return the underlying
3444 type of TYPE, suitable for use as a type-specifier. */
3447 finish_underlying_type (tree type
)
3449 tree underlying_type
;
3451 if (processing_template_decl
)
3453 underlying_type
= cxx_make_type (UNDERLYING_TYPE
);
3454 UNDERLYING_TYPE_TYPE (underlying_type
) = type
;
3455 SET_TYPE_STRUCTURAL_EQUALITY (underlying_type
);
3457 return underlying_type
;
3460 complete_type (type
);
3462 if (TREE_CODE (type
) != ENUMERAL_TYPE
)
3464 error ("%qT is not an enumeration type", type
);
3465 return error_mark_node
;
3468 underlying_type
= ENUM_UNDERLYING_TYPE (type
);
3470 /* Fixup necessary in this case because ENUM_UNDERLYING_TYPE
3471 includes TYPE_MIN_VALUE and TYPE_MAX_VALUE information.
3472 See finish_enum_value_list for details. */
3473 if (!ENUM_FIXED_UNDERLYING_TYPE_P (type
))
3475 = c_common_type_for_mode (TYPE_MODE (underlying_type
),
3476 TYPE_UNSIGNED (underlying_type
));
3478 return underlying_type
;
3481 /* Implement the __direct_bases keyword: Return the direct base classes
3485 calculate_direct_bases (tree type
)
3487 vec
<tree
, va_gc
> *vector
= make_tree_vector();
3488 tree bases_vec
= NULL_TREE
;
3489 vec
<tree
, va_gc
> *base_binfos
;
3493 complete_type (type
);
3495 if (!NON_UNION_CLASS_TYPE_P (type
))
3496 return make_tree_vec (0);
3498 base_binfos
= BINFO_BASE_BINFOS (TYPE_BINFO (type
));
3500 /* Virtual bases are initialized first */
3501 for (i
= 0; base_binfos
->iterate (i
, &binfo
); i
++)
3503 if (BINFO_VIRTUAL_P (binfo
))
3505 vec_safe_push (vector
, binfo
);
3509 /* Now non-virtuals */
3510 for (i
= 0; base_binfos
->iterate (i
, &binfo
); i
++)
3512 if (!BINFO_VIRTUAL_P (binfo
))
3514 vec_safe_push (vector
, binfo
);
3519 bases_vec
= make_tree_vec (vector
->length ());
3521 for (i
= 0; i
< vector
->length (); ++i
)
3523 TREE_VEC_ELT (bases_vec
, i
) = BINFO_TYPE ((*vector
)[i
]);
3528 /* Implement the __bases keyword: Return the base classes
3531 /* Find morally non-virtual base classes by walking binfo hierarchy */
3532 /* Virtual base classes are handled separately in finish_bases */
3535 dfs_calculate_bases_pre (tree binfo
, void * /*data_*/)
3537 /* Don't walk bases of virtual bases */
3538 return BINFO_VIRTUAL_P (binfo
) ? dfs_skip_bases
: NULL_TREE
;
3542 dfs_calculate_bases_post (tree binfo
, void *data_
)
3544 vec
<tree
, va_gc
> **data
= ((vec
<tree
, va_gc
> **) data_
);
3545 if (!BINFO_VIRTUAL_P (binfo
))
3547 vec_safe_push (*data
, BINFO_TYPE (binfo
));
3552 /* Calculates the morally non-virtual base classes of a class */
3553 static vec
<tree
, va_gc
> *
3554 calculate_bases_helper (tree type
)
3556 vec
<tree
, va_gc
> *vector
= make_tree_vector();
3558 /* Now add non-virtual base classes in order of construction */
3559 dfs_walk_all (TYPE_BINFO (type
),
3560 dfs_calculate_bases_pre
, dfs_calculate_bases_post
, &vector
);
3565 calculate_bases (tree type
)
3567 vec
<tree
, va_gc
> *vector
= make_tree_vector();
3568 tree bases_vec
= NULL_TREE
;
3570 vec
<tree
, va_gc
> *vbases
;
3571 vec
<tree
, va_gc
> *nonvbases
;
3574 complete_type (type
);
3576 if (!NON_UNION_CLASS_TYPE_P (type
))
3577 return make_tree_vec (0);
3579 /* First go through virtual base classes */
3580 for (vbases
= CLASSTYPE_VBASECLASSES (type
), i
= 0;
3581 vec_safe_iterate (vbases
, i
, &binfo
); i
++)
3583 vec
<tree
, va_gc
> *vbase_bases
;
3584 vbase_bases
= calculate_bases_helper (BINFO_TYPE (binfo
));
3585 vec_safe_splice (vector
, vbase_bases
);
3586 release_tree_vector (vbase_bases
);
3589 /* Now for the non-virtual bases */
3590 nonvbases
= calculate_bases_helper (type
);
3591 vec_safe_splice (vector
, nonvbases
);
3592 release_tree_vector (nonvbases
);
3594 /* Last element is entire class, so don't copy */
3595 bases_vec
= make_tree_vec (vector
->length () - 1);
3597 for (i
= 0; i
< vector
->length () - 1; ++i
)
3599 TREE_VEC_ELT (bases_vec
, i
) = (*vector
)[i
];
3601 release_tree_vector (vector
);
3606 finish_bases (tree type
, bool direct
)
3608 tree bases
= NULL_TREE
;
3610 if (!processing_template_decl
)
3612 /* Parameter packs can only be used in templates */
3613 error ("Parameter pack __bases only valid in template declaration");
3614 return error_mark_node
;
3617 bases
= cxx_make_type (BASES
);
3618 BASES_TYPE (bases
) = type
;
3619 BASES_DIRECT (bases
) = direct
;
3620 SET_TYPE_STRUCTURAL_EQUALITY (bases
);
3625 /* Perform C++-specific checks for __builtin_offsetof before calling
3629 finish_offsetof (tree expr
)
3631 if (TREE_CODE (expr
) == PSEUDO_DTOR_EXPR
)
3633 error ("cannot apply %<offsetof%> to destructor %<~%T%>",
3634 TREE_OPERAND (expr
, 2));
3635 return error_mark_node
;
3637 if (TREE_CODE (TREE_TYPE (expr
)) == FUNCTION_TYPE
3638 || TREE_CODE (TREE_TYPE (expr
)) == METHOD_TYPE
3639 || TREE_TYPE (expr
) == unknown_type_node
)
3641 if (TREE_CODE (expr
) == COMPONENT_REF
3642 || TREE_CODE (expr
) == COMPOUND_EXPR
)
3643 expr
= TREE_OPERAND (expr
, 1);
3644 error ("cannot apply %<offsetof%> to member function %qD", expr
);
3645 return error_mark_node
;
3647 if (REFERENCE_REF_P (expr
))
3648 expr
= TREE_OPERAND (expr
, 0);
3649 if (TREE_CODE (expr
) == COMPONENT_REF
)
3651 tree object
= TREE_OPERAND (expr
, 0);
3652 if (!complete_type_or_else (TREE_TYPE (object
), object
))
3653 return error_mark_node
;
3655 return fold_offsetof (expr
);
3658 /* Replace the AGGR_INIT_EXPR at *TP with an equivalent CALL_EXPR. This
3659 function is broken out from the above for the benefit of the tree-ssa
3663 simplify_aggr_init_expr (tree
*tp
)
3665 tree aggr_init_expr
= *tp
;
3667 /* Form an appropriate CALL_EXPR. */
3668 tree fn
= AGGR_INIT_EXPR_FN (aggr_init_expr
);
3669 tree slot
= AGGR_INIT_EXPR_SLOT (aggr_init_expr
);
3670 tree type
= TREE_TYPE (slot
);
3673 enum style_t
{ ctor
, arg
, pcc
} style
;
3675 if (AGGR_INIT_VIA_CTOR_P (aggr_init_expr
))
3677 #ifdef PCC_STATIC_STRUCT_RETURN
3683 gcc_assert (TREE_ADDRESSABLE (type
));
3687 call_expr
= build_call_array_loc (input_location
,
3688 TREE_TYPE (TREE_TYPE (TREE_TYPE (fn
))),
3690 aggr_init_expr_nargs (aggr_init_expr
),
3691 AGGR_INIT_EXPR_ARGP (aggr_init_expr
));
3692 TREE_NOTHROW (call_expr
) = TREE_NOTHROW (aggr_init_expr
);
3696 /* Replace the first argument to the ctor with the address of the
3698 cxx_mark_addressable (slot
);
3699 CALL_EXPR_ARG (call_expr
, 0) =
3700 build1 (ADDR_EXPR
, build_pointer_type (type
), slot
);
3702 else if (style
== arg
)
3704 /* Just mark it addressable here, and leave the rest to
3705 expand_call{,_inline}. */
3706 cxx_mark_addressable (slot
);
3707 CALL_EXPR_RETURN_SLOT_OPT (call_expr
) = true;
3708 call_expr
= build2 (INIT_EXPR
, TREE_TYPE (call_expr
), slot
, call_expr
);
3710 else if (style
== pcc
)
3712 /* If we're using the non-reentrant PCC calling convention, then we
3713 need to copy the returned value out of the static buffer into the
3715 push_deferring_access_checks (dk_no_check
);
3716 call_expr
= build_aggr_init (slot
, call_expr
,
3717 DIRECT_BIND
| LOOKUP_ONLYCONVERTING
,
3718 tf_warning_or_error
);
3719 pop_deferring_access_checks ();
3720 call_expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (slot
), call_expr
, slot
);
3723 if (AGGR_INIT_ZERO_FIRST (aggr_init_expr
))
3725 tree init
= build_zero_init (type
, NULL_TREE
,
3726 /*static_storage_p=*/false);
3727 init
= build2 (INIT_EXPR
, void_type_node
, slot
, init
);
3728 call_expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (call_expr
),
3735 /* Emit all thunks to FN that should be emitted when FN is emitted. */
3738 emit_associated_thunks (tree fn
)
3740 /* When we use vcall offsets, we emit thunks with the virtual
3741 functions to which they thunk. The whole point of vcall offsets
3742 is so that you can know statically the entire set of thunks that
3743 will ever be needed for a given virtual function, thereby
3744 enabling you to output all the thunks with the function itself. */
3745 if (DECL_VIRTUAL_P (fn
)
3746 /* Do not emit thunks for extern template instantiations. */
3747 && ! DECL_REALLY_EXTERN (fn
))
3751 for (thunk
= DECL_THUNKS (fn
); thunk
; thunk
= DECL_CHAIN (thunk
))
3753 if (!THUNK_ALIAS (thunk
))
3755 use_thunk (thunk
, /*emit_p=*/1);
3756 if (DECL_RESULT_THUNK_P (thunk
))
3760 for (probe
= DECL_THUNKS (thunk
);
3761 probe
; probe
= DECL_CHAIN (probe
))
3762 use_thunk (probe
, /*emit_p=*/1);
3766 gcc_assert (!DECL_THUNKS (thunk
));
3771 /* Returns true iff FUN is an instantiation of a constexpr function
3775 is_instantiation_of_constexpr (tree fun
)
3777 return (DECL_TEMPLOID_INSTANTIATION (fun
)
3778 && DECL_DECLARED_CONSTEXPR_P (DECL_TEMPLATE_RESULT
3779 (DECL_TI_TEMPLATE (fun
))));
3782 /* Generate RTL for FN. */
3785 expand_or_defer_fn_1 (tree fn
)
3787 /* When the parser calls us after finishing the body of a template
3788 function, we don't really want to expand the body. */
3789 if (processing_template_decl
)
3791 /* Normally, collection only occurs in rest_of_compilation. So,
3792 if we don't collect here, we never collect junk generated
3793 during the processing of templates until we hit a
3794 non-template function. It's not safe to do this inside a
3795 nested class, though, as the parser may have local state that
3796 is not a GC root. */
3797 if (!function_depth
)
3802 gcc_assert (DECL_SAVED_TREE (fn
));
3804 /* If this is a constructor or destructor body, we have to clone
3806 if (maybe_clone_body (fn
))
3808 /* We don't want to process FN again, so pretend we've written
3809 it out, even though we haven't. */
3810 TREE_ASM_WRITTEN (fn
) = 1;
3811 /* If this is an instantiation of a constexpr function, keep
3812 DECL_SAVED_TREE for explain_invalid_constexpr_fn. */
3813 if (!is_instantiation_of_constexpr (fn
))
3814 DECL_SAVED_TREE (fn
) = NULL_TREE
;
3818 /* We make a decision about linkage for these functions at the end
3819 of the compilation. Until that point, we do not want the back
3820 end to output them -- but we do want it to see the bodies of
3821 these functions so that it can inline them as appropriate. */
3822 if (DECL_DECLARED_INLINE_P (fn
) || DECL_IMPLICIT_INSTANTIATION (fn
))
3824 if (DECL_INTERFACE_KNOWN (fn
))
3825 /* We've already made a decision as to how this function will
3829 DECL_EXTERNAL (fn
) = 1;
3830 DECL_NOT_REALLY_EXTERN (fn
) = 1;
3831 note_vague_linkage_fn (fn
);
3832 /* A non-template inline function with external linkage will
3833 always be COMDAT. As we must eventually determine the
3834 linkage of all functions, and as that causes writes to
3835 the data mapped in from the PCH file, it's advantageous
3836 to mark the functions at this point. */
3837 if (!DECL_IMPLICIT_INSTANTIATION (fn
))
3839 /* This function must have external linkage, as
3840 otherwise DECL_INTERFACE_KNOWN would have been
3842 gcc_assert (TREE_PUBLIC (fn
));
3843 comdat_linkage (fn
);
3844 DECL_INTERFACE_KNOWN (fn
) = 1;
3848 import_export_decl (fn
);
3850 /* If the user wants us to keep all inline functions, then mark
3851 this function as needed so that finish_file will make sure to
3852 output it later. Similarly, all dllexport'd functions must
3853 be emitted; there may be callers in other DLLs. */
3854 if ((flag_keep_inline_functions
3855 && DECL_DECLARED_INLINE_P (fn
)
3856 && !DECL_REALLY_EXTERN (fn
))
3857 || (flag_keep_inline_dllexport
3858 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (fn
))))
3861 DECL_EXTERNAL (fn
) = 0;
3865 /* There's no reason to do any of the work here if we're only doing
3866 semantic analysis; this code just generates RTL. */
3867 if (flag_syntax_only
)
3874 expand_or_defer_fn (tree fn
)
3876 if (expand_or_defer_fn_1 (fn
))
3880 /* Expand or defer, at the whim of the compilation unit manager. */
3881 cgraph_finalize_function (fn
, function_depth
> 1);
3882 emit_associated_thunks (fn
);
3892 hash_table
<pointer_hash
<tree_node
> > visited
;
3895 /* Helper function for walk_tree, used by finalize_nrv below. */
3898 finalize_nrv_r (tree
* tp
, int* walk_subtrees
, void* data
)
3900 struct nrv_data
*dp
= (struct nrv_data
*)data
;
3903 /* No need to walk into types. There wouldn't be any need to walk into
3904 non-statements, except that we have to consider STMT_EXPRs. */
3907 /* Change all returns to just refer to the RESULT_DECL; this is a nop,
3908 but differs from using NULL_TREE in that it indicates that we care
3909 about the value of the RESULT_DECL. */
3910 else if (TREE_CODE (*tp
) == RETURN_EXPR
)
3911 TREE_OPERAND (*tp
, 0) = dp
->result
;
3912 /* Change all cleanups for the NRV to only run when an exception is
3914 else if (TREE_CODE (*tp
) == CLEANUP_STMT
3915 && CLEANUP_DECL (*tp
) == dp
->var
)
3916 CLEANUP_EH_ONLY (*tp
) = 1;
3917 /* Replace the DECL_EXPR for the NRV with an initialization of the
3918 RESULT_DECL, if needed. */
3919 else if (TREE_CODE (*tp
) == DECL_EXPR
3920 && DECL_EXPR_DECL (*tp
) == dp
->var
)
3923 if (DECL_INITIAL (dp
->var
)
3924 && DECL_INITIAL (dp
->var
) != error_mark_node
)
3925 init
= build2 (INIT_EXPR
, void_type_node
, dp
->result
,
3926 DECL_INITIAL (dp
->var
));
3928 init
= build_empty_stmt (EXPR_LOCATION (*tp
));
3929 DECL_INITIAL (dp
->var
) = NULL_TREE
;
3930 SET_EXPR_LOCATION (init
, EXPR_LOCATION (*tp
));
3933 /* And replace all uses of the NRV with the RESULT_DECL. */
3934 else if (*tp
== dp
->var
)
3937 /* Avoid walking into the same tree more than once. Unfortunately, we
3938 can't just use walk_tree_without duplicates because it would only call
3939 us for the first occurrence of dp->var in the function body. */
3940 slot
= dp
->visited
.find_slot (*tp
, INSERT
);
3946 /* Keep iterating. */
3950 /* Called from finish_function to implement the named return value
3951 optimization by overriding all the RETURN_EXPRs and pertinent
3952 CLEANUP_STMTs and replacing all occurrences of VAR with RESULT, the
3953 RESULT_DECL for the function. */
3956 finalize_nrv (tree
*tp
, tree var
, tree result
)
3958 struct nrv_data data
;
3960 /* Copy name from VAR to RESULT. */
3961 DECL_NAME (result
) = DECL_NAME (var
);
3962 /* Don't forget that we take its address. */
3963 TREE_ADDRESSABLE (result
) = TREE_ADDRESSABLE (var
);
3964 /* Finally set DECL_VALUE_EXPR to avoid assigning
3965 a stack slot at -O0 for the original var and debug info
3966 uses RESULT location for VAR. */
3967 SET_DECL_VALUE_EXPR (var
, result
);
3968 DECL_HAS_VALUE_EXPR_P (var
) = 1;
3971 data
.result
= result
;
3972 data
.visited
.create (37);
3973 cp_walk_tree (tp
, finalize_nrv_r
, &data
, 0);
3974 data
.visited
.dispose ();
3977 /* Create CP_OMP_CLAUSE_INFO for clause C. Returns true if it is invalid. */
3980 cxx_omp_create_clause_info (tree c
, tree type
, bool need_default_ctor
,
3981 bool need_copy_ctor
, bool need_copy_assignment
)
3983 int save_errorcount
= errorcount
;
3986 /* Always allocate 3 elements for simplicity. These are the
3987 function decls for the ctor, dtor, and assignment op.
3988 This layout is known to the three lang hooks,
3989 cxx_omp_clause_default_init, cxx_omp_clause_copy_init,
3990 and cxx_omp_clause_assign_op. */
3991 info
= make_tree_vec (3);
3992 CP_OMP_CLAUSE_INFO (c
) = info
;
3994 if (need_default_ctor
|| need_copy_ctor
)
3996 if (need_default_ctor
)
3997 t
= get_default_ctor (type
);
3999 t
= get_copy_ctor (type
, tf_warning_or_error
);
4001 if (t
&& !trivial_fn_p (t
))
4002 TREE_VEC_ELT (info
, 0) = t
;
4005 if ((need_default_ctor
|| need_copy_ctor
)
4006 && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (type
))
4007 TREE_VEC_ELT (info
, 1) = get_dtor (type
, tf_warning_or_error
);
4009 if (need_copy_assignment
)
4011 t
= get_copy_assign (type
);
4013 if (t
&& !trivial_fn_p (t
))
4014 TREE_VEC_ELT (info
, 2) = t
;
4017 return errorcount
!= save_errorcount
;
4020 /* For all elements of CLAUSES, validate them vs OpenMP constraints.
4021 Remove any elements from the list that are invalid. */
4024 finish_omp_clauses (tree clauses
)
4026 bitmap_head generic_head
, firstprivate_head
, lastprivate_head
;
4027 tree c
, t
, *pc
= &clauses
;
4030 bitmap_obstack_initialize (NULL
);
4031 bitmap_initialize (&generic_head
, &bitmap_default_obstack
);
4032 bitmap_initialize (&firstprivate_head
, &bitmap_default_obstack
);
4033 bitmap_initialize (&lastprivate_head
, &bitmap_default_obstack
);
4035 for (pc
= &clauses
, c
= clauses
; c
; c
= *pc
)
4037 bool remove
= false;
4039 switch (OMP_CLAUSE_CODE (c
))
4041 case OMP_CLAUSE_SHARED
:
4043 goto check_dup_generic
;
4044 case OMP_CLAUSE_PRIVATE
:
4046 goto check_dup_generic
;
4047 case OMP_CLAUSE_REDUCTION
:
4049 goto check_dup_generic
;
4050 case OMP_CLAUSE_COPYPRIVATE
:
4051 name
= "copyprivate";
4052 goto check_dup_generic
;
4053 case OMP_CLAUSE_COPYIN
:
4055 goto check_dup_generic
;
4057 t
= OMP_CLAUSE_DECL (c
);
4058 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
4060 if (processing_template_decl
)
4063 error ("%qD is not a variable in clause %qs", t
, name
);
4065 error ("%qE is not a variable in clause %qs", t
, name
);
4068 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
4069 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
))
4070 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
4072 error ("%qD appears more than once in data clauses", t
);
4076 bitmap_set_bit (&generic_head
, DECL_UID (t
));
4079 case OMP_CLAUSE_FIRSTPRIVATE
:
4080 t
= OMP_CLAUSE_DECL (c
);
4081 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
4083 if (processing_template_decl
)
4086 error ("%qD is not a variable in clause %<firstprivate%>", t
);
4088 error ("%qE is not a variable in clause %<firstprivate%>", t
);
4091 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
4092 || bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
4094 error ("%qD appears more than once in data clauses", t
);
4098 bitmap_set_bit (&firstprivate_head
, DECL_UID (t
));
4101 case OMP_CLAUSE_LASTPRIVATE
:
4102 t
= OMP_CLAUSE_DECL (c
);
4103 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
4105 if (processing_template_decl
)
4108 error ("%qD is not a variable in clause %<lastprivate%>", t
);
4110 error ("%qE is not a variable in clause %<lastprivate%>", t
);
4113 else if (bitmap_bit_p (&generic_head
, DECL_UID (t
))
4114 || bitmap_bit_p (&lastprivate_head
, DECL_UID (t
)))
4116 error ("%qD appears more than once in data clauses", t
);
4120 bitmap_set_bit (&lastprivate_head
, DECL_UID (t
));
4124 t
= OMP_CLAUSE_IF_EXPR (c
);
4125 t
= maybe_convert_cond (t
);
4126 if (t
== error_mark_node
)
4128 else if (!processing_template_decl
)
4129 t
= fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4130 OMP_CLAUSE_IF_EXPR (c
) = t
;
4133 case OMP_CLAUSE_FINAL
:
4134 t
= OMP_CLAUSE_FINAL_EXPR (c
);
4135 t
= maybe_convert_cond (t
);
4136 if (t
== error_mark_node
)
4138 else if (!processing_template_decl
)
4139 t
= fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4140 OMP_CLAUSE_FINAL_EXPR (c
) = t
;
4143 case OMP_CLAUSE_NUM_THREADS
:
4144 t
= OMP_CLAUSE_NUM_THREADS_EXPR (c
);
4145 if (t
== error_mark_node
)
4147 else if (!type_dependent_expression_p (t
)
4148 && !INTEGRAL_TYPE_P (TREE_TYPE (t
)))
4150 error ("num_threads expression must be integral");
4155 t
= mark_rvalue_use (t
);
4156 if (!processing_template_decl
)
4157 t
= fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4158 OMP_CLAUSE_NUM_THREADS_EXPR (c
) = t
;
4162 case OMP_CLAUSE_SCHEDULE
:
4163 t
= OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c
);
4166 else if (t
== error_mark_node
)
4168 else if (!type_dependent_expression_p (t
)
4169 && !INTEGRAL_TYPE_P (TREE_TYPE (t
)))
4171 error ("schedule chunk size expression must be integral");
4176 t
= mark_rvalue_use (t
);
4177 if (!processing_template_decl
)
4178 t
= fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4179 OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (c
) = t
;
4183 case OMP_CLAUSE_NOWAIT
:
4184 case OMP_CLAUSE_ORDERED
:
4185 case OMP_CLAUSE_DEFAULT
:
4186 case OMP_CLAUSE_UNTIED
:
4187 case OMP_CLAUSE_COLLAPSE
:
4188 case OMP_CLAUSE_MERGEABLE
:
4196 *pc
= OMP_CLAUSE_CHAIN (c
);
4198 pc
= &OMP_CLAUSE_CHAIN (c
);
4201 for (pc
= &clauses
, c
= clauses
; c
; c
= *pc
)
4203 enum omp_clause_code c_kind
= OMP_CLAUSE_CODE (c
);
4204 bool remove
= false;
4205 bool need_complete_non_reference
= false;
4206 bool need_default_ctor
= false;
4207 bool need_copy_ctor
= false;
4208 bool need_copy_assignment
= false;
4209 bool need_implicitly_determined
= false;
4210 tree type
, inner_type
;
4214 case OMP_CLAUSE_SHARED
:
4216 need_implicitly_determined
= true;
4218 case OMP_CLAUSE_PRIVATE
:
4220 need_complete_non_reference
= true;
4221 need_default_ctor
= true;
4222 need_implicitly_determined
= true;
4224 case OMP_CLAUSE_FIRSTPRIVATE
:
4225 name
= "firstprivate";
4226 need_complete_non_reference
= true;
4227 need_copy_ctor
= true;
4228 need_implicitly_determined
= true;
4230 case OMP_CLAUSE_LASTPRIVATE
:
4231 name
= "lastprivate";
4232 need_complete_non_reference
= true;
4233 need_copy_assignment
= true;
4234 need_implicitly_determined
= true;
4236 case OMP_CLAUSE_REDUCTION
:
4238 need_implicitly_determined
= true;
4240 case OMP_CLAUSE_COPYPRIVATE
:
4241 name
= "copyprivate";
4242 need_copy_assignment
= true;
4244 case OMP_CLAUSE_COPYIN
:
4246 need_copy_assignment
= true;
4249 pc
= &OMP_CLAUSE_CHAIN (c
);
4253 t
= OMP_CLAUSE_DECL (c
);
4254 if (processing_template_decl
4255 && TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
4257 pc
= &OMP_CLAUSE_CHAIN (c
);
4263 case OMP_CLAUSE_LASTPRIVATE
:
4264 if (!bitmap_bit_p (&firstprivate_head
, DECL_UID (t
)))
4265 need_default_ctor
= true;
4268 case OMP_CLAUSE_REDUCTION
:
4269 if (AGGREGATE_TYPE_P (TREE_TYPE (t
))
4270 || POINTER_TYPE_P (TREE_TYPE (t
)))
4272 error ("%qE has invalid type for %<reduction%>", t
);
4275 else if (FLOAT_TYPE_P (TREE_TYPE (t
)))
4277 enum tree_code r_code
= OMP_CLAUSE_REDUCTION_CODE (c
);
4287 error ("%qE has invalid type for %<reduction(%s)%>",
4288 t
, operator_name_info
[r_code
].name
);
4294 case OMP_CLAUSE_COPYIN
:
4295 if (TREE_CODE (t
) != VAR_DECL
|| !DECL_THREAD_LOCAL_P (t
))
4297 error ("%qE must be %<threadprivate%> for %<copyin%>", t
);
4306 if (need_complete_non_reference
|| need_copy_assignment
)
4308 t
= require_complete_type (t
);
4309 if (t
== error_mark_node
)
4311 else if (TREE_CODE (TREE_TYPE (t
)) == REFERENCE_TYPE
4312 && need_complete_non_reference
)
4314 error ("%qE has reference type for %qs", t
, name
);
4318 if (need_implicitly_determined
)
4320 const char *share_name
= NULL
;
4322 if (TREE_CODE (t
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (t
))
4323 share_name
= "threadprivate";
4324 else switch (cxx_omp_predetermined_sharing (t
))
4326 case OMP_CLAUSE_DEFAULT_UNSPECIFIED
:
4328 case OMP_CLAUSE_DEFAULT_SHARED
:
4329 /* const vars may be specified in firstprivate clause. */
4330 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_FIRSTPRIVATE
4331 && cxx_omp_const_qual_no_mutable (t
))
4333 share_name
= "shared";
4335 case OMP_CLAUSE_DEFAULT_PRIVATE
:
4336 share_name
= "private";
4343 error ("%qE is predetermined %qs for %qs",
4344 t
, share_name
, name
);
4349 /* We're interested in the base element, not arrays. */
4350 inner_type
= type
= TREE_TYPE (t
);
4351 while (TREE_CODE (inner_type
) == ARRAY_TYPE
)
4352 inner_type
= TREE_TYPE (inner_type
);
4354 /* Check for special function availability by building a call to one.
4355 Save the results, because later we won't be in the right context
4356 for making these queries. */
4357 if (CLASS_TYPE_P (inner_type
)
4358 && COMPLETE_TYPE_P (inner_type
)
4359 && (need_default_ctor
|| need_copy_ctor
|| need_copy_assignment
)
4360 && !type_dependent_expression_p (t
)
4361 && cxx_omp_create_clause_info (c
, inner_type
, need_default_ctor
,
4362 need_copy_ctor
, need_copy_assignment
))
4366 *pc
= OMP_CLAUSE_CHAIN (c
);
4368 pc
= &OMP_CLAUSE_CHAIN (c
);
4371 bitmap_obstack_release (NULL
);
4375 /* For all variables in the tree_list VARS, mark them as thread local. */
4378 finish_omp_threadprivate (tree vars
)
4382 /* Mark every variable in VARS to be assigned thread local storage. */
4383 for (t
= vars
; t
; t
= TREE_CHAIN (t
))
4385 tree v
= TREE_PURPOSE (t
);
4387 if (error_operand_p (v
))
4389 else if (TREE_CODE (v
) != VAR_DECL
)
4390 error ("%<threadprivate%> %qD is not file, namespace "
4391 "or block scope variable", v
);
4392 /* If V had already been marked threadprivate, it doesn't matter
4393 whether it had been used prior to this point. */
4394 else if (TREE_USED (v
)
4395 && (DECL_LANG_SPECIFIC (v
) == NULL
4396 || !CP_DECL_THREADPRIVATE_P (v
)))
4397 error ("%qE declared %<threadprivate%> after first use", v
);
4398 else if (! TREE_STATIC (v
) && ! DECL_EXTERNAL (v
))
4399 error ("automatic variable %qE cannot be %<threadprivate%>", v
);
4400 else if (! COMPLETE_TYPE_P (complete_type (TREE_TYPE (v
))))
4401 error ("%<threadprivate%> %qE has incomplete type", v
);
4402 else if (TREE_STATIC (v
) && TYPE_P (CP_DECL_CONTEXT (v
))
4403 && CP_DECL_CONTEXT (v
) != current_class_type
)
4404 error ("%<threadprivate%> %qE directive not "
4405 "in %qT definition", v
, CP_DECL_CONTEXT (v
));
4408 /* Allocate a LANG_SPECIFIC structure for V, if needed. */
4409 if (DECL_LANG_SPECIFIC (v
) == NULL
)
4411 retrofit_lang_decl (v
);
4413 /* Make sure that DECL_DISCRIMINATOR_P continues to be true
4414 after the allocation of the lang_decl structure. */
4415 if (DECL_DISCRIMINATOR_P (v
))
4416 DECL_LANG_SPECIFIC (v
)->u
.base
.u2sel
= 1;
4419 if (! DECL_THREAD_LOCAL_P (v
))
4421 DECL_TLS_MODEL (v
) = decl_default_tls_model (v
);
4422 /* If rtl has been already set for this var, call
4423 make_decl_rtl once again, so that encode_section_info
4424 has a chance to look at the new decl flags. */
4425 if (DECL_RTL_SET_P (v
))
4428 CP_DECL_THREADPRIVATE_P (v
) = 1;
4433 /* Build an OpenMP structured block. */
4436 begin_omp_structured_block (void)
4438 return do_pushlevel (sk_omp
);
4442 finish_omp_structured_block (tree block
)
4444 return do_poplevel (block
);
4447 /* Similarly, except force the retention of the BLOCK. */
4450 begin_omp_parallel (void)
4452 keep_next_level (true);
4453 return begin_omp_structured_block ();
4457 finish_omp_parallel (tree clauses
, tree body
)
4461 body
= finish_omp_structured_block (body
);
4463 stmt
= make_node (OMP_PARALLEL
);
4464 TREE_TYPE (stmt
) = void_type_node
;
4465 OMP_PARALLEL_CLAUSES (stmt
) = clauses
;
4466 OMP_PARALLEL_BODY (stmt
) = body
;
4468 return add_stmt (stmt
);
4472 begin_omp_task (void)
4474 keep_next_level (true);
4475 return begin_omp_structured_block ();
4479 finish_omp_task (tree clauses
, tree body
)
4483 body
= finish_omp_structured_block (body
);
4485 stmt
= make_node (OMP_TASK
);
4486 TREE_TYPE (stmt
) = void_type_node
;
4487 OMP_TASK_CLAUSES (stmt
) = clauses
;
4488 OMP_TASK_BODY (stmt
) = body
;
4490 return add_stmt (stmt
);
4493 /* Helper function for finish_omp_for. Convert Ith random access iterator
4494 into integral iterator. Return FALSE if successful. */
4497 handle_omp_for_class_iterator (int i
, location_t locus
, tree declv
, tree initv
,
4498 tree condv
, tree incrv
, tree
*body
,
4499 tree
*pre_body
, tree clauses
)
4501 tree diff
, iter_init
, iter_incr
= NULL
, last
;
4502 tree incr_var
= NULL
, orig_pre_body
, orig_body
, c
;
4503 tree decl
= TREE_VEC_ELT (declv
, i
);
4504 tree init
= TREE_VEC_ELT (initv
, i
);
4505 tree cond
= TREE_VEC_ELT (condv
, i
);
4506 tree incr
= TREE_VEC_ELT (incrv
, i
);
4508 location_t elocus
= locus
;
4510 if (init
&& EXPR_HAS_LOCATION (init
))
4511 elocus
= EXPR_LOCATION (init
);
4513 switch (TREE_CODE (cond
))
4519 if (TREE_OPERAND (cond
, 1) == iter
)
4520 cond
= build2 (swap_tree_comparison (TREE_CODE (cond
)),
4521 TREE_TYPE (cond
), iter
, TREE_OPERAND (cond
, 0));
4522 if (TREE_OPERAND (cond
, 0) != iter
)
4523 cond
= error_mark_node
;
4526 tree tem
= build_x_binary_op (EXPR_LOCATION (cond
),
4529 TREE_OPERAND (cond
, 1), ERROR_MARK
,
4530 NULL
, tf_warning_or_error
);
4531 if (error_operand_p (tem
))
4536 cond
= error_mark_node
;
4539 if (cond
== error_mark_node
)
4541 error_at (elocus
, "invalid controlling predicate");
4544 diff
= build_x_binary_op (elocus
, MINUS_EXPR
, TREE_OPERAND (cond
, 1),
4545 ERROR_MARK
, iter
, ERROR_MARK
, NULL
,
4546 tf_warning_or_error
);
4547 if (error_operand_p (diff
))
4549 if (TREE_CODE (TREE_TYPE (diff
)) != INTEGER_TYPE
)
4551 error_at (elocus
, "difference between %qE and %qD does not have integer type",
4552 TREE_OPERAND (cond
, 1), iter
);
4556 switch (TREE_CODE (incr
))
4558 case PREINCREMENT_EXPR
:
4559 case PREDECREMENT_EXPR
:
4560 case POSTINCREMENT_EXPR
:
4561 case POSTDECREMENT_EXPR
:
4562 if (TREE_OPERAND (incr
, 0) != iter
)
4564 incr
= error_mark_node
;
4567 iter_incr
= build_x_unary_op (EXPR_LOCATION (incr
),
4568 TREE_CODE (incr
), iter
,
4569 tf_warning_or_error
);
4570 if (error_operand_p (iter_incr
))
4572 else if (TREE_CODE (incr
) == PREINCREMENT_EXPR
4573 || TREE_CODE (incr
) == POSTINCREMENT_EXPR
)
4574 incr
= integer_one_node
;
4576 incr
= integer_minus_one_node
;
4579 if (TREE_OPERAND (incr
, 0) != iter
)
4580 incr
= error_mark_node
;
4581 else if (TREE_CODE (TREE_OPERAND (incr
, 1)) == PLUS_EXPR
4582 || TREE_CODE (TREE_OPERAND (incr
, 1)) == MINUS_EXPR
)
4584 tree rhs
= TREE_OPERAND (incr
, 1);
4585 if (TREE_OPERAND (rhs
, 0) == iter
)
4587 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs
, 1)))
4589 incr
= error_mark_node
;
4592 iter_incr
= build_x_modify_expr (EXPR_LOCATION (rhs
),
4593 iter
, TREE_CODE (rhs
),
4594 TREE_OPERAND (rhs
, 1),
4595 tf_warning_or_error
);
4596 if (error_operand_p (iter_incr
))
4598 incr
= TREE_OPERAND (rhs
, 1);
4599 incr
= cp_convert (TREE_TYPE (diff
), incr
,
4600 tf_warning_or_error
);
4601 if (TREE_CODE (rhs
) == MINUS_EXPR
)
4603 incr
= build1 (NEGATE_EXPR
, TREE_TYPE (diff
), incr
);
4604 incr
= fold_if_not_in_template (incr
);
4606 if (TREE_CODE (incr
) != INTEGER_CST
4607 && (TREE_CODE (incr
) != NOP_EXPR
4608 || (TREE_CODE (TREE_OPERAND (incr
, 0))
4613 else if (TREE_OPERAND (rhs
, 1) == iter
)
4615 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (rhs
, 0))) != INTEGER_TYPE
4616 || TREE_CODE (rhs
) != PLUS_EXPR
)
4617 incr
= error_mark_node
;
4620 iter_incr
= build_x_binary_op (EXPR_LOCATION (rhs
),
4622 TREE_OPERAND (rhs
, 0),
4625 tf_warning_or_error
);
4626 if (error_operand_p (iter_incr
))
4628 iter_incr
= build_x_modify_expr (EXPR_LOCATION (rhs
),
4631 tf_warning_or_error
);
4632 if (error_operand_p (iter_incr
))
4634 incr
= TREE_OPERAND (rhs
, 0);
4639 incr
= error_mark_node
;
4642 incr
= error_mark_node
;
4645 incr
= error_mark_node
;
4649 if (incr
== error_mark_node
)
4651 error_at (elocus
, "invalid increment expression");
4655 incr
= cp_convert (TREE_TYPE (diff
), incr
, tf_warning_or_error
);
4656 for (c
= clauses
; c
; c
= OMP_CLAUSE_CHAIN (c
))
4657 if (OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_LASTPRIVATE
4658 && OMP_CLAUSE_DECL (c
) == iter
)
4661 decl
= create_temporary_var (TREE_TYPE (diff
));
4663 add_decl_expr (decl
);
4664 last
= create_temporary_var (TREE_TYPE (diff
));
4666 add_decl_expr (last
);
4667 if (c
&& iter_incr
== NULL
)
4669 incr_var
= create_temporary_var (TREE_TYPE (diff
));
4670 pushdecl (incr_var
);
4671 add_decl_expr (incr_var
);
4673 gcc_assert (stmts_are_full_exprs_p ());
4675 orig_pre_body
= *pre_body
;
4676 *pre_body
= push_stmt_list ();
4678 add_stmt (orig_pre_body
);
4680 finish_expr_stmt (build_x_modify_expr (elocus
,
4681 iter
, NOP_EXPR
, init
,
4682 tf_warning_or_error
));
4683 init
= build_int_cst (TREE_TYPE (diff
), 0);
4684 if (c
&& iter_incr
== NULL
)
4686 finish_expr_stmt (build_x_modify_expr (elocus
,
4688 incr
, tf_warning_or_error
));
4690 iter_incr
= build_x_modify_expr (elocus
,
4691 iter
, PLUS_EXPR
, incr
,
4692 tf_warning_or_error
);
4694 finish_expr_stmt (build_x_modify_expr (elocus
,
4695 last
, NOP_EXPR
, init
,
4696 tf_warning_or_error
));
4697 *pre_body
= pop_stmt_list (*pre_body
);
4699 cond
= cp_build_binary_op (elocus
,
4700 TREE_CODE (cond
), decl
, diff
,
4701 tf_warning_or_error
);
4702 incr
= build_modify_expr (elocus
, decl
, NULL_TREE
, PLUS_EXPR
,
4703 elocus
, incr
, NULL_TREE
);
4706 *body
= push_stmt_list ();
4707 iter_init
= build2 (MINUS_EXPR
, TREE_TYPE (diff
), decl
, last
);
4708 iter_init
= build_x_modify_expr (elocus
,
4709 iter
, PLUS_EXPR
, iter_init
,
4710 tf_warning_or_error
);
4711 iter_init
= build1 (NOP_EXPR
, void_type_node
, iter_init
);
4712 finish_expr_stmt (iter_init
);
4713 finish_expr_stmt (build_x_modify_expr (elocus
,
4714 last
, NOP_EXPR
, decl
,
4715 tf_warning_or_error
));
4716 add_stmt (orig_body
);
4717 *body
= pop_stmt_list (*body
);
4721 OMP_CLAUSE_LASTPRIVATE_STMT (c
) = push_stmt_list ();
4722 finish_expr_stmt (iter_incr
);
4723 OMP_CLAUSE_LASTPRIVATE_STMT (c
)
4724 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (c
));
4727 TREE_VEC_ELT (declv
, i
) = decl
;
4728 TREE_VEC_ELT (initv
, i
) = init
;
4729 TREE_VEC_ELT (condv
, i
) = cond
;
4730 TREE_VEC_ELT (incrv
, i
) = incr
;
4735 /* Build and validate an OMP_FOR statement. CLAUSES, BODY, COND, INCR
4736 are directly for their associated operands in the statement. DECL
4737 and INIT are a combo; if DECL is NULL then INIT ought to be a
4738 MODIFY_EXPR, and the DECL should be extracted. PRE_BODY are
4739 optional statements that need to go before the loop into its
4743 finish_omp_for (location_t locus
, tree declv
, tree initv
, tree condv
,
4744 tree incrv
, tree body
, tree pre_body
, tree clauses
)
4746 tree omp_for
= NULL
, orig_incr
= NULL
;
4747 tree decl
, init
, cond
, incr
;
4751 gcc_assert (TREE_VEC_LENGTH (declv
) == TREE_VEC_LENGTH (initv
));
4752 gcc_assert (TREE_VEC_LENGTH (declv
) == TREE_VEC_LENGTH (condv
));
4753 gcc_assert (TREE_VEC_LENGTH (declv
) == TREE_VEC_LENGTH (incrv
));
4754 for (i
= 0; i
< TREE_VEC_LENGTH (declv
); i
++)
4756 decl
= TREE_VEC_ELT (declv
, i
);
4757 init
= TREE_VEC_ELT (initv
, i
);
4758 cond
= TREE_VEC_ELT (condv
, i
);
4759 incr
= TREE_VEC_ELT (incrv
, i
);
4765 switch (TREE_CODE (init
))
4768 decl
= TREE_OPERAND (init
, 0);
4769 init
= TREE_OPERAND (init
, 1);
4772 if (TREE_CODE (TREE_OPERAND (init
, 1)) == NOP_EXPR
)
4774 decl
= TREE_OPERAND (init
, 0);
4775 init
= TREE_OPERAND (init
, 2);
4785 "expected iteration declaration or initialization");
4790 if (init
&& EXPR_HAS_LOCATION (init
))
4791 elocus
= EXPR_LOCATION (init
);
4795 error_at (elocus
, "missing controlling predicate");
4801 error_at (elocus
, "missing increment expression");
4805 TREE_VEC_ELT (declv
, i
) = decl
;
4806 TREE_VEC_ELT (initv
, i
) = init
;
4809 if (dependent_omp_for_p (declv
, initv
, condv
, incrv
))
4813 stmt
= make_node (OMP_FOR
);
4815 for (i
= 0; i
< TREE_VEC_LENGTH (declv
); i
++)
4817 /* This is really just a place-holder. We'll be decomposing this
4818 again and going through the cp_build_modify_expr path below when
4819 we instantiate the thing. */
4820 TREE_VEC_ELT (initv
, i
)
4821 = build2 (MODIFY_EXPR
, void_type_node
, TREE_VEC_ELT (declv
, i
),
4822 TREE_VEC_ELT (initv
, i
));
4825 TREE_TYPE (stmt
) = void_type_node
;
4826 OMP_FOR_INIT (stmt
) = initv
;
4827 OMP_FOR_COND (stmt
) = condv
;
4828 OMP_FOR_INCR (stmt
) = incrv
;
4829 OMP_FOR_BODY (stmt
) = body
;
4830 OMP_FOR_PRE_BODY (stmt
) = pre_body
;
4831 OMP_FOR_CLAUSES (stmt
) = clauses
;
4833 SET_EXPR_LOCATION (stmt
, locus
);
4834 return add_stmt (stmt
);
4837 if (processing_template_decl
)
4838 orig_incr
= make_tree_vec (TREE_VEC_LENGTH (incrv
));
4840 for (i
= 0; i
< TREE_VEC_LENGTH (declv
); )
4842 decl
= TREE_VEC_ELT (declv
, i
);
4843 init
= TREE_VEC_ELT (initv
, i
);
4844 cond
= TREE_VEC_ELT (condv
, i
);
4845 incr
= TREE_VEC_ELT (incrv
, i
);
4847 TREE_VEC_ELT (orig_incr
, i
) = incr
;
4850 if (init
&& EXPR_HAS_LOCATION (init
))
4851 elocus
= EXPR_LOCATION (init
);
4855 error_at (elocus
, "expected iteration declaration or initialization");
4859 if (incr
&& TREE_CODE (incr
) == MODOP_EXPR
)
4862 TREE_VEC_ELT (orig_incr
, i
) = incr
;
4863 incr
= cp_build_modify_expr (TREE_OPERAND (incr
, 0),
4864 TREE_CODE (TREE_OPERAND (incr
, 1)),
4865 TREE_OPERAND (incr
, 2),
4866 tf_warning_or_error
);
4869 if (CLASS_TYPE_P (TREE_TYPE (decl
)))
4871 if (handle_omp_for_class_iterator (i
, locus
, declv
, initv
, condv
,
4872 incrv
, &body
, &pre_body
, clauses
))
4877 if (!INTEGRAL_TYPE_P (TREE_TYPE (decl
))
4878 && TREE_CODE (TREE_TYPE (decl
)) != POINTER_TYPE
)
4880 error_at (elocus
, "invalid type for iteration variable %qE", decl
);
4884 if (!processing_template_decl
)
4886 init
= fold_build_cleanup_point_expr (TREE_TYPE (init
), init
);
4887 init
= cp_build_modify_expr (decl
, NOP_EXPR
, init
, tf_warning_or_error
);
4890 init
= build2 (MODIFY_EXPR
, void_type_node
, decl
, init
);
4892 && TREE_SIDE_EFFECTS (cond
)
4893 && COMPARISON_CLASS_P (cond
)
4894 && !processing_template_decl
)
4896 tree t
= TREE_OPERAND (cond
, 0);
4897 if (TREE_SIDE_EFFECTS (t
)
4899 && (TREE_CODE (t
) != NOP_EXPR
4900 || TREE_OPERAND (t
, 0) != decl
))
4901 TREE_OPERAND (cond
, 0)
4902 = fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4904 t
= TREE_OPERAND (cond
, 1);
4905 if (TREE_SIDE_EFFECTS (t
)
4907 && (TREE_CODE (t
) != NOP_EXPR
4908 || TREE_OPERAND (t
, 0) != decl
))
4909 TREE_OPERAND (cond
, 1)
4910 = fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4912 if (decl
== error_mark_node
|| init
== error_mark_node
)
4915 TREE_VEC_ELT (declv
, i
) = decl
;
4916 TREE_VEC_ELT (initv
, i
) = init
;
4917 TREE_VEC_ELT (condv
, i
) = cond
;
4918 TREE_VEC_ELT (incrv
, i
) = incr
;
4922 if (IS_EMPTY_STMT (pre_body
))
4925 omp_for
= c_finish_omp_for (locus
, declv
, initv
, condv
, incrv
,
4928 if (omp_for
== NULL
)
4931 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for
)); i
++)
4933 decl
= TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for
), i
), 0);
4934 incr
= TREE_VEC_ELT (OMP_FOR_INCR (omp_for
), i
);
4936 if (TREE_CODE (incr
) != MODIFY_EXPR
)
4939 if (TREE_SIDE_EFFECTS (TREE_OPERAND (incr
, 1))
4940 && BINARY_CLASS_P (TREE_OPERAND (incr
, 1))
4941 && !processing_template_decl
)
4943 tree t
= TREE_OPERAND (TREE_OPERAND (incr
, 1), 0);
4944 if (TREE_SIDE_EFFECTS (t
)
4946 && (TREE_CODE (t
) != NOP_EXPR
4947 || TREE_OPERAND (t
, 0) != decl
))
4948 TREE_OPERAND (TREE_OPERAND (incr
, 1), 0)
4949 = fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4951 t
= TREE_OPERAND (TREE_OPERAND (incr
, 1), 1);
4952 if (TREE_SIDE_EFFECTS (t
)
4954 && (TREE_CODE (t
) != NOP_EXPR
4955 || TREE_OPERAND (t
, 0) != decl
))
4956 TREE_OPERAND (TREE_OPERAND (incr
, 1), 1)
4957 = fold_build_cleanup_point_expr (TREE_TYPE (t
), t
);
4961 TREE_VEC_ELT (OMP_FOR_INCR (omp_for
), i
) = TREE_VEC_ELT (orig_incr
, i
);
4963 if (omp_for
!= NULL
)
4964 OMP_FOR_CLAUSES (omp_for
) = clauses
;
4969 finish_omp_atomic (enum tree_code code
, enum tree_code opcode
, tree lhs
,
4970 tree rhs
, tree v
, tree lhs1
, tree rhs1
)
4985 dependent_p
= false;
4988 /* Even in a template, we can detect invalid uses of the atomic
4989 pragma if neither LHS nor RHS is type-dependent. */
4990 if (processing_template_decl
)
4992 dependent_p
= (type_dependent_expression_p (lhs
)
4993 || (rhs
&& type_dependent_expression_p (rhs
))
4994 || (v
&& type_dependent_expression_p (v
))
4995 || (lhs1
&& type_dependent_expression_p (lhs1
))
4996 || (rhs1
&& type_dependent_expression_p (rhs1
)));
4999 lhs
= build_non_dependent_expr (lhs
);
5001 rhs
= build_non_dependent_expr (rhs
);
5003 v
= build_non_dependent_expr (v
);
5005 lhs1
= build_non_dependent_expr (lhs1
);
5007 rhs1
= build_non_dependent_expr (rhs1
);
5012 stmt
= c_finish_omp_atomic (input_location
, code
, opcode
, lhs
, rhs
,
5014 if (stmt
== error_mark_node
)
5017 if (processing_template_decl
)
5019 if (code
== OMP_ATOMIC_READ
)
5021 stmt
= build_min_nt_loc (EXPR_LOCATION (orig_lhs
),
5022 OMP_ATOMIC_READ
, orig_lhs
);
5023 stmt
= build2 (MODIFY_EXPR
, void_type_node
, orig_v
, stmt
);
5027 if (opcode
== NOP_EXPR
)
5028 stmt
= build2 (MODIFY_EXPR
, void_type_node
, orig_lhs
, orig_rhs
);
5030 stmt
= build2 (opcode
, void_type_node
, orig_lhs
, orig_rhs
);
5032 stmt
= build_min_nt_loc (EXPR_LOCATION (orig_rhs1
),
5033 COMPOUND_EXPR
, orig_rhs1
, stmt
);
5034 if (code
!= OMP_ATOMIC
)
5036 stmt
= build_min_nt_loc (EXPR_LOCATION (orig_lhs1
),
5037 code
, orig_lhs1
, stmt
);
5038 stmt
= build2 (MODIFY_EXPR
, void_type_node
, orig_v
, stmt
);
5041 stmt
= build2 (OMP_ATOMIC
, void_type_node
, integer_zero_node
, stmt
);
5047 finish_omp_barrier (void)
5049 tree fn
= builtin_decl_explicit (BUILT_IN_GOMP_BARRIER
);
5050 vec
<tree
, va_gc
> *vec
= make_tree_vector ();
5051 tree stmt
= finish_call_expr (fn
, &vec
, false, false, tf_warning_or_error
);
5052 release_tree_vector (vec
);
5053 finish_expr_stmt (stmt
);
5057 finish_omp_flush (void)
5059 tree fn
= builtin_decl_explicit (BUILT_IN_SYNC_SYNCHRONIZE
);
5060 vec
<tree
, va_gc
> *vec
= make_tree_vector ();
5061 tree stmt
= finish_call_expr (fn
, &vec
, false, false, tf_warning_or_error
);
5062 release_tree_vector (vec
);
5063 finish_expr_stmt (stmt
);
5067 finish_omp_taskwait (void)
5069 tree fn
= builtin_decl_explicit (BUILT_IN_GOMP_TASKWAIT
);
5070 vec
<tree
, va_gc
> *vec
= make_tree_vector ();
5071 tree stmt
= finish_call_expr (fn
, &vec
, false, false, tf_warning_or_error
);
5072 release_tree_vector (vec
);
5073 finish_expr_stmt (stmt
);
5077 finish_omp_taskyield (void)
5079 tree fn
= builtin_decl_explicit (BUILT_IN_GOMP_TASKYIELD
);
5080 vec
<tree
, va_gc
> *vec
= make_tree_vector ();
5081 tree stmt
= finish_call_expr (fn
, &vec
, false, false, tf_warning_or_error
);
5082 release_tree_vector (vec
);
5083 finish_expr_stmt (stmt
);
5086 /* Begin a __transaction_atomic or __transaction_relaxed statement.
5087 If PCOMPOUND is non-null, this is for a function-transaction-block, and we
5088 should create an extra compound stmt. */
5091 begin_transaction_stmt (location_t loc
, tree
*pcompound
, int flags
)
5096 *pcompound
= begin_compound_stmt (0);
5098 r
= build_stmt (loc
, TRANSACTION_EXPR
, NULL_TREE
);
5100 /* Only add the statement to the function if support enabled. */
5104 error_at (loc
, ((flags
& TM_STMT_ATTR_RELAXED
) != 0
5105 ? G_("%<__transaction_relaxed%> without "
5106 "transactional memory support enabled")
5107 : G_("%<__transaction_atomic%> without "
5108 "transactional memory support enabled")));
5110 TRANSACTION_EXPR_BODY (r
) = push_stmt_list ();
5111 TREE_SIDE_EFFECTS (r
) = 1;
5115 /* End a __transaction_atomic or __transaction_relaxed statement.
5116 If COMPOUND_STMT is non-null, this is for a function-transaction-block,
5117 and we should end the compound. If NOEX is non-NULL, we wrap the body in
5118 a MUST_NOT_THROW_EXPR with NOEX as condition. */
5121 finish_transaction_stmt (tree stmt
, tree compound_stmt
, int flags
, tree noex
)
5123 TRANSACTION_EXPR_BODY (stmt
) = pop_stmt_list (TRANSACTION_EXPR_BODY (stmt
));
5124 TRANSACTION_EXPR_OUTER (stmt
) = (flags
& TM_STMT_ATTR_OUTER
) != 0;
5125 TRANSACTION_EXPR_RELAXED (stmt
) = (flags
& TM_STMT_ATTR_RELAXED
) != 0;
5126 TRANSACTION_EXPR_IS_STMT (stmt
) = 1;
5128 /* noexcept specifications are not allowed for function transactions. */
5129 gcc_assert (!(noex
&& compound_stmt
));
5132 tree body
= build_must_not_throw_expr (TRANSACTION_EXPR_BODY (stmt
),
5134 SET_EXPR_LOCATION (body
, EXPR_LOCATION (TRANSACTION_EXPR_BODY (stmt
)));
5135 TREE_SIDE_EFFECTS (body
) = 1;
5136 TRANSACTION_EXPR_BODY (stmt
) = body
;
5140 finish_compound_stmt (compound_stmt
);
5144 /* Build a __transaction_atomic or __transaction_relaxed expression. If
5145 NOEX is non-NULL, we wrap the body in a MUST_NOT_THROW_EXPR with NOEX as
5149 build_transaction_expr (location_t loc
, tree expr
, int flags
, tree noex
)
5154 expr
= build_must_not_throw_expr (expr
, noex
);
5155 SET_EXPR_LOCATION (expr
, loc
);
5156 TREE_SIDE_EFFECTS (expr
) = 1;
5158 ret
= build1 (TRANSACTION_EXPR
, TREE_TYPE (expr
), expr
);
5159 if (flags
& TM_STMT_ATTR_RELAXED
)
5160 TRANSACTION_EXPR_RELAXED (ret
) = 1;
5161 TREE_SIDE_EFFECTS (ret
) = 1;
5162 SET_EXPR_LOCATION (ret
, loc
);
5167 init_cp_semantics (void)
5171 /* Build a STATIC_ASSERT for a static assertion with the condition
5172 CONDITION and the message text MESSAGE. LOCATION is the location
5173 of the static assertion in the source code. When MEMBER_P, this
5174 static assertion is a member of a class. */
5176 finish_static_assert (tree condition
, tree message
, location_t location
,
5179 if (message
== NULL_TREE
5180 || message
== error_mark_node
5181 || condition
== NULL_TREE
5182 || condition
== error_mark_node
)
5185 if (check_for_bare_parameter_packs (condition
))
5186 condition
= error_mark_node
;
5188 if (type_dependent_expression_p (condition
)
5189 || value_dependent_expression_p (condition
))
5191 /* We're in a template; build a STATIC_ASSERT and put it in
5195 assertion
= make_node (STATIC_ASSERT
);
5196 STATIC_ASSERT_CONDITION (assertion
) = condition
;
5197 STATIC_ASSERT_MESSAGE (assertion
) = message
;
5198 STATIC_ASSERT_SOURCE_LOCATION (assertion
) = location
;
5201 maybe_add_class_template_decl_list (current_class_type
,
5205 add_stmt (assertion
);
5210 /* Fold the expression and convert it to a boolean value. */
5211 condition
= fold_non_dependent_expr (condition
);
5212 condition
= cp_convert (boolean_type_node
, condition
, tf_warning_or_error
);
5213 condition
= maybe_constant_value (condition
);
5215 if (TREE_CODE (condition
) == INTEGER_CST
&& !integer_zerop (condition
))
5216 /* Do nothing; the condition is satisfied. */
5220 location_t saved_loc
= input_location
;
5222 input_location
= location
;
5223 if (TREE_CODE (condition
) == INTEGER_CST
5224 && integer_zerop (condition
))
5225 /* Report the error. */
5226 error ("static assertion failed: %s", TREE_STRING_POINTER (message
));
5227 else if (condition
&& condition
!= error_mark_node
)
5229 error ("non-constant condition for static assertion");
5230 cxx_constant_value (condition
);
5232 input_location
= saved_loc
;
5236 /* Implements the C++0x decltype keyword. Returns the type of EXPR,
5237 suitable for use as a type-specifier.
5239 ID_EXPRESSION_OR_MEMBER_ACCESS_P is true when EXPR was parsed as an
5240 id-expression or a class member access, FALSE when it was parsed as
5241 a full expression. */
5244 finish_decltype_type (tree expr
, bool id_expression_or_member_access_p
,
5245 tsubst_flags_t complain
)
5247 tree type
= NULL_TREE
;
5249 if (!expr
|| error_operand_p (expr
))
5250 return error_mark_node
;
5253 || TREE_CODE (expr
) == TYPE_DECL
5254 || (TREE_CODE (expr
) == BIT_NOT_EXPR
5255 && TYPE_P (TREE_OPERAND (expr
, 0))))
5257 if (complain
& tf_error
)
5258 error ("argument to decltype must be an expression");
5259 return error_mark_node
;
5262 /* Depending on the resolution of DR 1172, we may later need to distinguish
5263 instantiation-dependent but not type-dependent expressions so that, say,
5264 A<decltype(sizeof(T))>::U doesn't require 'typename'. */
5265 if (instantiation_dependent_expression_p (expr
))
5267 type
= cxx_make_type (DECLTYPE_TYPE
);
5268 DECLTYPE_TYPE_EXPR (type
) = expr
;
5269 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type
)
5270 = id_expression_or_member_access_p
;
5271 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5276 /* The type denoted by decltype(e) is defined as follows: */
5278 expr
= resolve_nondeduced_context (expr
);
5280 if (type_unknown_p (expr
))
5282 if (complain
& tf_error
)
5283 error ("decltype cannot resolve address of overloaded function");
5284 return error_mark_node
;
5287 if (invalid_nonstatic_memfn_p (expr
, complain
))
5288 return error_mark_node
;
5290 /* To get the size of a static data member declared as an array of
5291 unknown bound, we need to instantiate it. */
5292 if (TREE_CODE (expr
) == VAR_DECL
5293 && VAR_HAD_UNKNOWN_BOUND (expr
)
5294 && DECL_TEMPLATE_INSTANTIATION (expr
))
5295 instantiate_decl (expr
, /*defer_ok*/true, /*expl_inst_mem*/false);
5297 if (id_expression_or_member_access_p
)
5299 /* If e is an id-expression or a class member access (5.2.5
5300 [expr.ref]), decltype(e) is defined as the type of the entity
5301 named by e. If there is no such entity, or e names a set of
5302 overloaded functions, the program is ill-formed. */
5303 if (TREE_CODE (expr
) == IDENTIFIER_NODE
)
5304 expr
= lookup_name (expr
);
5306 if (TREE_CODE (expr
) == INDIRECT_REF
)
5307 /* This can happen when the expression is, e.g., "a.b". Just
5308 look at the underlying operand. */
5309 expr
= TREE_OPERAND (expr
, 0);
5311 if (TREE_CODE (expr
) == OFFSET_REF
5312 || TREE_CODE (expr
) == MEMBER_REF
5313 || TREE_CODE (expr
) == SCOPE_REF
)
5314 /* We're only interested in the field itself. If it is a
5315 BASELINK, we will need to see through it in the next
5317 expr
= TREE_OPERAND (expr
, 1);
5319 if (BASELINK_P (expr
))
5320 /* See through BASELINK nodes to the underlying function. */
5321 expr
= BASELINK_FUNCTIONS (expr
);
5323 switch (TREE_CODE (expr
))
5326 if (DECL_BIT_FIELD_TYPE (expr
))
5328 type
= DECL_BIT_FIELD_TYPE (expr
);
5331 /* Fall through for fields that aren't bitfields. */
5338 case TEMPLATE_PARM_INDEX
:
5339 expr
= mark_type_use (expr
);
5340 type
= TREE_TYPE (expr
);
5344 type
= error_mark_node
;
5348 mark_type_use (expr
);
5349 type
= is_bitfield_expr_with_lowered_type (expr
);
5351 type
= TREE_TYPE (TREE_OPERAND (expr
, 1));
5359 /* We can get here when the id-expression refers to an
5360 enumerator or non-type template parameter. */
5361 type
= TREE_TYPE (expr
);
5366 return error_mark_node
;
5371 /* Within a lambda-expression:
5373 Every occurrence of decltype((x)) where x is a possibly
5374 parenthesized id-expression that names an entity of
5375 automatic storage duration is treated as if x were
5376 transformed into an access to a corresponding data member
5377 of the closure type that would have been declared if x
5378 were a use of the denoted entity. */
5379 if (outer_automatic_var_p (expr
)
5380 && current_function_decl
5381 && LAMBDA_FUNCTION_P (current_function_decl
))
5382 type
= capture_decltype (expr
);
5383 else if (error_operand_p (expr
))
5384 type
= error_mark_node
;
5385 else if (expr
== current_class_ptr
)
5386 /* If the expression is just "this", we want the
5387 cv-unqualified pointer for the "this" type. */
5388 type
= TYPE_MAIN_VARIANT (TREE_TYPE (expr
));
5391 /* Otherwise, where T is the type of e, if e is an lvalue,
5392 decltype(e) is defined as T&; if an xvalue, T&&; otherwise, T. */
5393 cp_lvalue_kind clk
= lvalue_kind (expr
);
5394 type
= unlowered_expr_type (expr
);
5395 gcc_assert (TREE_CODE (type
) != REFERENCE_TYPE
);
5397 /* For vector types, pick a non-opaque variant. */
5398 if (TREE_CODE (type
) == VECTOR_TYPE
)
5399 type
= strip_typedefs (type
);
5401 if (clk
!= clk_none
&& !(clk
& clk_class
))
5402 type
= cp_build_reference_type (type
, (clk
& clk_rvalueref
));
5409 /* Called from trait_expr_value to evaluate either __has_nothrow_assign or
5410 __has_nothrow_copy, depending on assign_p. */
5413 classtype_has_nothrow_assign_or_copy_p (tree type
, bool assign_p
)
5420 ix
= lookup_fnfields_1 (type
, ansi_assopname (NOP_EXPR
));
5423 fns
= (*CLASSTYPE_METHOD_VEC (type
))[ix
];
5425 else if (TYPE_HAS_COPY_CTOR (type
))
5427 /* If construction of the copy constructor was postponed, create
5429 if (CLASSTYPE_LAZY_COPY_CTOR (type
))
5430 lazily_declare_fn (sfk_copy_constructor
, type
);
5431 if (CLASSTYPE_LAZY_MOVE_CTOR (type
))
5432 lazily_declare_fn (sfk_move_constructor
, type
);
5433 fns
= CLASSTYPE_CONSTRUCTORS (type
);
5438 for (; fns
; fns
= OVL_NEXT (fns
))
5440 tree fn
= OVL_CURRENT (fns
);
5444 if (copy_fn_p (fn
) == 0)
5447 else if (copy_fn_p (fn
) <= 0)
5450 maybe_instantiate_noexcept (fn
);
5451 if (!TYPE_NOTHROW_P (TREE_TYPE (fn
)))
5458 /* Actually evaluates the trait. */
5461 trait_expr_value (cp_trait_kind kind
, tree type1
, tree type2
)
5463 enum tree_code type_code1
;
5466 type_code1
= TREE_CODE (type1
);
5470 case CPTK_HAS_NOTHROW_ASSIGN
:
5471 type1
= strip_array_types (type1
);
5472 return (!CP_TYPE_CONST_P (type1
) && type_code1
!= REFERENCE_TYPE
5473 && (trait_expr_value (CPTK_HAS_TRIVIAL_ASSIGN
, type1
, type2
)
5474 || (CLASS_TYPE_P (type1
)
5475 && classtype_has_nothrow_assign_or_copy_p (type1
,
5478 case CPTK_HAS_TRIVIAL_ASSIGN
:
5479 /* ??? The standard seems to be missing the "or array of such a class
5480 type" wording for this trait. */
5481 type1
= strip_array_types (type1
);
5482 return (!CP_TYPE_CONST_P (type1
) && type_code1
!= REFERENCE_TYPE
5483 && (trivial_type_p (type1
)
5484 || (CLASS_TYPE_P (type1
)
5485 && TYPE_HAS_TRIVIAL_COPY_ASSIGN (type1
))));
5487 case CPTK_HAS_NOTHROW_CONSTRUCTOR
:
5488 type1
= strip_array_types (type1
);
5489 return (trait_expr_value (CPTK_HAS_TRIVIAL_CONSTRUCTOR
, type1
, type2
)
5490 || (CLASS_TYPE_P (type1
)
5491 && (t
= locate_ctor (type1
))
5492 && (maybe_instantiate_noexcept (t
),
5493 TYPE_NOTHROW_P (TREE_TYPE (t
)))));
5495 case CPTK_HAS_TRIVIAL_CONSTRUCTOR
:
5496 type1
= strip_array_types (type1
);
5497 return (trivial_type_p (type1
)
5498 || (CLASS_TYPE_P (type1
) && TYPE_HAS_TRIVIAL_DFLT (type1
)));
5500 case CPTK_HAS_NOTHROW_COPY
:
5501 type1
= strip_array_types (type1
);
5502 return (trait_expr_value (CPTK_HAS_TRIVIAL_COPY
, type1
, type2
)
5503 || (CLASS_TYPE_P (type1
)
5504 && classtype_has_nothrow_assign_or_copy_p (type1
, false)));
5506 case CPTK_HAS_TRIVIAL_COPY
:
5507 /* ??? The standard seems to be missing the "or array of such a class
5508 type" wording for this trait. */
5509 type1
= strip_array_types (type1
);
5510 return (trivial_type_p (type1
) || type_code1
== REFERENCE_TYPE
5511 || (CLASS_TYPE_P (type1
) && TYPE_HAS_TRIVIAL_COPY_CTOR (type1
)));
5513 case CPTK_HAS_TRIVIAL_DESTRUCTOR
:
5514 type1
= strip_array_types (type1
);
5515 return (trivial_type_p (type1
) || type_code1
== REFERENCE_TYPE
5516 || (CLASS_TYPE_P (type1
)
5517 && TYPE_HAS_TRIVIAL_DESTRUCTOR (type1
)));
5519 case CPTK_HAS_VIRTUAL_DESTRUCTOR
:
5520 return type_has_virtual_destructor (type1
);
5522 case CPTK_IS_ABSTRACT
:
5523 return (ABSTRACT_CLASS_TYPE_P (type1
));
5525 case CPTK_IS_BASE_OF
:
5526 return (NON_UNION_CLASS_TYPE_P (type1
) && NON_UNION_CLASS_TYPE_P (type2
)
5527 && DERIVED_FROM_P (type1
, type2
));
5530 return (NON_UNION_CLASS_TYPE_P (type1
));
5532 case CPTK_IS_CONVERTIBLE_TO
:
5537 return (NON_UNION_CLASS_TYPE_P (type1
) && CLASSTYPE_EMPTY_P (type1
));
5540 return (type_code1
== ENUMERAL_TYPE
);
5543 return (CLASS_TYPE_P (type1
) && CLASSTYPE_FINAL (type1
));
5545 case CPTK_IS_LITERAL_TYPE
:
5546 return (literal_type_p (type1
));
5549 return (pod_type_p (type1
));
5551 case CPTK_IS_POLYMORPHIC
:
5552 return (CLASS_TYPE_P (type1
) && TYPE_POLYMORPHIC_P (type1
));
5554 case CPTK_IS_STD_LAYOUT
:
5555 return (std_layout_type_p (type1
));
5557 case CPTK_IS_TRIVIAL
:
5558 return (trivial_type_p (type1
));
5561 return (type_code1
== UNION_TYPE
);
5569 /* If TYPE is an array of unknown bound, or (possibly cv-qualified)
5570 void, or a complete type, returns it, otherwise NULL_TREE. */
5573 check_trait_type (tree type
)
5575 if (TREE_CODE (type
) == ARRAY_TYPE
&& !TYPE_DOMAIN (type
)
5576 && COMPLETE_TYPE_P (TREE_TYPE (type
)))
5579 if (VOID_TYPE_P (type
))
5582 return complete_type_or_else (strip_array_types (type
), NULL_TREE
);
5585 /* Process a trait expression. */
5588 finish_trait_expr (cp_trait_kind kind
, tree type1
, tree type2
)
5590 gcc_assert (kind
== CPTK_HAS_NOTHROW_ASSIGN
5591 || kind
== CPTK_HAS_NOTHROW_CONSTRUCTOR
5592 || kind
== CPTK_HAS_NOTHROW_COPY
5593 || kind
== CPTK_HAS_TRIVIAL_ASSIGN
5594 || kind
== CPTK_HAS_TRIVIAL_CONSTRUCTOR
5595 || kind
== CPTK_HAS_TRIVIAL_COPY
5596 || kind
== CPTK_HAS_TRIVIAL_DESTRUCTOR
5597 || kind
== CPTK_HAS_VIRTUAL_DESTRUCTOR
5598 || kind
== CPTK_IS_ABSTRACT
5599 || kind
== CPTK_IS_BASE_OF
5600 || kind
== CPTK_IS_CLASS
5601 || kind
== CPTK_IS_CONVERTIBLE_TO
5602 || kind
== CPTK_IS_EMPTY
5603 || kind
== CPTK_IS_ENUM
5604 || kind
== CPTK_IS_FINAL
5605 || kind
== CPTK_IS_LITERAL_TYPE
5606 || kind
== CPTK_IS_POD
5607 || kind
== CPTK_IS_POLYMORPHIC
5608 || kind
== CPTK_IS_STD_LAYOUT
5609 || kind
== CPTK_IS_TRIVIAL
5610 || kind
== CPTK_IS_UNION
);
5612 if (kind
== CPTK_IS_CONVERTIBLE_TO
)
5614 sorry ("__is_convertible_to");
5615 return error_mark_node
;
5618 if (type1
== error_mark_node
5619 || ((kind
== CPTK_IS_BASE_OF
|| kind
== CPTK_IS_CONVERTIBLE_TO
)
5620 && type2
== error_mark_node
))
5621 return error_mark_node
;
5623 if (processing_template_decl
)
5625 tree trait_expr
= make_node (TRAIT_EXPR
);
5626 TREE_TYPE (trait_expr
) = boolean_type_node
;
5627 TRAIT_EXPR_TYPE1 (trait_expr
) = type1
;
5628 TRAIT_EXPR_TYPE2 (trait_expr
) = type2
;
5629 TRAIT_EXPR_KIND (trait_expr
) = kind
;
5635 case CPTK_HAS_NOTHROW_ASSIGN
:
5636 case CPTK_HAS_TRIVIAL_ASSIGN
:
5637 case CPTK_HAS_NOTHROW_CONSTRUCTOR
:
5638 case CPTK_HAS_TRIVIAL_CONSTRUCTOR
:
5639 case CPTK_HAS_NOTHROW_COPY
:
5640 case CPTK_HAS_TRIVIAL_COPY
:
5641 case CPTK_HAS_TRIVIAL_DESTRUCTOR
:
5642 case CPTK_HAS_VIRTUAL_DESTRUCTOR
:
5643 case CPTK_IS_ABSTRACT
:
5646 case CPTK_IS_LITERAL_TYPE
:
5648 case CPTK_IS_POLYMORPHIC
:
5649 case CPTK_IS_STD_LAYOUT
:
5650 case CPTK_IS_TRIVIAL
:
5651 if (!check_trait_type (type1
))
5652 return error_mark_node
;
5655 case CPTK_IS_BASE_OF
:
5656 if (NON_UNION_CLASS_TYPE_P (type1
) && NON_UNION_CLASS_TYPE_P (type2
)
5657 && !same_type_ignoring_top_level_qualifiers_p (type1
, type2
)
5658 && !complete_type_or_else (type2
, NULL_TREE
))
5659 /* We already issued an error. */
5660 return error_mark_node
;
5668 case CPTK_IS_CONVERTIBLE_TO
:
5673 return (trait_expr_value (kind
, type1
, type2
)
5674 ? boolean_true_node
: boolean_false_node
);
5677 /* Do-nothing variants of functions to handle pragma FLOAT_CONST_DECIMAL64,
5678 which is ignored for C++. */
5681 set_float_const_decimal64 (void)
5686 clear_float_const_decimal64 (void)
5691 float_const_decimal64_p (void)
5697 /* Return true if T is a literal type. */
5700 literal_type_p (tree t
)
5702 if (SCALAR_TYPE_P (t
)
5703 || TREE_CODE (t
) == VECTOR_TYPE
5704 || TREE_CODE (t
) == REFERENCE_TYPE
)
5706 if (CLASS_TYPE_P (t
))
5708 t
= complete_type (t
);
5709 gcc_assert (COMPLETE_TYPE_P (t
) || errorcount
);
5710 return CLASSTYPE_LITERAL_P (t
);
5712 if (TREE_CODE (t
) == ARRAY_TYPE
)
5713 return literal_type_p (strip_array_types (t
));
5717 /* If DECL is a variable declared `constexpr', require its type
5718 be literal. Return the DECL if OK, otherwise NULL. */
5721 ensure_literal_type_for_constexpr_object (tree decl
)
5723 tree type
= TREE_TYPE (decl
);
5724 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_DECLARED_CONSTEXPR_P (decl
)
5725 && !processing_template_decl
)
5727 if (CLASS_TYPE_P (type
) && !COMPLETE_TYPE_P (complete_type (type
)))
5728 /* Don't complain here, we'll complain about incompleteness
5729 when we try to initialize the variable. */;
5730 else if (!literal_type_p (type
))
5732 error ("the type %qT of constexpr variable %qD is not literal",
5734 explain_non_literal_class (type
);
5741 /* Representation of entries in the constexpr function definition table. */
5743 typedef struct GTY(()) constexpr_fundef
{
5748 /* This table holds all constexpr function definitions seen in
5749 the current translation unit. */
5751 static GTY ((param_is (constexpr_fundef
))) htab_t constexpr_fundef_table
;
5753 /* Utility function used for managing the constexpr function table.
5754 Return true if the entries pointed to by P and Q are for the
5755 same constexpr function. */
5758 constexpr_fundef_equal (const void *p
, const void *q
)
5760 const constexpr_fundef
*lhs
= (const constexpr_fundef
*) p
;
5761 const constexpr_fundef
*rhs
= (const constexpr_fundef
*) q
;
5762 return lhs
->decl
== rhs
->decl
;
5765 /* Utility function used for managing the constexpr function table.
5766 Return a hash value for the entry pointed to by Q. */
5768 static inline hashval_t
5769 constexpr_fundef_hash (const void *p
)
5771 const constexpr_fundef
*fundef
= (const constexpr_fundef
*) p
;
5772 return DECL_UID (fundef
->decl
);
5775 /* Return a previously saved definition of function FUN. */
5777 static constexpr_fundef
*
5778 retrieve_constexpr_fundef (tree fun
)
5780 constexpr_fundef fundef
= { NULL
, NULL
};
5781 if (constexpr_fundef_table
== NULL
)
5785 return (constexpr_fundef
*) htab_find (constexpr_fundef_table
, &fundef
);
5788 /* Check whether the parameter and return types of FUN are valid for a
5789 constexpr function, and complain if COMPLAIN. */
5792 is_valid_constexpr_fn (tree fun
, bool complain
)
5794 tree parm
= FUNCTION_FIRST_USER_PARM (fun
);
5796 for (; parm
!= NULL
; parm
= TREE_CHAIN (parm
))
5797 if (!literal_type_p (TREE_TYPE (parm
)))
5802 error ("invalid type for parameter %d of constexpr "
5803 "function %q+#D", DECL_PARM_INDEX (parm
), fun
);
5804 explain_non_literal_class (TREE_TYPE (parm
));
5808 if (!DECL_CONSTRUCTOR_P (fun
))
5810 tree rettype
= TREE_TYPE (TREE_TYPE (fun
));
5811 if (!literal_type_p (rettype
))
5816 error ("invalid return type %qT of constexpr function %q+D",
5818 explain_non_literal_class (rettype
);
5822 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun
)
5823 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun
)))
5828 error ("enclosing class of constexpr non-static member "
5829 "function %q+#D is not a literal type", fun
);
5830 explain_non_literal_class (DECL_CONTEXT (fun
));
5834 else if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fun
)))
5838 error ("%q#T has virtual base classes", DECL_CONTEXT (fun
));
5844 /* Subroutine of build_data_member_initialization. MEMBER is a COMPONENT_REF
5845 for a member of an anonymous aggregate, INIT is the initializer for that
5846 member, and VEC_OUTER is the vector of constructor elements for the class
5847 whose constructor we are processing. Add the initializer to the vector
5848 and return true to indicate success. */
5851 build_anon_member_initialization (tree member
, tree init
,
5852 vec
<constructor_elt
, va_gc
> **vec_outer
)
5854 /* MEMBER presents the relevant fields from the inside out, but we need
5855 to build up the initializer from the outside in so that we can reuse
5856 previously built CONSTRUCTORs if this is, say, the second field in an
5857 anonymous struct. So we use a vec as a stack. */
5862 fields
.safe_push (TREE_OPERAND (member
, 1));
5863 member
= TREE_OPERAND (member
, 0);
5865 while (ANON_AGGR_TYPE_P (TREE_TYPE (member
)));
5867 /* VEC has the constructor elements vector for the context of FIELD.
5868 If FIELD is an anonymous aggregate, we will push inside it. */
5869 vec
<constructor_elt
, va_gc
> **vec
= vec_outer
;
5871 while (field
= fields
.pop(),
5872 ANON_AGGR_TYPE_P (TREE_TYPE (field
)))
5875 /* If there is already an outer constructor entry for the anonymous
5876 aggregate FIELD, use it; otherwise, insert one. */
5877 if (vec_safe_is_empty (*vec
)
5878 || (*vec
)->last().index
!= field
)
5880 ctor
= build_constructor (TREE_TYPE (field
), NULL
);
5881 CONSTRUCTOR_APPEND_ELT (*vec
, field
, ctor
);
5884 ctor
= (*vec
)->last().value
;
5885 vec
= &CONSTRUCTOR_ELTS (ctor
);
5888 /* Now we're at the innermost field, the one that isn't an anonymous
5889 aggregate. Add its initializer to the CONSTRUCTOR and we're done. */
5890 gcc_assert (fields
.is_empty());
5892 CONSTRUCTOR_APPEND_ELT (*vec
, field
, init
);
5897 /* Subroutine of build_constexpr_constructor_member_initializers.
5898 The expression tree T represents a data member initialization
5899 in a (constexpr) constructor definition. Build a pairing of
5900 the data member with its initializer, and prepend that pair
5901 to the existing initialization pair INITS. */
5904 build_data_member_initialization (tree t
, vec
<constructor_elt
, va_gc
> **vec
)
5907 if (TREE_CODE (t
) == CLEANUP_POINT_EXPR
)
5908 t
= TREE_OPERAND (t
, 0);
5909 if (TREE_CODE (t
) == EXPR_STMT
)
5910 t
= TREE_OPERAND (t
, 0);
5911 if (t
== error_mark_node
)
5913 if (TREE_CODE (t
) == STATEMENT_LIST
)
5915 tree_stmt_iterator i
;
5916 for (i
= tsi_start (t
); !tsi_end_p (i
); tsi_next (&i
))
5918 if (! build_data_member_initialization (tsi_stmt (i
), vec
))
5923 if (TREE_CODE (t
) == CLEANUP_STMT
)
5925 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
5926 but we can in a constexpr constructor for a non-literal class. Just
5927 ignore it; either all the initialization will be constant, in which
5928 case the cleanup can't run, or it can't be constexpr.
5929 Still recurse into CLEANUP_BODY. */
5930 return build_data_member_initialization (CLEANUP_BODY (t
), vec
);
5932 if (TREE_CODE (t
) == CONVERT_EXPR
)
5933 t
= TREE_OPERAND (t
, 0);
5934 if (TREE_CODE (t
) == INIT_EXPR
5935 || TREE_CODE (t
) == MODIFY_EXPR
)
5937 member
= TREE_OPERAND (t
, 0);
5938 init
= unshare_expr (TREE_OPERAND (t
, 1));
5940 else if (TREE_CODE (t
) == CALL_EXPR
)
5942 member
= CALL_EXPR_ARG (t
, 0);
5943 /* We don't use build_cplus_new here because it complains about
5944 abstract bases. Leaving the call unwrapped means that it has the
5945 wrong type, but cxx_eval_constant_expression doesn't care. */
5946 init
= unshare_expr (t
);
5948 else if (TREE_CODE (t
) == DECL_EXPR
)
5949 /* Declaring a temporary, don't add it to the CONSTRUCTOR. */
5953 if (TREE_CODE (member
) == INDIRECT_REF
)
5954 member
= TREE_OPERAND (member
, 0);
5955 if (TREE_CODE (member
) == NOP_EXPR
)
5959 if (TREE_CODE (op
) == ADDR_EXPR
)
5961 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5962 (TREE_TYPE (TREE_TYPE (op
)),
5963 TREE_TYPE (TREE_TYPE (member
))));
5964 /* Initializing a cv-qualified member; we need to look through
5968 else if (op
== current_class_ptr
5969 && (same_type_ignoring_top_level_qualifiers_p
5970 (TREE_TYPE (TREE_TYPE (member
)),
5971 current_class_type
)))
5972 /* Delegating constructor. */
5976 /* This is an initializer for an empty base; keep it for now so
5977 we can check it in cxx_eval_bare_aggregate. */
5978 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member
))));
5981 if (TREE_CODE (member
) == ADDR_EXPR
)
5982 member
= TREE_OPERAND (member
, 0);
5983 if (TREE_CODE (member
) == COMPONENT_REF
)
5985 tree aggr
= TREE_OPERAND (member
, 0);
5986 if (TREE_CODE (aggr
) != COMPONENT_REF
)
5987 /* Normal member initialization. */
5988 member
= TREE_OPERAND (member
, 1);
5989 else if (ANON_AGGR_TYPE_P (TREE_TYPE (aggr
)))
5990 /* Initializing a member of an anonymous union. */
5991 return build_anon_member_initialization (member
, init
, vec
);
5993 /* We're initializing a vtable pointer in a base. Leave it as
5994 COMPONENT_REF so we remember the path to get to the vfield. */
5995 gcc_assert (TREE_TYPE (member
) == vtbl_ptr_type_node
);
5998 CONSTRUCTOR_APPEND_ELT (*vec
, member
, init
);
6002 /* Make sure that there are no statements after LAST in the constructor
6003 body represented by LIST. */
6006 check_constexpr_ctor_body (tree last
, tree list
)
6009 if (TREE_CODE (list
) == STATEMENT_LIST
)
6011 tree_stmt_iterator i
= tsi_last (list
);
6012 for (; !tsi_end_p (i
); tsi_prev (&i
))
6014 tree t
= tsi_stmt (i
);
6017 if (TREE_CODE (t
) == BIND_EXPR
)
6019 if (!check_constexpr_ctor_body (last
, BIND_EXPR_BODY (t
)))
6024 /* We currently allow typedefs and static_assert.
6025 FIXME allow them in the standard, too. */
6026 if (TREE_CODE (t
) != STATIC_ASSERT
)
6033 else if (list
!= last
6034 && TREE_CODE (list
) != STATIC_ASSERT
)
6038 error ("constexpr constructor does not have empty body");
6039 DECL_DECLARED_CONSTEXPR_P (current_function_decl
) = false;
6044 /* V is a vector of constructor elements built up for the base and member
6045 initializers of a constructor for TYPE. They need to be in increasing
6046 offset order, which they might not be yet if TYPE has a primary base
6047 which is not first in the base-clause or a vptr and at least one base
6048 all of which are non-primary. */
6050 static vec
<constructor_elt
, va_gc
> *
6051 sort_constexpr_mem_initializers (tree type
, vec
<constructor_elt
, va_gc
> *v
)
6053 tree pri
= CLASSTYPE_PRIMARY_BINFO (type
);
6055 constructor_elt elt
;
6059 field_type
= BINFO_TYPE (pri
);
6060 else if (TYPE_CONTAINS_VPTR_P (type
))
6061 field_type
= vtbl_ptr_type_node
;
6065 /* Find the element for the primary base or vptr and move it to the
6066 beginning of the vec. */
6067 vec
<constructor_elt
, va_gc
> &vref
= *v
;
6069 if (TREE_TYPE (vref
[i
].index
) == field_type
)
6076 vref
[i
] = vref
[i
-1];
6083 /* Build compile-time evalable representations of member-initializer list
6084 for a constexpr constructor. */
6087 build_constexpr_constructor_member_initializers (tree type
, tree body
)
6089 vec
<constructor_elt
, va_gc
> *vec
= NULL
;
6091 if (TREE_CODE (body
) == MUST_NOT_THROW_EXPR
6092 || TREE_CODE (body
) == EH_SPEC_BLOCK
)
6093 body
= TREE_OPERAND (body
, 0);
6094 if (TREE_CODE (body
) == STATEMENT_LIST
)
6095 body
= STATEMENT_LIST_HEAD (body
)->stmt
;
6096 body
= BIND_EXPR_BODY (body
);
6097 if (TREE_CODE (body
) == CLEANUP_POINT_EXPR
)
6099 body
= TREE_OPERAND (body
, 0);
6100 if (TREE_CODE (body
) == EXPR_STMT
)
6101 body
= TREE_OPERAND (body
, 0);
6102 if (TREE_CODE (body
) == INIT_EXPR
6103 && (same_type_ignoring_top_level_qualifiers_p
6104 (TREE_TYPE (TREE_OPERAND (body
, 0)),
6105 current_class_type
)))
6108 return TREE_OPERAND (body
, 1);
6110 ok
= build_data_member_initialization (body
, &vec
);
6112 else if (TREE_CODE (body
) == STATEMENT_LIST
)
6114 tree_stmt_iterator i
;
6115 for (i
= tsi_start (body
); !tsi_end_p (i
); tsi_next (&i
))
6117 ok
= build_data_member_initialization (tsi_stmt (i
), &vec
);
6122 else if (TREE_CODE (body
) == TRY_BLOCK
)
6124 error ("body of %<constexpr%> constructor cannot be "
6125 "a function-try-block");
6126 return error_mark_node
;
6128 else if (EXPR_P (body
))
6129 ok
= build_data_member_initialization (body
, &vec
);
6131 gcc_assert (errorcount
> 0);
6134 if (vec_safe_length (vec
) > 0)
6136 /* In a delegating constructor, return the target. */
6137 constructor_elt
*ce
= &(*vec
)[0];
6138 if (ce
->index
== current_class_ptr
)
6145 vec
= sort_constexpr_mem_initializers (type
, vec
);
6146 return build_constructor (type
, vec
);
6149 return error_mark_node
;
6152 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
6153 declared to be constexpr, or a sub-statement thereof. Returns the
6154 return value if suitable, error_mark_node for a statement not allowed in
6155 a constexpr function, or NULL_TREE if no return value was found. */
6158 constexpr_fn_retval (tree body
)
6160 switch (TREE_CODE (body
))
6162 case STATEMENT_LIST
:
6164 tree_stmt_iterator i
;
6165 tree expr
= NULL_TREE
;
6166 for (i
= tsi_start (body
); !tsi_end_p (i
); tsi_next (&i
))
6168 tree s
= constexpr_fn_retval (tsi_stmt (i
));
6169 if (s
== error_mark_node
)
6170 return error_mark_node
;
6171 else if (s
== NULL_TREE
)
6172 /* Keep iterating. */;
6174 /* Multiple return statements. */
6175 return error_mark_node
;
6183 return unshare_expr (TREE_OPERAND (body
, 0));
6186 if (TREE_CODE (DECL_EXPR_DECL (body
)) == USING_DECL
)
6188 return error_mark_node
;
6190 case CLEANUP_POINT_EXPR
:
6191 return constexpr_fn_retval (TREE_OPERAND (body
, 0));
6197 return error_mark_node
;
6201 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
6202 FUN; do the necessary transformations to turn it into a single expression
6203 that we can store in the hash table. */
6206 massage_constexpr_body (tree fun
, tree body
)
6208 if (DECL_CONSTRUCTOR_P (fun
))
6209 body
= build_constexpr_constructor_member_initializers
6210 (DECL_CONTEXT (fun
), body
);
6213 if (TREE_CODE (body
) == EH_SPEC_BLOCK
)
6214 body
= EH_SPEC_STMTS (body
);
6215 if (TREE_CODE (body
) == MUST_NOT_THROW_EXPR
)
6216 body
= TREE_OPERAND (body
, 0);
6217 if (TREE_CODE (body
) == BIND_EXPR
)
6218 body
= BIND_EXPR_BODY (body
);
6219 body
= constexpr_fn_retval (body
);
6224 /* FUN is a constexpr constructor with massaged body BODY. Return true
6225 if some bases/fields are uninitialized, and complain if COMPLAIN. */
6228 cx_check_missing_mem_inits (tree fun
, tree body
, bool complain
)
6235 if (TREE_CODE (body
) != CONSTRUCTOR
)
6238 nelts
= CONSTRUCTOR_NELTS (body
);
6239 ctype
= DECL_CONTEXT (fun
);
6240 field
= TYPE_FIELDS (ctype
);
6242 if (TREE_CODE (ctype
) == UNION_TYPE
)
6244 if (nelts
== 0 && next_initializable_field (field
))
6247 error ("%<constexpr%> constructor for union %qT must "
6248 "initialize exactly one non-static data member", ctype
);
6255 for (i
= 0; i
<= nelts
; ++i
)
6262 index
= CONSTRUCTOR_ELT (body
, i
)->index
;
6263 /* Skip base and vtable inits. */
6264 if (TREE_CODE (index
) != FIELD_DECL
6265 || DECL_ARTIFICIAL (index
))
6268 for (; field
!= index
; field
= DECL_CHAIN (field
))
6271 if (TREE_CODE (field
) != FIELD_DECL
6272 || (DECL_C_BIT_FIELD (field
) && !DECL_NAME (field
))
6273 || DECL_ARTIFICIAL (field
))
6275 ftype
= strip_array_types (TREE_TYPE (field
));
6276 if (type_has_constexpr_default_constructor (ftype
))
6278 /* It's OK to skip a member with a trivial constexpr ctor.
6279 A constexpr ctor that isn't trivial should have been
6281 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype
)
6282 || errorcount
!= 0);
6287 error ("uninitialized member %qD in %<constexpr%> constructor",
6291 if (field
== NULL_TREE
)
6293 field
= DECL_CHAIN (field
);
6299 /* We are processing the definition of the constexpr function FUN.
6300 Check that its BODY fulfills the propriate requirements and
6301 enter it in the constexpr function definition table.
6302 For constructor BODY is actually the TREE_LIST of the
6303 member-initializer list. */
6306 register_constexpr_fundef (tree fun
, tree body
)
6308 constexpr_fundef entry
;
6309 constexpr_fundef
**slot
;
6311 if (!is_valid_constexpr_fn (fun
, !DECL_GENERATED_P (fun
)))
6314 body
= massage_constexpr_body (fun
, body
);
6315 if (body
== NULL_TREE
|| body
== error_mark_node
)
6317 if (!DECL_CONSTRUCTOR_P (fun
))
6318 error ("body of constexpr function %qD not a return-statement", fun
);
6322 if (!potential_rvalue_constant_expression (body
))
6324 if (!DECL_GENERATED_P (fun
))
6325 require_potential_rvalue_constant_expression (body
);
6329 if (DECL_CONSTRUCTOR_P (fun
)
6330 && cx_check_missing_mem_inits (fun
, body
, !DECL_GENERATED_P (fun
)))
6333 /* Create the constexpr function table if necessary. */
6334 if (constexpr_fundef_table
== NULL
)
6335 constexpr_fundef_table
= htab_create_ggc (101,
6336 constexpr_fundef_hash
,
6337 constexpr_fundef_equal
,
6341 slot
= (constexpr_fundef
**)
6342 htab_find_slot (constexpr_fundef_table
, &entry
, INSERT
);
6344 gcc_assert (*slot
== NULL
);
6345 *slot
= ggc_alloc_constexpr_fundef ();
6351 /* FUN is a non-constexpr function called in a context that requires a
6352 constant expression. If it comes from a constexpr template, explain why
6353 the instantiation isn't constexpr. */
6356 explain_invalid_constexpr_fn (tree fun
)
6358 static struct pointer_set_t
*diagnosed
;
6360 location_t save_loc
;
6361 /* Only diagnose defaulted functions or instantiations. */
6362 if (!DECL_DEFAULTED_FN (fun
)
6363 && !is_instantiation_of_constexpr (fun
))
6365 if (diagnosed
== NULL
)
6366 diagnosed
= pointer_set_create ();
6367 if (pointer_set_insert (diagnosed
, fun
) != 0)
6368 /* Already explained. */
6371 save_loc
= input_location
;
6372 input_location
= DECL_SOURCE_LOCATION (fun
);
6373 inform (0, "%q+D is not usable as a constexpr function because:", fun
);
6374 /* First check the declaration. */
6375 if (is_valid_constexpr_fn (fun
, true))
6377 /* Then if it's OK, the body. */
6378 if (DECL_DEFAULTED_FN (fun
))
6379 explain_implicit_non_constexpr (fun
);
6382 body
= massage_constexpr_body (fun
, DECL_SAVED_TREE (fun
));
6383 require_potential_rvalue_constant_expression (body
);
6384 if (DECL_CONSTRUCTOR_P (fun
))
6385 cx_check_missing_mem_inits (fun
, body
, true);
6388 input_location
= save_loc
;
6391 /* Objects of this type represent calls to constexpr functions
6392 along with the bindings of parameters to their arguments, for
6393 the purpose of compile time evaluation. */
6395 typedef struct GTY(()) constexpr_call
{
6396 /* Description of the constexpr function definition. */
6397 constexpr_fundef
*fundef
;
6398 /* Parameter bindings environment. A TREE_LIST where each TREE_PURPOSE
6399 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
6400 Note: This arrangement is made to accomodate the use of
6401 iterative_hash_template_arg (see pt.c). If you change this
6402 representation, also change the hash calculation in
6403 cxx_eval_call_expression. */
6405 /* Result of the call.
6406 NULL means the call is being evaluated.
6407 error_mark_node means that the evaluation was erroneous;
6408 otherwise, the actuall value of the call. */
6410 /* The hash of this call; we remember it here to avoid having to
6411 recalculate it when expanding the hash table. */
6415 /* A table of all constexpr calls that have been evaluated by the
6416 compiler in this translation unit. */
6418 static GTY ((param_is (constexpr_call
))) htab_t constexpr_call_table
;
6420 static tree
cxx_eval_constant_expression (const constexpr_call
*, tree
,
6421 bool, bool, bool *, bool *);
6423 /* Compute a hash value for a constexpr call representation. */
6426 constexpr_call_hash (const void *p
)
6428 const constexpr_call
*info
= (const constexpr_call
*) p
;
6432 /* Return 1 if the objects pointed to by P and Q represent calls
6433 to the same constexpr function with the same arguments.
6434 Otherwise, return 0. */
6437 constexpr_call_equal (const void *p
, const void *q
)
6439 const constexpr_call
*lhs
= (const constexpr_call
*) p
;
6440 const constexpr_call
*rhs
= (const constexpr_call
*) q
;
6445 if (!constexpr_fundef_equal (lhs
->fundef
, rhs
->fundef
))
6447 lhs_bindings
= lhs
->bindings
;
6448 rhs_bindings
= rhs
->bindings
;
6449 while (lhs_bindings
!= NULL
&& rhs_bindings
!= NULL
)
6451 tree lhs_arg
= TREE_VALUE (lhs_bindings
);
6452 tree rhs_arg
= TREE_VALUE (rhs_bindings
);
6453 gcc_assert (TREE_TYPE (lhs_arg
) == TREE_TYPE (rhs_arg
));
6454 if (!cp_tree_equal (lhs_arg
, rhs_arg
))
6456 lhs_bindings
= TREE_CHAIN (lhs_bindings
);
6457 rhs_bindings
= TREE_CHAIN (rhs_bindings
);
6459 return lhs_bindings
== rhs_bindings
;
6462 /* Initialize the constexpr call table, if needed. */
6465 maybe_initialize_constexpr_call_table (void)
6467 if (constexpr_call_table
== NULL
)
6468 constexpr_call_table
= htab_create_ggc (101,
6469 constexpr_call_hash
,
6470 constexpr_call_equal
,
6474 /* Return true if T designates the implied `this' parameter. */
6477 is_this_parameter (tree t
)
6479 return t
== current_class_ptr
;
6482 /* We have an expression tree T that represents a call, either CALL_EXPR
6483 or AGGR_INIT_EXPR. If the call is lexically to a named function,
6484 retrun the _DECL for that function. */
6487 get_function_named_in_call (tree t
)
6490 switch (TREE_CODE (t
))
6493 fun
= CALL_EXPR_FN (t
);
6496 case AGGR_INIT_EXPR
:
6497 fun
= AGGR_INIT_EXPR_FN (t
);
6504 if (TREE_CODE (fun
) == ADDR_EXPR
6505 && TREE_CODE (TREE_OPERAND (fun
, 0)) == FUNCTION_DECL
)
6506 fun
= TREE_OPERAND (fun
, 0);
6510 /* We have an expression tree T that represents a call, either CALL_EXPR
6511 or AGGR_INIT_EXPR. Return the Nth argument. */
6514 get_nth_callarg (tree t
, int n
)
6516 switch (TREE_CODE (t
))
6519 return CALL_EXPR_ARG (t
, n
);
6521 case AGGR_INIT_EXPR
:
6522 return AGGR_INIT_EXPR_ARG (t
, n
);
6530 /* Look up the binding of the function parameter T in a constexpr
6531 function call context CALL. */
6534 lookup_parameter_binding (const constexpr_call
*call
, tree t
)
6536 tree b
= purpose_member (t
, call
->bindings
);
6537 return TREE_VALUE (b
);
6540 /* Attempt to evaluate T which represents a call to a builtin function.
6541 We assume here that all builtin functions evaluate to scalar types
6542 represented by _CST nodes. */
6545 cxx_eval_builtin_function_call (const constexpr_call
*call
, tree t
,
6546 bool allow_non_constant
, bool addr
,
6547 bool *non_constant_p
, bool *overflow_p
)
6549 const int nargs
= call_expr_nargs (t
);
6550 tree
*args
= (tree
*) alloca (nargs
* sizeof (tree
));
6553 for (i
= 0; i
< nargs
; ++i
)
6555 args
[i
] = cxx_eval_constant_expression (call
, CALL_EXPR_ARG (t
, i
),
6556 allow_non_constant
, addr
,
6557 non_constant_p
, overflow_p
);
6558 if (allow_non_constant
&& *non_constant_p
)
6561 if (*non_constant_p
)
6563 new_call
= build_call_array_loc (EXPR_LOCATION (t
), TREE_TYPE (t
),
6564 CALL_EXPR_FN (t
), nargs
, args
);
6565 new_call
= fold (new_call
);
6566 VERIFY_CONSTANT (new_call
);
6570 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
6571 the type of the value to match. */
6574 adjust_temp_type (tree type
, tree temp
)
6576 if (TREE_TYPE (temp
) == type
)
6578 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
6579 if (TREE_CODE (temp
) == CONSTRUCTOR
)
6580 return build_constructor (type
, CONSTRUCTOR_ELTS (temp
));
6581 gcc_assert (scalarish_type_p (type
));
6582 return cp_fold_convert (type
, temp
);
6585 /* Subroutine of cxx_eval_call_expression.
6586 We are processing a call expression (either CALL_EXPR or
6587 AGGR_INIT_EXPR) in the call context of OLD_CALL. Evaluate
6588 all arguments and bind their values to correspondings
6589 parameters, making up the NEW_CALL context. */
6592 cxx_bind_parameters_in_call (const constexpr_call
*old_call
, tree t
,
6593 constexpr_call
*new_call
,
6594 bool allow_non_constant
,
6595 bool *non_constant_p
, bool *overflow_p
)
6597 const int nargs
= call_expr_nargs (t
);
6598 tree fun
= new_call
->fundef
->decl
;
6599 tree parms
= DECL_ARGUMENTS (fun
);
6601 for (i
= 0; i
< nargs
; ++i
)
6604 tree type
= parms
? TREE_TYPE (parms
) : void_type_node
;
6605 /* For member function, the first argument is a pointer to the implied
6606 object. And for an object contruction, don't bind `this' before
6607 it is fully constructed. */
6608 if (i
== 0 && DECL_CONSTRUCTOR_P (fun
))
6610 x
= get_nth_callarg (t
, i
);
6611 if (parms
&& DECL_BY_REFERENCE (parms
))
6613 /* cp_genericize made this a reference for argument passing, but
6614 we don't want to treat it like one for constexpr evaluation. */
6615 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
6616 gcc_assert (TREE_CODE (TREE_TYPE (x
)) == REFERENCE_TYPE
);
6617 type
= TREE_TYPE (type
);
6618 x
= convert_from_reference (x
);
6620 arg
= cxx_eval_constant_expression (old_call
, x
, allow_non_constant
,
6621 TREE_CODE (type
) == REFERENCE_TYPE
,
6622 non_constant_p
, overflow_p
);
6623 /* Don't VERIFY_CONSTANT here. */
6624 if (*non_constant_p
&& allow_non_constant
)
6626 /* Just discard ellipsis args after checking their constantitude. */
6629 if (*non_constant_p
)
6630 /* Don't try to adjust the type of non-constant args. */
6633 /* Make sure the binding has the same type as the parm. */
6634 if (TREE_CODE (type
) != REFERENCE_TYPE
)
6635 arg
= adjust_temp_type (type
, arg
);
6636 new_call
->bindings
= tree_cons (parms
, arg
, new_call
->bindings
);
6638 parms
= TREE_CHAIN (parms
);
6642 /* Variables and functions to manage constexpr call expansion context.
6643 These do not need to be marked for PCH or GC. */
6645 /* FIXME remember and print actual constant arguments. */
6646 static vec
<tree
> call_stack
= vNULL
;
6647 static int call_stack_tick
;
6648 static int last_cx_error_tick
;
6651 push_cx_call_context (tree call
)
6654 if (!EXPR_HAS_LOCATION (call
))
6655 SET_EXPR_LOCATION (call
, input_location
);
6656 call_stack
.safe_push (call
);
6657 if (call_stack
.length () > (unsigned) max_constexpr_depth
)
6663 pop_cx_call_context (void)
6670 cx_error_context (void)
6672 vec
<tree
> r
= vNULL
;
6673 if (call_stack_tick
!= last_cx_error_tick
6674 && !call_stack
.is_empty ())
6676 last_cx_error_tick
= call_stack_tick
;
6680 /* Subroutine of cxx_eval_constant_expression.
6681 Evaluate the call expression tree T in the context of OLD_CALL expression
6685 cxx_eval_call_expression (const constexpr_call
*old_call
, tree t
,
6686 bool allow_non_constant
, bool addr
,
6687 bool *non_constant_p
, bool *overflow_p
)
6689 location_t loc
= EXPR_LOC_OR_HERE (t
);
6690 tree fun
= get_function_named_in_call (t
);
6692 constexpr_call new_call
= { NULL
, NULL
, NULL
, 0 };
6693 constexpr_call
**slot
;
6694 constexpr_call
*entry
;
6697 if (TREE_CODE (fun
) != FUNCTION_DECL
)
6699 /* Might be a constexpr function pointer. */
6700 fun
= cxx_eval_constant_expression (old_call
, fun
, allow_non_constant
,
6701 /*addr*/false, non_constant_p
, overflow_p
);
6702 if (TREE_CODE (fun
) == ADDR_EXPR
)
6703 fun
= TREE_OPERAND (fun
, 0);
6705 if (TREE_CODE (fun
) != FUNCTION_DECL
)
6707 if (!allow_non_constant
&& !*non_constant_p
)
6708 error_at (loc
, "expression %qE does not designate a constexpr "
6710 *non_constant_p
= true;
6713 if (DECL_CLONED_FUNCTION_P (fun
))
6714 fun
= DECL_CLONED_FUNCTION (fun
);
6715 if (is_builtin_fn (fun
))
6716 return cxx_eval_builtin_function_call (old_call
, t
, allow_non_constant
,
6717 addr
, non_constant_p
, overflow_p
);
6718 if (!DECL_DECLARED_CONSTEXPR_P (fun
))
6720 if (!allow_non_constant
)
6722 error_at (loc
, "call to non-constexpr function %qD", fun
);
6723 explain_invalid_constexpr_fn (fun
);
6725 *non_constant_p
= true;
6729 /* Shortcut trivial copy constructor/op=. */
6730 if (call_expr_nargs (t
) == 2 && trivial_fn_p (fun
))
6732 tree arg
= convert_from_reference (get_nth_callarg (t
, 1));
6733 return cxx_eval_constant_expression (old_call
, arg
, allow_non_constant
,
6734 addr
, non_constant_p
, overflow_p
);
6737 /* If in direct recursive call, optimize definition search. */
6738 if (old_call
!= NULL
&& old_call
->fundef
->decl
== fun
)
6739 new_call
.fundef
= old_call
->fundef
;
6742 new_call
.fundef
= retrieve_constexpr_fundef (fun
);
6743 if (new_call
.fundef
== NULL
|| new_call
.fundef
->body
== NULL
)
6745 if (!allow_non_constant
)
6747 if (DECL_INITIAL (fun
))
6749 /* The definition of fun was somehow unsuitable. */
6750 error_at (loc
, "%qD called in a constant expression", fun
);
6751 explain_invalid_constexpr_fn (fun
);
6754 error_at (loc
, "%qD used before its definition", fun
);
6756 *non_constant_p
= true;
6760 cxx_bind_parameters_in_call (old_call
, t
, &new_call
,
6761 allow_non_constant
, non_constant_p
, overflow_p
);
6762 if (*non_constant_p
)
6765 depth_ok
= push_cx_call_context (t
);
6768 = iterative_hash_template_arg (new_call
.bindings
,
6769 constexpr_fundef_hash (new_call
.fundef
));
6771 /* If we have seen this call before, we are done. */
6772 maybe_initialize_constexpr_call_table ();
6773 slot
= (constexpr_call
**)
6774 htab_find_slot (constexpr_call_table
, &new_call
, INSERT
);
6778 /* We need to keep a pointer to the entry, not just the slot, as the
6779 slot can move in the call to cxx_eval_builtin_function_call. */
6780 *slot
= entry
= ggc_alloc_constexpr_call ();
6783 /* Calls which are in progress have their result set to NULL
6784 so that we can detect circular dependencies. */
6785 else if (entry
->result
== NULL
)
6787 if (!allow_non_constant
)
6788 error ("call has circular dependency");
6789 *non_constant_p
= true;
6790 entry
->result
= result
= error_mark_node
;
6795 if (!allow_non_constant
)
6796 error ("constexpr evaluation depth exceeds maximum of %d (use "
6797 "-fconstexpr-depth= to increase the maximum)",
6798 max_constexpr_depth
);
6799 *non_constant_p
= true;
6800 entry
->result
= result
= error_mark_node
;
6804 result
= entry
->result
;
6805 if (!result
|| result
== error_mark_node
)
6806 result
= (cxx_eval_constant_expression
6807 (&new_call
, new_call
.fundef
->body
,
6808 allow_non_constant
, addr
,
6809 non_constant_p
, overflow_p
));
6810 if (result
== error_mark_node
)
6811 *non_constant_p
= true;
6812 if (*non_constant_p
)
6813 entry
->result
= result
= error_mark_node
;
6816 /* If this was a call to initialize an object, set the type of
6817 the CONSTRUCTOR to the type of that object. */
6818 if (DECL_CONSTRUCTOR_P (fun
))
6820 tree ob_arg
= get_nth_callarg (t
, 0);
6821 STRIP_NOPS (ob_arg
);
6822 gcc_assert (TREE_CODE (TREE_TYPE (ob_arg
)) == POINTER_TYPE
6823 && CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (ob_arg
))));
6824 result
= adjust_temp_type (TREE_TYPE (TREE_TYPE (ob_arg
)),
6827 entry
->result
= result
;
6831 pop_cx_call_context ();
6832 return unshare_expr (result
);
6835 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
6838 reduced_constant_expression_p (tree t
)
6840 /* FIXME are we calling this too much? */
6841 return initializer_constant_valid_p (t
, TREE_TYPE (t
)) != NULL_TREE
;
6844 /* Some expressions may have constant operands but are not constant
6845 themselves, such as 1/0. Call this function (or rather, the macro
6846 following it) to check for that condition.
6848 We only call this in places that require an arithmetic constant, not in
6849 places where we might have a non-constant expression that can be a
6850 component of a constant expression, such as the address of a constexpr
6851 variable that might be dereferenced later. */
6854 verify_constant (tree t
, bool allow_non_constant
, bool *non_constant_p
,
6857 if (!*non_constant_p
&& !reduced_constant_expression_p (t
))
6859 if (!allow_non_constant
)
6860 error ("%q+E is not a constant expression", t
);
6861 *non_constant_p
= true;
6863 if (TREE_OVERFLOW_P (t
))
6865 if (!allow_non_constant
)
6867 permerror (input_location
, "overflow in constant expression");
6868 /* If we're being permissive (and are in an enforcing
6869 context), ignore the overflow. */
6870 if (flag_permissive
)
6871 return *non_constant_p
;
6875 return *non_constant_p
;
6878 /* Subroutine of cxx_eval_constant_expression.
6879 Attempt to reduce the unary expression tree T to a compile time value.
6880 If successful, return the value. Otherwise issue a diagnostic
6881 and return error_mark_node. */
6884 cxx_eval_unary_expression (const constexpr_call
*call
, tree t
,
6885 bool allow_non_constant
, bool addr
,
6886 bool *non_constant_p
, bool *overflow_p
)
6889 tree orig_arg
= TREE_OPERAND (t
, 0);
6890 tree arg
= cxx_eval_constant_expression (call
, orig_arg
, allow_non_constant
,
6891 addr
, non_constant_p
, overflow_p
);
6892 VERIFY_CONSTANT (arg
);
6893 if (arg
== orig_arg
)
6895 r
= fold_build1 (TREE_CODE (t
), TREE_TYPE (t
), arg
);
6896 VERIFY_CONSTANT (r
);
6900 /* Subroutine of cxx_eval_constant_expression.
6901 Like cxx_eval_unary_expression, except for binary expressions. */
6904 cxx_eval_binary_expression (const constexpr_call
*call
, tree t
,
6905 bool allow_non_constant
, bool addr
,
6906 bool *non_constant_p
, bool *overflow_p
)
6909 tree orig_lhs
= TREE_OPERAND (t
, 0);
6910 tree orig_rhs
= TREE_OPERAND (t
, 1);
6912 lhs
= cxx_eval_constant_expression (call
, orig_lhs
,
6913 allow_non_constant
, addr
,
6914 non_constant_p
, overflow_p
);
6915 VERIFY_CONSTANT (lhs
);
6916 rhs
= cxx_eval_constant_expression (call
, orig_rhs
,
6917 allow_non_constant
, addr
,
6918 non_constant_p
, overflow_p
);
6919 VERIFY_CONSTANT (rhs
);
6920 if (lhs
== orig_lhs
&& rhs
== orig_rhs
)
6922 r
= fold_build2 (TREE_CODE (t
), TREE_TYPE (t
), lhs
, rhs
);
6923 VERIFY_CONSTANT (r
);
6927 /* Subroutine of cxx_eval_constant_expression.
6928 Attempt to evaluate condition expressions. Dead branches are not
6932 cxx_eval_conditional_expression (const constexpr_call
*call
, tree t
,
6933 bool allow_non_constant
, bool addr
,
6934 bool *non_constant_p
, bool *overflow_p
)
6936 tree val
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 0),
6937 allow_non_constant
, addr
,
6938 non_constant_p
, overflow_p
);
6939 VERIFY_CONSTANT (val
);
6940 /* Don't VERIFY_CONSTANT the other operands. */
6941 if (integer_zerop (val
))
6942 return cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 2),
6943 allow_non_constant
, addr
,
6944 non_constant_p
, overflow_p
);
6945 return cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 1),
6946 allow_non_constant
, addr
,
6947 non_constant_p
, overflow_p
);
6950 /* Subroutine of cxx_eval_constant_expression.
6951 Attempt to reduce a reference to an array slot. */
6954 cxx_eval_array_reference (const constexpr_call
*call
, tree t
,
6955 bool allow_non_constant
, bool addr
,
6956 bool *non_constant_p
, bool *overflow_p
)
6958 tree oldary
= TREE_OPERAND (t
, 0);
6959 tree ary
= cxx_eval_constant_expression (call
, oldary
,
6960 allow_non_constant
, addr
,
6961 non_constant_p
, overflow_p
);
6965 unsigned len
, elem_nchars
= 1;
6966 if (*non_constant_p
)
6968 oldidx
= TREE_OPERAND (t
, 1);
6969 index
= cxx_eval_constant_expression (call
, oldidx
,
6970 allow_non_constant
, false,
6971 non_constant_p
, overflow_p
);
6972 VERIFY_CONSTANT (index
);
6973 if (addr
&& ary
== oldary
&& index
== oldidx
)
6976 return build4 (ARRAY_REF
, TREE_TYPE (t
), ary
, index
, NULL
, NULL
);
6977 elem_type
= TREE_TYPE (TREE_TYPE (ary
));
6978 if (TREE_CODE (ary
) == CONSTRUCTOR
)
6979 len
= CONSTRUCTOR_NELTS (ary
);
6980 else if (TREE_CODE (ary
) == STRING_CST
)
6982 elem_nchars
= (TYPE_PRECISION (elem_type
)
6983 / TYPE_PRECISION (char_type_node
));
6984 len
= (unsigned) TREE_STRING_LENGTH (ary
) / elem_nchars
;
6988 /* We can't do anything with other tree codes, so use
6989 VERIFY_CONSTANT to complain and fail. */
6990 VERIFY_CONSTANT (ary
);
6993 if (compare_tree_int (index
, len
) >= 0)
6995 if (tree_int_cst_lt (index
, array_type_nelts_top (TREE_TYPE (ary
))))
6997 /* If it's within the array bounds but doesn't have an explicit
6998 initializer, it's value-initialized. */
6999 tree val
= build_value_init (elem_type
, tf_warning_or_error
);
7000 return cxx_eval_constant_expression (call
, val
,
7001 allow_non_constant
, addr
,
7002 non_constant_p
, overflow_p
);
7005 if (!allow_non_constant
)
7006 error ("array subscript out of bound");
7007 *non_constant_p
= true;
7010 i
= tree_low_cst (index
, 0);
7011 if (TREE_CODE (ary
) == CONSTRUCTOR
)
7012 return (*CONSTRUCTOR_ELTS (ary
))[i
].value
;
7013 else if (elem_nchars
== 1)
7014 return build_int_cst (cv_unqualified (TREE_TYPE (TREE_TYPE (ary
))),
7015 TREE_STRING_POINTER (ary
)[i
]);
7018 tree type
= cv_unqualified (TREE_TYPE (TREE_TYPE (ary
)));
7019 return native_interpret_expr (type
, (const unsigned char *)
7020 TREE_STRING_POINTER (ary
)
7021 + i
* elem_nchars
, elem_nchars
);
7023 /* Don't VERIFY_CONSTANT here. */
7026 /* Subroutine of cxx_eval_constant_expression.
7027 Attempt to reduce a field access of a value of class type. */
7030 cxx_eval_component_reference (const constexpr_call
*call
, tree t
,
7031 bool allow_non_constant
, bool addr
,
7032 bool *non_constant_p
, bool *overflow_p
)
7034 unsigned HOST_WIDE_INT i
;
7037 tree part
= TREE_OPERAND (t
, 1);
7038 tree orig_whole
= TREE_OPERAND (t
, 0);
7039 tree whole
= cxx_eval_constant_expression (call
, orig_whole
,
7040 allow_non_constant
, addr
,
7041 non_constant_p
, overflow_p
);
7042 if (whole
== orig_whole
)
7045 return fold_build3 (COMPONENT_REF
, TREE_TYPE (t
),
7046 whole
, part
, NULL_TREE
);
7047 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
7049 if (!*non_constant_p
&& TREE_CODE (whole
) != CONSTRUCTOR
)
7051 if (!allow_non_constant
)
7052 error ("%qE is not a constant expression", orig_whole
);
7053 *non_constant_p
= true;
7055 if (DECL_MUTABLE_P (part
))
7057 if (!allow_non_constant
)
7058 error ("mutable %qD is not usable in a constant expression", part
);
7059 *non_constant_p
= true;
7061 if (*non_constant_p
)
7063 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole
), i
, field
, value
)
7068 if (TREE_CODE (TREE_TYPE (whole
)) == UNION_TYPE
7069 && CONSTRUCTOR_NELTS (whole
) > 0)
7071 /* DR 1188 says we don't have to deal with this. */
7072 if (!allow_non_constant
)
7073 error ("accessing %qD member instead of initialized %qD member in "
7074 "constant expression", part
, CONSTRUCTOR_ELT (whole
, 0)->index
);
7075 *non_constant_p
= true;
7079 /* If there's no explicit init for this field, it's value-initialized. */
7080 value
= build_value_init (TREE_TYPE (t
), tf_warning_or_error
);
7081 return cxx_eval_constant_expression (call
, value
,
7082 allow_non_constant
, addr
,
7083 non_constant_p
, overflow_p
);
7086 /* Subroutine of cxx_eval_constant_expression.
7087 Attempt to reduce a field access of a value of class type that is
7088 expressed as a BIT_FIELD_REF. */
7091 cxx_eval_bit_field_ref (const constexpr_call
*call
, tree t
,
7092 bool allow_non_constant
, bool addr
,
7093 bool *non_constant_p
, bool *overflow_p
)
7095 tree orig_whole
= TREE_OPERAND (t
, 0);
7096 tree retval
, fldval
, utype
, mask
;
7097 bool fld_seen
= false;
7098 HOST_WIDE_INT istart
, isize
;
7099 tree whole
= cxx_eval_constant_expression (call
, orig_whole
,
7100 allow_non_constant
, addr
,
7101 non_constant_p
, overflow_p
);
7102 tree start
, field
, value
;
7103 unsigned HOST_WIDE_INT i
;
7105 if (whole
== orig_whole
)
7107 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
7109 if (!*non_constant_p
&& TREE_CODE (whole
) != CONSTRUCTOR
)
7111 if (!allow_non_constant
)
7112 error ("%qE is not a constant expression", orig_whole
);
7113 *non_constant_p
= true;
7115 if (*non_constant_p
)
7118 start
= TREE_OPERAND (t
, 2);
7119 istart
= tree_low_cst (start
, 0);
7120 isize
= tree_low_cst (TREE_OPERAND (t
, 1), 0);
7121 utype
= TREE_TYPE (t
);
7122 if (!TYPE_UNSIGNED (utype
))
7123 utype
= build_nonstandard_integer_type (TYPE_PRECISION (utype
), 1);
7124 retval
= build_int_cst (utype
, 0);
7125 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole
), i
, field
, value
)
7127 tree bitpos
= bit_position (field
);
7128 if (bitpos
== start
&& DECL_SIZE (field
) == TREE_OPERAND (t
, 1))
7130 if (TREE_CODE (TREE_TYPE (field
)) == INTEGER_TYPE
7131 && TREE_CODE (value
) == INTEGER_CST
7132 && host_integerp (bitpos
, 0)
7133 && host_integerp (DECL_SIZE (field
), 0))
7135 HOST_WIDE_INT bit
= tree_low_cst (bitpos
, 0);
7136 HOST_WIDE_INT sz
= tree_low_cst (DECL_SIZE (field
), 0);
7137 HOST_WIDE_INT shift
;
7138 if (bit
>= istart
&& bit
+ sz
<= istart
+ isize
)
7140 fldval
= fold_convert (utype
, value
);
7141 mask
= build_int_cst_type (utype
, -1);
7142 mask
= fold_build2 (LSHIFT_EXPR
, utype
, mask
,
7143 size_int (TYPE_PRECISION (utype
) - sz
));
7144 mask
= fold_build2 (RSHIFT_EXPR
, utype
, mask
,
7145 size_int (TYPE_PRECISION (utype
) - sz
));
7146 fldval
= fold_build2 (BIT_AND_EXPR
, utype
, fldval
, mask
);
7147 shift
= bit
- istart
;
7148 if (BYTES_BIG_ENDIAN
)
7149 shift
= TYPE_PRECISION (utype
) - shift
- sz
;
7150 fldval
= fold_build2 (LSHIFT_EXPR
, utype
, fldval
,
7152 retval
= fold_build2 (BIT_IOR_EXPR
, utype
, retval
, fldval
);
7158 return fold_convert (TREE_TYPE (t
), retval
);
7160 return error_mark_node
;
7163 /* Subroutine of cxx_eval_constant_expression.
7164 Evaluate a short-circuited logical expression T in the context
7165 of a given constexpr CALL. BAILOUT_VALUE is the value for
7166 early return. CONTINUE_VALUE is used here purely for
7167 sanity check purposes. */
7170 cxx_eval_logical_expression (const constexpr_call
*call
, tree t
,
7171 tree bailout_value
, tree continue_value
,
7172 bool allow_non_constant
, bool addr
,
7173 bool *non_constant_p
, bool *overflow_p
)
7176 tree lhs
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 0),
7177 allow_non_constant
, addr
,
7178 non_constant_p
, overflow_p
);
7179 VERIFY_CONSTANT (lhs
);
7180 if (tree_int_cst_equal (lhs
, bailout_value
))
7182 gcc_assert (tree_int_cst_equal (lhs
, continue_value
));
7183 r
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 1),
7184 allow_non_constant
, addr
, non_constant_p
, overflow_p
);
7185 VERIFY_CONSTANT (r
);
7189 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
7190 CONSTRUCTOR elements to initialize (part of) an object containing that
7191 field. Return a pointer to the constructor_elt corresponding to the
7192 initialization of the field. */
7194 static constructor_elt
*
7195 base_field_constructor_elt (vec
<constructor_elt
, va_gc
> *v
, tree ref
)
7197 tree aggr
= TREE_OPERAND (ref
, 0);
7198 tree field
= TREE_OPERAND (ref
, 1);
7200 constructor_elt
*ce
;
7202 gcc_assert (TREE_CODE (ref
) == COMPONENT_REF
);
7204 if (TREE_CODE (aggr
) == COMPONENT_REF
)
7206 constructor_elt
*base_ce
7207 = base_field_constructor_elt (v
, aggr
);
7208 v
= CONSTRUCTOR_ELTS (base_ce
->value
);
7211 for (i
= 0; vec_safe_iterate (v
, i
, &ce
); ++i
)
7212 if (ce
->index
== field
)
7219 /* Subroutine of cxx_eval_constant_expression.
7220 The expression tree T denotes a C-style array or a C-style
7221 aggregate. Reduce it to a constant expression. */
7224 cxx_eval_bare_aggregate (const constexpr_call
*call
, tree t
,
7225 bool allow_non_constant
, bool addr
,
7226 bool *non_constant_p
, bool *overflow_p
)
7228 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (t
);
7229 vec
<constructor_elt
, va_gc
> *n
;
7230 vec_alloc (n
, vec_safe_length (v
));
7231 constructor_elt
*ce
;
7233 bool changed
= false;
7234 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t
));
7235 for (i
= 0; vec_safe_iterate (v
, i
, &ce
); ++i
)
7237 tree elt
= cxx_eval_constant_expression (call
, ce
->value
,
7238 allow_non_constant
, addr
,
7239 non_constant_p
, overflow_p
);
7240 /* Don't VERIFY_CONSTANT here. */
7241 if (allow_non_constant
&& *non_constant_p
)
7243 if (elt
!= ce
->value
)
7245 if (ce
->index
&& TREE_CODE (ce
->index
) == COMPONENT_REF
)
7247 /* This is an initialization of a vfield inside a base
7248 subaggregate that we already initialized; push this
7249 initialization into the previous initialization. */
7250 constructor_elt
*inner
= base_field_constructor_elt (n
, ce
->index
);
7253 else if (ce
->index
&& TREE_CODE (ce
->index
) == NOP_EXPR
)
7255 /* This is an initializer for an empty base; now that we've
7256 checked that it's constant, we can ignore it. */
7257 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (ce
->index
))));
7260 CONSTRUCTOR_APPEND_ELT (n
, ce
->index
, elt
);
7262 if (*non_constant_p
|| !changed
)
7268 t
= build_constructor (TREE_TYPE (t
), n
);
7269 TREE_CONSTANT (t
) = true;
7270 if (TREE_CODE (TREE_TYPE (t
)) == VECTOR_TYPE
)
7275 /* Subroutine of cxx_eval_constant_expression.
7276 The expression tree T is a VEC_INIT_EXPR which denotes the desired
7277 initialization of a non-static data member of array type. Reduce it to a
7280 Note that apart from value-initialization (when VALUE_INIT is true),
7281 this is only intended to support value-initialization and the
7282 initializations done by defaulted constructors for classes with
7283 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
7284 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
7285 for the copy/move constructor. */
7288 cxx_eval_vec_init_1 (const constexpr_call
*call
, tree atype
, tree init
,
7289 bool value_init
, bool allow_non_constant
, bool addr
,
7290 bool *non_constant_p
, bool *overflow_p
)
7292 tree elttype
= TREE_TYPE (atype
);
7293 int max
= tree_low_cst (array_type_nelts (atype
), 0);
7294 vec
<constructor_elt
, va_gc
> *n
;
7295 vec_alloc (n
, max
+ 1);
7296 bool pre_init
= false;
7299 /* For the default constructor, build up a call to the default
7300 constructor of the element type. We only need to handle class types
7301 here, as for a constructor to be constexpr, all members must be
7302 initialized, which for a defaulted default constructor means they must
7303 be of a class type with a constexpr default constructor. */
7304 if (TREE_CODE (elttype
) == ARRAY_TYPE
)
7305 /* We only do this at the lowest level. */;
7306 else if (value_init
)
7308 init
= build_value_init (elttype
, tf_warning_or_error
);
7309 init
= cxx_eval_constant_expression
7310 (call
, init
, allow_non_constant
, addr
, non_constant_p
, overflow_p
);
7315 vec
<tree
, va_gc
> *argvec
= make_tree_vector ();
7316 init
= build_special_member_call (NULL_TREE
, complete_ctor_identifier
,
7317 &argvec
, elttype
, LOOKUP_NORMAL
,
7318 tf_warning_or_error
);
7319 release_tree_vector (argvec
);
7320 init
= cxx_eval_constant_expression (call
, init
, allow_non_constant
,
7321 addr
, non_constant_p
, overflow_p
);
7325 if (*non_constant_p
&& !allow_non_constant
)
7328 for (i
= 0; i
<= max
; ++i
)
7330 tree idx
= build_int_cst (size_type_node
, i
);
7332 if (TREE_CODE (elttype
) == ARRAY_TYPE
)
7334 /* A multidimensional array; recurse. */
7335 if (value_init
|| init
== NULL_TREE
)
7336 eltinit
= NULL_TREE
;
7338 eltinit
= cp_build_array_ref (input_location
, init
, idx
,
7339 tf_warning_or_error
);
7340 eltinit
= cxx_eval_vec_init_1 (call
, elttype
, eltinit
, value_init
,
7341 allow_non_constant
, addr
,
7342 non_constant_p
, overflow_p
);
7346 /* Initializing an element using value or default initialization
7347 we just pre-built above. */
7351 eltinit
= unshare_expr (init
);
7355 /* Copying an element. */
7356 vec
<tree
, va_gc
> *argvec
;
7357 gcc_assert (same_type_ignoring_top_level_qualifiers_p
7358 (atype
, TREE_TYPE (init
)));
7359 eltinit
= cp_build_array_ref (input_location
, init
, idx
,
7360 tf_warning_or_error
);
7361 if (!real_lvalue_p (init
))
7362 eltinit
= move (eltinit
);
7363 argvec
= make_tree_vector ();
7364 argvec
->quick_push (eltinit
);
7365 eltinit
= (build_special_member_call
7366 (NULL_TREE
, complete_ctor_identifier
, &argvec
,
7367 elttype
, LOOKUP_NORMAL
, tf_warning_or_error
));
7368 release_tree_vector (argvec
);
7369 eltinit
= cxx_eval_constant_expression
7370 (call
, eltinit
, allow_non_constant
, addr
, non_constant_p
, overflow_p
);
7372 if (*non_constant_p
&& !allow_non_constant
)
7374 CONSTRUCTOR_APPEND_ELT (n
, idx
, eltinit
);
7377 if (!*non_constant_p
)
7379 init
= build_constructor (atype
, n
);
7380 TREE_CONSTANT (init
) = true;
7390 cxx_eval_vec_init (const constexpr_call
*call
, tree t
,
7391 bool allow_non_constant
, bool addr
,
7392 bool *non_constant_p
, bool *overflow_p
)
7394 tree atype
= TREE_TYPE (t
);
7395 tree init
= VEC_INIT_EXPR_INIT (t
);
7396 tree r
= cxx_eval_vec_init_1 (call
, atype
, init
,
7397 VEC_INIT_EXPR_VALUE_INIT (t
),
7398 allow_non_constant
, addr
, non_constant_p
, overflow_p
);
7399 if (*non_constant_p
)
7405 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
7406 match. We want to be less strict for simple *& folding; if we have a
7407 non-const temporary that we access through a const pointer, that should
7408 work. We handle this here rather than change fold_indirect_ref_1
7409 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
7410 don't really make sense outside of constant expression evaluation. Also
7411 we want to allow folding to COMPONENT_REF, which could cause trouble
7412 with TBAA in fold_indirect_ref_1.
7414 Try to keep this function synced with fold_indirect_ref_1. */
7417 cxx_fold_indirect_ref (location_t loc
, tree type
, tree op0
, bool *empty_base
)
7423 subtype
= TREE_TYPE (sub
);
7424 if (!POINTER_TYPE_P (subtype
))
7427 if (TREE_CODE (sub
) == ADDR_EXPR
)
7429 tree op
= TREE_OPERAND (sub
, 0);
7430 tree optype
= TREE_TYPE (op
);
7432 /* *&CONST_DECL -> to the value of the const decl. */
7433 if (TREE_CODE (op
) == CONST_DECL
)
7434 return DECL_INITIAL (op
);
7435 /* *&p => p; make sure to handle *&"str"[cst] here. */
7436 if (same_type_ignoring_top_level_qualifiers_p (optype
, type
))
7438 tree fop
= fold_read_from_constant_string (op
);
7444 /* *(foo *)&fooarray => fooarray[0] */
7445 else if (TREE_CODE (optype
) == ARRAY_TYPE
7446 && (same_type_ignoring_top_level_qualifiers_p
7447 (type
, TREE_TYPE (optype
))))
7449 tree type_domain
= TYPE_DOMAIN (optype
);
7450 tree min_val
= size_zero_node
;
7451 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
7452 min_val
= TYPE_MIN_VALUE (type_domain
);
7453 return build4_loc (loc
, ARRAY_REF
, type
, op
, min_val
,
7454 NULL_TREE
, NULL_TREE
);
7456 /* *(foo *)&complexfoo => __real__ complexfoo */
7457 else if (TREE_CODE (optype
) == COMPLEX_TYPE
7458 && (same_type_ignoring_top_level_qualifiers_p
7459 (type
, TREE_TYPE (optype
))))
7460 return fold_build1_loc (loc
, REALPART_EXPR
, type
, op
);
7461 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
7462 else if (TREE_CODE (optype
) == VECTOR_TYPE
7463 && (same_type_ignoring_top_level_qualifiers_p
7464 (type
, TREE_TYPE (optype
))))
7466 tree part_width
= TYPE_SIZE (type
);
7467 tree index
= bitsize_int (0);
7468 return fold_build3_loc (loc
, BIT_FIELD_REF
, type
, op
, part_width
, index
);
7470 /* Also handle conversion to an empty base class, which
7471 is represented with a NOP_EXPR. */
7472 else if (is_empty_class (type
)
7473 && CLASS_TYPE_P (optype
)
7474 && DERIVED_FROM_P (type
, optype
))
7479 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
7480 else if (RECORD_OR_UNION_TYPE_P (optype
))
7482 tree field
= TYPE_FIELDS (optype
);
7483 for (; field
; field
= DECL_CHAIN (field
))
7484 if (TREE_CODE (field
) == FIELD_DECL
7485 && integer_zerop (byte_position (field
))
7486 && (same_type_ignoring_top_level_qualifiers_p
7487 (TREE_TYPE (field
), type
)))
7489 return fold_build3 (COMPONENT_REF
, type
, op
, field
, NULL_TREE
);
7494 else if (TREE_CODE (sub
) == POINTER_PLUS_EXPR
7495 && TREE_CODE (TREE_OPERAND (sub
, 1)) == INTEGER_CST
)
7497 tree op00
= TREE_OPERAND (sub
, 0);
7498 tree op01
= TREE_OPERAND (sub
, 1);
7501 if (TREE_CODE (op00
) == ADDR_EXPR
)
7504 op00
= TREE_OPERAND (op00
, 0);
7505 op00type
= TREE_TYPE (op00
);
7507 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
7508 if (TREE_CODE (op00type
) == VECTOR_TYPE
7509 && (same_type_ignoring_top_level_qualifiers_p
7510 (type
, TREE_TYPE (op00type
))))
7512 HOST_WIDE_INT offset
= tree_low_cst (op01
, 0);
7513 tree part_width
= TYPE_SIZE (type
);
7514 unsigned HOST_WIDE_INT part_widthi
= tree_low_cst (part_width
, 0)/BITS_PER_UNIT
;
7515 unsigned HOST_WIDE_INT indexi
= offset
* BITS_PER_UNIT
;
7516 tree index
= bitsize_int (indexi
);
7518 if (offset
/part_widthi
<= TYPE_VECTOR_SUBPARTS (op00type
))
7519 return fold_build3_loc (loc
,
7520 BIT_FIELD_REF
, type
, op00
,
7524 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
7525 else if (TREE_CODE (op00type
) == COMPLEX_TYPE
7526 && (same_type_ignoring_top_level_qualifiers_p
7527 (type
, TREE_TYPE (op00type
))))
7529 tree size
= TYPE_SIZE_UNIT (type
);
7530 if (tree_int_cst_equal (size
, op01
))
7531 return fold_build1_loc (loc
, IMAGPART_EXPR
, type
, op00
);
7533 /* ((foo *)&fooarray)[1] => fooarray[1] */
7534 else if (TREE_CODE (op00type
) == ARRAY_TYPE
7535 && (same_type_ignoring_top_level_qualifiers_p
7536 (type
, TREE_TYPE (op00type
))))
7538 tree type_domain
= TYPE_DOMAIN (op00type
);
7539 tree min_val
= size_zero_node
;
7540 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
7541 min_val
= TYPE_MIN_VALUE (type_domain
);
7542 op01
= size_binop_loc (loc
, EXACT_DIV_EXPR
, op01
,
7543 TYPE_SIZE_UNIT (type
));
7544 op01
= size_binop_loc (loc
, PLUS_EXPR
, op01
, min_val
);
7545 return build4_loc (loc
, ARRAY_REF
, type
, op00
, op01
,
7546 NULL_TREE
, NULL_TREE
);
7548 /* Also handle conversion to an empty base class, which
7549 is represented with a NOP_EXPR. */
7550 else if (is_empty_class (type
)
7551 && CLASS_TYPE_P (op00type
)
7552 && DERIVED_FROM_P (type
, op00type
))
7557 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
7558 else if (RECORD_OR_UNION_TYPE_P (op00type
))
7560 tree field
= TYPE_FIELDS (op00type
);
7561 for (; field
; field
= DECL_CHAIN (field
))
7562 if (TREE_CODE (field
) == FIELD_DECL
7563 && tree_int_cst_equal (byte_position (field
), op01
)
7564 && (same_type_ignoring_top_level_qualifiers_p
7565 (TREE_TYPE (field
), type
)))
7567 return fold_build3 (COMPONENT_REF
, type
, op00
,
7574 /* *(foo *)fooarrptreturn> (*fooarrptr)[0] */
7575 else if (TREE_CODE (TREE_TYPE (subtype
)) == ARRAY_TYPE
7576 && (same_type_ignoring_top_level_qualifiers_p
7577 (type
, TREE_TYPE (TREE_TYPE (subtype
)))))
7580 tree min_val
= size_zero_node
;
7581 sub
= cxx_fold_indirect_ref (loc
, TREE_TYPE (subtype
), sub
, NULL
);
7583 sub
= build1_loc (loc
, INDIRECT_REF
, TREE_TYPE (subtype
), sub
);
7584 type_domain
= TYPE_DOMAIN (TREE_TYPE (sub
));
7585 if (type_domain
&& TYPE_MIN_VALUE (type_domain
))
7586 min_val
= TYPE_MIN_VALUE (type_domain
);
7587 return build4_loc (loc
, ARRAY_REF
, type
, sub
, min_val
, NULL_TREE
,
7595 cxx_eval_indirect_ref (const constexpr_call
*call
, tree t
,
7596 bool allow_non_constant
, bool addr
,
7597 bool *non_constant_p
, bool *overflow_p
)
7599 tree orig_op0
= TREE_OPERAND (t
, 0);
7600 tree op0
= cxx_eval_constant_expression (call
, orig_op0
, allow_non_constant
,
7601 /*addr*/false, non_constant_p
, overflow_p
);
7602 bool empty_base
= false;
7605 /* Don't VERIFY_CONSTANT here. */
7606 if (*non_constant_p
)
7609 r
= cxx_fold_indirect_ref (EXPR_LOCATION (t
), TREE_TYPE (t
), op0
,
7613 r
= cxx_eval_constant_expression (call
, r
, allow_non_constant
,
7614 addr
, non_constant_p
, overflow_p
);
7619 if (TREE_CODE (sub
) == POINTER_PLUS_EXPR
)
7621 sub
= TREE_OPERAND (sub
, 0);
7624 if (TREE_CODE (sub
) == ADDR_EXPR
)
7626 /* We couldn't fold to a constant value. Make sure it's not
7627 something we should have been able to fold. */
7628 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
7629 (TREE_TYPE (TREE_TYPE (sub
)), TREE_TYPE (t
)));
7630 /* DR 1188 says we don't have to deal with this. */
7631 if (!allow_non_constant
)
7632 error ("accessing value of %qE through a %qT glvalue in a "
7633 "constant expression", build_fold_indirect_ref (sub
),
7635 *non_constant_p
= true;
7640 /* If we're pulling out the value of an empty base, make sure
7641 that the whole object is constant and then return an empty
7645 VERIFY_CONSTANT (r
);
7646 r
= build_constructor (TREE_TYPE (t
), NULL
);
7647 TREE_CONSTANT (r
) = true;
7653 VERIFY_CONSTANT (t
);
7659 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
7660 Shared between potential_constant_expression and
7661 cxx_eval_constant_expression. */
7664 non_const_var_error (tree r
)
7666 tree type
= TREE_TYPE (r
);
7667 error ("the value of %qD is not usable in a constant "
7669 /* Avoid error cascade. */
7670 if (DECL_INITIAL (r
) == error_mark_node
)
7672 if (DECL_DECLARED_CONSTEXPR_P (r
))
7673 inform (DECL_SOURCE_LOCATION (r
),
7674 "%qD used in its own initializer", r
);
7675 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
7677 if (!CP_TYPE_CONST_P (type
))
7678 inform (DECL_SOURCE_LOCATION (r
),
7679 "%q#D is not const", r
);
7680 else if (CP_TYPE_VOLATILE_P (type
))
7681 inform (DECL_SOURCE_LOCATION (r
),
7682 "%q#D is volatile", r
);
7683 else if (!DECL_INITIAL (r
)
7684 || !TREE_CONSTANT (DECL_INITIAL (r
)))
7685 inform (DECL_SOURCE_LOCATION (r
),
7686 "%qD was not initialized with a constant "
7693 if (cxx_dialect
>= cxx0x
&& !DECL_DECLARED_CONSTEXPR_P (r
))
7694 inform (DECL_SOURCE_LOCATION (r
),
7695 "%qD was not declared %<constexpr%>", r
);
7697 inform (DECL_SOURCE_LOCATION (r
),
7698 "%qD does not have integral or enumeration type",
7703 /* Evaluate VEC_PERM_EXPR (v1, v2, mask). */
7705 cxx_eval_vec_perm_expr (const constexpr_call
*call
, tree t
,
7706 bool allow_non_constant
, bool addr
,
7707 bool *non_constant_p
, bool *overflow_p
)
7712 tree elttype
= TREE_TYPE (t
);
7714 for (i
= 0; i
< 3; i
++)
7716 args
[i
] = cxx_eval_constant_expression (call
, TREE_OPERAND (t
, i
),
7717 allow_non_constant
, addr
,
7718 non_constant_p
, overflow_p
);
7719 if (*non_constant_p
)
7723 gcc_assert (TREE_CODE (TREE_TYPE (args
[0])) == VECTOR_TYPE
);
7724 gcc_assert (TREE_CODE (TREE_TYPE (args
[1])) == VECTOR_TYPE
);
7725 gcc_assert (TREE_CODE (TREE_TYPE (args
[2])) == VECTOR_TYPE
);
7727 val
= fold_ternary_loc (EXPR_LOCATION (t
), VEC_PERM_EXPR
, elttype
,
7728 args
[0], args
[1], args
[2]);
7729 if (val
!= NULL_TREE
)
7736 /* Attempt to reduce the expression T to a constant value.
7737 On failure, issue diagnostic and return error_mark_node. */
7738 /* FIXME unify with c_fully_fold */
7741 cxx_eval_constant_expression (const constexpr_call
*call
, tree t
,
7742 bool allow_non_constant
, bool addr
,
7743 bool *non_constant_p
, bool *overflow_p
)
7747 if (t
== error_mark_node
)
7749 *non_constant_p
= true;
7752 if (CONSTANT_CLASS_P (t
))
7754 if (TREE_CODE (t
) == PTRMEM_CST
)
7755 t
= cplus_expand_constant (t
);
7756 else if (TREE_OVERFLOW (t
) && (!flag_permissive
|| allow_non_constant
))
7760 if (TREE_CODE (t
) != NOP_EXPR
7761 && reduced_constant_expression_p (t
))
7764 switch (TREE_CODE (t
))
7769 /* else fall through. */
7771 r
= integral_constant_value (t
);
7772 if (TREE_CODE (r
) == TARGET_EXPR
7773 && TREE_CODE (TARGET_EXPR_INITIAL (r
)) == CONSTRUCTOR
)
7774 r
= TARGET_EXPR_INITIAL (r
);
7777 if (!allow_non_constant
)
7778 non_const_var_error (r
);
7779 *non_constant_p
= true;
7789 if (call
&& DECL_CONTEXT (t
) == call
->fundef
->decl
)
7791 if (DECL_ARTIFICIAL (t
) && DECL_CONSTRUCTOR_P (DECL_CONTEXT (t
)))
7793 if (!allow_non_constant
)
7794 sorry ("use of the value of the object being constructed "
7795 "in a constant expression");
7796 *non_constant_p
= true;
7799 r
= lookup_parameter_binding (call
, t
);
7802 /* Defer in case this is only used for its type. */;
7805 if (!allow_non_constant
)
7806 error ("%qE is not a constant expression", t
);
7807 *non_constant_p
= true;
7812 case AGGR_INIT_EXPR
:
7813 r
= cxx_eval_call_expression (call
, t
, allow_non_constant
, addr
,
7814 non_constant_p
, overflow_p
);
7818 if (!literal_type_p (TREE_TYPE (t
)))
7820 if (!allow_non_constant
)
7822 error ("temporary of non-literal type %qT in a "
7823 "constant expression", TREE_TYPE (t
));
7824 explain_non_literal_class (TREE_TYPE (t
));
7826 *non_constant_p
= true;
7829 /* else fall through. */
7831 /* Pass false for 'addr' because these codes indicate
7832 initialization of a temporary. */
7833 r
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 1),
7834 allow_non_constant
, false,
7835 non_constant_p
, overflow_p
);
7836 if (!*non_constant_p
)
7837 /* Adjust the type of the result to the type of the temporary. */
7838 r
= adjust_temp_type (TREE_TYPE (t
), r
);
7842 r
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 1),
7843 allow_non_constant
, addr
,
7844 non_constant_p
, overflow_p
);
7848 case NON_LVALUE_EXPR
:
7849 case TRY_CATCH_EXPR
:
7850 case CLEANUP_POINT_EXPR
:
7851 case MUST_NOT_THROW_EXPR
:
7853 r
= cxx_eval_constant_expression (call
, TREE_OPERAND (t
, 0),
7854 allow_non_constant
, addr
,
7855 non_constant_p
, overflow_p
);
7858 /* These differ from cxx_eval_unary_expression in that this doesn't
7859 check for a constant operand or result; an address can be
7860 constant without its operand being, and vice versa. */
7862 r
= cxx_eval_indirect_ref (call
, t
, allow_non_constant
, addr
,
7863 non_constant_p
, overflow_p
);
7868 tree oldop
= TREE_OPERAND (t
, 0);
7869 tree op
= cxx_eval_constant_expression (call
, oldop
,
7872 non_constant_p
, overflow_p
);
7873 /* Don't VERIFY_CONSTANT here. */
7874 if (*non_constant_p
)
7876 /* This function does more aggressive folding than fold itself. */
7877 r
= build_fold_addr_expr_with_type (op
, TREE_TYPE (t
));
7878 if (TREE_CODE (r
) == ADDR_EXPR
&& TREE_OPERAND (r
, 0) == oldop
)
7886 case FIX_TRUNC_EXPR
:
7891 case TRUTH_NOT_EXPR
:
7892 case FIXED_CONVERT_EXPR
:
7893 r
= cxx_eval_unary_expression (call
, t
, allow_non_constant
, addr
,
7894 non_constant_p
, overflow_p
);
7898 if (SIZEOF_EXPR_TYPE_P (t
))
7899 r
= cxx_sizeof_or_alignof_type (TREE_TYPE (TREE_OPERAND (t
, 0)),
7900 SIZEOF_EXPR
, false);
7901 else if (TYPE_P (TREE_OPERAND (t
, 0)))
7902 r
= cxx_sizeof_or_alignof_type (TREE_OPERAND (t
, 0), SIZEOF_EXPR
,
7905 r
= cxx_sizeof_or_alignof_expr (TREE_OPERAND (t
, 0), SIZEOF_EXPR
,
7907 if (r
== error_mark_node
)
7909 VERIFY_CONSTANT (r
);
7914 /* check_return_expr sometimes wraps a TARGET_EXPR in a
7915 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
7916 introduced by build_call_a. */
7917 tree op0
= TREE_OPERAND (t
, 0);
7918 tree op1
= TREE_OPERAND (t
, 1);
7920 if ((TREE_CODE (op0
) == TARGET_EXPR
&& op1
== TARGET_EXPR_SLOT (op0
))
7921 || TREE_CODE (op1
) == EMPTY_CLASS_EXPR
)
7922 r
= cxx_eval_constant_expression (call
, op0
, allow_non_constant
,
7923 addr
, non_constant_p
, overflow_p
);
7926 /* Check that the LHS is constant and then discard it. */
7927 cxx_eval_constant_expression (call
, op0
, allow_non_constant
,
7928 false, non_constant_p
, overflow_p
);
7929 op1
= TREE_OPERAND (t
, 1);
7930 r
= cxx_eval_constant_expression (call
, op1
, allow_non_constant
,
7931 addr
, non_constant_p
, overflow_p
);
7936 case POINTER_PLUS_EXPR
:
7940 case TRUNC_DIV_EXPR
:
7942 case FLOOR_DIV_EXPR
:
7943 case ROUND_DIV_EXPR
:
7944 case TRUNC_MOD_EXPR
:
7946 case ROUND_MOD_EXPR
:
7948 case EXACT_DIV_EXPR
:
7958 case TRUTH_XOR_EXPR
:
7965 case UNORDERED_EXPR
:
7974 r
= cxx_eval_binary_expression (call
, t
, allow_non_constant
, addr
,
7975 non_constant_p
, overflow_p
);
7978 /* fold can introduce non-IF versions of these; still treat them as
7979 short-circuiting. */
7980 case TRUTH_AND_EXPR
:
7981 case TRUTH_ANDIF_EXPR
:
7982 r
= cxx_eval_logical_expression (call
, t
, boolean_false_node
,
7984 allow_non_constant
, addr
,
7985 non_constant_p
, overflow_p
);
7989 case TRUTH_ORIF_EXPR
:
7990 r
= cxx_eval_logical_expression (call
, t
, boolean_true_node
,
7992 allow_non_constant
, addr
,
7993 non_constant_p
, overflow_p
);
7997 r
= cxx_eval_array_reference (call
, t
, allow_non_constant
, addr
,
7998 non_constant_p
, overflow_p
);
8002 r
= cxx_eval_component_reference (call
, t
, allow_non_constant
, addr
,
8003 non_constant_p
, overflow_p
);
8007 r
= cxx_eval_bit_field_ref (call
, t
, allow_non_constant
, addr
,
8008 non_constant_p
, overflow_p
);
8013 r
= cxx_eval_conditional_expression (call
, t
, allow_non_constant
, addr
,
8014 non_constant_p
, overflow_p
);
8018 r
= cxx_eval_bare_aggregate (call
, t
, allow_non_constant
, addr
,
8019 non_constant_p
, overflow_p
);
8023 /* We can get this in a defaulted constructor for a class with a
8024 non-static data member of array type. Either the initializer will
8025 be NULL, meaning default-initialization, or it will be an lvalue
8026 or xvalue of the same type, meaning direct-initialization from the
8027 corresponding member. */
8028 r
= cxx_eval_vec_init (call
, t
, allow_non_constant
, addr
,
8029 non_constant_p
, overflow_p
);
8033 r
= cxx_eval_vec_perm_expr (call
, t
, allow_non_constant
, addr
,
8034 non_constant_p
, overflow_p
);
8038 case VIEW_CONVERT_EXPR
:
8041 tree oldop
= TREE_OPERAND (t
, 0);
8042 tree op
= cxx_eval_constant_expression (call
, oldop
,
8043 allow_non_constant
, addr
,
8044 non_constant_p
, overflow_p
);
8045 if (*non_constant_p
)
8048 /* We didn't fold at the top so we could check for ptr-int
8051 r
= fold_build1 (TREE_CODE (t
), TREE_TYPE (t
), op
);
8052 /* Conversion of an out-of-range value has implementation-defined
8053 behavior; the language considers it different from arithmetic
8054 overflow, which is undefined. */
8055 if (TREE_OVERFLOW_P (r
) && !TREE_OVERFLOW_P (op
))
8056 TREE_OVERFLOW (r
) = false;
8060 case EMPTY_CLASS_EXPR
:
8061 /* This is good enough for a function argument that might not get
8062 used, and they can't do anything with it, so just return it. */
8066 case PREINCREMENT_EXPR
:
8067 case POSTINCREMENT_EXPR
:
8068 case PREDECREMENT_EXPR
:
8069 case POSTDECREMENT_EXPR
:
8073 case VEC_DELETE_EXPR
:
8077 /* GCC internal stuff. */
8080 case WITH_CLEANUP_EXPR
:
8081 case STATEMENT_LIST
:
8083 case NON_DEPENDENT_EXPR
:
8087 if (!allow_non_constant
)
8088 error_at (EXPR_LOC_OR_HERE (t
),
8089 "expression %qE is not a constant-expression", t
);
8090 *non_constant_p
= true;
8094 internal_error ("unexpected expression %qE of kind %s", t
,
8095 tree_code_name
[TREE_CODE (t
)]);
8096 *non_constant_p
= true;
8100 if (r
== error_mark_node
)
8101 *non_constant_p
= true;
8103 if (*non_constant_p
)
8110 cxx_eval_outermost_constant_expr (tree t
, bool allow_non_constant
)
8112 bool non_constant_p
= false;
8113 bool overflow_p
= false;
8114 tree r
= cxx_eval_constant_expression (NULL
, t
, allow_non_constant
,
8115 false, &non_constant_p
, &overflow_p
);
8117 verify_constant (r
, allow_non_constant
, &non_constant_p
, &overflow_p
);
8119 if (TREE_CODE (t
) != CONSTRUCTOR
8120 && cp_has_mutable_p (TREE_TYPE (t
)))
8122 /* We allow a mutable type if the original expression was a
8123 CONSTRUCTOR so that we can do aggregate initialization of
8124 constexpr variables. */
8125 if (!allow_non_constant
)
8126 error ("%qT cannot be the type of a complete constant expression "
8127 "because it has mutable sub-objects", TREE_TYPE (t
));
8128 non_constant_p
= true;
8131 /* Technically we should check this for all subexpressions, but that
8132 runs into problems with our internal representation of pointer
8133 subtraction and the 5.19 rules are still in flux. */
8134 if (CONVERT_EXPR_CODE_P (TREE_CODE (r
))
8135 && ARITHMETIC_TYPE_P (TREE_TYPE (r
))
8136 && TREE_CODE (TREE_OPERAND (r
, 0)) == ADDR_EXPR
)
8138 if (!allow_non_constant
)
8139 error ("conversion from pointer type %qT "
8140 "to arithmetic type %qT in a constant-expression",
8141 TREE_TYPE (TREE_OPERAND (r
, 0)), TREE_TYPE (r
));
8142 non_constant_p
= true;
8145 if (!non_constant_p
&& overflow_p
)
8146 non_constant_p
= true;
8148 if (non_constant_p
&& !allow_non_constant
)
8149 return error_mark_node
;
8150 else if (non_constant_p
&& TREE_CONSTANT (r
))
8152 /* This isn't actually constant, so unset TREE_CONSTANT. */
8155 else if (TREE_CODE (r
) == CONSTRUCTOR
)
8156 r
= build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (r
), r
);
8158 r
= build_nop (TREE_TYPE (r
), r
);
8159 TREE_CONSTANT (r
) = false;
8161 else if (non_constant_p
|| r
== t
)
8164 if (TREE_CODE (r
) == CONSTRUCTOR
&& CLASS_TYPE_P (TREE_TYPE (r
)))
8166 if (TREE_CODE (t
) == TARGET_EXPR
8167 && TARGET_EXPR_INITIAL (t
) == r
)
8171 r
= get_target_expr (r
);
8172 TREE_CONSTANT (r
) = true;
8180 /* Returns true if T is a valid subexpression of a constant expression,
8181 even if it isn't itself a constant expression. */
8184 is_sub_constant_expr (tree t
)
8186 bool non_constant_p
= false;
8187 bool overflow_p
= false;
8188 cxx_eval_constant_expression (NULL
, t
, true, false, &non_constant_p
,
8190 return !non_constant_p
&& !overflow_p
;
8193 /* If T represents a constant expression returns its reduced value.
8194 Otherwise return error_mark_node. If T is dependent, then
8198 cxx_constant_value (tree t
)
8200 return cxx_eval_outermost_constant_expr (t
, false);
8203 /* If T is a constant expression, returns its reduced value.
8204 Otherwise, if T does not have TREE_CONSTANT set, returns T.
8205 Otherwise, returns a version of T without TREE_CONSTANT. */
8208 maybe_constant_value (tree t
)
8212 if (type_dependent_expression_p (t
)
8213 || type_unknown_p (t
)
8214 || BRACE_ENCLOSED_INITIALIZER_P (t
)
8215 || !potential_constant_expression (t
)
8216 || value_dependent_expression_p (t
))
8218 if (TREE_OVERFLOW_P (t
))
8220 t
= build_nop (TREE_TYPE (t
), t
);
8221 TREE_CONSTANT (t
) = false;
8226 r
= cxx_eval_outermost_constant_expr (t
, true);
8227 #ifdef ENABLE_CHECKING
8228 /* cp_tree_equal looks through NOPs, so allow them. */
8230 || CONVERT_EXPR_P (t
)
8231 || (TREE_CONSTANT (t
) && !TREE_CONSTANT (r
))
8232 || !cp_tree_equal (r
, t
));
8237 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
8238 than wrapped in a TARGET_EXPR. */
8241 maybe_constant_init (tree t
)
8243 t
= maybe_constant_value (t
);
8244 if (TREE_CODE (t
) == TARGET_EXPR
)
8246 tree init
= TARGET_EXPR_INITIAL (t
);
8247 if (TREE_CODE (init
) == CONSTRUCTOR
)
8254 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
8255 /* Return true if the object referred to by REF has automatic or thread
8258 enum { ck_ok
, ck_bad
, ck_unknown
};
8260 check_automatic_or_tls (tree ref
)
8262 enum machine_mode mode
;
8263 HOST_WIDE_INT bitsize
, bitpos
;
8265 int volatilep
= 0, unsignedp
= 0;
8266 tree decl
= get_inner_reference (ref
, &bitsize
, &bitpos
, &offset
,
8267 &mode
, &unsignedp
, &volatilep
, false);
8270 /* If there isn't a decl in the middle, we don't know the linkage here,
8271 and this isn't a constant expression anyway. */
8274 dk
= decl_storage_duration (decl
);
8275 return (dk
== dk_auto
|| dk
== dk_thread
) ? ck_bad
: ck_ok
;
8279 /* Return true if T denotes a potentially constant expression. Issue
8280 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
8281 an lvalue-rvalue conversion is implied.
8283 C++0x [expr.const] used to say
8285 6 An expression is a potential constant expression if it is
8286 a constant expression where all occurences of function
8287 parameters are replaced by arbitrary constant expressions
8288 of the appropriate type.
8290 2 A conditional expression is a constant expression unless it
8291 involves one of the following as a potentially evaluated
8292 subexpression (3.2), but subexpressions of logical AND (5.14),
8293 logical OR (5.15), and conditional (5.16) operations that are
8294 not evaluated are not considered. */
8297 potential_constant_expression_1 (tree t
, bool want_rval
, tsubst_flags_t flags
)
8299 enum { any
= false, rval
= true };
8303 if (t
== error_mark_node
)
8307 if (TREE_THIS_VOLATILE (t
))
8309 if (flags
& tf_error
)
8310 error ("expression %qE has side-effects", t
);
8313 if (CONSTANT_CLASS_P (t
))
8316 switch (TREE_CODE (t
))
8322 case TEMPLATE_ID_EXPR
:
8329 case TEMPLATE_PARM_INDEX
:
8331 case IDENTIFIER_NODE
:
8332 case USERDEF_LITERAL
:
8333 /* We can see a FIELD_DECL in a pointer-to-member expression. */
8339 case AGGR_INIT_EXPR
:
8341 /* -- an invocation of a function other than a constexpr function
8342 or a constexpr constructor. */
8344 tree fun
= get_function_named_in_call (t
);
8345 const int nargs
= call_expr_nargs (t
);
8348 if (is_overloaded_fn (fun
))
8350 if (TREE_CODE (fun
) == FUNCTION_DECL
)
8352 if (builtin_valid_in_constant_expr_p (fun
))
8354 if (!DECL_DECLARED_CONSTEXPR_P (fun
)
8355 /* Allow any built-in function; if the expansion
8356 isn't constant, we'll deal with that then. */
8357 && !is_builtin_fn (fun
))
8359 if (flags
& tf_error
)
8361 error_at (EXPR_LOC_OR_HERE (t
),
8362 "call to non-constexpr function %qD", fun
);
8363 explain_invalid_constexpr_fn (fun
);
8367 /* A call to a non-static member function takes the address
8368 of the object as the first argument. But in a constant
8369 expression the address will be folded away, so look
8371 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun
)
8372 && !DECL_CONSTRUCTOR_P (fun
))
8374 tree x
= get_nth_callarg (t
, 0);
8375 if (is_this_parameter (x
))
8377 if (DECL_CONSTRUCTOR_P (DECL_CONTEXT (x
)))
8379 if (flags
& tf_error
)
8380 sorry ("calling a member function of the "
8381 "object being constructed in a constant "
8385 /* Otherwise OK. */;
8387 else if (!potential_constant_expression_1 (x
, rval
, flags
))
8393 fun
= get_first_fn (fun
);
8394 /* Skip initial arguments to base constructors. */
8395 if (DECL_BASE_CONSTRUCTOR_P (fun
))
8396 i
= num_artificial_parms_for (fun
);
8397 fun
= DECL_ORIGIN (fun
);
8401 if (potential_constant_expression_1 (fun
, rval
, flags
))
8402 /* Might end up being a constant function pointer. */;
8406 for (; i
< nargs
; ++i
)
8408 tree x
= get_nth_callarg (t
, i
);
8409 if (!potential_constant_expression_1 (x
, rval
, flags
))
8415 case NON_LVALUE_EXPR
:
8416 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
8417 -- an lvalue of integral type that refers to a non-volatile
8418 const variable or static data member initialized with
8419 constant expressions, or
8421 -- an lvalue of literal type that refers to non-volatile
8422 object defined with constexpr, or that refers to a
8423 sub-object of such an object; */
8424 return potential_constant_expression_1 (TREE_OPERAND (t
, 0), rval
, flags
);
8427 if (want_rval
&& !decl_constant_var_p (t
)
8428 && !dependent_type_p (TREE_TYPE (t
)))
8430 if (flags
& tf_error
)
8431 non_const_var_error (t
);
8438 case VIEW_CONVERT_EXPR
:
8439 /* -- a reinterpret_cast. FIXME not implemented, and this rule
8440 may change to something more specific to type-punning (DR 1312). */
8442 tree from
= TREE_OPERAND (t
, 0);
8443 return (potential_constant_expression_1
8444 (from
, TREE_CODE (t
) != VIEW_CONVERT_EXPR
, flags
));
8448 /* -- a unary operator & that is applied to an lvalue that
8449 designates an object with thread or automatic storage
8451 t
= TREE_OPERAND (t
, 0);
8453 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
8454 any checking here, as we might dereference the pointer later. If
8455 we remove this code, also remove check_automatic_or_tls. */
8456 i
= check_automatic_or_tls (t
);
8461 if (flags
& tf_error
)
8462 error ("address-of an object %qE with thread local or "
8463 "automatic storage is not a constant expression", t
);
8467 return potential_constant_expression_1 (t
, any
, flags
);
8473 /* -- a class member access unless its postfix-expression is
8474 of literal type or of pointer to literal type. */
8475 /* This test would be redundant, as it follows from the
8476 postfix-expression being a potential constant expression. */
8477 return potential_constant_expression_1 (TREE_OPERAND (t
, 0),
8480 case EXPR_PACK_EXPANSION
:
8481 return potential_constant_expression_1 (PACK_EXPANSION_PATTERN (t
),
8486 tree x
= TREE_OPERAND (t
, 0);
8488 if (is_this_parameter (x
))
8490 if (want_rval
&& DECL_CONTEXT (x
)
8491 && DECL_CONSTRUCTOR_P (DECL_CONTEXT (x
)))
8493 if (flags
& tf_error
)
8494 sorry ("use of the value of the object being constructed "
8495 "in a constant expression");
8500 return potential_constant_expression_1 (x
, rval
, flags
);
8504 case DYNAMIC_CAST_EXPR
:
8505 case PSEUDO_DTOR_EXPR
:
8506 case PREINCREMENT_EXPR
:
8507 case POSTINCREMENT_EXPR
:
8508 case PREDECREMENT_EXPR
:
8509 case POSTDECREMENT_EXPR
:
8513 case VEC_DELETE_EXPR
:
8517 /* GCC internal stuff. */
8520 case WITH_CLEANUP_EXPR
:
8521 case CLEANUP_POINT_EXPR
:
8522 case MUST_NOT_THROW_EXPR
:
8523 case TRY_CATCH_EXPR
:
8524 case STATEMENT_LIST
:
8525 /* Don't bother trying to define a subset of statement-expressions to
8526 be constant-expressions, at least for now. */
8530 case TRANSACTION_EXPR
:
8535 if (flags
& tf_error
)
8536 error ("expression %qE is not a constant-expression", t
);
8540 /* -- a typeid expression whose operand is of polymorphic
8543 tree e
= TREE_OPERAND (t
, 0);
8544 if (!TYPE_P (e
) && !type_dependent_expression_p (e
)
8545 && TYPE_POLYMORPHIC_P (TREE_TYPE (e
)))
8547 if (flags
& tf_error
)
8548 error ("typeid-expression is not a constant expression "
8549 "because %qE is of polymorphic type", e
);
8556 /* -- a subtraction where both operands are pointers. */
8557 if (TYPE_PTR_P (TREE_OPERAND (t
, 0))
8558 && TYPE_PTR_P (TREE_OPERAND (t
, 1)))
8560 if (flags
& tf_error
)
8561 error ("difference of two pointer expressions is not "
8562 "a constant expression");
8574 /* -- a relational or equality operator where at least
8575 one of the operands is a pointer. */
8576 if (TYPE_PTR_P (TREE_OPERAND (t
, 0))
8577 || TYPE_PTR_P (TREE_OPERAND (t
, 1)))
8579 if (flags
& tf_error
)
8580 error ("pointer comparison expression is not a "
8581 "constant expression");
8589 if (TYPE_P (TREE_OPERAND (t
, 0)))
8591 /* else fall through. */
8597 case FIX_TRUNC_EXPR
:
8601 case TRUTH_NOT_EXPR
:
8602 case FIXED_CONVERT_EXPR
:
8603 case UNARY_PLUS_EXPR
:
8604 return potential_constant_expression_1 (TREE_OPERAND (t
, 0), rval
,
8608 case CONST_CAST_EXPR
:
8609 case STATIC_CAST_EXPR
:
8610 case REINTERPRET_CAST_EXPR
:
8611 case IMPLICIT_CONV_EXPR
:
8612 if (cxx_dialect
< cxx0x
8613 && !dependent_type_p (TREE_TYPE (t
))
8614 && !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t
)))
8615 /* In C++98, a conversion to non-integral type can't be part of a
8616 constant expression. */
8618 if (flags
& tf_error
)
8619 error ("cast to non-integral type %qT in a constant expression",
8624 return (potential_constant_expression_1
8625 (TREE_OPERAND (t
, 0),
8626 TREE_CODE (TREE_TYPE (t
)) != REFERENCE_TYPE
, flags
));
8629 case NON_DEPENDENT_EXPR
:
8630 /* For convenience. */
8632 return potential_constant_expression_1 (TREE_OPERAND (t
, 0),
8636 return potential_constant_expression_1 (TREE_OPERAND (t
, 1),
8640 if (!literal_type_p (TREE_TYPE (t
)))
8642 if (flags
& tf_error
)
8644 error ("temporary of non-literal type %qT in a "
8645 "constant expression", TREE_TYPE (t
));
8646 explain_non_literal_class (TREE_TYPE (t
));
8651 return potential_constant_expression_1 (TREE_OPERAND (t
, 1),
8656 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (t
);
8657 constructor_elt
*ce
;
8658 for (i
= 0; vec_safe_iterate (v
, i
, &ce
); ++i
)
8659 if (!potential_constant_expression_1 (ce
->value
, want_rval
, flags
))
8666 gcc_assert (TREE_PURPOSE (t
) == NULL_TREE
8667 || DECL_P (TREE_PURPOSE (t
)));
8668 if (!potential_constant_expression_1 (TREE_VALUE (t
), want_rval
,
8671 if (TREE_CHAIN (t
) == NULL_TREE
)
8673 return potential_constant_expression_1 (TREE_CHAIN (t
), want_rval
,
8677 case TRUNC_DIV_EXPR
:
8679 case FLOOR_DIV_EXPR
:
8680 case ROUND_DIV_EXPR
:
8681 case TRUNC_MOD_EXPR
:
8683 case ROUND_MOD_EXPR
:
8685 tree denom
= TREE_OPERAND (t
, 1);
8686 if (!potential_constant_expression_1 (denom
, rval
, flags
))
8688 /* We can't call cxx_eval_outermost_constant_expr on an expression
8689 that hasn't been through fold_non_dependent_expr yet. */
8690 if (!processing_template_decl
)
8691 denom
= cxx_eval_outermost_constant_expr (denom
, true);
8692 if (integer_zerop (denom
))
8694 if (flags
& tf_error
)
8695 error ("division by zero is not a constant-expression");
8701 return potential_constant_expression_1 (TREE_OPERAND (t
, 0),
8708 /* check_return_expr sometimes wraps a TARGET_EXPR in a
8709 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
8710 introduced by build_call_a. */
8711 tree op0
= TREE_OPERAND (t
, 0);
8712 tree op1
= TREE_OPERAND (t
, 1);
8714 if ((TREE_CODE (op0
) == TARGET_EXPR
&& op1
== TARGET_EXPR_SLOT (op0
))
8715 || TREE_CODE (op1
) == EMPTY_CLASS_EXPR
)
8716 return potential_constant_expression_1 (op0
, want_rval
, flags
);
8721 /* If the first operand is the non-short-circuit constant, look at
8722 the second operand; otherwise we only care about the first one for
8724 case TRUTH_AND_EXPR
:
8725 case TRUTH_ANDIF_EXPR
:
8726 tmp
= boolean_true_node
;
8729 case TRUTH_ORIF_EXPR
:
8730 tmp
= boolean_false_node
;
8733 tree op
= TREE_OPERAND (t
, 0);
8734 if (!potential_constant_expression_1 (op
, rval
, flags
))
8736 if (!processing_template_decl
)
8737 op
= cxx_eval_outermost_constant_expr (op
, true);
8738 if (tree_int_cst_equal (op
, tmp
))
8739 return potential_constant_expression_1 (TREE_OPERAND (t
, 1), rval
, flags
);
8746 case POINTER_PLUS_EXPR
:
8748 case EXACT_DIV_EXPR
:
8758 case TRUTH_XOR_EXPR
:
8759 case UNORDERED_EXPR
:
8772 case ARRAY_RANGE_REF
:
8776 for (i
= 0; i
< 2; ++i
)
8777 if (!potential_constant_expression_1 (TREE_OPERAND (t
, i
),
8784 for (i
= 0; i
< 3; ++i
)
8785 if (!potential_constant_expression_1 (TREE_OPERAND (t
, i
),
8792 /* If the condition is a known constant, we know which of the legs we
8793 care about; otherwise we only require that the condition and
8794 either of the legs be potentially constant. */
8795 tmp
= TREE_OPERAND (t
, 0);
8796 if (!potential_constant_expression_1 (tmp
, rval
, flags
))
8798 if (!processing_template_decl
)
8799 tmp
= cxx_eval_outermost_constant_expr (tmp
, true);
8800 if (integer_zerop (tmp
))
8801 return potential_constant_expression_1 (TREE_OPERAND (t
, 2),
8803 else if (TREE_CODE (tmp
) == INTEGER_CST
)
8804 return potential_constant_expression_1 (TREE_OPERAND (t
, 1),
8806 for (i
= 1; i
< 3; ++i
)
8807 if (potential_constant_expression_1 (TREE_OPERAND (t
, i
),
8808 want_rval
, tf_none
))
8810 if (flags
& tf_error
)
8811 error ("expression %qE is not a constant-expression", t
);
8815 if (VEC_INIT_EXPR_IS_CONSTEXPR (t
))
8817 if (flags
& tf_error
)
8819 error ("non-constant array initialization");
8820 diagnose_non_constexpr_vec_init (t
);
8825 if (objc_is_property_ref (t
))
8828 sorry ("unexpected AST of kind %s", tree_code_name
[TREE_CODE (t
)]);
8834 /* The main entry point to the above. */
8837 potential_constant_expression (tree t
)
8839 return potential_constant_expression_1 (t
, false, tf_none
);
8842 /* As above, but require a constant rvalue. */
8845 potential_rvalue_constant_expression (tree t
)
8847 return potential_constant_expression_1 (t
, true, tf_none
);
8850 /* Like above, but complain about non-constant expressions. */
8853 require_potential_constant_expression (tree t
)
8855 return potential_constant_expression_1 (t
, false, tf_warning_or_error
);
8858 /* Cross product of the above. */
8861 require_potential_rvalue_constant_expression (tree t
)
8863 return potential_constant_expression_1 (t
, true, tf_warning_or_error
);
8866 /* Constructor for a lambda expression. */
8869 build_lambda_expr (void)
8871 tree lambda
= make_node (LAMBDA_EXPR
);
8872 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda
) = CPLD_NONE
;
8873 LAMBDA_EXPR_CAPTURE_LIST (lambda
) = NULL_TREE
;
8874 LAMBDA_EXPR_THIS_CAPTURE (lambda
) = NULL_TREE
;
8875 LAMBDA_EXPR_PENDING_PROXIES (lambda
) = NULL
;
8876 LAMBDA_EXPR_RETURN_TYPE (lambda
) = NULL_TREE
;
8877 LAMBDA_EXPR_MUTABLE_P (lambda
) = false;
8881 /* Create the closure object for a LAMBDA_EXPR. */
8884 build_lambda_object (tree lambda_expr
)
8886 /* Build aggregate constructor call.
8887 - cp_parser_braced_list
8888 - cp_parser_functional_cast */
8889 vec
<constructor_elt
, va_gc
> *elts
= NULL
;
8890 tree node
, expr
, type
;
8891 location_t saved_loc
;
8893 if (processing_template_decl
)
8896 /* Make sure any error messages refer to the lambda-introducer. */
8897 saved_loc
= input_location
;
8898 input_location
= LAMBDA_EXPR_LOCATION (lambda_expr
);
8900 for (node
= LAMBDA_EXPR_CAPTURE_LIST (lambda_expr
);
8902 node
= TREE_CHAIN (node
))
8904 tree field
= TREE_PURPOSE (node
);
8905 tree val
= TREE_VALUE (node
);
8907 if (field
== error_mark_node
)
8909 expr
= error_mark_node
;
8916 /* Mere mortals can't copy arrays with aggregate initialization, so
8917 do some magic to make it work here. */
8918 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
)
8919 val
= build_array_copy (val
);
8920 else if (DECL_NORMAL_CAPTURE_P (field
)
8921 && TREE_CODE (TREE_TYPE (field
)) != REFERENCE_TYPE
)
8923 /* "the entities that are captured by copy are used to
8924 direct-initialize each corresponding non-static data
8925 member of the resulting closure object."
8927 There's normally no way to express direct-initialization
8928 from an element of a CONSTRUCTOR, so we build up a special
8929 TARGET_EXPR to bypass the usual copy-initialization. */
8930 val
= force_rvalue (val
, tf_warning_or_error
);
8931 if (TREE_CODE (val
) == TARGET_EXPR
)
8932 TARGET_EXPR_DIRECT_INIT_P (val
) = true;
8935 CONSTRUCTOR_APPEND_ELT (elts
, DECL_NAME (field
), val
);
8938 expr
= build_constructor (init_list_type_node
, elts
);
8939 CONSTRUCTOR_IS_DIRECT_INIT (expr
) = 1;
8941 /* N2927: "[The closure] class type is not an aggregate."
8942 But we briefly treat it as an aggregate to make this simpler. */
8943 type
= LAMBDA_EXPR_CLOSURE (lambda_expr
);
8944 CLASSTYPE_NON_AGGREGATE (type
) = 0;
8945 expr
= finish_compound_literal (type
, expr
, tf_warning_or_error
);
8946 CLASSTYPE_NON_AGGREGATE (type
) = 1;
8949 input_location
= saved_loc
;
8953 /* Return an initialized RECORD_TYPE for LAMBDA.
8954 LAMBDA must have its explicit captures already. */
8957 begin_lambda_type (tree lambda
)
8962 /* Unique name. This is just like an unnamed class, but we cannot use
8963 make_anon_name because of certain checks against TYPE_ANONYMOUS_P. */
8965 name
= make_lambda_name ();
8967 /* Create the new RECORD_TYPE for this lambda. */
8968 type
= xref_tag (/*tag_code=*/record_type
,
8970 /*scope=*/ts_within_enclosing_non_class
,
8971 /*template_header_p=*/false);
8974 /* Designate it as a struct so that we can use aggregate initialization. */
8975 CLASSTYPE_DECLARED_CLASS (type
) = false;
8977 /* Cross-reference the expression and the type. */
8978 LAMBDA_EXPR_CLOSURE (lambda
) = type
;
8979 CLASSTYPE_LAMBDA_EXPR (type
) = lambda
;
8981 /* Clear base types. */
8982 xref_basetypes (type
, /*bases=*/NULL_TREE
);
8984 /* Start the class. */
8985 type
= begin_class_definition (type
);
8986 if (type
== error_mark_node
)
8987 return error_mark_node
;
8992 /* Returns the type to use for the return type of the operator() of a
8996 lambda_return_type (tree expr
)
8998 if (expr
== NULL_TREE
)
8999 return void_type_node
;
9000 if (type_unknown_p (expr
)
9001 || BRACE_ENCLOSED_INITIALIZER_P (expr
))
9003 cxx_incomplete_type_error (expr
, TREE_TYPE (expr
));
9004 return void_type_node
;
9006 gcc_checking_assert (!type_dependent_expression_p (expr
));
9007 return cv_unqualified (type_decays_to (unlowered_expr_type (expr
)));
9010 /* Given a LAMBDA_EXPR or closure type LAMBDA, return the op() of the
9014 lambda_function (tree lambda
)
9017 if (TREE_CODE (lambda
) == LAMBDA_EXPR
)
9018 type
= LAMBDA_EXPR_CLOSURE (lambda
);
9021 gcc_assert (LAMBDA_TYPE_P (type
));
9022 /* Don't let debug_tree cause instantiation. */
9023 if (CLASSTYPE_TEMPLATE_INSTANTIATION (type
)
9024 && !COMPLETE_OR_OPEN_TYPE_P (type
))
9026 lambda
= lookup_member (type
, ansi_opname (CALL_EXPR
),
9027 /*protect=*/0, /*want_type=*/false,
9028 tf_warning_or_error
);
9030 lambda
= BASELINK_FUNCTIONS (lambda
);
9034 /* Returns the type to use for the FIELD_DECL corresponding to the
9036 The caller should add REFERENCE_TYPE for capture by reference. */
9039 lambda_capture_field_type (tree expr
)
9042 if (type_dependent_expression_p (expr
))
9044 type
= cxx_make_type (DECLTYPE_TYPE
);
9045 DECLTYPE_TYPE_EXPR (type
) = expr
;
9046 DECLTYPE_FOR_LAMBDA_CAPTURE (type
) = true;
9047 SET_TYPE_STRUCTURAL_EQUALITY (type
);
9050 type
= non_reference (unlowered_expr_type (expr
));
9054 /* Insert the deduced return type for an auto function. */
9057 apply_deduced_return_type (tree fco
, tree return_type
)
9061 if (return_type
== error_mark_node
)
9064 if (is_std_init_list (return_type
))
9066 error ("returning %qT", return_type
);
9067 return_type
= void_type_node
;
9070 if (LAMBDA_FUNCTION_P (fco
))
9072 tree lambda
= CLASSTYPE_LAMBDA_EXPR (current_class_type
);
9073 LAMBDA_EXPR_RETURN_TYPE (lambda
) = return_type
;
9076 if (DECL_CONV_FN_P (fco
))
9077 DECL_NAME (fco
) = mangle_conv_op_name_for_type (return_type
);
9079 TREE_TYPE (fco
) = change_return_type (return_type
, TREE_TYPE (fco
));
9081 result
= DECL_RESULT (fco
);
9082 if (result
== NULL_TREE
)
9084 if (TREE_TYPE (result
) == return_type
)
9087 /* We already have a DECL_RESULT from start_preparsed_function.
9088 Now we need to redo the work it and allocate_struct_function
9089 did to reflect the new type. */
9090 gcc_assert (current_function_decl
== fco
);
9091 result
= build_decl (input_location
, RESULT_DECL
, NULL_TREE
,
9092 TYPE_MAIN_VARIANT (return_type
));
9093 DECL_ARTIFICIAL (result
) = 1;
9094 DECL_IGNORED_P (result
) = 1;
9095 cp_apply_type_quals_to_decl (cp_type_quals (return_type
),
9098 DECL_RESULT (fco
) = result
;
9100 if (!processing_template_decl
)
9102 bool aggr
= aggregate_value_p (result
, fco
);
9103 #ifdef PCC_STATIC_STRUCT_RETURN
9104 cfun
->returns_pcc_struct
= aggr
;
9106 cfun
->returns_struct
= aggr
;
9111 /* DECL is a local variable or parameter from the surrounding scope of a
9112 lambda-expression. Returns the decltype for a use of the capture field
9113 for DECL even if it hasn't been captured yet. */
9116 capture_decltype (tree decl
)
9118 tree lam
= CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl
));
9119 /* FIXME do lookup instead of list walk? */
9120 tree cap
= value_member (decl
, LAMBDA_EXPR_CAPTURE_LIST (lam
));
9124 type
= TREE_TYPE (TREE_PURPOSE (cap
));
9126 switch (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lam
))
9129 error ("%qD is not captured", decl
);
9130 return error_mark_node
;
9133 type
= TREE_TYPE (decl
);
9134 if (TREE_CODE (type
) == REFERENCE_TYPE
9135 && TREE_CODE (TREE_TYPE (type
)) != FUNCTION_TYPE
)
9136 type
= TREE_TYPE (type
);
9139 case CPLD_REFERENCE
:
9140 type
= TREE_TYPE (decl
);
9141 if (TREE_CODE (type
) != REFERENCE_TYPE
)
9142 type
= build_reference_type (TREE_TYPE (decl
));
9149 if (TREE_CODE (type
) != REFERENCE_TYPE
)
9151 if (!LAMBDA_EXPR_MUTABLE_P (lam
))
9152 type
= cp_build_qualified_type (type
, (cp_type_quals (type
)
9154 type
= build_reference_type (type
);
9159 /* Returns true iff DECL is a lambda capture proxy variable created by
9160 build_capture_proxy. */
9163 is_capture_proxy (tree decl
)
9165 return (TREE_CODE (decl
) == VAR_DECL
9166 && DECL_HAS_VALUE_EXPR_P (decl
)
9167 && !DECL_ANON_UNION_VAR_P (decl
)
9168 && LAMBDA_FUNCTION_P (DECL_CONTEXT (decl
)));
9171 /* Returns true iff DECL is a capture proxy for a normal capture
9172 (i.e. without explicit initializer). */
9175 is_normal_capture_proxy (tree decl
)
9177 if (!is_capture_proxy (decl
))
9178 /* It's not a capture proxy. */
9181 /* It is a capture proxy, is it a normal capture? */
9182 tree val
= DECL_VALUE_EXPR (decl
);
9183 if (val
== error_mark_node
)
9186 gcc_assert (TREE_CODE (val
) == COMPONENT_REF
);
9187 val
= TREE_OPERAND (val
, 1);
9188 return DECL_NORMAL_CAPTURE_P (val
);
9191 /* VAR is a capture proxy created by build_capture_proxy; add it to the
9192 current function, which is the operator() for the appropriate lambda. */
9195 insert_capture_proxy (tree var
)
9197 cp_binding_level
*b
;
9201 /* Put the capture proxy in the extra body block so that it won't clash
9202 with a later local variable. */
9203 b
= current_binding_level
;
9204 for (skip
= 0; ; ++skip
)
9206 cp_binding_level
*n
= b
->level_chain
;
9207 if (n
->kind
== sk_function_parms
)
9211 pushdecl_with_scope (var
, b
, false);
9213 /* And put a DECL_EXPR in the STATEMENT_LIST for the same block. */
9214 var
= build_stmt (DECL_SOURCE_LOCATION (var
), DECL_EXPR
, var
);
9215 stmt_list
= (*stmt_list_stack
)[stmt_list_stack
->length () - 1 - skip
];
9216 gcc_assert (stmt_list
);
9217 append_to_statement_list_force (var
, &stmt_list
);
9220 /* We've just finished processing a lambda; if the containing scope is also
9221 a lambda, insert any capture proxies that were created while processing
9222 the nested lambda. */
9225 insert_pending_capture_proxies (void)
9228 vec
<tree
, va_gc
> *proxies
;
9231 if (!current_function_decl
|| !LAMBDA_FUNCTION_P (current_function_decl
))
9234 lam
= CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (current_function_decl
));
9235 proxies
= LAMBDA_EXPR_PENDING_PROXIES (lam
);
9236 for (i
= 0; i
< vec_safe_length (proxies
); ++i
)
9238 tree var
= (*proxies
)[i
];
9239 insert_capture_proxy (var
);
9241 release_tree_vector (LAMBDA_EXPR_PENDING_PROXIES (lam
));
9242 LAMBDA_EXPR_PENDING_PROXIES (lam
) = NULL
;
9245 /* Given REF, a COMPONENT_REF designating a field in the lambda closure,
9246 return the type we want the proxy to have: the type of the field itself,
9247 with added const-qualification if the lambda isn't mutable and the
9248 capture is by value. */
9251 lambda_proxy_type (tree ref
)
9254 if (REFERENCE_REF_P (ref
))
9255 ref
= TREE_OPERAND (ref
, 0);
9256 type
= TREE_TYPE (ref
);
9257 if (!dependent_type_p (type
))
9259 type
= cxx_make_type (DECLTYPE_TYPE
);
9260 DECLTYPE_TYPE_EXPR (type
) = ref
;
9261 DECLTYPE_FOR_LAMBDA_PROXY (type
) = true;
9262 SET_TYPE_STRUCTURAL_EQUALITY (type
);
9266 /* MEMBER is a capture field in a lambda closure class. Now that we're
9267 inside the operator(), build a placeholder var for future lookups and
9271 build_capture_proxy (tree member
)
9273 tree var
, object
, fn
, closure
, name
, lam
, type
;
9275 closure
= DECL_CONTEXT (member
);
9276 fn
= lambda_function (closure
);
9277 lam
= CLASSTYPE_LAMBDA_EXPR (closure
);
9279 /* The proxy variable forwards to the capture field. */
9280 object
= build_fold_indirect_ref (DECL_ARGUMENTS (fn
));
9281 object
= finish_non_static_data_member (member
, object
, NULL_TREE
);
9282 if (REFERENCE_REF_P (object
))
9283 object
= TREE_OPERAND (object
, 0);
9285 /* Remove the __ inserted by add_capture. */
9286 name
= get_identifier (IDENTIFIER_POINTER (DECL_NAME (member
)) + 2);
9288 type
= lambda_proxy_type (object
);
9289 var
= build_decl (input_location
, VAR_DECL
, name
, type
);
9290 SET_DECL_VALUE_EXPR (var
, object
);
9291 DECL_HAS_VALUE_EXPR_P (var
) = 1;
9292 DECL_ARTIFICIAL (var
) = 1;
9293 TREE_USED (var
) = 1;
9294 DECL_CONTEXT (var
) = fn
;
9296 if (name
== this_identifier
)
9298 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (lam
) == member
);
9299 LAMBDA_EXPR_THIS_CAPTURE (lam
) = var
;
9302 if (fn
== current_function_decl
)
9303 insert_capture_proxy (var
);
9305 vec_safe_push (LAMBDA_EXPR_PENDING_PROXIES (lam
), var
);
9310 /* From an ID and INITIALIZER, create a capture (by reference if
9311 BY_REFERENCE_P is true), add it to the capture-list for LAMBDA,
9315 add_capture (tree lambda
, tree id
, tree initializer
, bool by_reference_p
,
9316 bool explicit_init_p
)
9319 tree type
, member
, name
;
9321 type
= lambda_capture_field_type (initializer
);
9324 type
= build_reference_type (type
);
9325 if (!real_lvalue_p (initializer
))
9326 error ("cannot capture %qE by reference", initializer
);
9329 /* Capture by copy requires a complete type. */
9330 type
= complete_type (type
);
9332 /* Add __ to the beginning of the field name so that user code
9333 won't find the field with name lookup. We can't just leave the name
9334 unset because template instantiation uses the name to find
9335 instantiated fields. */
9336 buf
= (char *) alloca (IDENTIFIER_LENGTH (id
) + 3);
9337 buf
[1] = buf
[0] = '_';
9338 memcpy (buf
+ 2, IDENTIFIER_POINTER (id
),
9339 IDENTIFIER_LENGTH (id
) + 1);
9340 name
= get_identifier (buf
);
9342 /* If TREE_TYPE isn't set, we're still in the introducer, so check
9344 if (!LAMBDA_EXPR_CLOSURE (lambda
))
9346 if (IDENTIFIER_MARKED (name
))
9348 pedwarn (input_location
, 0,
9349 "already captured %qD in lambda expression", id
);
9352 IDENTIFIER_MARKED (name
) = true;
9355 /* Make member variable. */
9356 member
= build_lang_decl (FIELD_DECL
, name
, type
);
9358 if (!explicit_init_p
)
9359 /* Normal captures are invisible to name lookup but uses are replaced
9360 with references to the capture field; we implement this by only
9361 really making them invisible in unevaluated context; see
9362 qualify_lookup. For now, let's make explicitly initialized captures
9364 DECL_NORMAL_CAPTURE_P (member
) = true;
9366 if (id
== this_identifier
)
9367 LAMBDA_EXPR_THIS_CAPTURE (lambda
) = member
;
9369 /* Add it to the appropriate closure class if we've started it. */
9370 if (current_class_type
9371 && current_class_type
== LAMBDA_EXPR_CLOSURE (lambda
))
9372 finish_member_declaration (member
);
9374 LAMBDA_EXPR_CAPTURE_LIST (lambda
)
9375 = tree_cons (member
, initializer
, LAMBDA_EXPR_CAPTURE_LIST (lambda
));
9377 if (LAMBDA_EXPR_CLOSURE (lambda
))
9378 return build_capture_proxy (member
);
9379 /* For explicit captures we haven't started the function yet, so we wait
9380 and build the proxy from cp_parser_lambda_body. */
9384 /* Register all the capture members on the list CAPTURES, which is the
9385 LAMBDA_EXPR_CAPTURE_LIST for the lambda after the introducer. */
9388 register_capture_members (tree captures
)
9390 if (captures
== NULL_TREE
)
9393 register_capture_members (TREE_CHAIN (captures
));
9394 /* We set this in add_capture to avoid duplicates. */
9395 IDENTIFIER_MARKED (DECL_NAME (TREE_PURPOSE (captures
))) = false;
9396 finish_member_declaration (TREE_PURPOSE (captures
));
9399 /* Similar to add_capture, except this works on a stack of nested lambdas.
9400 BY_REFERENCE_P in this case is derived from the default capture mode.
9401 Returns the capture for the lambda at the bottom of the stack. */
9404 add_default_capture (tree lambda_stack
, tree id
, tree initializer
)
9406 bool this_capture_p
= (id
== this_identifier
);
9408 tree var
= NULL_TREE
;
9410 tree saved_class_type
= current_class_type
;
9414 for (node
= lambda_stack
;
9416 node
= TREE_CHAIN (node
))
9418 tree lambda
= TREE_VALUE (node
);
9420 current_class_type
= LAMBDA_EXPR_CLOSURE (lambda
);
9421 var
= add_capture (lambda
,
9426 && (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda
)
9427 == CPLD_REFERENCE
)),
9428 /*explicit_init_p=*/false);
9429 initializer
= convert_from_reference (var
);
9432 current_class_type
= saved_class_type
;
9437 /* Return the capture pertaining to a use of 'this' in LAMBDA, in the form of an
9438 INDIRECT_REF, possibly adding it through default capturing. */
9441 lambda_expr_this_capture (tree lambda
)
9445 tree this_capture
= LAMBDA_EXPR_THIS_CAPTURE (lambda
);
9447 /* Try to default capture 'this' if we can. */
9449 && LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (lambda
) != CPLD_NONE
)
9451 tree lambda_stack
= NULL_TREE
;
9452 tree init
= NULL_TREE
;
9454 /* If we are in a lambda function, we can move out until we hit:
9455 1. a non-lambda function or NSDMI,
9456 2. a lambda function capturing 'this', or
9457 3. a non-default capturing lambda function. */
9458 for (tree tlambda
= lambda
; ;)
9460 lambda_stack
= tree_cons (NULL_TREE
,
9464 if (LAMBDA_EXPR_EXTRA_SCOPE (tlambda
)
9465 && TREE_CODE (LAMBDA_EXPR_EXTRA_SCOPE (tlambda
)) == FIELD_DECL
)
9467 /* In an NSDMI, we don't have a function to look up the decl in,
9468 but the fake 'this' pointer that we're using for parsing is
9470 init
= scope_chain
->x_current_class_ptr
;
9472 (init
&& (TREE_TYPE (TREE_TYPE (init
))
9473 == current_nonlambda_class_type ()));
9477 tree closure_decl
= TYPE_NAME (LAMBDA_EXPR_CLOSURE (tlambda
));
9478 tree containing_function
= decl_function_context (closure_decl
);
9480 if (containing_function
== NULL_TREE
)
9481 /* We ran out of scopes; there's no 'this' to capture. */
9484 if (!LAMBDA_FUNCTION_P (containing_function
))
9486 /* We found a non-lambda function. */
9487 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (containing_function
))
9488 /* First parameter is 'this'. */
9489 init
= DECL_ARGUMENTS (containing_function
);
9494 = CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (containing_function
));
9496 if (LAMBDA_EXPR_THIS_CAPTURE (tlambda
))
9498 /* An outer lambda has already captured 'this'. */
9499 init
= LAMBDA_EXPR_THIS_CAPTURE (tlambda
);
9503 if (LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (tlambda
) == CPLD_NONE
)
9504 /* An outer lambda won't let us capture 'this'. */
9509 this_capture
= add_default_capture (lambda_stack
,
9510 /*id=*/this_identifier
,
9516 /* In unevaluated context this isn't an odr-use, so just return the
9518 if (cp_unevaluated_operand
)
9519 return lookup_name (this_identifier
);
9521 error ("%<this%> was not captured for this lambda function");
9522 result
= error_mark_node
;
9526 /* To make sure that current_class_ref is for the lambda. */
9527 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (current_class_ref
))
9528 == LAMBDA_EXPR_CLOSURE (lambda
));
9530 result
= this_capture
;
9532 /* If 'this' is captured, each use of 'this' is transformed into an
9533 access to the corresponding unnamed data member of the closure
9534 type cast (_expr.cast_ 5.4) to the type of 'this'. [ The cast
9535 ensures that the transformed expression is an rvalue. ] */
9536 result
= rvalue (result
);
9542 /* We don't want to capture 'this' until we know we need it, i.e. after
9543 overload resolution has chosen a non-static member function. At that
9544 point we call this function to turn a dummy object into a use of the
9548 maybe_resolve_dummy (tree object
)
9550 if (!is_dummy_object (object
))
9553 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (object
));
9554 gcc_assert (TREE_CODE (type
) != POINTER_TYPE
);
9556 if (type
!= current_class_type
9557 && current_class_type
9558 && LAMBDA_TYPE_P (current_class_type
))
9560 /* In a lambda, need to go through 'this' capture. */
9561 tree lam
= CLASSTYPE_LAMBDA_EXPR (current_class_type
);
9562 tree cap
= lambda_expr_this_capture (lam
);
9563 object
= build_x_indirect_ref (EXPR_LOCATION (object
), cap
,
9564 RO_NULL
, tf_warning_or_error
);
9570 /* Returns the method basetype of the innermost non-lambda function, or
9571 NULL_TREE if none. */
9574 nonlambda_method_basetype (void)
9577 if (!current_class_ref
)
9580 type
= current_class_type
;
9581 if (!LAMBDA_TYPE_P (type
))
9584 /* Find the nearest enclosing non-lambda function. */
9585 fn
= TYPE_NAME (type
);
9587 fn
= decl_function_context (fn
);
9588 while (fn
&& LAMBDA_FUNCTION_P (fn
));
9590 if (!fn
|| !DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
))
9593 return TYPE_METHOD_BASETYPE (TREE_TYPE (fn
));
9596 /* If the closure TYPE has a static op(), also add a conversion to function
9600 maybe_add_lambda_conv_op (tree type
)
9602 bool nested
= (current_function_decl
!= NULL_TREE
);
9603 tree callop
= lambda_function (type
);
9604 tree rettype
, name
, fntype
, fn
, body
, compound_stmt
;
9605 tree thistype
, stattype
, statfn
, convfn
, call
, arg
;
9606 vec
<tree
, va_gc
> *argvec
;
9608 if (LAMBDA_EXPR_CAPTURE_LIST (CLASSTYPE_LAMBDA_EXPR (type
)) != NULL_TREE
)
9611 if (processing_template_decl
)
9614 stattype
= build_function_type (TREE_TYPE (TREE_TYPE (callop
)),
9615 FUNCTION_ARG_CHAIN (callop
));
9617 /* First build up the conversion op. */
9619 rettype
= build_pointer_type (stattype
);
9620 name
= mangle_conv_op_name_for_type (rettype
);
9621 thistype
= cp_build_qualified_type (type
, TYPE_QUAL_CONST
);
9622 fntype
= build_method_type_directly (thistype
, rettype
, void_list_node
);
9623 fn
= convfn
= build_lang_decl (FUNCTION_DECL
, name
, fntype
);
9624 DECL_SOURCE_LOCATION (fn
) = DECL_SOURCE_LOCATION (callop
);
9626 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
== ptrmemfunc_vbit_in_pfn
9627 && DECL_ALIGN (fn
) < 2 * BITS_PER_UNIT
)
9628 DECL_ALIGN (fn
) = 2 * BITS_PER_UNIT
;
9630 SET_OVERLOADED_OPERATOR_CODE (fn
, TYPE_EXPR
);
9631 grokclassfn (type
, fn
, NO_SPECIAL
);
9632 set_linkage_according_to_type (type
, fn
);
9633 rest_of_decl_compilation (fn
, toplevel_bindings_p (), at_eof
);
9634 DECL_IN_AGGR_P (fn
) = 1;
9635 DECL_ARTIFICIAL (fn
) = 1;
9636 DECL_NOT_REALLY_EXTERN (fn
) = 1;
9637 DECL_DECLARED_INLINE_P (fn
) = 1;
9638 DECL_ARGUMENTS (fn
) = build_this_parm (fntype
, TYPE_QUAL_CONST
);
9640 DECL_INTERFACE_KNOWN (fn
) = 1;
9642 add_method (type
, fn
, NULL_TREE
);
9644 /* Generic thunk code fails for varargs; we'll complain in mark_used if
9645 the conversion op is used. */
9646 if (varargs_function_p (callop
))
9648 DECL_DELETED_FN (fn
) = 1;
9652 /* Now build up the thunk to be returned. */
9654 name
= get_identifier ("_FUN");
9655 fn
= statfn
= build_lang_decl (FUNCTION_DECL
, name
, stattype
);
9656 DECL_SOURCE_LOCATION (fn
) = DECL_SOURCE_LOCATION (callop
);
9657 if (TARGET_PTRMEMFUNC_VBIT_LOCATION
== ptrmemfunc_vbit_in_pfn
9658 && DECL_ALIGN (fn
) < 2 * BITS_PER_UNIT
)
9659 DECL_ALIGN (fn
) = 2 * BITS_PER_UNIT
;
9660 grokclassfn (type
, fn
, NO_SPECIAL
);
9661 set_linkage_according_to_type (type
, fn
);
9662 rest_of_decl_compilation (fn
, toplevel_bindings_p (), at_eof
);
9663 DECL_IN_AGGR_P (fn
) = 1;
9664 DECL_ARTIFICIAL (fn
) = 1;
9665 DECL_NOT_REALLY_EXTERN (fn
) = 1;
9666 DECL_DECLARED_INLINE_P (fn
) = 1;
9667 DECL_STATIC_FUNCTION_P (fn
) = 1;
9668 DECL_ARGUMENTS (fn
) = copy_list (DECL_CHAIN (DECL_ARGUMENTS (callop
)));
9669 for (arg
= DECL_ARGUMENTS (fn
); arg
; arg
= DECL_CHAIN (arg
))
9670 DECL_CONTEXT (arg
) = fn
;
9672 DECL_INTERFACE_KNOWN (fn
) = 1;
9674 add_method (type
, fn
, NULL_TREE
);
9677 push_function_context ();
9679 /* Still increment function_depth so that we don't GC in the
9680 middle of an expression. */
9683 /* Generate the body of the thunk. */
9685 start_preparsed_function (statfn
, NULL_TREE
,
9686 SF_PRE_PARSED
| SF_INCLASS_INLINE
);
9687 if (DECL_ONE_ONLY (statfn
))
9689 /* Put the thunk in the same comdat group as the call op. */
9690 symtab_add_to_same_comdat_group
9691 ((symtab_node
) cgraph_get_create_node (statfn
),
9692 (symtab_node
) cgraph_get_create_node (callop
));
9694 body
= begin_function_body ();
9695 compound_stmt
= begin_compound_stmt (0);
9697 arg
= build1 (NOP_EXPR
, TREE_TYPE (DECL_ARGUMENTS (callop
)),
9699 argvec
= make_tree_vector ();
9700 argvec
->quick_push (arg
);
9701 for (arg
= DECL_ARGUMENTS (statfn
); arg
; arg
= DECL_CHAIN (arg
))
9703 mark_exp_read (arg
);
9704 vec_safe_push (argvec
, arg
);
9706 call
= build_call_a (callop
, argvec
->length (), argvec
->address ());
9707 CALL_FROM_THUNK_P (call
) = 1;
9708 if (MAYBE_CLASS_TYPE_P (TREE_TYPE (call
)))
9709 call
= build_cplus_new (TREE_TYPE (call
), call
, tf_warning_or_error
);
9710 call
= convert_from_reference (call
);
9711 finish_return_stmt (call
);
9713 finish_compound_stmt (compound_stmt
);
9714 finish_function_body (body
);
9716 expand_or_defer_fn (finish_function (2));
9718 /* Generate the body of the conversion op. */
9720 start_preparsed_function (convfn
, NULL_TREE
,
9721 SF_PRE_PARSED
| SF_INCLASS_INLINE
);
9722 body
= begin_function_body ();
9723 compound_stmt
= begin_compound_stmt (0);
9725 /* decl_needed_p needs to see that it's used. */
9726 TREE_USED (statfn
) = 1;
9727 finish_return_stmt (decay_conversion (statfn
, tf_warning_or_error
));
9729 finish_compound_stmt (compound_stmt
);
9730 finish_function_body (body
);
9732 expand_or_defer_fn (finish_function (2));
9735 pop_function_context ();
9740 /* Returns true iff VAL is a lambda-related declaration which should
9741 be ignored by unqualified lookup. */
9744 is_lambda_ignored_entity (tree val
)
9746 /* In unevaluated context, look past normal capture proxies. */
9747 if (cp_unevaluated_operand
&& is_normal_capture_proxy (val
))
9750 /* Always ignore lambda fields, their names are only for debugging. */
9751 if (TREE_CODE (val
) == FIELD_DECL
9752 && CLASSTYPE_LAMBDA_EXPR (DECL_CONTEXT (val
)))
9755 /* None of the lookups that use qualify_lookup want the op() from the
9756 lambda; they want the one from the enclosing class. */
9757 if (TREE_CODE (val
) == FUNCTION_DECL
&& LAMBDA_FUNCTION_P (val
))
9763 #include "gt-cp-semantics.h"