PR debug/58150
[official-gcc.git] / gcc / cp / constexpr.c
blob2c5a71f3ee5635e63fb3457694d94ff2c2909a49
1 /* Perform -*- C++ -*- constant expression evaluation, including calls to
2 constexpr functions. These routines are used both during actual parsing
3 and during the instantiation of template functions.
5 Copyright (C) 1998-2018 Free Software Foundation, Inc.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "cp-tree.h"
27 #include "varasm.h"
28 #include "c-family/c-objc.h"
29 #include "tree-iterator.h"
30 #include "gimplify.h"
31 #include "builtins.h"
32 #include "tree-inline.h"
33 #include "ubsan.h"
34 #include "gimple-fold.h"
35 #include "timevar.h"
37 static bool verify_constant (tree, bool, bool *, bool *);
38 #define VERIFY_CONSTANT(X) \
39 do { \
40 if (verify_constant ((X), ctx->quiet, non_constant_p, overflow_p)) \
41 return t; \
42 } while (0)
44 /* Returns true iff FUN is an instantiation of a constexpr function
45 template or a defaulted constexpr function. */
47 bool
48 is_instantiation_of_constexpr (tree fun)
50 return ((DECL_TEMPLOID_INSTANTIATION (fun)
51 && DECL_DECLARED_CONSTEXPR_P (DECL_TI_TEMPLATE (fun)))
52 || (DECL_DEFAULTED_FN (fun)
53 && DECL_DECLARED_CONSTEXPR_P (fun)));
56 /* Return true if T is a literal type. */
58 bool
59 literal_type_p (tree t)
61 if (SCALAR_TYPE_P (t)
62 || VECTOR_TYPE_P (t)
63 || TREE_CODE (t) == REFERENCE_TYPE
64 || (VOID_TYPE_P (t) && cxx_dialect >= cxx14))
65 return true;
66 if (CLASS_TYPE_P (t))
68 t = complete_type (t);
69 gcc_assert (COMPLETE_TYPE_P (t) || errorcount);
70 return CLASSTYPE_LITERAL_P (t);
72 if (TREE_CODE (t) == ARRAY_TYPE)
73 return literal_type_p (strip_array_types (t));
74 return false;
77 /* If DECL is a variable declared `constexpr', require its type
78 be literal. Return error_mark_node if we give an error, the
79 DECL otherwise. */
81 tree
82 ensure_literal_type_for_constexpr_object (tree decl)
84 tree type = TREE_TYPE (decl);
85 if (VAR_P (decl)
86 && (DECL_DECLARED_CONSTEXPR_P (decl)
87 || var_in_constexpr_fn (decl))
88 && !processing_template_decl)
90 tree stype = strip_array_types (type);
91 if (CLASS_TYPE_P (stype) && !COMPLETE_TYPE_P (complete_type (stype)))
92 /* Don't complain here, we'll complain about incompleteness
93 when we try to initialize the variable. */;
94 else if (!literal_type_p (type))
96 if (DECL_DECLARED_CONSTEXPR_P (decl))
98 error ("the type %qT of %<constexpr%> variable %qD "
99 "is not literal", type, decl);
100 explain_non_literal_class (type);
101 decl = error_mark_node;
103 else
105 if (!is_instantiation_of_constexpr (current_function_decl))
107 error ("variable %qD of non-literal type %qT in %<constexpr%> "
108 "function", decl, type);
109 explain_non_literal_class (type);
110 decl = error_mark_node;
112 cp_function_chain->invalid_constexpr = true;
115 else if (DECL_DECLARED_CONSTEXPR_P (decl)
116 && variably_modified_type_p (type, NULL_TREE))
118 error ("%<constexpr%> variable %qD has variably-modified type %qT",
119 decl, type);
120 decl = error_mark_node;
123 return decl;
126 /* Representation of entries in the constexpr function definition table. */
128 struct GTY((for_user)) constexpr_fundef {
129 tree decl;
130 tree body;
133 struct constexpr_fundef_hasher : ggc_ptr_hash<constexpr_fundef>
135 static hashval_t hash (constexpr_fundef *);
136 static bool equal (constexpr_fundef *, constexpr_fundef *);
139 /* This table holds all constexpr function definitions seen in
140 the current translation unit. */
142 static GTY (()) hash_table<constexpr_fundef_hasher> *constexpr_fundef_table;
144 /* Utility function used for managing the constexpr function table.
145 Return true if the entries pointed to by P and Q are for the
146 same constexpr function. */
148 inline bool
149 constexpr_fundef_hasher::equal (constexpr_fundef *lhs, constexpr_fundef *rhs)
151 return lhs->decl == rhs->decl;
154 /* Utility function used for managing the constexpr function table.
155 Return a hash value for the entry pointed to by Q. */
157 inline hashval_t
158 constexpr_fundef_hasher::hash (constexpr_fundef *fundef)
160 return DECL_UID (fundef->decl);
163 /* Return a previously saved definition of function FUN. */
165 static constexpr_fundef *
166 retrieve_constexpr_fundef (tree fun)
168 constexpr_fundef fundef = { NULL, NULL };
169 if (constexpr_fundef_table == NULL)
170 return NULL;
172 fundef.decl = fun;
173 return constexpr_fundef_table->find (&fundef);
176 /* Check whether the parameter and return types of FUN are valid for a
177 constexpr function, and complain if COMPLAIN. */
179 bool
180 is_valid_constexpr_fn (tree fun, bool complain)
182 bool ret = true;
184 if (DECL_INHERITED_CTOR (fun)
185 && TREE_CODE (fun) == TEMPLATE_DECL)
187 ret = false;
188 if (complain)
189 error ("inherited constructor %qD is not %<constexpr%>",
190 DECL_INHERITED_CTOR (fun));
192 else
194 for (tree parm = FUNCTION_FIRST_USER_PARM (fun);
195 parm != NULL_TREE; parm = TREE_CHAIN (parm))
196 if (!literal_type_p (TREE_TYPE (parm)))
198 ret = false;
199 if (complain)
201 error ("invalid type for parameter %d of %<constexpr%> "
202 "function %q+#D", DECL_PARM_INDEX (parm), fun);
203 explain_non_literal_class (TREE_TYPE (parm));
208 if (LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun)) && cxx_dialect < cxx17)
210 ret = false;
211 if (complain)
212 inform (DECL_SOURCE_LOCATION (fun),
213 "lambdas are implicitly %<constexpr%> only in C++17 and later");
215 else if (!DECL_CONSTRUCTOR_P (fun))
217 tree rettype = TREE_TYPE (TREE_TYPE (fun));
218 if (!literal_type_p (rettype))
220 ret = false;
221 if (complain)
223 error ("invalid return type %qT of %<constexpr%> function %q+D",
224 rettype, fun);
225 explain_non_literal_class (rettype);
229 /* C++14 DR 1684 removed this restriction. */
230 if (cxx_dialect < cxx14
231 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
232 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
234 ret = false;
235 if (complain
236 && pedwarn (DECL_SOURCE_LOCATION (fun), OPT_Wpedantic,
237 "enclosing class of %<constexpr%> non-static member "
238 "function %q+#D is not a literal type", fun))
239 explain_non_literal_class (DECL_CONTEXT (fun));
242 else if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fun)))
244 ret = false;
245 if (complain)
246 error ("%q#T has virtual base classes", DECL_CONTEXT (fun));
249 return ret;
252 /* Subroutine of build_data_member_initialization. MEMBER is a COMPONENT_REF
253 for a member of an anonymous aggregate, INIT is the initializer for that
254 member, and VEC_OUTER is the vector of constructor elements for the class
255 whose constructor we are processing. Add the initializer to the vector
256 and return true to indicate success. */
258 static bool
259 build_anon_member_initialization (tree member, tree init,
260 vec<constructor_elt, va_gc> **vec_outer)
262 /* MEMBER presents the relevant fields from the inside out, but we need
263 to build up the initializer from the outside in so that we can reuse
264 previously built CONSTRUCTORs if this is, say, the second field in an
265 anonymous struct. So we use a vec as a stack. */
266 auto_vec<tree, 2> fields;
269 fields.safe_push (TREE_OPERAND (member, 1));
270 member = TREE_OPERAND (member, 0);
272 while (ANON_AGGR_TYPE_P (TREE_TYPE (member))
273 && TREE_CODE (member) == COMPONENT_REF);
275 /* VEC has the constructor elements vector for the context of FIELD.
276 If FIELD is an anonymous aggregate, we will push inside it. */
277 vec<constructor_elt, va_gc> **vec = vec_outer;
278 tree field;
279 while (field = fields.pop(),
280 ANON_AGGR_TYPE_P (TREE_TYPE (field)))
282 tree ctor;
283 /* If there is already an outer constructor entry for the anonymous
284 aggregate FIELD, use it; otherwise, insert one. */
285 if (vec_safe_is_empty (*vec)
286 || (*vec)->last().index != field)
288 ctor = build_constructor (TREE_TYPE (field), NULL);
289 CONSTRUCTOR_APPEND_ELT (*vec, field, ctor);
291 else
292 ctor = (*vec)->last().value;
293 vec = &CONSTRUCTOR_ELTS (ctor);
296 /* Now we're at the innermost field, the one that isn't an anonymous
297 aggregate. Add its initializer to the CONSTRUCTOR and we're done. */
298 gcc_assert (fields.is_empty());
299 CONSTRUCTOR_APPEND_ELT (*vec, field, init);
301 return true;
304 /* Subroutine of build_constexpr_constructor_member_initializers.
305 The expression tree T represents a data member initialization
306 in a (constexpr) constructor definition. Build a pairing of
307 the data member with its initializer, and prepend that pair
308 to the existing initialization pair INITS. */
310 static bool
311 build_data_member_initialization (tree t, vec<constructor_elt, va_gc> **vec)
313 tree member, init;
314 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
315 t = TREE_OPERAND (t, 0);
316 if (TREE_CODE (t) == EXPR_STMT)
317 t = TREE_OPERAND (t, 0);
318 if (t == error_mark_node)
319 return false;
320 if (TREE_CODE (t) == STATEMENT_LIST)
322 tree_stmt_iterator i;
323 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
325 if (! build_data_member_initialization (tsi_stmt (i), vec))
326 return false;
328 return true;
330 if (TREE_CODE (t) == CLEANUP_STMT)
332 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
333 but we can in a constexpr constructor for a non-literal class. Just
334 ignore it; either all the initialization will be constant, in which
335 case the cleanup can't run, or it can't be constexpr.
336 Still recurse into CLEANUP_BODY. */
337 return build_data_member_initialization (CLEANUP_BODY (t), vec);
339 if (TREE_CODE (t) == CONVERT_EXPR)
340 t = TREE_OPERAND (t, 0);
341 if (TREE_CODE (t) == INIT_EXPR
342 /* vptr initialization shows up as a MODIFY_EXPR. In C++14 we only
343 use what this function builds for cx_check_missing_mem_inits, and
344 assignment in the ctor body doesn't count. */
345 || (cxx_dialect < cxx14 && TREE_CODE (t) == MODIFY_EXPR))
347 member = TREE_OPERAND (t, 0);
348 init = break_out_target_exprs (TREE_OPERAND (t, 1));
350 else if (TREE_CODE (t) == CALL_EXPR)
352 tree fn = get_callee_fndecl (t);
353 if (!fn || !DECL_CONSTRUCTOR_P (fn))
354 /* We're only interested in calls to subobject constructors. */
355 return true;
356 member = CALL_EXPR_ARG (t, 0);
357 /* We don't use build_cplus_new here because it complains about
358 abstract bases. Leaving the call unwrapped means that it has the
359 wrong type, but cxx_eval_constant_expression doesn't care. */
360 init = break_out_target_exprs (t);
362 else if (TREE_CODE (t) == BIND_EXPR)
363 return build_data_member_initialization (BIND_EXPR_BODY (t), vec);
364 else
365 /* Don't add anything else to the CONSTRUCTOR. */
366 return true;
367 if (INDIRECT_REF_P (member))
368 member = TREE_OPERAND (member, 0);
369 if (TREE_CODE (member) == NOP_EXPR)
371 tree op = member;
372 STRIP_NOPS (op);
373 if (TREE_CODE (op) == ADDR_EXPR)
375 gcc_assert (same_type_ignoring_top_level_qualifiers_p
376 (TREE_TYPE (TREE_TYPE (op)),
377 TREE_TYPE (TREE_TYPE (member))));
378 /* Initializing a cv-qualified member; we need to look through
379 the const_cast. */
380 member = op;
382 else if (op == current_class_ptr
383 && (same_type_ignoring_top_level_qualifiers_p
384 (TREE_TYPE (TREE_TYPE (member)),
385 current_class_type)))
386 /* Delegating constructor. */
387 member = op;
388 else
390 /* This is an initializer for an empty base; keep it for now so
391 we can check it in cxx_eval_bare_aggregate. */
392 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
395 if (TREE_CODE (member) == ADDR_EXPR)
396 member = TREE_OPERAND (member, 0);
397 if (TREE_CODE (member) == COMPONENT_REF)
399 tree aggr = TREE_OPERAND (member, 0);
400 if (TREE_CODE (aggr) == VAR_DECL)
401 /* Initializing a local variable, don't add anything. */
402 return true;
403 if (TREE_CODE (aggr) != COMPONENT_REF)
404 /* Normal member initialization. */
405 member = TREE_OPERAND (member, 1);
406 else if (ANON_AGGR_TYPE_P (TREE_TYPE (aggr)))
407 /* Initializing a member of an anonymous union. */
408 return build_anon_member_initialization (member, init, vec);
409 else
410 /* We're initializing a vtable pointer in a base. Leave it as
411 COMPONENT_REF so we remember the path to get to the vfield. */
412 gcc_assert (TREE_TYPE (member) == vtbl_ptr_type_node);
415 /* Value-initialization can produce multiple initializers for the
416 same field; use the last one. */
417 if (!vec_safe_is_empty (*vec) && (*vec)->last().index == member)
418 (*vec)->last().value = init;
419 else
420 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
421 return true;
424 /* Subroutine of check_constexpr_ctor_body_1 and constexpr_fn_retval.
425 In C++11 mode checks that the TYPE_DECLs in the BIND_EXPR_VARS of a
426 BIND_EXPR conform to 7.1.5/3/4 on typedef and alias declarations. */
428 static bool
429 check_constexpr_bind_expr_vars (tree t)
431 gcc_assert (TREE_CODE (t) == BIND_EXPR);
433 for (tree var = BIND_EXPR_VARS (t); var; var = DECL_CHAIN (var))
434 if (TREE_CODE (var) == TYPE_DECL
435 && DECL_IMPLICIT_TYPEDEF_P (var)
436 && !LAMBDA_TYPE_P (TREE_TYPE (var)))
437 return false;
438 return true;
441 /* Subroutine of check_constexpr_ctor_body. */
443 static bool
444 check_constexpr_ctor_body_1 (tree last, tree list)
446 switch (TREE_CODE (list))
448 case DECL_EXPR:
449 if (TREE_CODE (DECL_EXPR_DECL (list)) == USING_DECL
450 || TREE_CODE (DECL_EXPR_DECL (list)) == TYPE_DECL)
451 return true;
452 return false;
454 case CLEANUP_POINT_EXPR:
455 return check_constexpr_ctor_body (last, TREE_OPERAND (list, 0),
456 /*complain=*/false);
458 case BIND_EXPR:
459 if (!check_constexpr_bind_expr_vars (list)
460 || !check_constexpr_ctor_body (last, BIND_EXPR_BODY (list),
461 /*complain=*/false))
462 return false;
463 return true;
465 case USING_STMT:
466 case STATIC_ASSERT:
467 case DEBUG_BEGIN_STMT:
468 return true;
470 default:
471 return false;
475 /* Make sure that there are no statements after LAST in the constructor
476 body represented by LIST. */
478 bool
479 check_constexpr_ctor_body (tree last, tree list, bool complain)
481 /* C++14 doesn't require a constexpr ctor to have an empty body. */
482 if (cxx_dialect >= cxx14)
483 return true;
485 bool ok = true;
486 if (TREE_CODE (list) == STATEMENT_LIST)
488 tree_stmt_iterator i = tsi_last (list);
489 for (; !tsi_end_p (i); tsi_prev (&i))
491 tree t = tsi_stmt (i);
492 if (t == last)
493 break;
494 if (!check_constexpr_ctor_body_1 (last, t))
496 ok = false;
497 break;
501 else if (list != last
502 && !check_constexpr_ctor_body_1 (last, list))
503 ok = false;
504 if (!ok)
506 if (complain)
507 error ("%<constexpr%> constructor does not have empty body");
508 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
510 return ok;
513 /* V is a vector of constructor elements built up for the base and member
514 initializers of a constructor for TYPE. They need to be in increasing
515 offset order, which they might not be yet if TYPE has a primary base
516 which is not first in the base-clause or a vptr and at least one base
517 all of which are non-primary. */
519 static vec<constructor_elt, va_gc> *
520 sort_constexpr_mem_initializers (tree type, vec<constructor_elt, va_gc> *v)
522 tree pri = CLASSTYPE_PRIMARY_BINFO (type);
523 tree field_type;
524 unsigned i;
525 constructor_elt *ce;
527 if (pri)
528 field_type = BINFO_TYPE (pri);
529 else if (TYPE_CONTAINS_VPTR_P (type))
530 field_type = vtbl_ptr_type_node;
531 else
532 return v;
534 /* Find the element for the primary base or vptr and move it to the
535 beginning of the vec. */
536 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
537 if (TREE_TYPE (ce->index) == field_type)
538 break;
540 if (i > 0 && i < vec_safe_length (v))
542 vec<constructor_elt, va_gc> &vref = *v;
543 constructor_elt elt = vref[i];
544 for (; i > 0; --i)
545 vref[i] = vref[i-1];
546 vref[0] = elt;
549 return v;
552 /* Build compile-time evalable representations of member-initializer list
553 for a constexpr constructor. */
555 static tree
556 build_constexpr_constructor_member_initializers (tree type, tree body)
558 vec<constructor_elt, va_gc> *vec = NULL;
559 bool ok = true;
560 while (true)
561 switch (TREE_CODE (body))
563 case MUST_NOT_THROW_EXPR:
564 case EH_SPEC_BLOCK:
565 body = TREE_OPERAND (body, 0);
566 break;
568 case STATEMENT_LIST:
569 for (tree_stmt_iterator i = tsi_start (body);
570 !tsi_end_p (i); tsi_next (&i))
572 body = tsi_stmt (i);
573 if (TREE_CODE (body) == BIND_EXPR)
574 break;
576 break;
578 case BIND_EXPR:
579 body = BIND_EXPR_BODY (body);
580 goto found;
582 default:
583 gcc_unreachable ();
585 found:
586 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
588 body = TREE_OPERAND (body, 0);
589 if (TREE_CODE (body) == EXPR_STMT)
590 body = TREE_OPERAND (body, 0);
591 if (TREE_CODE (body) == INIT_EXPR
592 && (same_type_ignoring_top_level_qualifiers_p
593 (TREE_TYPE (TREE_OPERAND (body, 0)),
594 current_class_type)))
596 /* Trivial copy. */
597 return TREE_OPERAND (body, 1);
599 ok = build_data_member_initialization (body, &vec);
601 else if (TREE_CODE (body) == STATEMENT_LIST)
603 tree_stmt_iterator i;
604 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
606 ok = build_data_member_initialization (tsi_stmt (i), &vec);
607 if (!ok)
608 break;
611 else if (TREE_CODE (body) == TRY_BLOCK)
613 error ("body of %<constexpr%> constructor cannot be "
614 "a function-try-block");
615 return error_mark_node;
617 else if (EXPR_P (body))
618 ok = build_data_member_initialization (body, &vec);
619 else
620 gcc_assert (errorcount > 0);
621 if (ok)
623 if (vec_safe_length (vec) > 0)
625 /* In a delegating constructor, return the target. */
626 constructor_elt *ce = &(*vec)[0];
627 if (ce->index == current_class_ptr)
629 body = ce->value;
630 vec_free (vec);
631 return body;
634 vec = sort_constexpr_mem_initializers (type, vec);
635 return build_constructor (type, vec);
637 else
638 return error_mark_node;
641 /* We have an expression tree T that represents a call, either CALL_EXPR
642 or AGGR_INIT_EXPR. If the call is lexically to a named function,
643 retrun the _DECL for that function. */
645 static tree
646 get_function_named_in_call (tree t)
648 tree fun = cp_get_callee (t);
649 if (fun && TREE_CODE (fun) == ADDR_EXPR
650 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
651 fun = TREE_OPERAND (fun, 0);
652 return fun;
655 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
656 declared to be constexpr, or a sub-statement thereof. Returns the
657 return value if suitable, error_mark_node for a statement not allowed in
658 a constexpr function, or NULL_TREE if no return value was found. */
660 static tree
661 constexpr_fn_retval (tree body)
663 switch (TREE_CODE (body))
665 case STATEMENT_LIST:
667 tree_stmt_iterator i;
668 tree expr = NULL_TREE;
669 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
671 tree s = constexpr_fn_retval (tsi_stmt (i));
672 if (s == error_mark_node)
673 return error_mark_node;
674 else if (s == NULL_TREE)
675 /* Keep iterating. */;
676 else if (expr)
677 /* Multiple return statements. */
678 return error_mark_node;
679 else
680 expr = s;
682 return expr;
685 case RETURN_EXPR:
686 return break_out_target_exprs (TREE_OPERAND (body, 0));
688 case DECL_EXPR:
690 tree decl = DECL_EXPR_DECL (body);
691 if (TREE_CODE (decl) == USING_DECL
692 /* Accept __func__, __FUNCTION__, and __PRETTY_FUNCTION__. */
693 || DECL_ARTIFICIAL (decl))
694 return NULL_TREE;
695 return error_mark_node;
698 case CLEANUP_POINT_EXPR:
699 return constexpr_fn_retval (TREE_OPERAND (body, 0));
701 case BIND_EXPR:
702 if (!check_constexpr_bind_expr_vars (body))
703 return error_mark_node;
704 return constexpr_fn_retval (BIND_EXPR_BODY (body));
706 case USING_STMT:
707 case DEBUG_BEGIN_STMT:
708 return NULL_TREE;
710 case CALL_EXPR:
712 tree fun = get_function_named_in_call (body);
713 if (fun != NULL_TREE
714 && DECL_FUNCTION_CODE (fun) == BUILT_IN_UNREACHABLE)
715 return NULL_TREE;
717 /* Fallthru. */
719 default:
720 return error_mark_node;
724 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
725 FUN; do the necessary transformations to turn it into a single expression
726 that we can store in the hash table. */
728 static tree
729 massage_constexpr_body (tree fun, tree body)
731 if (DECL_CONSTRUCTOR_P (fun))
732 body = build_constexpr_constructor_member_initializers
733 (DECL_CONTEXT (fun), body);
734 else if (cxx_dialect < cxx14)
736 if (TREE_CODE (body) == EH_SPEC_BLOCK)
737 body = EH_SPEC_STMTS (body);
738 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
739 body = TREE_OPERAND (body, 0);
740 body = constexpr_fn_retval (body);
742 return body;
745 /* CTYPE is a type constructed from BODY. Return true if some
746 bases/fields are uninitialized, and complain if COMPLAIN. */
748 static bool
749 cx_check_missing_mem_inits (tree ctype, tree body, bool complain)
751 unsigned nelts = 0;
753 if (body)
755 if (TREE_CODE (body) != CONSTRUCTOR)
756 return false;
757 nelts = CONSTRUCTOR_NELTS (body);
759 tree field = TYPE_FIELDS (ctype);
761 if (TREE_CODE (ctype) == UNION_TYPE)
763 if (nelts == 0 && next_initializable_field (field))
765 if (complain)
766 error ("%<constexpr%> constructor for union %qT must "
767 "initialize exactly one non-static data member", ctype);
768 return true;
770 return false;
773 /* Iterate over the CONSTRUCTOR, checking any missing fields don't
774 need an explicit initialization. */
775 bool bad = false;
776 for (unsigned i = 0; i <= nelts; ++i)
778 tree index = NULL_TREE;
779 if (i < nelts)
781 index = CONSTRUCTOR_ELT (body, i)->index;
782 /* Skip base and vtable inits. */
783 if (TREE_CODE (index) != FIELD_DECL
784 || DECL_ARTIFICIAL (index))
785 continue;
788 for (; field != index; field = DECL_CHAIN (field))
790 tree ftype;
791 if (TREE_CODE (field) != FIELD_DECL)
792 continue;
793 if (DECL_UNNAMED_BIT_FIELD (field))
794 continue;
795 if (DECL_ARTIFICIAL (field))
796 continue;
797 if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
799 /* Recurse to check the anonummous aggregate member. */
800 bad |= cx_check_missing_mem_inits
801 (TREE_TYPE (field), NULL_TREE, complain);
802 if (bad && !complain)
803 return true;
804 continue;
806 ftype = strip_array_types (TREE_TYPE (field));
807 if (type_has_constexpr_default_constructor (ftype))
809 /* It's OK to skip a member with a trivial constexpr ctor.
810 A constexpr ctor that isn't trivial should have been
811 added in by now. */
812 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype)
813 || errorcount != 0);
814 continue;
816 if (!complain)
817 return true;
818 error ("member %qD must be initialized by mem-initializer "
819 "in %<constexpr%> constructor", field);
820 inform (DECL_SOURCE_LOCATION (field), "declared here");
821 bad = true;
823 if (field == NULL_TREE)
824 break;
826 if (ANON_AGGR_TYPE_P (TREE_TYPE (index)))
828 /* Check the anonymous aggregate initializer is valid. */
829 bad |= cx_check_missing_mem_inits
830 (TREE_TYPE (index), CONSTRUCTOR_ELT (body, i)->value, complain);
831 if (bad && !complain)
832 return true;
834 field = DECL_CHAIN (field);
837 return bad;
840 /* We are processing the definition of the constexpr function FUN.
841 Check that its BODY fulfills the propriate requirements and
842 enter it in the constexpr function definition table.
843 For constructor BODY is actually the TREE_LIST of the
844 member-initializer list. */
846 tree
847 register_constexpr_fundef (tree fun, tree body)
849 constexpr_fundef entry;
850 constexpr_fundef **slot;
852 if (!is_valid_constexpr_fn (fun, !DECL_GENERATED_P (fun)))
853 return NULL;
855 tree massaged = massage_constexpr_body (fun, body);
856 if (massaged == NULL_TREE || massaged == error_mark_node)
858 if (!DECL_CONSTRUCTOR_P (fun))
859 error ("body of %<constexpr%> function %qD not a return-statement",
860 fun);
861 return NULL;
864 if (!potential_rvalue_constant_expression (massaged))
866 if (!DECL_GENERATED_P (fun))
867 require_potential_rvalue_constant_expression (massaged);
868 return NULL;
871 if (DECL_CONSTRUCTOR_P (fun)
872 && cx_check_missing_mem_inits (DECL_CONTEXT (fun),
873 massaged, !DECL_GENERATED_P (fun)))
874 return NULL;
876 /* Create the constexpr function table if necessary. */
877 if (constexpr_fundef_table == NULL)
878 constexpr_fundef_table
879 = hash_table<constexpr_fundef_hasher>::create_ggc (101);
881 entry.decl = fun;
882 entry.body = body;
883 slot = constexpr_fundef_table->find_slot (&entry, INSERT);
885 gcc_assert (*slot == NULL);
886 *slot = ggc_alloc<constexpr_fundef> ();
887 **slot = entry;
889 return fun;
892 /* FUN is a non-constexpr function called in a context that requires a
893 constant expression. If it comes from a constexpr template, explain why
894 the instantiation isn't constexpr. */
896 void
897 explain_invalid_constexpr_fn (tree fun)
899 static hash_set<tree> *diagnosed;
900 tree body;
901 location_t save_loc;
902 /* Only diagnose defaulted functions, lambdas, or instantiations. */
903 if (!DECL_DEFAULTED_FN (fun)
904 && !LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun))
905 && !is_instantiation_of_constexpr (fun))
906 return;
907 if (diagnosed == NULL)
908 diagnosed = new hash_set<tree>;
909 if (diagnosed->add (fun))
910 /* Already explained. */
911 return;
913 save_loc = input_location;
914 if (!lambda_static_thunk_p (fun))
916 /* Diagnostics should completely ignore the static thunk, so leave
917 input_location set to our caller's location. */
918 input_location = DECL_SOURCE_LOCATION (fun);
919 inform (input_location,
920 "%qD is not usable as a %<constexpr%> function because:", fun);
922 /* First check the declaration. */
923 if (is_valid_constexpr_fn (fun, true))
925 /* Then if it's OK, the body. */
926 if (!DECL_DECLARED_CONSTEXPR_P (fun)
927 && !LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun)))
928 explain_implicit_non_constexpr (fun);
929 else
931 body = massage_constexpr_body (fun, DECL_SAVED_TREE (fun));
932 require_potential_rvalue_constant_expression (body);
933 if (DECL_CONSTRUCTOR_P (fun))
934 cx_check_missing_mem_inits (DECL_CONTEXT (fun), body, true);
937 input_location = save_loc;
940 /* Objects of this type represent calls to constexpr functions
941 along with the bindings of parameters to their arguments, for
942 the purpose of compile time evaluation. */
944 struct GTY((for_user)) constexpr_call {
945 /* Description of the constexpr function definition. */
946 constexpr_fundef *fundef;
947 /* Parameter bindings environment. A TREE_LIST where each TREE_PURPOSE
948 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
949 Note: This arrangement is made to accommodate the use of
950 iterative_hash_template_arg (see pt.c). If you change this
951 representation, also change the hash calculation in
952 cxx_eval_call_expression. */
953 tree bindings;
954 /* Result of the call.
955 NULL means the call is being evaluated.
956 error_mark_node means that the evaluation was erroneous;
957 otherwise, the actuall value of the call. */
958 tree result;
959 /* The hash of this call; we remember it here to avoid having to
960 recalculate it when expanding the hash table. */
961 hashval_t hash;
964 struct constexpr_call_hasher : ggc_ptr_hash<constexpr_call>
966 static hashval_t hash (constexpr_call *);
967 static bool equal (constexpr_call *, constexpr_call *);
970 enum constexpr_switch_state {
971 /* Used when processing a switch for the first time by cxx_eval_switch_expr
972 and default: label for that switch has not been seen yet. */
973 css_default_not_seen,
974 /* Used when processing a switch for the first time by cxx_eval_switch_expr
975 and default: label for that switch has been seen already. */
976 css_default_seen,
977 /* Used when processing a switch for the second time by
978 cxx_eval_switch_expr, where default: label should match. */
979 css_default_processing
982 /* The constexpr expansion context. CALL is the current function
983 expansion, CTOR is the current aggregate initializer, OBJECT is the
984 object being initialized by CTOR, either a VAR_DECL or a _REF. VALUES
985 is a map of values of variables initialized within the expression. */
987 struct constexpr_ctx {
988 /* The innermost call we're evaluating. */
989 constexpr_call *call;
990 /* Values for any temporaries or local variables within the
991 constant-expression. */
992 hash_map<tree,tree> *values;
993 /* SAVE_EXPRs that we've seen within the current LOOP_EXPR. NULL if we
994 aren't inside a loop. */
995 hash_set<tree> *save_exprs;
996 /* The CONSTRUCTOR we're currently building up for an aggregate
997 initializer. */
998 tree ctor;
999 /* The object we're building the CONSTRUCTOR for. */
1000 tree object;
1001 /* If inside SWITCH_EXPR. */
1002 constexpr_switch_state *css_state;
1003 /* Whether we should error on a non-constant expression or fail quietly. */
1004 bool quiet;
1005 /* Whether we are strictly conforming to constant expression rules or
1006 trying harder to get a constant value. */
1007 bool strict;
1010 /* A table of all constexpr calls that have been evaluated by the
1011 compiler in this translation unit. */
1013 static GTY (()) hash_table<constexpr_call_hasher> *constexpr_call_table;
1015 static tree cxx_eval_constant_expression (const constexpr_ctx *, tree,
1016 bool, bool *, bool *, tree * = NULL);
1018 /* Compute a hash value for a constexpr call representation. */
1020 inline hashval_t
1021 constexpr_call_hasher::hash (constexpr_call *info)
1023 return info->hash;
1026 /* Return true if the objects pointed to by P and Q represent calls
1027 to the same constexpr function with the same arguments.
1028 Otherwise, return false. */
1030 bool
1031 constexpr_call_hasher::equal (constexpr_call *lhs, constexpr_call *rhs)
1033 tree lhs_bindings;
1034 tree rhs_bindings;
1035 if (lhs == rhs)
1036 return true;
1037 if (lhs->hash != rhs->hash)
1038 return false;
1039 if (!constexpr_fundef_hasher::equal (lhs->fundef, rhs->fundef))
1040 return false;
1041 lhs_bindings = lhs->bindings;
1042 rhs_bindings = rhs->bindings;
1043 while (lhs_bindings != NULL && rhs_bindings != NULL)
1045 tree lhs_arg = TREE_VALUE (lhs_bindings);
1046 tree rhs_arg = TREE_VALUE (rhs_bindings);
1047 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
1048 if (!cp_tree_equal (lhs_arg, rhs_arg))
1049 return false;
1050 lhs_bindings = TREE_CHAIN (lhs_bindings);
1051 rhs_bindings = TREE_CHAIN (rhs_bindings);
1053 return lhs_bindings == rhs_bindings;
1056 /* Initialize the constexpr call table, if needed. */
1058 static void
1059 maybe_initialize_constexpr_call_table (void)
1061 if (constexpr_call_table == NULL)
1062 constexpr_call_table = hash_table<constexpr_call_hasher>::create_ggc (101);
1065 /* During constexpr CALL_EXPR evaluation, to avoid issues with sharing when
1066 a function happens to get called recursively, we unshare the callee
1067 function's body and evaluate this unshared copy instead of evaluating the
1068 original body.
1070 FUNDEF_COPIES_TABLE is a per-function freelist of these unshared function
1071 copies. The underlying data structure of FUNDEF_COPIES_TABLE is a hash_map
1072 that's keyed off of the original FUNCTION_DECL and whose value is a
1073 TREE_LIST of this function's unused copies awaiting reuse.
1075 This is not GC-deletable to avoid GC affecting UID generation. */
1077 static GTY(()) hash_map<tree, tree> *fundef_copies_table;
1079 /* Initialize FUNDEF_COPIES_TABLE if it's not initialized. */
1081 static void
1082 maybe_initialize_fundef_copies_table ()
1084 if (fundef_copies_table == NULL)
1085 fundef_copies_table = hash_map<tree,tree>::create_ggc (101);
1088 /* Reuse a copy or create a new unshared copy of the function FUN.
1089 Return this copy. We use a TREE_LIST whose PURPOSE is body, VALUE
1090 is parms, TYPE is result. */
1092 static tree
1093 get_fundef_copy (tree fun)
1095 maybe_initialize_fundef_copies_table ();
1097 tree copy;
1098 bool existed;
1099 tree *slot = &fundef_copies_table->get_or_insert (fun, &existed);
1101 if (!existed)
1103 /* There is no cached function available, or in use. We can use
1104 the function directly. That the slot is now created records
1105 that this function is now in use. */
1106 copy = build_tree_list (DECL_SAVED_TREE (fun), DECL_ARGUMENTS (fun));
1107 TREE_TYPE (copy) = DECL_RESULT (fun);
1109 else if (*slot == NULL_TREE)
1111 /* We've already used the function itself, so make a copy. */
1112 copy = build_tree_list (NULL, NULL);
1113 TREE_PURPOSE (copy) = copy_fn (fun, TREE_VALUE (copy), TREE_TYPE (copy));
1115 else
1117 /* We have a cached function available. */
1118 copy = *slot;
1119 *slot = TREE_CHAIN (copy);
1122 return copy;
1125 /* Save the copy COPY of function FUN for later reuse by
1126 get_fundef_copy(). By construction, there will always be an entry
1127 to find. */
1129 static void
1130 save_fundef_copy (tree fun, tree copy)
1132 tree *slot = fundef_copies_table->get (fun);
1133 TREE_CHAIN (copy) = *slot;
1134 *slot = copy;
1137 /* We have an expression tree T that represents a call, either CALL_EXPR
1138 or AGGR_INIT_EXPR. Return the Nth argument. */
1140 static inline tree
1141 get_nth_callarg (tree t, int n)
1143 switch (TREE_CODE (t))
1145 case CALL_EXPR:
1146 return CALL_EXPR_ARG (t, n);
1148 case AGGR_INIT_EXPR:
1149 return AGGR_INIT_EXPR_ARG (t, n);
1151 default:
1152 gcc_unreachable ();
1153 return NULL;
1157 /* Attempt to evaluate T which represents a call to a builtin function.
1158 We assume here that all builtin functions evaluate to scalar types
1159 represented by _CST nodes. */
1161 static tree
1162 cxx_eval_builtin_function_call (const constexpr_ctx *ctx, tree t, tree fun,
1163 bool lval,
1164 bool *non_constant_p, bool *overflow_p)
1166 const int nargs = call_expr_nargs (t);
1167 tree *args = (tree *) alloca (nargs * sizeof (tree));
1168 tree new_call;
1169 int i;
1171 /* Don't fold __builtin_constant_p within a constexpr function. */
1172 bool bi_const_p = (DECL_FUNCTION_CODE (fun) == BUILT_IN_CONSTANT_P);
1174 if (bi_const_p
1175 && current_function_decl
1176 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
1178 *non_constant_p = true;
1179 return t;
1182 /* Be permissive for arguments to built-ins; __builtin_constant_p should
1183 return constant false for a non-constant argument. */
1184 constexpr_ctx new_ctx = *ctx;
1185 new_ctx.quiet = true;
1186 bool dummy1 = false, dummy2 = false;
1187 for (i = 0; i < nargs; ++i)
1189 args[i] = cxx_eval_constant_expression (&new_ctx, CALL_EXPR_ARG (t, i),
1190 false, &dummy1, &dummy2);
1191 if (bi_const_p)
1192 /* For __built_in_constant_p, fold all expressions with constant values
1193 even if they aren't C++ constant-expressions. */
1194 args[i] = cp_fully_fold (args[i]);
1197 bool save_ffbcp = force_folding_builtin_constant_p;
1198 force_folding_builtin_constant_p = true;
1199 new_call = fold_builtin_call_array (EXPR_LOCATION (t), TREE_TYPE (t),
1200 CALL_EXPR_FN (t), nargs, args);
1201 force_folding_builtin_constant_p = save_ffbcp;
1202 if (new_call == NULL)
1204 if (!*non_constant_p && !ctx->quiet)
1206 /* Do not allow__builtin_unreachable in constexpr function.
1207 The __builtin_unreachable call with BUILTINS_LOCATION
1208 comes from cp_maybe_instrument_return. */
1209 if (DECL_FUNCTION_CODE (fun) == BUILT_IN_UNREACHABLE
1210 && EXPR_LOCATION (t) == BUILTINS_LOCATION)
1211 error ("%<constexpr%> call flows off the end of the function");
1212 else
1214 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
1215 CALL_EXPR_FN (t), nargs, args);
1216 error ("%q+E is not a constant expression", new_call);
1219 *non_constant_p = true;
1220 return t;
1223 if (!is_constant_expression (new_call))
1225 if (!*non_constant_p && !ctx->quiet)
1226 error ("%q+E is not a constant expression", new_call);
1227 *non_constant_p = true;
1228 return t;
1231 return cxx_eval_constant_expression (&new_ctx, new_call, lval,
1232 non_constant_p, overflow_p);
1235 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
1236 the type of the value to match. */
1238 static tree
1239 adjust_temp_type (tree type, tree temp)
1241 if (TREE_TYPE (temp) == type)
1242 return temp;
1243 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
1244 if (TREE_CODE (temp) == CONSTRUCTOR)
1245 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
1246 gcc_assert (scalarish_type_p (type));
1247 return cp_fold_convert (type, temp);
1250 /* Callback for walk_tree used by unshare_constructor. */
1252 static tree
1253 find_constructor (tree *tp, int *walk_subtrees, void *)
1255 if (TYPE_P (*tp))
1256 *walk_subtrees = 0;
1257 if (TREE_CODE (*tp) == CONSTRUCTOR)
1258 return *tp;
1259 return NULL_TREE;
1262 /* If T is a CONSTRUCTOR or an expression that has a CONSTRUCTOR node as a
1263 subexpression, return an unshared copy of T. Otherwise return T. */
1265 static tree
1266 unshare_constructor (tree t)
1268 tree ctor = walk_tree (&t, find_constructor, NULL, NULL);
1269 if (ctor != NULL_TREE)
1270 return unshare_expr (t);
1271 return t;
1274 /* Subroutine of cxx_eval_call_expression.
1275 We are processing a call expression (either CALL_EXPR or
1276 AGGR_INIT_EXPR) in the context of CTX. Evaluate
1277 all arguments and bind their values to correspondings
1278 parameters, making up the NEW_CALL context. */
1280 static void
1281 cxx_bind_parameters_in_call (const constexpr_ctx *ctx, tree t,
1282 constexpr_call *new_call,
1283 bool *non_constant_p, bool *overflow_p,
1284 bool *non_constant_args)
1286 const int nargs = call_expr_nargs (t);
1287 tree fun = new_call->fundef->decl;
1288 tree parms = DECL_ARGUMENTS (fun);
1289 int i;
1290 tree *p = &new_call->bindings;
1291 for (i = 0; i < nargs; ++i)
1293 tree x, arg;
1294 tree type = parms ? TREE_TYPE (parms) : void_type_node;
1295 x = get_nth_callarg (t, i);
1296 /* For member function, the first argument is a pointer to the implied
1297 object. For a constructor, it might still be a dummy object, in
1298 which case we get the real argument from ctx. */
1299 if (i == 0 && DECL_CONSTRUCTOR_P (fun)
1300 && is_dummy_object (x))
1302 x = ctx->object;
1303 x = build_address (x);
1305 arg = cxx_eval_constant_expression (ctx, x, /*lval=*/false,
1306 non_constant_p, overflow_p);
1307 /* Don't VERIFY_CONSTANT here. */
1308 if (*non_constant_p && ctx->quiet)
1309 return;
1310 /* Just discard ellipsis args after checking their constantitude. */
1311 if (!parms)
1312 continue;
1314 if (!*non_constant_p)
1316 /* Don't share a CONSTRUCTOR that might be changed. */
1317 arg = unshare_constructor (arg);
1318 /* Make sure the binding has the same type as the parm. But
1319 only for constant args. */
1320 if (TREE_CODE (type) != REFERENCE_TYPE)
1321 arg = adjust_temp_type (type, arg);
1322 if (!TREE_CONSTANT (arg))
1323 *non_constant_args = true;
1324 *p = build_tree_list (parms, arg);
1325 p = &TREE_CHAIN (*p);
1327 parms = TREE_CHAIN (parms);
1331 /* Variables and functions to manage constexpr call expansion context.
1332 These do not need to be marked for PCH or GC. */
1334 /* FIXME remember and print actual constant arguments. */
1335 static vec<tree> call_stack;
1336 static int call_stack_tick;
1337 static int last_cx_error_tick;
1339 static bool
1340 push_cx_call_context (tree call)
1342 ++call_stack_tick;
1343 if (!EXPR_HAS_LOCATION (call))
1344 SET_EXPR_LOCATION (call, input_location);
1345 call_stack.safe_push (call);
1346 if (call_stack.length () > (unsigned) max_constexpr_depth)
1347 return false;
1348 return true;
1351 static void
1352 pop_cx_call_context (void)
1354 ++call_stack_tick;
1355 call_stack.pop ();
1358 vec<tree>
1359 cx_error_context (void)
1361 vec<tree> r = vNULL;
1362 if (call_stack_tick != last_cx_error_tick
1363 && !call_stack.is_empty ())
1364 r = call_stack;
1365 last_cx_error_tick = call_stack_tick;
1366 return r;
1369 /* Evaluate a call T to a GCC internal function when possible and return
1370 the evaluated result or, under the control of CTX, give an error, set
1371 NON_CONSTANT_P, and return the unevaluated call T otherwise. */
1373 static tree
1374 cxx_eval_internal_function (const constexpr_ctx *ctx, tree t,
1375 bool lval,
1376 bool *non_constant_p, bool *overflow_p)
1378 enum tree_code opcode = ERROR_MARK;
1380 switch (CALL_EXPR_IFN (t))
1382 case IFN_UBSAN_NULL:
1383 case IFN_UBSAN_BOUNDS:
1384 case IFN_UBSAN_VPTR:
1385 case IFN_FALLTHROUGH:
1386 return void_node;
1388 case IFN_ADD_OVERFLOW:
1389 opcode = PLUS_EXPR;
1390 break;
1391 case IFN_SUB_OVERFLOW:
1392 opcode = MINUS_EXPR;
1393 break;
1394 case IFN_MUL_OVERFLOW:
1395 opcode = MULT_EXPR;
1396 break;
1398 case IFN_LAUNDER:
1399 return cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 0),
1400 false, non_constant_p, overflow_p);
1402 default:
1403 if (!ctx->quiet)
1404 error_at (EXPR_LOC_OR_LOC (t, input_location),
1405 "call to internal function %qE", t);
1406 *non_constant_p = true;
1407 return t;
1410 /* Evaluate constant arguments using OPCODE and return a complex
1411 number containing the result and the overflow bit. */
1412 tree arg0 = cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 0), lval,
1413 non_constant_p, overflow_p);
1414 tree arg1 = cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 1), lval,
1415 non_constant_p, overflow_p);
1417 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1419 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
1420 tree type = TREE_TYPE (TREE_TYPE (t));
1421 tree result = fold_binary_loc (loc, opcode, type,
1422 fold_convert_loc (loc, type, arg0),
1423 fold_convert_loc (loc, type, arg1));
1424 tree ovf
1425 = build_int_cst (type, arith_overflowed_p (opcode, type, arg0, arg1));
1426 /* Reset TREE_OVERFLOW to avoid warnings for the overflow. */
1427 if (TREE_OVERFLOW (result))
1428 TREE_OVERFLOW (result) = 0;
1430 return build_complex (TREE_TYPE (t), result, ovf);
1433 *non_constant_p = true;
1434 return t;
1437 /* Clean CONSTRUCTOR_NO_IMPLICIT_ZERO from CTOR and its sub-aggregates. */
1439 static void
1440 clear_no_implicit_zero (tree ctor)
1442 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor))
1444 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor) = false;
1445 tree elt; unsigned HOST_WIDE_INT idx;
1446 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), idx, elt)
1447 if (TREE_CODE (elt) == CONSTRUCTOR)
1448 clear_no_implicit_zero (elt);
1452 /* Subroutine of cxx_eval_constant_expression.
1453 Evaluate the call expression tree T in the context of OLD_CALL expression
1454 evaluation. */
1456 static tree
1457 cxx_eval_call_expression (const constexpr_ctx *ctx, tree t,
1458 bool lval,
1459 bool *non_constant_p, bool *overflow_p)
1461 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
1462 tree fun = get_function_named_in_call (t);
1463 constexpr_call new_call = { NULL, NULL, NULL, 0 };
1464 bool depth_ok;
1466 if (fun == NULL_TREE)
1467 return cxx_eval_internal_function (ctx, t, lval,
1468 non_constant_p, overflow_p);
1470 if (TREE_CODE (fun) != FUNCTION_DECL)
1472 /* Might be a constexpr function pointer. */
1473 fun = cxx_eval_constant_expression (ctx, fun,
1474 /*lval*/false, non_constant_p,
1475 overflow_p);
1476 STRIP_NOPS (fun);
1477 if (TREE_CODE (fun) == ADDR_EXPR)
1478 fun = TREE_OPERAND (fun, 0);
1480 if (TREE_CODE (fun) != FUNCTION_DECL)
1482 if (!ctx->quiet && !*non_constant_p)
1483 error_at (loc, "expression %qE does not designate a %<constexpr%> "
1484 "function", fun);
1485 *non_constant_p = true;
1486 return t;
1488 if (DECL_CLONED_FUNCTION_P (fun))
1489 fun = DECL_CLONED_FUNCTION (fun);
1491 if (is_ubsan_builtin_p (fun))
1492 return void_node;
1494 if (is_builtin_fn (fun))
1495 return cxx_eval_builtin_function_call (ctx, t, fun,
1496 lval, non_constant_p, overflow_p);
1497 if (!DECL_DECLARED_CONSTEXPR_P (fun))
1499 if (!ctx->quiet)
1501 if (!lambda_static_thunk_p (fun))
1502 error_at (loc, "call to non-%<constexpr%> function %qD", fun);
1503 explain_invalid_constexpr_fn (fun);
1505 *non_constant_p = true;
1506 return t;
1509 constexpr_ctx new_ctx = *ctx;
1510 if (DECL_CONSTRUCTOR_P (fun) && !ctx->object
1511 && TREE_CODE (t) == AGGR_INIT_EXPR)
1513 /* We want to have an initialization target for an AGGR_INIT_EXPR.
1514 If we don't already have one in CTX, use the AGGR_INIT_EXPR_SLOT. */
1515 new_ctx.object = AGGR_INIT_EXPR_SLOT (t);
1516 tree ctor = new_ctx.ctor = build_constructor (DECL_CONTEXT (fun), NULL);
1517 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor) = true;
1518 ctx->values->put (new_ctx.object, ctor);
1519 ctx = &new_ctx;
1522 /* Shortcut trivial constructor/op=. */
1523 if (trivial_fn_p (fun))
1525 tree init = NULL_TREE;
1526 if (call_expr_nargs (t) == 2)
1527 init = convert_from_reference (get_nth_callarg (t, 1));
1528 else if (TREE_CODE (t) == AGGR_INIT_EXPR
1529 && AGGR_INIT_ZERO_FIRST (t))
1530 init = build_zero_init (DECL_CONTEXT (fun), NULL_TREE, false);
1531 if (init)
1533 tree op = get_nth_callarg (t, 0);
1534 if (is_dummy_object (op))
1535 op = ctx->object;
1536 else
1537 op = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (op)), op);
1538 tree set = build2 (MODIFY_EXPR, TREE_TYPE (op), op, init);
1539 new_ctx.call = &new_call;
1540 return cxx_eval_constant_expression (&new_ctx, set, lval,
1541 non_constant_p, overflow_p);
1545 /* We can't defer instantiating the function any longer. */
1546 if (!DECL_INITIAL (fun)
1547 && DECL_TEMPLOID_INSTANTIATION (fun))
1549 location_t save_loc = input_location;
1550 input_location = loc;
1551 ++function_depth;
1552 instantiate_decl (fun, /*defer_ok*/false, /*expl_inst*/false);
1553 --function_depth;
1554 input_location = save_loc;
1557 /* If in direct recursive call, optimize definition search. */
1558 if (ctx && ctx->call && ctx->call->fundef && ctx->call->fundef->decl == fun)
1559 new_call.fundef = ctx->call->fundef;
1560 else
1562 new_call.fundef = retrieve_constexpr_fundef (fun);
1563 if (new_call.fundef == NULL || new_call.fundef->body == NULL
1564 || fun == current_function_decl)
1566 if (!ctx->quiet)
1568 /* We need to check for current_function_decl here in case we're
1569 being called during cp_fold_function, because at that point
1570 DECL_INITIAL is set properly and we have a fundef but we
1571 haven't lowered invisirefs yet (c++/70344). */
1572 if (DECL_INITIAL (fun) == error_mark_node
1573 || fun == current_function_decl)
1574 error_at (loc, "%qD called in a constant expression before its "
1575 "definition is complete", fun);
1576 else if (DECL_INITIAL (fun))
1578 /* The definition of fun was somehow unsuitable. But pretend
1579 that lambda static thunks don't exist. */
1580 if (!lambda_static_thunk_p (fun))
1581 error_at (loc, "%qD called in a constant expression", fun);
1582 explain_invalid_constexpr_fn (fun);
1584 else
1585 error_at (loc, "%qD used before its definition", fun);
1587 *non_constant_p = true;
1588 return t;
1592 bool non_constant_args = false;
1593 cxx_bind_parameters_in_call (ctx, t, &new_call,
1594 non_constant_p, overflow_p, &non_constant_args);
1595 if (*non_constant_p)
1596 return t;
1598 depth_ok = push_cx_call_context (t);
1600 tree result = NULL_TREE;
1602 constexpr_call *entry = NULL;
1603 if (depth_ok && !non_constant_args && ctx->strict)
1605 new_call.hash = iterative_hash_template_arg
1606 (new_call.bindings, constexpr_fundef_hasher::hash (new_call.fundef));
1608 /* If we have seen this call before, we are done. */
1609 maybe_initialize_constexpr_call_table ();
1610 constexpr_call **slot
1611 = constexpr_call_table->find_slot (&new_call, INSERT);
1612 entry = *slot;
1613 if (entry == NULL)
1615 /* We need to keep a pointer to the entry, not just the slot, as the
1616 slot can move in the call to cxx_eval_builtin_function_call. */
1617 *slot = entry = ggc_alloc<constexpr_call> ();
1618 *entry = new_call;
1620 /* Calls that are in progress have their result set to NULL,
1621 so that we can detect circular dependencies. */
1622 else if (entry->result == NULL)
1624 if (!ctx->quiet)
1625 error ("call has circular dependency");
1626 *non_constant_p = true;
1627 entry->result = result = error_mark_node;
1629 else
1630 result = entry->result;
1633 if (!depth_ok)
1635 if (!ctx->quiet)
1636 error ("%<constexpr%> evaluation depth exceeds maximum of %d (use "
1637 "-fconstexpr-depth= to increase the maximum)",
1638 max_constexpr_depth);
1639 *non_constant_p = true;
1640 result = error_mark_node;
1642 else
1644 if (result && result != error_mark_node)
1645 /* OK */;
1646 else if (!DECL_SAVED_TREE (fun))
1648 /* When at_eof >= 2, cgraph has started throwing away
1649 DECL_SAVED_TREE, so fail quietly. FIXME we get here because of
1650 late code generation for VEC_INIT_EXPR, which needs to be
1651 completely reconsidered. */
1652 gcc_assert (at_eof >= 2 && ctx->quiet);
1653 *non_constant_p = true;
1655 else
1657 tree body, parms, res;
1659 /* Reuse or create a new unshared copy of this function's body. */
1660 tree copy = get_fundef_copy (fun);
1661 body = TREE_PURPOSE (copy);
1662 parms = TREE_VALUE (copy);
1663 res = TREE_TYPE (copy);
1665 /* Associate the bindings with the remapped parms. */
1666 tree bound = new_call.bindings;
1667 tree remapped = parms;
1668 while (bound)
1670 tree oparm = TREE_PURPOSE (bound);
1671 tree arg = TREE_VALUE (bound);
1672 gcc_assert (DECL_NAME (remapped) == DECL_NAME (oparm));
1673 /* Don't share a CONSTRUCTOR that might be changed. */
1674 arg = unshare_constructor (arg);
1675 ctx->values->put (remapped, arg);
1676 bound = TREE_CHAIN (bound);
1677 remapped = DECL_CHAIN (remapped);
1679 /* Add the RESULT_DECL to the values map, too. */
1680 tree slot = NULL_TREE;
1681 if (DECL_BY_REFERENCE (res))
1683 slot = AGGR_INIT_EXPR_SLOT (t);
1684 tree addr = build_address (slot);
1685 addr = build_nop (TREE_TYPE (res), addr);
1686 ctx->values->put (res, addr);
1687 ctx->values->put (slot, NULL_TREE);
1689 else
1690 ctx->values->put (res, NULL_TREE);
1692 /* Track the callee's evaluated SAVE_EXPRs so that we can forget
1693 their values after the call. */
1694 constexpr_ctx ctx_with_save_exprs = *ctx;
1695 hash_set<tree> save_exprs;
1696 ctx_with_save_exprs.save_exprs = &save_exprs;
1697 ctx_with_save_exprs.call = &new_call;
1699 tree jump_target = NULL_TREE;
1700 cxx_eval_constant_expression (&ctx_with_save_exprs, body,
1701 lval, non_constant_p, overflow_p,
1702 &jump_target);
1704 if (DECL_CONSTRUCTOR_P (fun))
1705 /* This can be null for a subobject constructor call, in
1706 which case what we care about is the initialization
1707 side-effects rather than the value. We could get at the
1708 value by evaluating *this, but we don't bother; there's
1709 no need to put such a call in the hash table. */
1710 result = lval ? ctx->object : ctx->ctor;
1711 else if (VOID_TYPE_P (TREE_TYPE (res)))
1712 result = void_node;
1713 else
1715 result = *ctx->values->get (slot ? slot : res);
1716 if (result == NULL_TREE && !*non_constant_p)
1718 if (!ctx->quiet)
1719 error ("%<constexpr%> call flows off the end "
1720 "of the function");
1721 *non_constant_p = true;
1725 /* Forget the saved values of the callee's SAVE_EXPRs. */
1726 for (hash_set<tree>::iterator iter = save_exprs.begin();
1727 iter != save_exprs.end(); ++iter)
1728 ctx_with_save_exprs.values->remove (*iter);
1730 /* Remove the parms/result from the values map. Is it worth
1731 bothering to do this when the map itself is only live for
1732 one constexpr evaluation? If so, maybe also clear out
1733 other vars from call, maybe in BIND_EXPR handling? */
1734 ctx->values->remove (res);
1735 if (slot)
1736 ctx->values->remove (slot);
1737 for (tree parm = parms; parm; parm = TREE_CHAIN (parm))
1738 ctx->values->remove (parm);
1740 /* Make the unshared function copy we used available for re-use. */
1741 save_fundef_copy (fun, copy);
1744 if (result == error_mark_node)
1745 *non_constant_p = true;
1746 if (*non_constant_p || *overflow_p)
1747 result = error_mark_node;
1748 else if (!result)
1749 result = void_node;
1750 if (entry)
1751 entry->result = result;
1754 /* The result of a constexpr function must be completely initialized. */
1755 if (TREE_CODE (result) == CONSTRUCTOR)
1756 clear_no_implicit_zero (result);
1758 pop_cx_call_context ();
1759 return unshare_constructor (result);
1762 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
1764 bool
1765 reduced_constant_expression_p (tree t)
1767 switch (TREE_CODE (t))
1769 case PTRMEM_CST:
1770 /* Even if we can't lower this yet, it's constant. */
1771 return true;
1773 case CONSTRUCTOR:
1774 /* And we need to handle PTRMEM_CST wrapped in a CONSTRUCTOR. */
1775 tree idx, val, field; unsigned HOST_WIDE_INT i;
1776 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (t))
1778 if (TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
1779 /* An initialized vector would have a VECTOR_CST. */
1780 return false;
1781 else
1782 field = next_initializable_field (TYPE_FIELDS (TREE_TYPE (t)));
1784 else
1785 field = NULL_TREE;
1786 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), i, idx, val)
1788 if (!val)
1789 /* We're in the middle of initializing this element. */
1790 return false;
1791 if (!reduced_constant_expression_p (val))
1792 return false;
1793 if (field)
1795 if (idx != field)
1796 return false;
1797 field = next_initializable_field (DECL_CHAIN (field));
1800 if (field)
1801 return false;
1802 else if (CONSTRUCTOR_NO_IMPLICIT_ZERO (t))
1803 /* All the fields are initialized. */
1804 CONSTRUCTOR_NO_IMPLICIT_ZERO (t) = false;
1805 return true;
1807 default:
1808 /* FIXME are we calling this too much? */
1809 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
1813 /* Some expressions may have constant operands but are not constant
1814 themselves, such as 1/0. Call this function (or rather, the macro
1815 following it) to check for that condition.
1817 We only call this in places that require an arithmetic constant, not in
1818 places where we might have a non-constant expression that can be a
1819 component of a constant expression, such as the address of a constexpr
1820 variable that might be dereferenced later. */
1822 static bool
1823 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p,
1824 bool *overflow_p)
1826 if (!*non_constant_p && !reduced_constant_expression_p (t))
1828 if (!allow_non_constant)
1829 error ("%q+E is not a constant expression", t);
1830 *non_constant_p = true;
1832 if (TREE_OVERFLOW_P (t))
1834 if (!allow_non_constant)
1836 permerror (input_location, "overflow in constant expression");
1837 /* If we're being permissive (and are in an enforcing
1838 context), ignore the overflow. */
1839 if (flag_permissive)
1840 return *non_constant_p;
1842 *overflow_p = true;
1844 return *non_constant_p;
1847 /* Check whether the shift operation with code CODE and type TYPE on LHS
1848 and RHS is undefined. If it is, give an error with an explanation,
1849 and return true; return false otherwise. */
1851 static bool
1852 cxx_eval_check_shift_p (location_t loc, const constexpr_ctx *ctx,
1853 enum tree_code code, tree type, tree lhs, tree rhs)
1855 if ((code != LSHIFT_EXPR && code != RSHIFT_EXPR)
1856 || TREE_CODE (lhs) != INTEGER_CST
1857 || TREE_CODE (rhs) != INTEGER_CST)
1858 return false;
1860 tree lhstype = TREE_TYPE (lhs);
1861 unsigned HOST_WIDE_INT uprec = TYPE_PRECISION (TREE_TYPE (lhs));
1863 /* [expr.shift] The behavior is undefined if the right operand
1864 is negative, or greater than or equal to the length in bits
1865 of the promoted left operand. */
1866 if (tree_int_cst_sgn (rhs) == -1)
1868 if (!ctx->quiet)
1869 permerror (loc, "right operand of shift expression %q+E is negative",
1870 build2_loc (loc, code, type, lhs, rhs));
1871 return (!flag_permissive || ctx->quiet);
1873 if (compare_tree_int (rhs, uprec) >= 0)
1875 if (!ctx->quiet)
1876 permerror (loc, "right operand of shift expression %q+E is >= than "
1877 "the precision of the left operand",
1878 build2_loc (loc, code, type, lhs, rhs));
1879 return (!flag_permissive || ctx->quiet);
1882 /* The value of E1 << E2 is E1 left-shifted E2 bit positions; [...]
1883 if E1 has a signed type and non-negative value, and E1x2^E2 is
1884 representable in the corresponding unsigned type of the result type,
1885 then that value, converted to the result type, is the resulting value;
1886 otherwise, the behavior is undefined. */
1887 if (code == LSHIFT_EXPR && !TYPE_UNSIGNED (lhstype)
1888 && (cxx_dialect >= cxx11))
1890 if (tree_int_cst_sgn (lhs) == -1)
1892 if (!ctx->quiet)
1893 permerror (loc,
1894 "left operand of shift expression %q+E is negative",
1895 build2_loc (loc, code, type, lhs, rhs));
1896 return (!flag_permissive || ctx->quiet);
1898 /* For signed x << y the following:
1899 (unsigned) x >> ((prec (lhs) - 1) - y)
1900 if > 1, is undefined. The right-hand side of this formula
1901 is the highest bit of the LHS that can be set (starting from 0),
1902 so that the shift doesn't overflow. We then right-shift the LHS
1903 to see whether any other bit is set making the original shift
1904 undefined -- the result is not representable in the corresponding
1905 unsigned type. */
1906 tree t = build_int_cst (unsigned_type_node, uprec - 1);
1907 t = fold_build2 (MINUS_EXPR, unsigned_type_node, t, rhs);
1908 tree ulhs = fold_convert (unsigned_type_for (lhstype), lhs);
1909 t = fold_build2 (RSHIFT_EXPR, TREE_TYPE (ulhs), ulhs, t);
1910 if (tree_int_cst_lt (integer_one_node, t))
1912 if (!ctx->quiet)
1913 permerror (loc, "shift expression %q+E overflows",
1914 build2_loc (loc, code, type, lhs, rhs));
1915 return (!flag_permissive || ctx->quiet);
1918 return false;
1921 /* Subroutine of cxx_eval_constant_expression.
1922 Attempt to reduce the unary expression tree T to a compile time value.
1923 If successful, return the value. Otherwise issue a diagnostic
1924 and return error_mark_node. */
1926 static tree
1927 cxx_eval_unary_expression (const constexpr_ctx *ctx, tree t,
1928 bool /*lval*/,
1929 bool *non_constant_p, bool *overflow_p)
1931 tree r;
1932 tree orig_arg = TREE_OPERAND (t, 0);
1933 tree arg = cxx_eval_constant_expression (ctx, orig_arg, /*lval*/false,
1934 non_constant_p, overflow_p);
1935 VERIFY_CONSTANT (arg);
1936 location_t loc = EXPR_LOCATION (t);
1937 enum tree_code code = TREE_CODE (t);
1938 tree type = TREE_TYPE (t);
1939 r = fold_unary_loc (loc, code, type, arg);
1940 if (r == NULL_TREE)
1942 if (arg == orig_arg)
1943 r = t;
1944 else
1945 r = build1_loc (loc, code, type, arg);
1947 VERIFY_CONSTANT (r);
1948 return r;
1951 /* Helper function for cxx_eval_binary_expression. Try to optimize
1952 original POINTER_PLUS_EXPR T, LHS p+ RHS, return NULL_TREE if the
1953 generic folding should be used. */
1955 static tree
1956 cxx_fold_pointer_plus_expression (const constexpr_ctx *ctx, tree t,
1957 tree lhs, tree rhs, bool *non_constant_p,
1958 bool *overflow_p)
1960 STRIP_NOPS (lhs);
1961 if (TREE_CODE (lhs) != ADDR_EXPR)
1962 return NULL_TREE;
1964 lhs = TREE_OPERAND (lhs, 0);
1966 /* &A[i] p+ j => &A[i + j] */
1967 if (TREE_CODE (lhs) == ARRAY_REF
1968 && TREE_CODE (TREE_OPERAND (lhs, 1)) == INTEGER_CST
1969 && TREE_CODE (rhs) == INTEGER_CST
1970 && TYPE_SIZE_UNIT (TREE_TYPE (lhs))
1971 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST)
1973 tree orig_type = TREE_TYPE (t);
1974 location_t loc = EXPR_LOCATION (t);
1975 tree type = TREE_TYPE (lhs);
1977 t = fold_convert_loc (loc, ssizetype, TREE_OPERAND (lhs, 1));
1978 tree nelts = array_type_nelts_top (TREE_TYPE (TREE_OPERAND (lhs, 0)));
1979 nelts = cxx_eval_constant_expression (ctx, nelts, false, non_constant_p,
1980 overflow_p);
1981 if (*non_constant_p)
1982 return NULL_TREE;
1983 /* Don't fold an out-of-bound access. */
1984 if (!tree_int_cst_le (t, nelts))
1985 return NULL_TREE;
1986 rhs = cp_fold_convert (ssizetype, rhs);
1987 /* Don't fold if rhs can't be divided exactly by TYPE_SIZE_UNIT.
1988 constexpr int A[1]; ... (char *)&A[0] + 1 */
1989 if (!integer_zerop (fold_build2_loc (loc, TRUNC_MOD_EXPR, sizetype,
1990 rhs, TYPE_SIZE_UNIT (type))))
1991 return NULL_TREE;
1992 /* Make sure to treat the second operand of POINTER_PLUS_EXPR
1993 as signed. */
1994 rhs = fold_build2_loc (loc, EXACT_DIV_EXPR, ssizetype, rhs,
1995 TYPE_SIZE_UNIT (type));
1996 t = size_binop_loc (loc, PLUS_EXPR, rhs, t);
1997 t = build4_loc (loc, ARRAY_REF, type, TREE_OPERAND (lhs, 0),
1998 t, NULL_TREE, NULL_TREE);
1999 t = cp_build_addr_expr (t, tf_warning_or_error);
2000 t = cp_fold_convert (orig_type, t);
2001 return cxx_eval_constant_expression (ctx, t, /*lval*/false,
2002 non_constant_p, overflow_p);
2005 return NULL_TREE;
2008 /* Subroutine of cxx_eval_constant_expression.
2009 Like cxx_eval_unary_expression, except for binary expressions. */
2011 static tree
2012 cxx_eval_binary_expression (const constexpr_ctx *ctx, tree t,
2013 bool /*lval*/,
2014 bool *non_constant_p, bool *overflow_p)
2016 tree r = NULL_TREE;
2017 tree orig_lhs = TREE_OPERAND (t, 0);
2018 tree orig_rhs = TREE_OPERAND (t, 1);
2019 tree lhs, rhs;
2020 lhs = cxx_eval_constant_expression (ctx, orig_lhs, /*lval*/false,
2021 non_constant_p, overflow_p);
2022 /* Don't VERIFY_CONSTANT here, it's unnecessary and will break pointer
2023 subtraction. */
2024 if (*non_constant_p)
2025 return t;
2026 rhs = cxx_eval_constant_expression (ctx, orig_rhs, /*lval*/false,
2027 non_constant_p, overflow_p);
2028 if (*non_constant_p)
2029 return t;
2031 location_t loc = EXPR_LOCATION (t);
2032 enum tree_code code = TREE_CODE (t);
2033 tree type = TREE_TYPE (t);
2035 if (code == EQ_EXPR || code == NE_EXPR)
2037 bool is_code_eq = (code == EQ_EXPR);
2039 if (TREE_CODE (lhs) == PTRMEM_CST
2040 && TREE_CODE (rhs) == PTRMEM_CST)
2041 r = constant_boolean_node (cp_tree_equal (lhs, rhs) == is_code_eq,
2042 type);
2043 else if ((TREE_CODE (lhs) == PTRMEM_CST
2044 || TREE_CODE (rhs) == PTRMEM_CST)
2045 && (null_member_pointer_value_p (lhs)
2046 || null_member_pointer_value_p (rhs)))
2047 r = constant_boolean_node (!is_code_eq, type);
2048 else if (TREE_CODE (lhs) == PTRMEM_CST)
2049 lhs = cplus_expand_constant (lhs);
2050 else if (TREE_CODE (rhs) == PTRMEM_CST)
2051 rhs = cplus_expand_constant (rhs);
2053 if (code == POINTER_PLUS_EXPR && !*non_constant_p
2054 && integer_zerop (lhs) && !integer_zerop (rhs))
2056 if (!ctx->quiet)
2057 error ("arithmetic involving a null pointer in %qE", lhs);
2058 return t;
2060 else if (code == POINTER_PLUS_EXPR)
2061 r = cxx_fold_pointer_plus_expression (ctx, t, lhs, rhs, non_constant_p,
2062 overflow_p);
2064 if (r == NULL_TREE)
2065 r = fold_binary_loc (loc, code, type, lhs, rhs);
2067 if (r == NULL_TREE)
2069 if (lhs == orig_lhs && rhs == orig_rhs)
2070 r = t;
2071 else
2072 r = build2_loc (loc, code, type, lhs, rhs);
2074 else if (cxx_eval_check_shift_p (loc, ctx, code, type, lhs, rhs))
2075 *non_constant_p = true;
2076 /* Don't VERIFY_CONSTANT if this might be dealing with a pointer to
2077 a local array in a constexpr function. */
2078 bool ptr = POINTER_TYPE_P (TREE_TYPE (lhs));
2079 if (!ptr)
2080 VERIFY_CONSTANT (r);
2081 return r;
2084 /* Subroutine of cxx_eval_constant_expression.
2085 Attempt to evaluate condition expressions. Dead branches are not
2086 looked into. */
2088 static tree
2089 cxx_eval_conditional_expression (const constexpr_ctx *ctx, tree t,
2090 bool lval,
2091 bool *non_constant_p, bool *overflow_p,
2092 tree *jump_target)
2094 tree val = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2095 /*lval*/false,
2096 non_constant_p, overflow_p);
2097 VERIFY_CONSTANT (val);
2098 /* Don't VERIFY_CONSTANT the other operands. */
2099 if (integer_zerop (val))
2100 return cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
2101 lval,
2102 non_constant_p, overflow_p,
2103 jump_target);
2104 return cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2105 lval,
2106 non_constant_p, overflow_p,
2107 jump_target);
2110 /* Subroutine of cxx_eval_constant_expression.
2111 Attempt to evaluate vector condition expressions. Unlike
2112 cxx_eval_conditional_expression, VEC_COND_EXPR acts like a normal
2113 ternary arithmetics operation, where all 3 arguments have to be
2114 evaluated as constants and then folding computes the result from
2115 them. */
2117 static tree
2118 cxx_eval_vector_conditional_expression (const constexpr_ctx *ctx, tree t,
2119 bool *non_constant_p, bool *overflow_p)
2121 tree arg1 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2122 /*lval*/false,
2123 non_constant_p, overflow_p);
2124 VERIFY_CONSTANT (arg1);
2125 tree arg2 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2126 /*lval*/false,
2127 non_constant_p, overflow_p);
2128 VERIFY_CONSTANT (arg2);
2129 tree arg3 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
2130 /*lval*/false,
2131 non_constant_p, overflow_p);
2132 VERIFY_CONSTANT (arg3);
2133 location_t loc = EXPR_LOCATION (t);
2134 tree type = TREE_TYPE (t);
2135 tree r = fold_ternary_loc (loc, VEC_COND_EXPR, type, arg1, arg2, arg3);
2136 if (r == NULL_TREE)
2138 if (arg1 == TREE_OPERAND (t, 0)
2139 && arg2 == TREE_OPERAND (t, 1)
2140 && arg3 == TREE_OPERAND (t, 2))
2141 r = t;
2142 else
2143 r = build3_loc (loc, VEC_COND_EXPR, type, arg1, arg2, arg3);
2145 VERIFY_CONSTANT (r);
2146 return r;
2149 /* Returns less than, equal to, or greater than zero if KEY is found to be
2150 less than, to match, or to be greater than the constructor_elt's INDEX. */
2152 static int
2153 array_index_cmp (tree key, tree index)
2155 gcc_assert (TREE_CODE (key) == INTEGER_CST);
2157 switch (TREE_CODE (index))
2159 case INTEGER_CST:
2160 return tree_int_cst_compare (key, index);
2161 case RANGE_EXPR:
2163 tree lo = TREE_OPERAND (index, 0);
2164 tree hi = TREE_OPERAND (index, 1);
2165 if (tree_int_cst_lt (key, lo))
2166 return -1;
2167 else if (tree_int_cst_lt (hi, key))
2168 return 1;
2169 else
2170 return 0;
2172 default:
2173 gcc_unreachable ();
2177 /* Returns the index of the constructor_elt of ARY which matches DINDEX, or -1
2178 if none. If INSERT is true, insert a matching element rather than fail. */
2180 static HOST_WIDE_INT
2181 find_array_ctor_elt (tree ary, tree dindex, bool insert = false)
2183 if (tree_int_cst_sgn (dindex) < 0)
2184 return -1;
2186 unsigned HOST_WIDE_INT i = tree_to_uhwi (dindex);
2187 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ary);
2188 unsigned HOST_WIDE_INT len = vec_safe_length (elts);
2190 unsigned HOST_WIDE_INT end = len;
2191 unsigned HOST_WIDE_INT begin = 0;
2193 /* If the last element of the CONSTRUCTOR has its own index, we can assume
2194 that the same is true of the other elements and index directly. */
2195 if (end > 0)
2197 tree cindex = (*elts)[end-1].index;
2198 if (TREE_CODE (cindex) == INTEGER_CST
2199 && compare_tree_int (cindex, end-1) == 0)
2201 if (i < end)
2202 return i;
2203 else
2204 begin = end;
2208 /* Otherwise, find a matching index by means of a binary search. */
2209 while (begin != end)
2211 unsigned HOST_WIDE_INT middle = (begin + end) / 2;
2212 constructor_elt &elt = (*elts)[middle];
2213 tree idx = elt.index;
2215 int cmp = array_index_cmp (dindex, idx);
2216 if (cmp < 0)
2217 end = middle;
2218 else if (cmp > 0)
2219 begin = middle + 1;
2220 else
2222 if (insert && TREE_CODE (idx) == RANGE_EXPR)
2224 /* We need to split the range. */
2225 constructor_elt e;
2226 tree lo = TREE_OPERAND (idx, 0);
2227 tree hi = TREE_OPERAND (idx, 1);
2228 if (tree_int_cst_lt (lo, dindex))
2230 /* There are still some lower elts; shorten the range. */
2231 tree new_hi = int_const_binop (MINUS_EXPR, dindex,
2232 size_one_node);
2233 if (tree_int_cst_equal (lo, new_hi))
2234 /* Only one element left, no longer a range. */
2235 elt.index = lo;
2236 else
2237 TREE_OPERAND (idx, 1) = new_hi;
2238 /* Append the element we want to insert. */
2239 ++middle;
2240 e.index = dindex;
2241 e.value = unshare_constructor (elt.value);
2242 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle, e);
2244 else
2245 /* No lower elts, the range elt is now ours. */
2246 elt.index = dindex;
2248 if (tree_int_cst_lt (dindex, hi))
2250 /* There are still some higher elts; append a range. */
2251 tree new_lo = int_const_binop (PLUS_EXPR, dindex,
2252 size_one_node);
2253 if (tree_int_cst_equal (new_lo, hi))
2254 e.index = hi;
2255 else
2256 e.index = build2 (RANGE_EXPR, sizetype, new_lo, hi);
2257 e.value = unshare_constructor (elt.value);
2258 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle+1, e);
2261 return middle;
2265 if (insert)
2267 constructor_elt e = { dindex, NULL_TREE };
2268 vec_safe_insert (CONSTRUCTOR_ELTS (ary), end, e);
2269 return end;
2272 return -1;
2275 /* Under the control of CTX, issue a detailed diagnostic for
2276 an out-of-bounds subscript INDEX into the expression ARRAY. */
2278 static void
2279 diag_array_subscript (const constexpr_ctx *ctx, tree array, tree index)
2281 if (!ctx->quiet)
2283 tree arraytype = TREE_TYPE (array);
2285 /* Convert the unsigned array subscript to a signed integer to avoid
2286 printing huge numbers for small negative values. */
2287 tree sidx = fold_convert (ssizetype, index);
2288 if (DECL_P (array))
2290 if (TYPE_DOMAIN (arraytype))
2291 error ("array subscript value %qE is outside the bounds "
2292 "of array %qD of type %qT", sidx, array, arraytype);
2293 else
2294 error ("non-zero array subscript %qE is used with array %qD of "
2295 "type %qT with unknown bounds", sidx, array, arraytype);
2296 inform (DECL_SOURCE_LOCATION (array), "declared here");
2298 else if (TYPE_DOMAIN (arraytype))
2299 error ("array subscript value %qE is outside the bounds "
2300 "of array type %qT", sidx, arraytype);
2301 else
2302 error ("non-zero array subscript %qE is used with array of type %qT "
2303 "with unknown bounds", sidx, arraytype);
2307 /* Return the number of elements for TYPE (which is an ARRAY_TYPE or
2308 a VECTOR_TYPE). */
2310 static tree
2311 get_array_or_vector_nelts (const constexpr_ctx *ctx, tree type,
2312 bool *non_constant_p, bool *overflow_p)
2314 tree nelts;
2315 if (TREE_CODE (type) == ARRAY_TYPE)
2317 if (TYPE_DOMAIN (type))
2318 nelts = array_type_nelts_top (type);
2319 else
2320 nelts = size_zero_node;
2322 else if (VECTOR_TYPE_P (type))
2323 nelts = size_int (TYPE_VECTOR_SUBPARTS (type));
2324 else
2325 gcc_unreachable ();
2327 /* For VLAs, the number of elements won't be an integer constant. */
2328 nelts = cxx_eval_constant_expression (ctx, nelts, false,
2329 non_constant_p, overflow_p);
2330 return nelts;
2333 /* Extract element INDEX consisting of CHARS_PER_ELT chars from
2334 STRING_CST STRING. */
2336 static tree
2337 extract_string_elt (tree string, unsigned chars_per_elt, unsigned index)
2339 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (string)));
2340 tree r;
2342 if (chars_per_elt == 1)
2343 r = build_int_cst (type, TREE_STRING_POINTER (string)[index]);
2344 else
2346 const unsigned char *ptr
2347 = ((const unsigned char *)TREE_STRING_POINTER (string)
2348 + index * chars_per_elt);
2349 r = native_interpret_expr (type, ptr, chars_per_elt);
2351 return r;
2354 /* Subroutine of cxx_eval_constant_expression.
2355 Attempt to reduce a reference to an array slot. */
2357 static tree
2358 cxx_eval_array_reference (const constexpr_ctx *ctx, tree t,
2359 bool lval,
2360 bool *non_constant_p, bool *overflow_p)
2362 tree oldary = TREE_OPERAND (t, 0);
2363 tree ary = cxx_eval_constant_expression (ctx, oldary,
2364 lval,
2365 non_constant_p, overflow_p);
2366 tree index, oldidx;
2367 HOST_WIDE_INT i = 0;
2368 tree elem_type = NULL_TREE;
2369 unsigned len = 0, elem_nchars = 1;
2370 if (*non_constant_p)
2371 return t;
2372 oldidx = TREE_OPERAND (t, 1);
2373 index = cxx_eval_constant_expression (ctx, oldidx,
2374 false,
2375 non_constant_p, overflow_p);
2376 VERIFY_CONSTANT (index);
2377 if (!lval)
2379 elem_type = TREE_TYPE (TREE_TYPE (ary));
2380 if (TREE_CODE (ary) == VIEW_CONVERT_EXPR
2381 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (ary, 0)))
2382 && TREE_TYPE (t) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (ary, 0))))
2383 ary = TREE_OPERAND (ary, 0);
2384 if (TREE_CODE (ary) == CONSTRUCTOR)
2385 len = CONSTRUCTOR_NELTS (ary);
2386 else if (TREE_CODE (ary) == STRING_CST)
2388 elem_nchars = (TYPE_PRECISION (elem_type)
2389 / TYPE_PRECISION (char_type_node));
2390 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
2392 else if (TREE_CODE (ary) == VECTOR_CST)
2393 /* We don't create variable-length VECTOR_CSTs. */
2394 len = VECTOR_CST_NELTS (ary).to_constant ();
2395 else
2397 /* We can't do anything with other tree codes, so use
2398 VERIFY_CONSTANT to complain and fail. */
2399 VERIFY_CONSTANT (ary);
2400 gcc_unreachable ();
2403 if (!tree_fits_shwi_p (index)
2404 || (i = tree_to_shwi (index)) < 0)
2406 diag_array_subscript (ctx, ary, index);
2407 *non_constant_p = true;
2408 return t;
2412 tree nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary), non_constant_p,
2413 overflow_p);
2414 VERIFY_CONSTANT (nelts);
2415 if ((lval
2416 ? !tree_int_cst_le (index, nelts)
2417 : !tree_int_cst_lt (index, nelts))
2418 || tree_int_cst_sgn (index) < 0)
2420 diag_array_subscript (ctx, ary, index);
2421 *non_constant_p = true;
2422 return t;
2425 if (lval && ary == oldary && index == oldidx)
2426 return t;
2427 else if (lval)
2428 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
2430 bool found;
2431 if (TREE_CODE (ary) == CONSTRUCTOR)
2433 HOST_WIDE_INT ix = find_array_ctor_elt (ary, index);
2434 found = (ix >= 0);
2435 if (found)
2436 i = ix;
2438 else
2439 found = (i < len);
2441 if (found)
2443 tree r;
2444 if (TREE_CODE (ary) == CONSTRUCTOR)
2445 r = (*CONSTRUCTOR_ELTS (ary))[i].value;
2446 else if (TREE_CODE (ary) == VECTOR_CST)
2447 r = VECTOR_CST_ELT (ary, i);
2448 else
2449 r = extract_string_elt (ary, elem_nchars, i);
2451 if (r)
2452 /* Don't VERIFY_CONSTANT here. */
2453 return r;
2455 /* Otherwise the element doesn't have a value yet. */
2458 /* Not found. */
2460 if (TREE_CODE (ary) == CONSTRUCTOR
2461 && CONSTRUCTOR_NO_IMPLICIT_ZERO (ary))
2463 /* 'ary' is part of the aggregate initializer we're currently
2464 building; if there's no initializer for this element yet,
2465 that's an error. */
2466 if (!ctx->quiet)
2467 error ("accessing uninitialized array element");
2468 *non_constant_p = true;
2469 return t;
2472 /* If it's within the array bounds but doesn't have an explicit
2473 initializer, it's value-initialized. */
2474 tree val = build_value_init (elem_type, tf_warning_or_error);
2475 return cxx_eval_constant_expression (ctx, val, lval, non_constant_p,
2476 overflow_p);
2479 /* Subroutine of cxx_eval_constant_expression.
2480 Attempt to reduce a field access of a value of class type. */
2482 static tree
2483 cxx_eval_component_reference (const constexpr_ctx *ctx, tree t,
2484 bool lval,
2485 bool *non_constant_p, bool *overflow_p)
2487 unsigned HOST_WIDE_INT i;
2488 tree field;
2489 tree value;
2490 tree part = TREE_OPERAND (t, 1);
2491 tree orig_whole = TREE_OPERAND (t, 0);
2492 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2493 lval,
2494 non_constant_p, overflow_p);
2495 if (INDIRECT_REF_P (whole)
2496 && integer_zerop (TREE_OPERAND (whole, 0))
2497 && !ctx->quiet)
2498 error ("dereferencing a null pointer in %qE", orig_whole);
2500 if (TREE_CODE (whole) == PTRMEM_CST)
2501 whole = cplus_expand_constant (whole);
2502 if (whole == orig_whole)
2503 return t;
2504 if (lval)
2505 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
2506 whole, part, NULL_TREE);
2507 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2508 CONSTRUCTOR. */
2509 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
2511 if (!ctx->quiet)
2512 error ("%qE is not a constant expression", orig_whole);
2513 *non_constant_p = true;
2515 if (DECL_MUTABLE_P (part))
2517 if (!ctx->quiet)
2518 error ("mutable %qD is not usable in a constant expression", part);
2519 *non_constant_p = true;
2521 if (*non_constant_p)
2522 return t;
2523 bool pmf = TYPE_PTRMEMFUNC_P (TREE_TYPE (whole));
2524 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2526 /* Use name match for PMF fields, as a variant will have a
2527 different FIELD_DECL with a different type. */
2528 if (pmf ? DECL_NAME (field) == DECL_NAME (part)
2529 : field == part)
2531 if (value)
2532 return value;
2533 else
2534 /* We're in the middle of initializing it. */
2535 break;
2538 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
2539 && CONSTRUCTOR_NELTS (whole) > 0)
2541 /* DR 1188 says we don't have to deal with this. */
2542 if (!ctx->quiet)
2543 error ("accessing %qD member instead of initialized %qD member in "
2544 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
2545 *non_constant_p = true;
2546 return t;
2549 /* We only create a CONSTRUCTOR for a subobject when we modify it, so empty
2550 classes never get represented; throw together a value now. */
2551 if (is_really_empty_class (TREE_TYPE (t)))
2552 return build_constructor (TREE_TYPE (t), NULL);
2554 gcc_assert (DECL_CONTEXT (part) == TYPE_MAIN_VARIANT (TREE_TYPE (whole)));
2556 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (whole))
2558 /* 'whole' is part of the aggregate initializer we're currently
2559 building; if there's no initializer for this member yet, that's an
2560 error. */
2561 if (!ctx->quiet)
2562 error ("accessing uninitialized member %qD", part);
2563 *non_constant_p = true;
2564 return t;
2567 /* If there's no explicit init for this field, it's value-initialized. */
2568 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
2569 return cxx_eval_constant_expression (ctx, value,
2570 lval,
2571 non_constant_p, overflow_p);
2574 /* Subroutine of cxx_eval_constant_expression.
2575 Attempt to reduce a field access of a value of class type that is
2576 expressed as a BIT_FIELD_REF. */
2578 static tree
2579 cxx_eval_bit_field_ref (const constexpr_ctx *ctx, tree t,
2580 bool lval,
2581 bool *non_constant_p, bool *overflow_p)
2583 tree orig_whole = TREE_OPERAND (t, 0);
2584 tree retval, fldval, utype, mask;
2585 bool fld_seen = false;
2586 HOST_WIDE_INT istart, isize;
2587 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2588 lval,
2589 non_constant_p, overflow_p);
2590 tree start, field, value;
2591 unsigned HOST_WIDE_INT i;
2593 if (whole == orig_whole)
2594 return t;
2595 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2596 CONSTRUCTOR. */
2597 if (!*non_constant_p
2598 && TREE_CODE (whole) != VECTOR_CST
2599 && TREE_CODE (whole) != CONSTRUCTOR)
2601 if (!ctx->quiet)
2602 error ("%qE is not a constant expression", orig_whole);
2603 *non_constant_p = true;
2605 if (*non_constant_p)
2606 return t;
2608 if (TREE_CODE (whole) == VECTOR_CST)
2609 return fold_ternary (BIT_FIELD_REF, TREE_TYPE (t), whole,
2610 TREE_OPERAND (t, 1), TREE_OPERAND (t, 2));
2612 start = TREE_OPERAND (t, 2);
2613 istart = tree_to_shwi (start);
2614 isize = tree_to_shwi (TREE_OPERAND (t, 1));
2615 utype = TREE_TYPE (t);
2616 if (!TYPE_UNSIGNED (utype))
2617 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
2618 retval = build_int_cst (utype, 0);
2619 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2621 tree bitpos = bit_position (field);
2622 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
2623 return value;
2624 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
2625 && TREE_CODE (value) == INTEGER_CST
2626 && tree_fits_shwi_p (bitpos)
2627 && tree_fits_shwi_p (DECL_SIZE (field)))
2629 HOST_WIDE_INT bit = tree_to_shwi (bitpos);
2630 HOST_WIDE_INT sz = tree_to_shwi (DECL_SIZE (field));
2631 HOST_WIDE_INT shift;
2632 if (bit >= istart && bit + sz <= istart + isize)
2634 fldval = fold_convert (utype, value);
2635 mask = build_int_cst_type (utype, -1);
2636 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
2637 size_int (TYPE_PRECISION (utype) - sz));
2638 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
2639 size_int (TYPE_PRECISION (utype) - sz));
2640 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
2641 shift = bit - istart;
2642 if (BYTES_BIG_ENDIAN)
2643 shift = TYPE_PRECISION (utype) - shift - sz;
2644 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
2645 size_int (shift));
2646 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
2647 fld_seen = true;
2651 if (fld_seen)
2652 return fold_convert (TREE_TYPE (t), retval);
2653 gcc_unreachable ();
2654 return error_mark_node;
2657 /* Subroutine of cxx_eval_constant_expression.
2658 Evaluate a short-circuited logical expression T in the context
2659 of a given constexpr CALL. BAILOUT_VALUE is the value for
2660 early return. CONTINUE_VALUE is used here purely for
2661 sanity check purposes. */
2663 static tree
2664 cxx_eval_logical_expression (const constexpr_ctx *ctx, tree t,
2665 tree bailout_value, tree continue_value,
2666 bool lval,
2667 bool *non_constant_p, bool *overflow_p)
2669 tree r;
2670 tree lhs = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2671 lval,
2672 non_constant_p, overflow_p);
2673 VERIFY_CONSTANT (lhs);
2674 if (tree_int_cst_equal (lhs, bailout_value))
2675 return lhs;
2676 gcc_assert (tree_int_cst_equal (lhs, continue_value));
2677 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2678 lval, non_constant_p,
2679 overflow_p);
2680 VERIFY_CONSTANT (r);
2681 return r;
2684 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
2685 CONSTRUCTOR elements to initialize (part of) an object containing that
2686 field. Return a pointer to the constructor_elt corresponding to the
2687 initialization of the field. */
2689 static constructor_elt *
2690 base_field_constructor_elt (vec<constructor_elt, va_gc> *v, tree ref)
2692 tree aggr = TREE_OPERAND (ref, 0);
2693 tree field = TREE_OPERAND (ref, 1);
2694 HOST_WIDE_INT i;
2695 constructor_elt *ce;
2697 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
2699 if (TREE_CODE (aggr) == COMPONENT_REF)
2701 constructor_elt *base_ce
2702 = base_field_constructor_elt (v, aggr);
2703 v = CONSTRUCTOR_ELTS (base_ce->value);
2706 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
2707 if (ce->index == field)
2708 return ce;
2710 gcc_unreachable ();
2711 return NULL;
2714 /* Some of the expressions fed to the constexpr mechanism are calls to
2715 constructors, which have type void. In that case, return the type being
2716 initialized by the constructor. */
2718 static tree
2719 initialized_type (tree t)
2721 if (TYPE_P (t))
2722 return t;
2723 tree type = cv_unqualified (TREE_TYPE (t));
2724 if (TREE_CODE (t) == CALL_EXPR || TREE_CODE (t) == AGGR_INIT_EXPR)
2726 /* A constructor call has void type, so we need to look deeper. */
2727 tree fn = get_function_named_in_call (t);
2728 if (fn && TREE_CODE (fn) == FUNCTION_DECL
2729 && DECL_CXX_CONSTRUCTOR_P (fn))
2730 type = DECL_CONTEXT (fn);
2732 return type;
2735 /* We're about to initialize element INDEX of an array or class from VALUE.
2736 Set up NEW_CTX appropriately by adjusting .object to refer to the
2737 subobject and creating a new CONSTRUCTOR if the element is itself
2738 a class or array. */
2740 static void
2741 init_subob_ctx (const constexpr_ctx *ctx, constexpr_ctx &new_ctx,
2742 tree index, tree &value)
2744 new_ctx = *ctx;
2746 if (index && TREE_CODE (index) != INTEGER_CST
2747 && TREE_CODE (index) != FIELD_DECL)
2748 /* This won't have an element in the new CONSTRUCTOR. */
2749 return;
2751 tree type = initialized_type (value);
2752 if (!AGGREGATE_TYPE_P (type) && !VECTOR_TYPE_P (type))
2753 /* A non-aggregate member doesn't get its own CONSTRUCTOR. */
2754 return;
2756 /* The sub-aggregate initializer might contain a placeholder;
2757 update object to refer to the subobject and ctor to refer to
2758 the (newly created) sub-initializer. */
2759 if (ctx->object)
2760 new_ctx.object = build_ctor_subob_ref (index, type, ctx->object);
2761 tree elt = build_constructor (type, NULL);
2762 CONSTRUCTOR_NO_IMPLICIT_ZERO (elt) = true;
2763 new_ctx.ctor = elt;
2765 if (TREE_CODE (value) == TARGET_EXPR)
2766 /* Avoid creating another CONSTRUCTOR when we expand the TARGET_EXPR. */
2767 value = TARGET_EXPR_INITIAL (value);
2770 /* We're about to process an initializer for a class or array TYPE. Make
2771 sure that CTX is set up appropriately. */
2773 static void
2774 verify_ctor_sanity (const constexpr_ctx *ctx, tree type)
2776 /* We don't bother building a ctor for an empty base subobject. */
2777 if (is_empty_class (type))
2778 return;
2780 /* We're in the middle of an initializer that might involve placeholders;
2781 our caller should have created a CONSTRUCTOR for us to put the
2782 initializer into. We will either return that constructor or T. */
2783 gcc_assert (ctx->ctor);
2784 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2785 (type, TREE_TYPE (ctx->ctor)));
2786 /* We used to check that ctx->ctor was empty, but that isn't the case when
2787 the object is zero-initialized before calling the constructor. */
2788 if (ctx->object)
2790 tree otype = TREE_TYPE (ctx->object);
2791 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, otype)
2792 /* Handle flexible array members. */
2793 || (TREE_CODE (otype) == ARRAY_TYPE
2794 && TYPE_DOMAIN (otype) == NULL_TREE
2795 && TREE_CODE (type) == ARRAY_TYPE
2796 && (same_type_ignoring_top_level_qualifiers_p
2797 (TREE_TYPE (type), TREE_TYPE (otype)))));
2799 gcc_assert (!ctx->object || !DECL_P (ctx->object)
2800 || *(ctx->values->get (ctx->object)) == ctx->ctor);
2803 /* Subroutine of cxx_eval_constant_expression.
2804 The expression tree T denotes a C-style array or a C-style
2805 aggregate. Reduce it to a constant expression. */
2807 static tree
2808 cxx_eval_bare_aggregate (const constexpr_ctx *ctx, tree t,
2809 bool lval,
2810 bool *non_constant_p, bool *overflow_p)
2812 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
2813 bool changed = false;
2814 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
2815 tree type = TREE_TYPE (t);
2817 constexpr_ctx new_ctx;
2818 if (TYPE_PTRMEMFUNC_P (type) || VECTOR_TYPE_P (type))
2820 /* We don't really need the ctx->ctor business for a PMF or
2821 vector, but it's simpler to use the same code. */
2822 new_ctx = *ctx;
2823 new_ctx.ctor = build_constructor (type, NULL);
2824 new_ctx.object = NULL_TREE;
2825 ctx = &new_ctx;
2827 verify_ctor_sanity (ctx, type);
2828 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2829 vec_alloc (*p, vec_safe_length (v));
2831 unsigned i;
2832 tree index, value;
2833 bool constant_p = true;
2834 bool side_effects_p = false;
2835 FOR_EACH_CONSTRUCTOR_ELT (v, i, index, value)
2837 tree orig_value = value;
2838 init_subob_ctx (ctx, new_ctx, index, value);
2839 if (new_ctx.ctor != ctx->ctor)
2840 /* If we built a new CONSTRUCTOR, attach it now so that other
2841 initializers can refer to it. */
2842 CONSTRUCTOR_APPEND_ELT (*p, index, new_ctx.ctor);
2843 tree elt = cxx_eval_constant_expression (&new_ctx, value,
2844 lval,
2845 non_constant_p, overflow_p);
2846 /* Don't VERIFY_CONSTANT here. */
2847 if (ctx->quiet && *non_constant_p)
2848 break;
2849 if (elt != orig_value)
2850 changed = true;
2852 if (!TREE_CONSTANT (elt))
2853 constant_p = false;
2854 if (TREE_SIDE_EFFECTS (elt))
2855 side_effects_p = true;
2856 if (index && TREE_CODE (index) == COMPONENT_REF)
2858 /* This is an initialization of a vfield inside a base
2859 subaggregate that we already initialized; push this
2860 initialization into the previous initialization. */
2861 constructor_elt *inner = base_field_constructor_elt (*p, index);
2862 inner->value = elt;
2863 changed = true;
2865 else if (index
2866 && (TREE_CODE (index) == NOP_EXPR
2867 || TREE_CODE (index) == POINTER_PLUS_EXPR))
2869 /* This is an initializer for an empty base; now that we've
2870 checked that it's constant, we can ignore it. */
2871 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (index))));
2872 changed = true;
2874 else if (new_ctx.ctor != ctx->ctor)
2876 /* We appended this element above; update the value. */
2877 gcc_assert ((*p)->last().index == index);
2878 (*p)->last().value = elt;
2880 else
2881 CONSTRUCTOR_APPEND_ELT (*p, index, elt);
2883 if (*non_constant_p || !changed)
2884 return t;
2885 t = ctx->ctor;
2886 /* We're done building this CONSTRUCTOR, so now we can interpret an
2887 element without an explicit initializer as value-initialized. */
2888 CONSTRUCTOR_NO_IMPLICIT_ZERO (t) = false;
2889 TREE_CONSTANT (t) = constant_p;
2890 TREE_SIDE_EFFECTS (t) = side_effects_p;
2891 if (VECTOR_TYPE_P (type))
2892 t = fold (t);
2893 return t;
2896 /* Subroutine of cxx_eval_constant_expression.
2897 The expression tree T is a VEC_INIT_EXPR which denotes the desired
2898 initialization of a non-static data member of array type. Reduce it to a
2899 CONSTRUCTOR.
2901 Note that apart from value-initialization (when VALUE_INIT is true),
2902 this is only intended to support value-initialization and the
2903 initializations done by defaulted constructors for classes with
2904 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
2905 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
2906 for the copy/move constructor. */
2908 static tree
2909 cxx_eval_vec_init_1 (const constexpr_ctx *ctx, tree atype, tree init,
2910 bool value_init, bool lval,
2911 bool *non_constant_p, bool *overflow_p)
2913 tree elttype = TREE_TYPE (atype);
2914 verify_ctor_sanity (ctx, atype);
2915 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2916 bool pre_init = false;
2917 unsigned HOST_WIDE_INT i;
2919 /* For the default constructor, build up a call to the default
2920 constructor of the element type. We only need to handle class types
2921 here, as for a constructor to be constexpr, all members must be
2922 initialized, which for a defaulted default constructor means they must
2923 be of a class type with a constexpr default constructor. */
2924 if (TREE_CODE (elttype) == ARRAY_TYPE)
2925 /* We only do this at the lowest level. */;
2926 else if (value_init)
2928 init = build_value_init (elttype, tf_warning_or_error);
2929 pre_init = true;
2931 else if (!init)
2933 vec<tree, va_gc> *argvec = make_tree_vector ();
2934 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
2935 &argvec, elttype, LOOKUP_NORMAL,
2936 tf_warning_or_error);
2937 release_tree_vector (argvec);
2938 init = build_aggr_init_expr (TREE_TYPE (init), init);
2939 pre_init = true;
2942 tree nelts = get_array_or_vector_nelts (ctx, atype, non_constant_p,
2943 overflow_p);
2944 unsigned HOST_WIDE_INT max = tree_to_uhwi (nelts);
2945 for (i = 0; i < max; ++i)
2947 tree idx = build_int_cst (size_type_node, i);
2948 tree eltinit;
2949 bool reuse = false;
2950 constexpr_ctx new_ctx;
2951 init_subob_ctx (ctx, new_ctx, idx, pre_init ? init : elttype);
2952 if (new_ctx.ctor != ctx->ctor)
2953 CONSTRUCTOR_APPEND_ELT (*p, idx, new_ctx.ctor);
2954 if (TREE_CODE (elttype) == ARRAY_TYPE)
2956 /* A multidimensional array; recurse. */
2957 if (value_init || init == NULL_TREE)
2959 eltinit = NULL_TREE;
2960 reuse = i == 0;
2962 else
2963 eltinit = cp_build_array_ref (input_location, init, idx,
2964 tf_warning_or_error);
2965 eltinit = cxx_eval_vec_init_1 (&new_ctx, elttype, eltinit, value_init,
2966 lval,
2967 non_constant_p, overflow_p);
2969 else if (pre_init)
2971 /* Initializing an element using value or default initialization
2972 we just pre-built above. */
2973 eltinit = cxx_eval_constant_expression (&new_ctx, init, lval,
2974 non_constant_p, overflow_p);
2975 reuse = i == 0;
2977 else
2979 /* Copying an element. */
2980 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2981 (atype, TREE_TYPE (init)));
2982 eltinit = cp_build_array_ref (input_location, init, idx,
2983 tf_warning_or_error);
2984 if (!lvalue_p (init))
2985 eltinit = move (eltinit);
2986 eltinit = force_rvalue (eltinit, tf_warning_or_error);
2987 eltinit = cxx_eval_constant_expression (&new_ctx, eltinit, lval,
2988 non_constant_p, overflow_p);
2990 if (*non_constant_p && !ctx->quiet)
2991 break;
2992 if (new_ctx.ctor != ctx->ctor)
2994 /* We appended this element above; update the value. */
2995 gcc_assert ((*p)->last().index == idx);
2996 (*p)->last().value = eltinit;
2998 else
2999 CONSTRUCTOR_APPEND_ELT (*p, idx, eltinit);
3000 /* Reuse the result of cxx_eval_constant_expression call
3001 from the first iteration to all others if it is a constant
3002 initializer that doesn't require relocations. */
3003 if (reuse
3004 && max > 1
3005 && (eltinit == NULL_TREE
3006 || (initializer_constant_valid_p (eltinit, TREE_TYPE (eltinit))
3007 == null_pointer_node)))
3009 if (new_ctx.ctor != ctx->ctor)
3010 eltinit = new_ctx.ctor;
3011 tree range = build2 (RANGE_EXPR, size_type_node,
3012 build_int_cst (size_type_node, 1),
3013 build_int_cst (size_type_node, max - 1));
3014 CONSTRUCTOR_APPEND_ELT (*p, range, unshare_constructor (eltinit));
3015 break;
3017 else if (i == 0)
3018 vec_safe_reserve (*p, max);
3021 if (!*non_constant_p)
3023 init = ctx->ctor;
3024 CONSTRUCTOR_NO_IMPLICIT_ZERO (init) = false;
3026 return init;
3029 static tree
3030 cxx_eval_vec_init (const constexpr_ctx *ctx, tree t,
3031 bool lval,
3032 bool *non_constant_p, bool *overflow_p)
3034 tree atype = TREE_TYPE (t);
3035 tree init = VEC_INIT_EXPR_INIT (t);
3036 tree r = cxx_eval_vec_init_1 (ctx, atype, init,
3037 VEC_INIT_EXPR_VALUE_INIT (t),
3038 lval, non_constant_p, overflow_p);
3039 if (*non_constant_p)
3040 return t;
3041 else
3042 return r;
3045 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
3046 match. We want to be less strict for simple *& folding; if we have a
3047 non-const temporary that we access through a const pointer, that should
3048 work. We handle this here rather than change fold_indirect_ref_1
3049 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
3050 don't really make sense outside of constant expression evaluation. Also
3051 we want to allow folding to COMPONENT_REF, which could cause trouble
3052 with TBAA in fold_indirect_ref_1.
3054 Try to keep this function synced with fold_indirect_ref_1. */
3056 static tree
3057 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
3059 tree sub = op0;
3060 tree subtype;
3061 poly_uint64 const_op01;
3063 STRIP_NOPS (sub);
3064 subtype = TREE_TYPE (sub);
3065 if (!POINTER_TYPE_P (subtype))
3066 return NULL_TREE;
3068 if (TREE_CODE (sub) == ADDR_EXPR)
3070 tree op = TREE_OPERAND (sub, 0);
3071 tree optype = TREE_TYPE (op);
3073 /* *&CONST_DECL -> to the value of the const decl. */
3074 if (TREE_CODE (op) == CONST_DECL)
3075 return DECL_INITIAL (op);
3076 /* *&p => p; make sure to handle *&"str"[cst] here. */
3077 if (same_type_ignoring_top_level_qualifiers_p (optype, type)
3078 /* Also handle the case where the desired type is an array of unknown
3079 bounds because the variable has had its bounds deduced since the
3080 ADDR_EXPR was created. */
3081 || (TREE_CODE (type) == ARRAY_TYPE
3082 && TREE_CODE (optype) == ARRAY_TYPE
3083 && TYPE_DOMAIN (type) == NULL_TREE
3084 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (optype),
3085 TREE_TYPE (type))))
3087 tree fop = fold_read_from_constant_string (op);
3088 if (fop)
3089 return fop;
3090 else
3091 return op;
3093 /* *(foo *)&fooarray => fooarray[0] */
3094 else if (TREE_CODE (optype) == ARRAY_TYPE
3095 && (same_type_ignoring_top_level_qualifiers_p
3096 (type, TREE_TYPE (optype))))
3098 tree type_domain = TYPE_DOMAIN (optype);
3099 tree min_val = size_zero_node;
3100 if (type_domain && TYPE_MIN_VALUE (type_domain))
3101 min_val = TYPE_MIN_VALUE (type_domain);
3102 return build4_loc (loc, ARRAY_REF, type, op, min_val,
3103 NULL_TREE, NULL_TREE);
3105 /* *(foo *)&complexfoo => __real__ complexfoo */
3106 else if (TREE_CODE (optype) == COMPLEX_TYPE
3107 && (same_type_ignoring_top_level_qualifiers_p
3108 (type, TREE_TYPE (optype))))
3109 return fold_build1_loc (loc, REALPART_EXPR, type, op);
3110 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
3111 else if (VECTOR_TYPE_P (optype)
3112 && (same_type_ignoring_top_level_qualifiers_p
3113 (type, TREE_TYPE (optype))))
3115 tree part_width = TYPE_SIZE (type);
3116 tree index = bitsize_int (0);
3117 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width,
3118 index);
3120 /* Also handle conversion to an empty base class, which
3121 is represented with a NOP_EXPR. */
3122 else if (is_empty_class (type)
3123 && CLASS_TYPE_P (optype)
3124 && DERIVED_FROM_P (type, optype))
3126 *empty_base = true;
3127 return op;
3129 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
3130 else if (RECORD_OR_UNION_TYPE_P (optype))
3132 tree field = TYPE_FIELDS (optype);
3133 for (; field; field = DECL_CHAIN (field))
3134 if (TREE_CODE (field) == FIELD_DECL
3135 && TREE_TYPE (field) != error_mark_node
3136 && integer_zerop (byte_position (field))
3137 && (same_type_ignoring_top_level_qualifiers_p
3138 (TREE_TYPE (field), type)))
3139 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
3142 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
3143 && poly_int_tree_p (TREE_OPERAND (sub, 1), &const_op01))
3145 tree op00 = TREE_OPERAND (sub, 0);
3146 tree op01 = TREE_OPERAND (sub, 1);
3148 STRIP_NOPS (op00);
3149 if (TREE_CODE (op00) == ADDR_EXPR)
3151 tree op00type;
3152 op00 = TREE_OPERAND (op00, 0);
3153 op00type = TREE_TYPE (op00);
3155 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
3156 if (VECTOR_TYPE_P (op00type)
3157 && same_type_ignoring_top_level_qualifiers_p
3158 (type, TREE_TYPE (op00type))
3159 /* POINTER_PLUS_EXPR second operand is sizetype, unsigned,
3160 but we want to treat offsets with MSB set as negative.
3161 For the code below negative offsets are invalid and
3162 TYPE_SIZE of the element is something unsigned, so
3163 check whether op01 fits into poly_int64, which implies
3164 it is from 0 to INTTYPE_MAXIMUM (HOST_WIDE_INT), and
3165 then just use poly_uint64 because we want to treat the
3166 value as unsigned. */
3167 && tree_fits_poly_int64_p (op01))
3169 tree part_width = TYPE_SIZE (type);
3170 poly_uint64 max_offset
3171 = (tree_to_uhwi (part_width) / BITS_PER_UNIT
3172 * TYPE_VECTOR_SUBPARTS (op00type));
3173 if (known_lt (const_op01, max_offset))
3175 tree index = bitsize_int (const_op01 * BITS_PER_UNIT);
3176 return fold_build3_loc (loc,
3177 BIT_FIELD_REF, type, op00,
3178 part_width, index);
3181 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
3182 else if (TREE_CODE (op00type) == COMPLEX_TYPE
3183 && (same_type_ignoring_top_level_qualifiers_p
3184 (type, TREE_TYPE (op00type))))
3186 if (known_eq (wi::to_poly_offset (TYPE_SIZE_UNIT (type)),
3187 const_op01))
3188 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
3190 /* ((foo *)&fooarray)[1] => fooarray[1] */
3191 else if (TREE_CODE (op00type) == ARRAY_TYPE
3192 && (same_type_ignoring_top_level_qualifiers_p
3193 (type, TREE_TYPE (op00type))))
3195 tree type_domain = TYPE_DOMAIN (op00type);
3196 tree min_val = size_zero_node;
3197 if (type_domain && TYPE_MIN_VALUE (type_domain))
3198 min_val = TYPE_MIN_VALUE (type_domain);
3199 offset_int off = wi::to_offset (op01);
3200 offset_int el_sz = wi::to_offset (TYPE_SIZE_UNIT (type));
3201 offset_int remainder;
3202 off = wi::divmod_trunc (off, el_sz, SIGNED, &remainder);
3203 if (remainder == 0 && TREE_CODE (min_val) == INTEGER_CST)
3205 off = off + wi::to_offset (min_val);
3206 op01 = wide_int_to_tree (sizetype, off);
3207 return build4_loc (loc, ARRAY_REF, type, op00, op01,
3208 NULL_TREE, NULL_TREE);
3211 /* Also handle conversion to an empty base class, which
3212 is represented with a NOP_EXPR. */
3213 else if (is_empty_class (type)
3214 && CLASS_TYPE_P (op00type)
3215 && DERIVED_FROM_P (type, op00type))
3217 *empty_base = true;
3218 return op00;
3220 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
3221 else if (RECORD_OR_UNION_TYPE_P (op00type))
3223 tree field = TYPE_FIELDS (op00type);
3224 for (; field; field = DECL_CHAIN (field))
3225 if (TREE_CODE (field) == FIELD_DECL
3226 && TREE_TYPE (field) != error_mark_node
3227 && tree_int_cst_equal (byte_position (field), op01)
3228 && (same_type_ignoring_top_level_qualifiers_p
3229 (TREE_TYPE (field), type)))
3230 return fold_build3 (COMPONENT_REF, type, op00,
3231 field, NULL_TREE);
3235 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3236 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3237 && (same_type_ignoring_top_level_qualifiers_p
3238 (type, TREE_TYPE (TREE_TYPE (subtype)))))
3240 tree type_domain;
3241 tree min_val = size_zero_node;
3242 tree newsub
3243 = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
3244 if (newsub)
3245 sub = newsub;
3246 else
3247 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
3248 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3249 if (type_domain && TYPE_MIN_VALUE (type_domain))
3250 min_val = TYPE_MIN_VALUE (type_domain);
3251 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
3252 NULL_TREE);
3255 return NULL_TREE;
3258 static tree
3259 cxx_eval_indirect_ref (const constexpr_ctx *ctx, tree t,
3260 bool lval,
3261 bool *non_constant_p, bool *overflow_p)
3263 tree orig_op0 = TREE_OPERAND (t, 0);
3264 bool empty_base = false;
3266 /* We can handle a MEM_REF like an INDIRECT_REF, if MEM_REF's second
3267 operand is an integer-zero. Otherwise reject the MEM_REF for now. */
3269 if (TREE_CODE (t) == MEM_REF
3270 && (!TREE_OPERAND (t, 1) || !integer_zerop (TREE_OPERAND (t, 1))))
3272 gcc_assert (ctx->quiet);
3273 *non_constant_p = true;
3274 return t;
3277 /* First try to simplify it directly. */
3278 tree r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), orig_op0,
3279 &empty_base);
3280 if (!r)
3282 /* If that didn't work, evaluate the operand first. */
3283 tree op0 = cxx_eval_constant_expression (ctx, orig_op0,
3284 /*lval*/false, non_constant_p,
3285 overflow_p);
3286 /* Don't VERIFY_CONSTANT here. */
3287 if (*non_constant_p)
3288 return t;
3290 if (!lval && integer_zerop (op0))
3292 if (!ctx->quiet)
3293 error ("dereferencing a null pointer");
3294 *non_constant_p = true;
3295 return t;
3298 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
3299 &empty_base);
3300 if (r == NULL_TREE)
3302 /* We couldn't fold to a constant value. Make sure it's not
3303 something we should have been able to fold. */
3304 tree sub = op0;
3305 STRIP_NOPS (sub);
3306 if (TREE_CODE (sub) == ADDR_EXPR)
3308 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
3309 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
3310 /* DR 1188 says we don't have to deal with this. */
3311 if (!ctx->quiet)
3312 error ("accessing value of %qE through a %qT glvalue in a "
3313 "constant expression", build_fold_indirect_ref (sub),
3314 TREE_TYPE (t));
3315 *non_constant_p = true;
3316 return t;
3319 if (lval && op0 != orig_op0)
3320 return build1 (INDIRECT_REF, TREE_TYPE (t), op0);
3321 if (!lval)
3322 VERIFY_CONSTANT (t);
3323 return t;
3327 r = cxx_eval_constant_expression (ctx, r,
3328 lval, non_constant_p, overflow_p);
3329 if (*non_constant_p)
3330 return t;
3332 /* If we're pulling out the value of an empty base, just return an empty
3333 CONSTRUCTOR. */
3334 if (empty_base && !lval)
3336 r = build_constructor (TREE_TYPE (t), NULL);
3337 TREE_CONSTANT (r) = true;
3340 return r;
3343 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
3344 Shared between potential_constant_expression and
3345 cxx_eval_constant_expression. */
3347 static void
3348 non_const_var_error (tree r)
3350 tree type = TREE_TYPE (r);
3351 error ("the value of %qD is not usable in a constant "
3352 "expression", r);
3353 /* Avoid error cascade. */
3354 if (DECL_INITIAL (r) == error_mark_node)
3355 return;
3356 if (DECL_DECLARED_CONSTEXPR_P (r))
3357 inform (DECL_SOURCE_LOCATION (r),
3358 "%qD used in its own initializer", r);
3359 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
3361 if (!CP_TYPE_CONST_P (type))
3362 inform (DECL_SOURCE_LOCATION (r),
3363 "%q#D is not const", r);
3364 else if (CP_TYPE_VOLATILE_P (type))
3365 inform (DECL_SOURCE_LOCATION (r),
3366 "%q#D is volatile", r);
3367 else if (!DECL_INITIAL (r)
3368 || !TREE_CONSTANT (DECL_INITIAL (r))
3369 || !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r))
3370 inform (DECL_SOURCE_LOCATION (r),
3371 "%qD was not initialized with a constant "
3372 "expression", r);
3373 else
3374 gcc_unreachable ();
3376 else if (TREE_CODE (type) == REFERENCE_TYPE)
3377 inform (DECL_SOURCE_LOCATION (r),
3378 "%qD was not initialized with a constant "
3379 "expression", r);
3380 else
3382 if (cxx_dialect >= cxx11 && !DECL_DECLARED_CONSTEXPR_P (r))
3383 inform (DECL_SOURCE_LOCATION (r),
3384 "%qD was not declared %<constexpr%>", r);
3385 else
3386 inform (DECL_SOURCE_LOCATION (r),
3387 "%qD does not have integral or enumeration type",
3392 /* Subroutine of cxx_eval_constant_expression.
3393 Like cxx_eval_unary_expression, except for trinary expressions. */
3395 static tree
3396 cxx_eval_trinary_expression (const constexpr_ctx *ctx, tree t,
3397 bool lval,
3398 bool *non_constant_p, bool *overflow_p)
3400 int i;
3401 tree args[3];
3402 tree val;
3404 for (i = 0; i < 3; i++)
3406 args[i] = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, i),
3407 lval,
3408 non_constant_p, overflow_p);
3409 VERIFY_CONSTANT (args[i]);
3412 val = fold_ternary_loc (EXPR_LOCATION (t), TREE_CODE (t), TREE_TYPE (t),
3413 args[0], args[1], args[2]);
3414 if (val == NULL_TREE)
3415 return t;
3416 VERIFY_CONSTANT (val);
3417 return val;
3420 /* True if T was declared in a function declared to be constexpr, and
3421 therefore potentially constant in C++14. */
3423 bool
3424 var_in_constexpr_fn (tree t)
3426 tree ctx = DECL_CONTEXT (t);
3427 return (ctx && TREE_CODE (ctx) == FUNCTION_DECL
3428 && DECL_DECLARED_CONSTEXPR_P (ctx));
3431 /* True if T was declared in a function that might be constexpr: either a
3432 function that was declared constexpr, or a C++17 lambda op(). */
3434 bool
3435 var_in_maybe_constexpr_fn (tree t)
3437 if (cxx_dialect >= cxx17
3438 && DECL_FUNCTION_SCOPE_P (t)
3439 && LAMBDA_FUNCTION_P (DECL_CONTEXT (t)))
3440 return true;
3441 return var_in_constexpr_fn (t);
3444 /* We're assigning INIT to TARGET. In do_build_copy_constructor and
3445 build_over_call we implement trivial copy of a class with tail padding using
3446 assignment of character arrays, which is valid in normal code, but not in
3447 constexpr evaluation. We don't need to worry about clobbering tail padding
3448 in constexpr evaluation, so strip the type punning. */
3450 static void
3451 maybe_simplify_trivial_copy (tree &target, tree &init)
3453 if (TREE_CODE (target) == MEM_REF
3454 && TREE_CODE (init) == MEM_REF
3455 && TREE_TYPE (target) == TREE_TYPE (init)
3456 && TREE_CODE (TREE_TYPE (target)) == ARRAY_TYPE
3457 && TREE_TYPE (TREE_TYPE (target)) == unsigned_char_type_node)
3459 target = build_fold_indirect_ref (TREE_OPERAND (target, 0));
3460 init = build_fold_indirect_ref (TREE_OPERAND (init, 0));
3464 /* Evaluate an INIT_EXPR or MODIFY_EXPR. */
3466 static tree
3467 cxx_eval_store_expression (const constexpr_ctx *ctx, tree t,
3468 bool lval,
3469 bool *non_constant_p, bool *overflow_p)
3471 constexpr_ctx new_ctx = *ctx;
3473 tree init = TREE_OPERAND (t, 1);
3474 if (TREE_CLOBBER_P (init))
3475 /* Just ignore clobbers. */
3476 return void_node;
3478 /* First we figure out where we're storing to. */
3479 tree target = TREE_OPERAND (t, 0);
3481 maybe_simplify_trivial_copy (target, init);
3483 tree type = TREE_TYPE (target);
3484 target = cxx_eval_constant_expression (ctx, target,
3485 true,
3486 non_constant_p, overflow_p);
3487 if (*non_constant_p)
3488 return t;
3490 /* cxx_eval_array_reference for lval = true allows references one past
3491 end of array, because it does not know if it is just taking address
3492 (which is valid), or actual dereference. Here we know it is
3493 a dereference, so diagnose it here. */
3494 for (tree probe = target; probe; )
3496 switch (TREE_CODE (probe))
3498 case ARRAY_REF:
3499 tree nelts, ary;
3500 ary = TREE_OPERAND (probe, 0);
3501 nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary),
3502 non_constant_p, overflow_p);
3503 VERIFY_CONSTANT (nelts);
3504 gcc_assert (TREE_CODE (nelts) == INTEGER_CST
3505 && TREE_CODE (TREE_OPERAND (probe, 1)) == INTEGER_CST);
3506 if (wi::to_widest (TREE_OPERAND (probe, 1)) == wi::to_widest (nelts))
3508 diag_array_subscript (ctx, ary, TREE_OPERAND (probe, 1));
3509 *non_constant_p = true;
3510 return t;
3512 /* FALLTHRU */
3514 case BIT_FIELD_REF:
3515 case COMPONENT_REF:
3516 probe = TREE_OPERAND (probe, 0);
3517 continue;
3519 default:
3520 probe = NULL_TREE;
3521 continue;
3525 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (target), type))
3527 /* For initialization of an empty base, the original target will be
3528 *(base*)this, which the above evaluation resolves to the object
3529 argument, which has the derived type rather than the base type. In
3530 this situation, just evaluate the initializer and return, since
3531 there's no actual data to store. */
3532 gcc_assert (is_empty_class (type));
3533 return cxx_eval_constant_expression (ctx, init, false,
3534 non_constant_p, overflow_p);
3537 /* And then find the underlying variable. */
3538 vec<tree,va_gc> *refs = make_tree_vector();
3539 tree object = NULL_TREE;
3540 for (tree probe = target; object == NULL_TREE; )
3542 switch (TREE_CODE (probe))
3544 case BIT_FIELD_REF:
3545 case COMPONENT_REF:
3546 case ARRAY_REF:
3547 vec_safe_push (refs, TREE_OPERAND (probe, 1));
3548 vec_safe_push (refs, TREE_TYPE (probe));
3549 probe = TREE_OPERAND (probe, 0);
3550 break;
3552 default:
3553 object = probe;
3557 /* And then find/build up our initializer for the path to the subobject
3558 we're initializing. */
3559 tree *valp;
3560 if (object == ctx->object && VAR_P (object)
3561 && DECL_NAME (object) && ctx->call == NULL)
3562 /* The variable we're building up an aggregate initializer for is outside
3563 the constant-expression, so don't evaluate the store. We check
3564 DECL_NAME to handle TARGET_EXPR temporaries, which are fair game. */
3565 valp = NULL;
3566 else if (DECL_P (object))
3567 valp = ctx->values->get (object);
3568 else
3569 valp = NULL;
3570 if (!valp)
3572 /* A constant-expression cannot modify objects from outside the
3573 constant-expression. */
3574 if (!ctx->quiet)
3575 error ("modification of %qE is not a constant expression", object);
3576 *non_constant_p = true;
3577 return t;
3579 type = TREE_TYPE (object);
3580 bool no_zero_init = true;
3582 vec<tree,va_gc> *ctors = make_tree_vector ();
3583 while (!refs->is_empty())
3585 if (*valp == NULL_TREE)
3587 *valp = build_constructor (type, NULL);
3588 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3590 else if (TREE_CODE (*valp) == STRING_CST)
3592 /* An array was initialized with a string constant, and now
3593 we're writing into one of its elements. Explode the
3594 single initialization into a set of element
3595 initializations. */
3596 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
3598 tree string = *valp;
3599 tree elt_type = TREE_TYPE (type);
3600 unsigned chars_per_elt = (TYPE_PRECISION (elt_type)
3601 / TYPE_PRECISION (char_type_node));
3602 unsigned num_elts = TREE_STRING_LENGTH (string) / chars_per_elt;
3603 tree ary_ctor = build_constructor (type, NULL);
3605 vec_safe_reserve (CONSTRUCTOR_ELTS (ary_ctor), num_elts);
3606 for (unsigned ix = 0; ix != num_elts; ix++)
3608 constructor_elt elt =
3610 build_int_cst (size_type_node, ix),
3611 extract_string_elt (string, chars_per_elt, ix)
3613 CONSTRUCTOR_ELTS (ary_ctor)->quick_push (elt);
3616 *valp = ary_ctor;
3619 /* If the value of object is already zero-initialized, any new ctors for
3620 subobjects will also be zero-initialized. */
3621 no_zero_init = CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp);
3623 vec_safe_push (ctors, *valp);
3625 enum tree_code code = TREE_CODE (type);
3626 type = refs->pop();
3627 tree index = refs->pop();
3629 constructor_elt *cep = NULL;
3630 if (code == ARRAY_TYPE)
3632 HOST_WIDE_INT i
3633 = find_array_ctor_elt (*valp, index, /*insert*/true);
3634 gcc_assert (i >= 0);
3635 cep = CONSTRUCTOR_ELT (*valp, i);
3636 gcc_assert (TREE_CODE (cep->index) != RANGE_EXPR);
3638 else
3640 gcc_assert (TREE_CODE (index) == FIELD_DECL);
3642 /* We must keep the CONSTRUCTOR's ELTS in FIELD order.
3643 Usually we meet initializers in that order, but it is
3644 possible for base types to be placed not in program
3645 order. */
3646 tree fields = TYPE_FIELDS (DECL_CONTEXT (index));
3647 unsigned HOST_WIDE_INT idx;
3649 if (code == UNION_TYPE && CONSTRUCTOR_NELTS (*valp)
3650 && CONSTRUCTOR_ELT (*valp, 0)->index != index)
3651 /* Changing active member. */
3652 vec_safe_truncate (CONSTRUCTOR_ELTS (*valp), 0);
3654 for (idx = 0;
3655 vec_safe_iterate (CONSTRUCTOR_ELTS (*valp), idx, &cep);
3656 idx++, fields = DECL_CHAIN (fields))
3658 if (index == cep->index)
3659 goto found;
3661 /* The field we're initializing must be on the field
3662 list. Look to see if it is present before the
3663 field the current ELT initializes. */
3664 for (; fields != cep->index; fields = DECL_CHAIN (fields))
3665 if (index == fields)
3666 goto insert;
3669 /* We fell off the end of the CONSTRUCTOR, so insert a new
3670 entry at the end. */
3671 insert:
3673 constructor_elt ce = { index, NULL_TREE };
3675 vec_safe_insert (CONSTRUCTOR_ELTS (*valp), idx, ce);
3676 cep = CONSTRUCTOR_ELT (*valp, idx);
3678 found:;
3680 valp = &cep->value;
3682 release_tree_vector (refs);
3684 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
3686 /* Create a new CONSTRUCTOR in case evaluation of the initializer
3687 wants to modify it. */
3688 if (*valp == NULL_TREE)
3690 *valp = build_constructor (type, NULL);
3691 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3693 else if (TREE_CODE (*valp) == PTRMEM_CST)
3694 *valp = cplus_expand_constant (*valp);
3695 new_ctx.ctor = *valp;
3696 new_ctx.object = target;
3699 init = cxx_eval_constant_expression (&new_ctx, init, false,
3700 non_constant_p, overflow_p);
3701 /* Don't share a CONSTRUCTOR that might be changed later. */
3702 init = unshare_constructor (init);
3703 if (target == object)
3704 /* The hash table might have moved since the get earlier. */
3705 valp = ctx->values->get (object);
3707 if (TREE_CODE (init) == CONSTRUCTOR)
3709 /* An outer ctx->ctor might be pointing to *valp, so replace
3710 its contents. */
3711 CONSTRUCTOR_ELTS (*valp) = CONSTRUCTOR_ELTS (init);
3712 TREE_CONSTANT (*valp) = TREE_CONSTANT (init);
3713 TREE_SIDE_EFFECTS (*valp) = TREE_SIDE_EFFECTS (init);
3714 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp)
3715 = CONSTRUCTOR_NO_IMPLICIT_ZERO (init);
3717 else
3718 *valp = init;
3720 /* Update TREE_CONSTANT and TREE_SIDE_EFFECTS on enclosing
3721 CONSTRUCTORs, if any. */
3722 tree elt;
3723 unsigned i;
3724 bool c = TREE_CONSTANT (init);
3725 bool s = TREE_SIDE_EFFECTS (init);
3726 if (!c || s)
3727 FOR_EACH_VEC_SAFE_ELT (ctors, i, elt)
3729 if (!c)
3730 TREE_CONSTANT (elt) = false;
3731 if (s)
3732 TREE_SIDE_EFFECTS (elt) = true;
3734 release_tree_vector (ctors);
3736 if (*non_constant_p)
3737 return t;
3738 else if (lval)
3739 return target;
3740 else
3741 return init;
3744 /* Evaluate a ++ or -- expression. */
3746 static tree
3747 cxx_eval_increment_expression (const constexpr_ctx *ctx, tree t,
3748 bool lval,
3749 bool *non_constant_p, bool *overflow_p)
3751 enum tree_code code = TREE_CODE (t);
3752 tree type = TREE_TYPE (t);
3753 tree op = TREE_OPERAND (t, 0);
3754 tree offset = TREE_OPERAND (t, 1);
3755 gcc_assert (TREE_CONSTANT (offset));
3757 /* The operand as an lvalue. */
3758 op = cxx_eval_constant_expression (ctx, op, true,
3759 non_constant_p, overflow_p);
3761 /* The operand as an rvalue. */
3762 tree val
3763 = cxx_eval_constant_expression (ctx, op, false,
3764 non_constant_p, overflow_p);
3765 /* Don't VERIFY_CONSTANT if this might be dealing with a pointer to
3766 a local array in a constexpr function. */
3767 bool ptr = POINTER_TYPE_P (TREE_TYPE (val));
3768 if (!ptr)
3769 VERIFY_CONSTANT (val);
3771 /* The modified value. */
3772 bool inc = (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR);
3773 tree mod;
3774 if (POINTER_TYPE_P (type))
3776 /* The middle end requires pointers to use POINTER_PLUS_EXPR. */
3777 offset = convert_to_ptrofftype (offset);
3778 if (!inc)
3779 offset = fold_build1 (NEGATE_EXPR, TREE_TYPE (offset), offset);
3780 mod = fold_build2 (POINTER_PLUS_EXPR, type, val, offset);
3782 else
3783 mod = fold_build2 (inc ? PLUS_EXPR : MINUS_EXPR, type, val, offset);
3784 if (!ptr)
3785 VERIFY_CONSTANT (mod);
3787 /* Storing the modified value. */
3788 tree store = build2 (MODIFY_EXPR, type, op, mod);
3789 cxx_eval_constant_expression (ctx, store,
3790 true, non_constant_p, overflow_p);
3792 /* And the value of the expression. */
3793 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
3795 /* Prefix ops are lvalues. */
3796 if (lval)
3797 return op;
3798 else
3799 /* But we optimize when the caller wants an rvalue. */
3800 return mod;
3802 else
3803 /* Postfix ops are rvalues. */
3804 return val;
3807 /* Predicates for the meaning of *jump_target. */
3809 static bool
3810 returns (tree *jump_target)
3812 return *jump_target
3813 && (TREE_CODE (*jump_target) == RETURN_EXPR
3814 || (TREE_CODE (*jump_target) == LABEL_DECL
3815 && LABEL_DECL_CDTOR (*jump_target)));
3818 static bool
3819 breaks (tree *jump_target)
3821 return *jump_target
3822 && ((TREE_CODE (*jump_target) == LABEL_DECL
3823 && LABEL_DECL_BREAK (*jump_target))
3824 || TREE_CODE (*jump_target) == EXIT_EXPR);
3827 static bool
3828 continues (tree *jump_target)
3830 return *jump_target
3831 && TREE_CODE (*jump_target) == LABEL_DECL
3832 && LABEL_DECL_CONTINUE (*jump_target);
3835 static bool
3836 switches (tree *jump_target)
3838 return *jump_target
3839 && TREE_CODE (*jump_target) == INTEGER_CST;
3842 /* Subroutine of cxx_eval_statement_list. Determine whether the statement
3843 STMT matches *jump_target. If we're looking for a case label and we see
3844 the default label, note it in ctx->css_state. */
3846 static bool
3847 label_matches (const constexpr_ctx *ctx, tree *jump_target, tree stmt)
3849 switch (TREE_CODE (*jump_target))
3851 case LABEL_DECL:
3852 if (TREE_CODE (stmt) == LABEL_EXPR
3853 && LABEL_EXPR_LABEL (stmt) == *jump_target)
3854 return true;
3855 break;
3857 case INTEGER_CST:
3858 if (TREE_CODE (stmt) == CASE_LABEL_EXPR)
3860 gcc_assert (ctx->css_state != NULL);
3861 if (!CASE_LOW (stmt))
3863 /* default: should appear just once in a SWITCH_EXPR
3864 body (excluding nested SWITCH_EXPR). */
3865 gcc_assert (*ctx->css_state != css_default_seen);
3866 /* When evaluating SWITCH_EXPR body for the second time,
3867 return true for the default: label. */
3868 if (*ctx->css_state == css_default_processing)
3869 return true;
3870 *ctx->css_state = css_default_seen;
3872 else if (CASE_HIGH (stmt))
3874 if (tree_int_cst_le (CASE_LOW (stmt), *jump_target)
3875 && tree_int_cst_le (*jump_target, CASE_HIGH (stmt)))
3876 return true;
3878 else if (tree_int_cst_equal (*jump_target, CASE_LOW (stmt)))
3879 return true;
3881 break;
3883 default:
3884 gcc_unreachable ();
3886 return false;
3889 /* Evaluate a STATEMENT_LIST for side-effects. Handles various jump
3890 semantics, for switch, break, continue, and return. */
3892 static tree
3893 cxx_eval_statement_list (const constexpr_ctx *ctx, tree t,
3894 bool *non_constant_p, bool *overflow_p,
3895 tree *jump_target)
3897 tree_stmt_iterator i;
3898 tree local_target;
3899 /* In a statement-expression we want to return the last value.
3900 For empty statement expression return void_node. */
3901 tree r = void_node;
3902 if (!jump_target)
3904 local_target = NULL_TREE;
3905 jump_target = &local_target;
3907 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
3909 tree stmt = tsi_stmt (i);
3910 if (TREE_CODE (stmt) == DEBUG_BEGIN_STMT)
3911 continue;
3912 r = cxx_eval_constant_expression (ctx, stmt, false,
3913 non_constant_p, overflow_p,
3914 jump_target);
3915 if (*non_constant_p)
3916 break;
3917 if (returns (jump_target) || breaks (jump_target))
3918 break;
3920 return r;
3923 /* Evaluate a LOOP_EXPR for side-effects. Handles break and return
3924 semantics; continue semantics are covered by cxx_eval_statement_list. */
3926 static tree
3927 cxx_eval_loop_expr (const constexpr_ctx *ctx, tree t,
3928 bool *non_constant_p, bool *overflow_p,
3929 tree *jump_target)
3931 constexpr_ctx new_ctx = *ctx;
3933 tree body = TREE_OPERAND (t, 0);
3934 int count = 0;
3937 hash_set<tree> save_exprs;
3938 new_ctx.save_exprs = &save_exprs;
3940 cxx_eval_constant_expression (&new_ctx, body, /*lval*/false,
3941 non_constant_p, overflow_p, jump_target);
3943 /* Forget saved values of SAVE_EXPRs. */
3944 for (hash_set<tree>::iterator iter = save_exprs.begin();
3945 iter != save_exprs.end(); ++iter)
3946 new_ctx.values->remove (*iter);
3947 if (++count >= constexpr_loop_limit)
3949 if (!ctx->quiet)
3950 error_at (EXPR_LOC_OR_LOC (t, input_location),
3951 "%<constexpr%> loop iteration count exceeds limit of %d "
3952 "(use -fconstexpr-loop-limit= to increase the limit)",
3953 constexpr_loop_limit);
3954 *non_constant_p = true;
3955 break;
3958 while (!returns (jump_target)
3959 && !breaks (jump_target)
3960 && !switches (jump_target)
3961 && !*non_constant_p);
3963 if (breaks (jump_target))
3964 *jump_target = NULL_TREE;
3966 return NULL_TREE;
3969 /* Evaluate a SWITCH_EXPR for side-effects. Handles switch and break jump
3970 semantics. */
3972 static tree
3973 cxx_eval_switch_expr (const constexpr_ctx *ctx, tree t,
3974 bool *non_constant_p, bool *overflow_p,
3975 tree *jump_target)
3977 tree cond = TREE_OPERAND (t, 0);
3978 cond = cxx_eval_constant_expression (ctx, cond, false,
3979 non_constant_p, overflow_p);
3980 VERIFY_CONSTANT (cond);
3981 *jump_target = cond;
3983 tree body = TREE_OPERAND (t, 1);
3984 constexpr_ctx new_ctx = *ctx;
3985 constexpr_switch_state css = css_default_not_seen;
3986 new_ctx.css_state = &css;
3987 cxx_eval_constant_expression (&new_ctx, body, false,
3988 non_constant_p, overflow_p, jump_target);
3989 if (switches (jump_target) && css == css_default_seen)
3991 /* If the SWITCH_EXPR body has default: label, process it once again,
3992 this time instructing label_matches to return true for default:
3993 label on switches (jump_target). */
3994 css = css_default_processing;
3995 cxx_eval_constant_expression (&new_ctx, body, false,
3996 non_constant_p, overflow_p, jump_target);
3998 if (breaks (jump_target) || switches (jump_target))
3999 *jump_target = NULL_TREE;
4000 return NULL_TREE;
4003 /* Find the object of TYPE under initialization in CTX. */
4005 static tree
4006 lookup_placeholder (const constexpr_ctx *ctx, bool lval, tree type)
4008 if (!ctx)
4009 return NULL_TREE;
4011 /* We could use ctx->object unconditionally, but using ctx->ctor when we
4012 can is a minor optimization. */
4013 if (!lval && ctx->ctor && same_type_p (TREE_TYPE (ctx->ctor), type))
4014 return ctx->ctor;
4016 if (!ctx->object)
4017 return NULL_TREE;
4019 /* Since an object cannot have a field of its own type, we can search outward
4020 from ctx->object to find the unique containing object of TYPE. */
4021 tree ob = ctx->object;
4022 while (ob)
4024 if (same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (ob), type))
4025 break;
4026 if (handled_component_p (ob))
4027 ob = TREE_OPERAND (ob, 0);
4028 else
4029 ob = NULL_TREE;
4032 return ob;
4035 /* Attempt to reduce the expression T to a constant value.
4036 On failure, issue diagnostic and return error_mark_node. */
4037 /* FIXME unify with c_fully_fold */
4038 /* FIXME overflow_p is too global */
4040 static tree
4041 cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t,
4042 bool lval,
4043 bool *non_constant_p, bool *overflow_p,
4044 tree *jump_target)
4046 constexpr_ctx new_ctx;
4047 tree r = t;
4049 if (jump_target && *jump_target)
4051 /* If we are jumping, ignore all statements/expressions except those
4052 that could have LABEL_EXPR or CASE_LABEL_EXPR in their bodies. */
4053 switch (TREE_CODE (t))
4055 case BIND_EXPR:
4056 case STATEMENT_LIST:
4057 case LOOP_EXPR:
4058 case COND_EXPR:
4059 break;
4060 case LABEL_EXPR:
4061 case CASE_LABEL_EXPR:
4062 if (label_matches (ctx, jump_target, t))
4063 /* Found it. */
4064 *jump_target = NULL_TREE;
4065 return NULL_TREE;
4066 default:
4067 return NULL_TREE;
4070 if (t == error_mark_node)
4072 *non_constant_p = true;
4073 return t;
4075 if (CONSTANT_CLASS_P (t))
4077 if (TREE_OVERFLOW (t))
4079 if (!ctx->quiet)
4080 permerror (input_location, "overflow in constant expression");
4081 if (!flag_permissive || ctx->quiet)
4082 *overflow_p = true;
4085 if (TREE_CODE (t) == INTEGER_CST
4086 && TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE
4087 && !integer_zerop (t))
4089 if (!ctx->quiet)
4090 error ("value %qE of type %qT is not a constant expression",
4091 t, TREE_TYPE (t));
4092 *non_constant_p = true;
4095 return t;
4098 tree_code tcode = TREE_CODE (t);
4099 switch (tcode)
4101 case RESULT_DECL:
4102 if (lval)
4103 return t;
4104 /* We ask for an rvalue for the RESULT_DECL when indirecting
4105 through an invisible reference, or in named return value
4106 optimization. */
4107 return (*ctx->values->get (t));
4109 case VAR_DECL:
4110 if (DECL_HAS_VALUE_EXPR_P (t))
4111 return cxx_eval_constant_expression (ctx, DECL_VALUE_EXPR (t),
4112 lval, non_constant_p, overflow_p);
4113 /* fall through */
4114 case CONST_DECL:
4115 /* We used to not check lval for CONST_DECL, but darwin.c uses
4116 CONST_DECL for aggregate constants. */
4117 if (lval)
4118 return t;
4119 if (COMPLETE_TYPE_P (TREE_TYPE (t))
4120 && is_really_empty_class (TREE_TYPE (t)))
4122 /* If the class is empty, we aren't actually loading anything. */
4123 r = build_constructor (TREE_TYPE (t), NULL);
4124 TREE_CONSTANT (r) = true;
4126 else if (ctx->strict)
4127 r = decl_really_constant_value (t);
4128 else
4129 r = decl_constant_value (t);
4130 if (TREE_CODE (r) == TARGET_EXPR
4131 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
4132 r = TARGET_EXPR_INITIAL (r);
4133 if (VAR_P (r))
4134 if (tree *p = ctx->values->get (r))
4135 if (*p != NULL_TREE)
4136 r = *p;
4137 if (DECL_P (r))
4139 if (!ctx->quiet)
4140 non_const_var_error (r);
4141 *non_constant_p = true;
4143 break;
4145 case DEBUG_BEGIN_STMT:
4146 /* ??? It might be nice to retain this information somehow, so
4147 as to be able to step into a constexpr function call. */
4148 /* Fall through. */
4150 case FUNCTION_DECL:
4151 case TEMPLATE_DECL:
4152 case LABEL_DECL:
4153 case LABEL_EXPR:
4154 case CASE_LABEL_EXPR:
4155 case PREDICT_EXPR:
4156 return t;
4158 case PARM_DECL:
4159 if (lval && TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
4160 /* glvalue use. */;
4161 else if (tree *p = ctx->values->get (r))
4162 r = *p;
4163 else if (lval)
4164 /* Defer in case this is only used for its type. */;
4165 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4166 /* Defer, there's no lvalue->rvalue conversion. */;
4167 else if (COMPLETE_TYPE_P (TREE_TYPE (t))
4168 && is_really_empty_class (TREE_TYPE (t)))
4170 /* If the class is empty, we aren't actually loading anything. */
4171 r = build_constructor (TREE_TYPE (t), NULL);
4172 TREE_CONSTANT (r) = true;
4174 else
4176 if (!ctx->quiet)
4177 error ("%qE is not a constant expression", t);
4178 *non_constant_p = true;
4180 break;
4182 case CALL_EXPR:
4183 case AGGR_INIT_EXPR:
4184 r = cxx_eval_call_expression (ctx, t, lval,
4185 non_constant_p, overflow_p);
4186 break;
4188 case DECL_EXPR:
4190 r = DECL_EXPR_DECL (t);
4191 if (AGGREGATE_TYPE_P (TREE_TYPE (r))
4192 || VECTOR_TYPE_P (TREE_TYPE (r)))
4194 new_ctx = *ctx;
4195 new_ctx.object = r;
4196 new_ctx.ctor = build_constructor (TREE_TYPE (r), NULL);
4197 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4198 new_ctx.values->put (r, new_ctx.ctor);
4199 ctx = &new_ctx;
4202 if (tree init = DECL_INITIAL (r))
4204 init = cxx_eval_constant_expression (ctx, init,
4205 false,
4206 non_constant_p, overflow_p);
4207 /* Don't share a CONSTRUCTOR that might be changed. */
4208 init = unshare_constructor (init);
4209 ctx->values->put (r, init);
4211 else if (ctx == &new_ctx)
4212 /* We gave it a CONSTRUCTOR above. */;
4213 else
4214 ctx->values->put (r, NULL_TREE);
4216 break;
4218 case TARGET_EXPR:
4219 if (!literal_type_p (TREE_TYPE (t)))
4221 if (!ctx->quiet)
4223 error ("temporary of non-literal type %qT in a "
4224 "constant expression", TREE_TYPE (t));
4225 explain_non_literal_class (TREE_TYPE (t));
4227 *non_constant_p = true;
4228 break;
4230 if ((AGGREGATE_TYPE_P (TREE_TYPE (t)) || VECTOR_TYPE_P (TREE_TYPE (t))))
4232 /* We're being expanded without an explicit target, so start
4233 initializing a new object; expansion with an explicit target
4234 strips the TARGET_EXPR before we get here. */
4235 new_ctx = *ctx;
4236 new_ctx.ctor = build_constructor (TREE_TYPE (t), NULL);
4237 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4238 new_ctx.object = TARGET_EXPR_SLOT (t);
4239 ctx->values->put (new_ctx.object, new_ctx.ctor);
4240 ctx = &new_ctx;
4242 /* Pass false for 'lval' because this indicates
4243 initialization of a temporary. */
4244 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4245 false,
4246 non_constant_p, overflow_p);
4247 if (!*non_constant_p)
4248 /* Adjust the type of the result to the type of the temporary. */
4249 r = adjust_temp_type (TREE_TYPE (t), r);
4250 if (lval)
4252 tree slot = TARGET_EXPR_SLOT (t);
4253 r = unshare_constructor (r);
4254 ctx->values->put (slot, r);
4255 return slot;
4257 break;
4259 case INIT_EXPR:
4260 case MODIFY_EXPR:
4261 gcc_assert (jump_target == NULL || *jump_target == NULL_TREE);
4262 r = cxx_eval_store_expression (ctx, t, lval,
4263 non_constant_p, overflow_p);
4264 break;
4266 case SCOPE_REF:
4267 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4268 lval,
4269 non_constant_p, overflow_p);
4270 break;
4272 case RETURN_EXPR:
4273 if (TREE_OPERAND (t, 0) != NULL_TREE)
4274 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4275 lval,
4276 non_constant_p, overflow_p);
4277 if (jump_target)
4278 *jump_target = t;
4279 else
4281 /* Can happen with ({ return true; }) && false; passed to
4282 maybe_constant_value. There is nothing to jump over in this
4283 case, and the bug will be diagnosed later. */
4284 gcc_assert (ctx->quiet);
4285 *non_constant_p = true;
4287 break;
4289 case SAVE_EXPR:
4290 /* Avoid evaluating a SAVE_EXPR more than once. */
4291 if (tree *p = ctx->values->get (t))
4292 r = *p;
4293 else
4295 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), false,
4296 non_constant_p, overflow_p);
4297 ctx->values->put (t, r);
4298 if (ctx->save_exprs)
4299 ctx->save_exprs->add (t);
4301 break;
4303 case NON_LVALUE_EXPR:
4304 case TRY_CATCH_EXPR:
4305 case TRY_BLOCK:
4306 case CLEANUP_POINT_EXPR:
4307 case MUST_NOT_THROW_EXPR:
4308 case EXPR_STMT:
4309 case EH_SPEC_BLOCK:
4310 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4311 lval,
4312 non_constant_p, overflow_p,
4313 jump_target);
4314 break;
4316 case TRY_FINALLY_EXPR:
4317 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4318 non_constant_p, overflow_p,
4319 jump_target);
4320 if (!*non_constant_p)
4321 /* Also evaluate the cleanup. */
4322 cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1), true,
4323 non_constant_p, overflow_p,
4324 jump_target);
4325 break;
4327 /* These differ from cxx_eval_unary_expression in that this doesn't
4328 check for a constant operand or result; an address can be
4329 constant without its operand being, and vice versa. */
4330 case MEM_REF:
4331 case INDIRECT_REF:
4332 r = cxx_eval_indirect_ref (ctx, t, lval,
4333 non_constant_p, overflow_p);
4334 break;
4336 case ADDR_EXPR:
4338 tree oldop = TREE_OPERAND (t, 0);
4339 tree op = cxx_eval_constant_expression (ctx, oldop,
4340 /*lval*/true,
4341 non_constant_p, overflow_p);
4342 /* Don't VERIFY_CONSTANT here. */
4343 if (*non_constant_p)
4344 return t;
4345 gcc_checking_assert (TREE_CODE (op) != CONSTRUCTOR);
4346 /* This function does more aggressive folding than fold itself. */
4347 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
4348 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
4349 return t;
4350 break;
4353 case REALPART_EXPR:
4354 case IMAGPART_EXPR:
4355 if (lval)
4357 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4358 non_constant_p, overflow_p);
4359 if (r == error_mark_node)
4361 else if (r == TREE_OPERAND (t, 0))
4362 r = t;
4363 else
4364 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), r);
4365 break;
4367 /* FALLTHRU */
4368 case CONJ_EXPR:
4369 case FIX_TRUNC_EXPR:
4370 case FLOAT_EXPR:
4371 case NEGATE_EXPR:
4372 case ABS_EXPR:
4373 case BIT_NOT_EXPR:
4374 case TRUTH_NOT_EXPR:
4375 case FIXED_CONVERT_EXPR:
4376 r = cxx_eval_unary_expression (ctx, t, lval,
4377 non_constant_p, overflow_p);
4378 break;
4380 case SIZEOF_EXPR:
4381 r = fold_sizeof_expr (t);
4382 VERIFY_CONSTANT (r);
4383 break;
4385 case COMPOUND_EXPR:
4387 /* check_return_expr sometimes wraps a TARGET_EXPR in a
4388 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
4389 introduced by build_call_a. */
4390 tree op0 = TREE_OPERAND (t, 0);
4391 tree op1 = TREE_OPERAND (t, 1);
4392 STRIP_NOPS (op1);
4393 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
4394 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
4395 r = cxx_eval_constant_expression (ctx, op0,
4396 lval, non_constant_p, overflow_p,
4397 jump_target);
4398 else
4400 /* Check that the LHS is constant and then discard it. */
4401 cxx_eval_constant_expression (ctx, op0,
4402 true, non_constant_p, overflow_p,
4403 jump_target);
4404 if (*non_constant_p)
4405 return t;
4406 op1 = TREE_OPERAND (t, 1);
4407 r = cxx_eval_constant_expression (ctx, op1,
4408 lval, non_constant_p, overflow_p,
4409 jump_target);
4412 break;
4414 case POINTER_PLUS_EXPR:
4415 case POINTER_DIFF_EXPR:
4416 case PLUS_EXPR:
4417 case MINUS_EXPR:
4418 case MULT_EXPR:
4419 case TRUNC_DIV_EXPR:
4420 case CEIL_DIV_EXPR:
4421 case FLOOR_DIV_EXPR:
4422 case ROUND_DIV_EXPR:
4423 case TRUNC_MOD_EXPR:
4424 case CEIL_MOD_EXPR:
4425 case ROUND_MOD_EXPR:
4426 case RDIV_EXPR:
4427 case EXACT_DIV_EXPR:
4428 case MIN_EXPR:
4429 case MAX_EXPR:
4430 case LSHIFT_EXPR:
4431 case RSHIFT_EXPR:
4432 case LROTATE_EXPR:
4433 case RROTATE_EXPR:
4434 case BIT_IOR_EXPR:
4435 case BIT_XOR_EXPR:
4436 case BIT_AND_EXPR:
4437 case TRUTH_XOR_EXPR:
4438 case LT_EXPR:
4439 case LE_EXPR:
4440 case GT_EXPR:
4441 case GE_EXPR:
4442 case EQ_EXPR:
4443 case NE_EXPR:
4444 case UNORDERED_EXPR:
4445 case ORDERED_EXPR:
4446 case UNLT_EXPR:
4447 case UNLE_EXPR:
4448 case UNGT_EXPR:
4449 case UNGE_EXPR:
4450 case UNEQ_EXPR:
4451 case LTGT_EXPR:
4452 case RANGE_EXPR:
4453 case COMPLEX_EXPR:
4454 r = cxx_eval_binary_expression (ctx, t, lval,
4455 non_constant_p, overflow_p);
4456 break;
4458 /* fold can introduce non-IF versions of these; still treat them as
4459 short-circuiting. */
4460 case TRUTH_AND_EXPR:
4461 case TRUTH_ANDIF_EXPR:
4462 r = cxx_eval_logical_expression (ctx, t, boolean_false_node,
4463 boolean_true_node,
4464 lval,
4465 non_constant_p, overflow_p);
4466 break;
4468 case TRUTH_OR_EXPR:
4469 case TRUTH_ORIF_EXPR:
4470 r = cxx_eval_logical_expression (ctx, t, boolean_true_node,
4471 boolean_false_node,
4472 lval,
4473 non_constant_p, overflow_p);
4474 break;
4476 case ARRAY_REF:
4477 r = cxx_eval_array_reference (ctx, t, lval,
4478 non_constant_p, overflow_p);
4479 break;
4481 case COMPONENT_REF:
4482 if (is_overloaded_fn (t))
4484 /* We can only get here in checking mode via
4485 build_non_dependent_expr, because any expression that
4486 calls or takes the address of the function will have
4487 pulled a FUNCTION_DECL out of the COMPONENT_REF. */
4488 gcc_checking_assert (ctx->quiet || errorcount);
4489 *non_constant_p = true;
4490 return t;
4492 r = cxx_eval_component_reference (ctx, t, lval,
4493 non_constant_p, overflow_p);
4494 break;
4496 case BIT_FIELD_REF:
4497 r = cxx_eval_bit_field_ref (ctx, t, lval,
4498 non_constant_p, overflow_p);
4499 break;
4501 case COND_EXPR:
4502 if (jump_target && *jump_target)
4504 /* When jumping to a label, the label might be either in the
4505 then or else blocks, so process then block first in skipping
4506 mode first, and if we are still in the skipping mode at its end,
4507 process the else block too. */
4508 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4509 lval, non_constant_p, overflow_p,
4510 jump_target);
4511 if (*jump_target)
4512 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
4513 lval, non_constant_p, overflow_p,
4514 jump_target);
4515 break;
4517 r = cxx_eval_conditional_expression (ctx, t, lval,
4518 non_constant_p, overflow_p,
4519 jump_target);
4520 break;
4521 case VEC_COND_EXPR:
4522 r = cxx_eval_vector_conditional_expression (ctx, t, non_constant_p,
4523 overflow_p);
4524 break;
4526 case CONSTRUCTOR:
4527 if (TREE_CONSTANT (t))
4529 /* Don't re-process a constant CONSTRUCTOR, but do fold it to
4530 VECTOR_CST if applicable. */
4531 /* FIXME after GCC 6 branches, make the verify unconditional. */
4532 if (CHECKING_P)
4533 verify_constructor_flags (t);
4534 else
4535 recompute_constructor_flags (t);
4536 if (TREE_CONSTANT (t))
4537 return fold (t);
4539 r = cxx_eval_bare_aggregate (ctx, t, lval,
4540 non_constant_p, overflow_p);
4541 break;
4543 case VEC_INIT_EXPR:
4544 /* We can get this in a defaulted constructor for a class with a
4545 non-static data member of array type. Either the initializer will
4546 be NULL, meaning default-initialization, or it will be an lvalue
4547 or xvalue of the same type, meaning direct-initialization from the
4548 corresponding member. */
4549 r = cxx_eval_vec_init (ctx, t, lval,
4550 non_constant_p, overflow_p);
4551 break;
4553 case FMA_EXPR:
4554 case VEC_PERM_EXPR:
4555 r = cxx_eval_trinary_expression (ctx, t, lval,
4556 non_constant_p, overflow_p);
4557 break;
4559 case CONVERT_EXPR:
4560 case VIEW_CONVERT_EXPR:
4561 case NOP_EXPR:
4562 case UNARY_PLUS_EXPR:
4564 tree oldop = TREE_OPERAND (t, 0);
4566 tree op = cxx_eval_constant_expression (ctx, oldop,
4567 lval,
4568 non_constant_p, overflow_p);
4569 if (*non_constant_p)
4570 return t;
4571 tree type = TREE_TYPE (t);
4572 if (TREE_CODE (op) == PTRMEM_CST
4573 && !TYPE_PTRMEM_P (type))
4574 op = cplus_expand_constant (op);
4575 if (TREE_CODE (op) == PTRMEM_CST && tcode == NOP_EXPR)
4577 if (same_type_ignoring_top_level_qualifiers_p (type,
4578 TREE_TYPE (op))
4579 || can_convert_qual (type, op))
4580 return cp_fold_convert (type, op);
4581 else
4583 if (!ctx->quiet)
4584 error_at (EXPR_LOC_OR_LOC (t, input_location),
4585 "a reinterpret_cast is not a constant expression");
4586 *non_constant_p = true;
4587 return t;
4591 if (POINTER_TYPE_P (type) && TREE_CODE (op) == INTEGER_CST)
4593 if (integer_zerop (op))
4595 if (TREE_CODE (type) == REFERENCE_TYPE)
4597 if (!ctx->quiet)
4598 error_at (EXPR_LOC_OR_LOC (t, input_location),
4599 "dereferencing a null pointer");
4600 *non_constant_p = true;
4601 return t;
4603 else if (TREE_CODE (TREE_TYPE (op)) == POINTER_TYPE)
4605 tree from = TREE_TYPE (op);
4607 if (!can_convert (type, from, tf_none))
4609 if (!ctx->quiet)
4610 error_at (EXPR_LOC_OR_LOC (t, input_location),
4611 "conversion of %qT null pointer to %qT "
4612 "is not a constant expression",
4613 from, type);
4614 *non_constant_p = true;
4615 return t;
4619 else
4621 /* This detects for example:
4622 reinterpret_cast<void*>(sizeof 0)
4624 if (!ctx->quiet)
4625 error_at (EXPR_LOC_OR_LOC (t, input_location),
4626 "%<reinterpret_cast<%T>(%E)%> is not "
4627 "a constant expression",
4628 type, op);
4629 *non_constant_p = true;
4630 return t;
4633 if (op == oldop && tcode != UNARY_PLUS_EXPR)
4634 /* We didn't fold at the top so we could check for ptr-int
4635 conversion. */
4636 return fold (t);
4637 if (tcode == UNARY_PLUS_EXPR)
4638 r = fold_convert (TREE_TYPE (t), op);
4639 else
4640 r = fold_build1 (tcode, type, op);
4641 /* Conversion of an out-of-range value has implementation-defined
4642 behavior; the language considers it different from arithmetic
4643 overflow, which is undefined. */
4644 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
4645 TREE_OVERFLOW (r) = false;
4647 break;
4649 case EMPTY_CLASS_EXPR:
4650 /* This is good enough for a function argument that might not get
4651 used, and they can't do anything with it, so just return it. */
4652 return t;
4654 case STATEMENT_LIST:
4655 new_ctx = *ctx;
4656 new_ctx.ctor = new_ctx.object = NULL_TREE;
4657 return cxx_eval_statement_list (&new_ctx, t,
4658 non_constant_p, overflow_p, jump_target);
4660 case BIND_EXPR:
4661 return cxx_eval_constant_expression (ctx, BIND_EXPR_BODY (t),
4662 lval,
4663 non_constant_p, overflow_p,
4664 jump_target);
4666 case PREINCREMENT_EXPR:
4667 case POSTINCREMENT_EXPR:
4668 case PREDECREMENT_EXPR:
4669 case POSTDECREMENT_EXPR:
4670 return cxx_eval_increment_expression (ctx, t,
4671 lval, non_constant_p, overflow_p);
4673 case LAMBDA_EXPR:
4674 case NEW_EXPR:
4675 case VEC_NEW_EXPR:
4676 case DELETE_EXPR:
4677 case VEC_DELETE_EXPR:
4678 case THROW_EXPR:
4679 case MODOP_EXPR:
4680 /* GCC internal stuff. */
4681 case VA_ARG_EXPR:
4682 case OBJ_TYPE_REF:
4683 case NON_DEPENDENT_EXPR:
4684 case BASELINK:
4685 case OFFSET_REF:
4686 if (!ctx->quiet)
4687 error_at (EXPR_LOC_OR_LOC (t, input_location),
4688 "expression %qE is not a constant expression", t);
4689 *non_constant_p = true;
4690 break;
4692 case PLACEHOLDER_EXPR:
4693 /* Use of the value or address of the current object. */
4694 if (tree ctor = lookup_placeholder (ctx, lval, TREE_TYPE (t)))
4695 return cxx_eval_constant_expression (ctx, ctor, lval,
4696 non_constant_p, overflow_p);
4697 /* A placeholder without a referent. We can get here when
4698 checking whether NSDMIs are noexcept, or in massage_init_elt;
4699 just say it's non-constant for now. */
4700 gcc_assert (ctx->quiet);
4701 *non_constant_p = true;
4702 break;
4704 case EXIT_EXPR:
4706 tree cond = TREE_OPERAND (t, 0);
4707 cond = cxx_eval_constant_expression (ctx, cond, /*lval*/false,
4708 non_constant_p, overflow_p);
4709 VERIFY_CONSTANT (cond);
4710 if (integer_nonzerop (cond))
4711 *jump_target = t;
4713 break;
4715 case GOTO_EXPR:
4716 *jump_target = TREE_OPERAND (t, 0);
4717 gcc_assert (breaks (jump_target) || continues (jump_target)
4718 /* Allow for jumping to a cdtor_label. */
4719 || returns (jump_target));
4720 break;
4722 case LOOP_EXPR:
4723 cxx_eval_loop_expr (ctx, t,
4724 non_constant_p, overflow_p, jump_target);
4725 break;
4727 case SWITCH_EXPR:
4728 cxx_eval_switch_expr (ctx, t,
4729 non_constant_p, overflow_p, jump_target);
4730 break;
4732 case REQUIRES_EXPR:
4733 /* It's possible to get a requires-expression in a constant
4734 expression. For example:
4736 template<typename T> concept bool C() {
4737 return requires (T t) { t; };
4740 template<typename T> requires !C<T>() void f(T);
4742 Normalization leaves f with the associated constraint
4743 '!requires (T t) { ... }' which is not transformed into
4744 a constraint. */
4745 if (!processing_template_decl)
4746 return evaluate_constraint_expression (t, NULL_TREE);
4747 else
4748 *non_constant_p = true;
4749 return t;
4751 case ANNOTATE_EXPR:
4752 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4753 lval,
4754 non_constant_p, overflow_p,
4755 jump_target);
4756 break;
4758 case USING_STMT:
4759 r = void_node;
4760 break;
4762 default:
4763 if (STATEMENT_CODE_P (TREE_CODE (t)))
4765 /* This function doesn't know how to deal with pre-genericize
4766 statements; this can only happen with statement-expressions,
4767 so for now just fail. */
4768 if (!ctx->quiet)
4769 error_at (EXPR_LOCATION (t),
4770 "statement is not a constant expression");
4772 else
4773 internal_error ("unexpected expression %qE of kind %s", t,
4774 get_tree_code_name (TREE_CODE (t)));
4775 *non_constant_p = true;
4776 break;
4779 if (r == error_mark_node)
4780 *non_constant_p = true;
4782 if (*non_constant_p)
4783 return t;
4784 else
4785 return r;
4788 static tree
4789 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant,
4790 bool strict = true, tree object = NULL_TREE)
4792 auto_timevar time (TV_CONSTEXPR);
4794 bool non_constant_p = false;
4795 bool overflow_p = false;
4796 hash_map<tree,tree> map;
4798 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL,
4799 allow_non_constant, strict };
4801 tree type = initialized_type (t);
4802 tree r = t;
4803 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
4805 /* In C++14 an NSDMI can participate in aggregate initialization,
4806 and can refer to the address of the object being initialized, so
4807 we need to pass in the relevant VAR_DECL if we want to do the
4808 evaluation in a single pass. The evaluation will dynamically
4809 update ctx.values for the VAR_DECL. We use the same strategy
4810 for C++11 constexpr constructors that refer to the object being
4811 initialized. */
4812 ctx.ctor = build_constructor (type, NULL);
4813 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctx.ctor) = true;
4814 if (!object)
4816 if (TREE_CODE (t) == TARGET_EXPR)
4817 object = TARGET_EXPR_SLOT (t);
4818 else if (TREE_CODE (t) == AGGR_INIT_EXPR)
4819 object = AGGR_INIT_EXPR_SLOT (t);
4821 ctx.object = object;
4822 if (object)
4823 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4824 (type, TREE_TYPE (object)));
4825 if (object && DECL_P (object))
4826 map.put (object, ctx.ctor);
4827 if (TREE_CODE (r) == TARGET_EXPR)
4828 /* Avoid creating another CONSTRUCTOR when we expand the
4829 TARGET_EXPR. */
4830 r = TARGET_EXPR_INITIAL (r);
4833 r = cxx_eval_constant_expression (&ctx, r,
4834 false, &non_constant_p, &overflow_p);
4836 verify_constant (r, allow_non_constant, &non_constant_p, &overflow_p);
4838 /* Mutable logic is a bit tricky: we want to allow initialization of
4839 constexpr variables with mutable members, but we can't copy those
4840 members to another constexpr variable. */
4841 if (TREE_CODE (r) == CONSTRUCTOR
4842 && CONSTRUCTOR_MUTABLE_POISON (r))
4844 if (!allow_non_constant)
4845 error ("%qE is not a constant expression because it refers to "
4846 "mutable subobjects of %qT", t, type);
4847 non_constant_p = true;
4850 if (TREE_CODE (r) == CONSTRUCTOR
4851 && CONSTRUCTOR_NO_IMPLICIT_ZERO (r))
4853 if (!allow_non_constant)
4854 error ("%qE is not a constant expression because it refers to "
4855 "an incompletely initialized variable", t);
4856 TREE_CONSTANT (r) = false;
4857 non_constant_p = true;
4860 /* Technically we should check this for all subexpressions, but that
4861 runs into problems with our internal representation of pointer
4862 subtraction and the 5.19 rules are still in flux. */
4863 if (CONVERT_EXPR_CODE_P (TREE_CODE (r))
4864 && ARITHMETIC_TYPE_P (TREE_TYPE (r))
4865 && TREE_CODE (TREE_OPERAND (r, 0)) == ADDR_EXPR)
4867 if (!allow_non_constant)
4868 error ("conversion from pointer type %qT "
4869 "to arithmetic type %qT in a constant expression",
4870 TREE_TYPE (TREE_OPERAND (r, 0)), TREE_TYPE (r));
4871 non_constant_p = true;
4874 if (!non_constant_p && overflow_p)
4875 non_constant_p = true;
4877 /* Unshare the result unless it's a CONSTRUCTOR in which case it's already
4878 unshared. */
4879 bool should_unshare = true;
4880 if (r == t || TREE_CODE (r) == CONSTRUCTOR)
4881 should_unshare = false;
4883 if (non_constant_p && !allow_non_constant)
4884 return error_mark_node;
4885 else if (non_constant_p && TREE_CONSTANT (r))
4887 /* This isn't actually constant, so unset TREE_CONSTANT.
4888 Don't clear TREE_CONSTANT on ADDR_EXPR, as the middle-end requires
4889 it to be set if it is invariant address, even when it is not
4890 a valid C++ constant expression. Wrap it with a NOP_EXPR
4891 instead. */
4892 if (EXPR_P (r) && TREE_CODE (r) != ADDR_EXPR)
4893 r = copy_node (r);
4894 else if (TREE_CODE (r) == CONSTRUCTOR)
4895 r = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (r), r);
4896 else
4897 r = build_nop (TREE_TYPE (r), r);
4898 TREE_CONSTANT (r) = false;
4900 else if (non_constant_p || r == t)
4901 return t;
4903 if (should_unshare)
4904 r = unshare_expr (r);
4906 if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
4908 if (TREE_CODE (t) == TARGET_EXPR
4909 && TARGET_EXPR_INITIAL (t) == r)
4910 return t;
4911 else
4913 r = get_target_expr (r);
4914 TREE_CONSTANT (r) = true;
4915 return r;
4918 else
4919 return r;
4922 /* Returns true if T is a valid subexpression of a constant expression,
4923 even if it isn't itself a constant expression. */
4925 bool
4926 is_sub_constant_expr (tree t)
4928 bool non_constant_p = false;
4929 bool overflow_p = false;
4930 hash_map <tree, tree> map;
4932 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL, true, true };
4934 cxx_eval_constant_expression (&ctx, t, false, &non_constant_p,
4935 &overflow_p);
4936 return !non_constant_p && !overflow_p;
4939 /* If T represents a constant expression returns its reduced value.
4940 Otherwise return error_mark_node. If T is dependent, then
4941 return NULL. */
4943 tree
4944 cxx_constant_value (tree t, tree decl)
4946 return cxx_eval_outermost_constant_expr (t, false, true, decl);
4949 /* Helper routine for fold_simple function. Either return simplified
4950 expression T, otherwise NULL_TREE.
4951 In contrast to cp_fully_fold, and to maybe_constant_value, we try to fold
4952 even if we are within template-declaration. So be careful on call, as in
4953 such case types can be undefined. */
4955 static tree
4956 fold_simple_1 (tree t)
4958 tree op1;
4959 enum tree_code code = TREE_CODE (t);
4961 switch (code)
4963 case INTEGER_CST:
4964 case REAL_CST:
4965 case VECTOR_CST:
4966 case FIXED_CST:
4967 case COMPLEX_CST:
4968 return t;
4970 case SIZEOF_EXPR:
4971 return fold_sizeof_expr (t);
4973 case ABS_EXPR:
4974 case CONJ_EXPR:
4975 case REALPART_EXPR:
4976 case IMAGPART_EXPR:
4977 case NEGATE_EXPR:
4978 case BIT_NOT_EXPR:
4979 case TRUTH_NOT_EXPR:
4980 case NOP_EXPR:
4981 case VIEW_CONVERT_EXPR:
4982 case CONVERT_EXPR:
4983 case FLOAT_EXPR:
4984 case FIX_TRUNC_EXPR:
4985 case FIXED_CONVERT_EXPR:
4986 case ADDR_SPACE_CONVERT_EXPR:
4988 op1 = TREE_OPERAND (t, 0);
4990 t = const_unop (code, TREE_TYPE (t), op1);
4991 if (!t)
4992 return NULL_TREE;
4994 if (CONVERT_EXPR_CODE_P (code)
4995 && TREE_OVERFLOW_P (t) && !TREE_OVERFLOW_P (op1))
4996 TREE_OVERFLOW (t) = false;
4997 return t;
4999 default:
5000 return NULL_TREE;
5004 /* If T is a simple constant expression, returns its simplified value.
5005 Otherwise returns T. In contrast to maybe_constant_value we
5006 simplify only few operations on constant-expressions, and we don't
5007 try to simplify constexpressions. */
5009 tree
5010 fold_simple (tree t)
5012 if (processing_template_decl)
5013 return t;
5015 tree r = fold_simple_1 (t);
5016 if (r)
5017 return r;
5019 return t;
5022 /* If T is a constant expression, returns its reduced value.
5023 Otherwise, if T does not have TREE_CONSTANT set, returns T.
5024 Otherwise, returns a version of T without TREE_CONSTANT. */
5026 static GTY((deletable)) hash_map<tree, tree> *cv_cache;
5028 tree
5029 maybe_constant_value (tree t, tree decl)
5031 tree r;
5033 if (!is_nondependent_constant_expression (t))
5035 if (TREE_OVERFLOW_P (t))
5037 t = build_nop (TREE_TYPE (t), t);
5038 TREE_CONSTANT (t) = false;
5040 return t;
5042 else if (CONSTANT_CLASS_P (t))
5043 /* No caching or evaluation needed. */
5044 return t;
5046 if (cv_cache == NULL)
5047 cv_cache = hash_map<tree, tree>::create_ggc (101);
5048 if (tree *cached = cv_cache->get (t))
5049 return *cached;
5051 r = cxx_eval_outermost_constant_expr (t, true, true, decl);
5052 gcc_checking_assert (r == t
5053 || CONVERT_EXPR_P (t)
5054 || TREE_CODE (t) == VIEW_CONVERT_EXPR
5055 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
5056 || !cp_tree_equal (r, t));
5057 cv_cache->put (t, r);
5058 return r;
5061 /* Dispose of the whole CV_CACHE. */
5063 static void
5064 clear_cv_cache (void)
5066 if (cv_cache != NULL)
5067 cv_cache->empty ();
5070 /* Dispose of the whole CV_CACHE and FOLD_CACHE. */
5072 void
5073 clear_cv_and_fold_caches (void)
5075 clear_cv_cache ();
5076 clear_fold_cache ();
5079 /* Like maybe_constant_value but first fully instantiate the argument.
5081 Note: this is equivalent to instantiate_non_dependent_expr_sfinae
5082 (t, tf_none) followed by maybe_constant_value but is more efficient,
5083 because calls instantiation_dependent_expression_p and
5084 potential_constant_expression at most once. */
5086 tree
5087 fold_non_dependent_expr (tree t)
5089 if (t == NULL_TREE)
5090 return NULL_TREE;
5092 /* If we're in a template, but T isn't value dependent, simplify
5093 it. We're supposed to treat:
5095 template <typename T> void f(T[1 + 1]);
5096 template <typename T> void f(T[2]);
5098 as two declarations of the same function, for example. */
5099 if (processing_template_decl)
5101 if (is_nondependent_constant_expression (t))
5103 processing_template_decl_sentinel s;
5104 t = instantiate_non_dependent_expr_internal (t, tf_none);
5106 if (type_unknown_p (t)
5107 || BRACE_ENCLOSED_INITIALIZER_P (t))
5109 if (TREE_OVERFLOW_P (t))
5111 t = build_nop (TREE_TYPE (t), t);
5112 TREE_CONSTANT (t) = false;
5114 return t;
5117 tree r = cxx_eval_outermost_constant_expr (t, true, true, NULL_TREE);
5118 /* cp_tree_equal looks through NOPs, so allow them. */
5119 gcc_checking_assert (r == t
5120 || CONVERT_EXPR_P (t)
5121 || TREE_CODE (t) == VIEW_CONVERT_EXPR
5122 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
5123 || !cp_tree_equal (r, t));
5124 return r;
5126 else if (TREE_OVERFLOW_P (t))
5128 t = build_nop (TREE_TYPE (t), t);
5129 TREE_CONSTANT (t) = false;
5131 return t;
5134 return maybe_constant_value (t);
5137 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
5138 than wrapped in a TARGET_EXPR. */
5140 static tree
5141 maybe_constant_init_1 (tree t, tree decl, bool allow_non_constant)
5143 if (!t)
5144 return t;
5145 if (TREE_CODE (t) == EXPR_STMT)
5146 t = TREE_OPERAND (t, 0);
5147 if (TREE_CODE (t) == CONVERT_EXPR
5148 && VOID_TYPE_P (TREE_TYPE (t)))
5149 t = TREE_OPERAND (t, 0);
5150 if (TREE_CODE (t) == INIT_EXPR)
5151 t = TREE_OPERAND (t, 1);
5152 if (TREE_CODE (t) == TARGET_EXPR)
5153 t = TARGET_EXPR_INITIAL (t);
5154 if (!is_nondependent_static_init_expression (t))
5155 /* Don't try to evaluate it. */;
5156 else if (CONSTANT_CLASS_P (t) && allow_non_constant)
5157 /* No evaluation needed. */;
5158 else
5159 t = cxx_eval_outermost_constant_expr (t, allow_non_constant, false, decl);
5160 if (TREE_CODE (t) == TARGET_EXPR)
5162 tree init = TARGET_EXPR_INITIAL (t);
5163 if (TREE_CODE (init) == CONSTRUCTOR)
5164 t = init;
5166 return t;
5169 /* Wrapper for maybe_constant_init_1 which permits non constants. */
5171 tree
5172 maybe_constant_init (tree t, tree decl)
5174 return maybe_constant_init_1 (t, decl, true);
5177 /* Wrapper for maybe_constant_init_1 which does not permit non constants. */
5179 tree
5180 cxx_constant_init (tree t, tree decl)
5182 return maybe_constant_init_1 (t, decl, false);
5185 #if 0
5186 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
5187 /* Return true if the object referred to by REF has automatic or thread
5188 local storage. */
5190 enum { ck_ok, ck_bad, ck_unknown };
5191 static int
5192 check_automatic_or_tls (tree ref)
5194 machine_mode mode;
5195 poly_int64 bitsize, bitpos;
5196 tree offset;
5197 int volatilep = 0, unsignedp = 0;
5198 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
5199 &mode, &unsignedp, &volatilep, false);
5200 duration_kind dk;
5202 /* If there isn't a decl in the middle, we don't know the linkage here,
5203 and this isn't a constant expression anyway. */
5204 if (!DECL_P (decl))
5205 return ck_unknown;
5206 dk = decl_storage_duration (decl);
5207 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
5209 #endif
5211 /* Return true if T denotes a potentially constant expression. Issue
5212 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
5213 an lvalue-rvalue conversion is implied. If NOW is true, we want to
5214 consider the expression in the current context, independent of constexpr
5215 substitution.
5217 C++0x [expr.const] used to say
5219 6 An expression is a potential constant expression if it is
5220 a constant expression where all occurrences of function
5221 parameters are replaced by arbitrary constant expressions
5222 of the appropriate type.
5224 2 A conditional expression is a constant expression unless it
5225 involves one of the following as a potentially evaluated
5226 subexpression (3.2), but subexpressions of logical AND (5.14),
5227 logical OR (5.15), and conditional (5.16) operations that are
5228 not evaluated are not considered. */
5230 static bool
5231 potential_constant_expression_1 (tree t, bool want_rval, bool strict, bool now,
5232 tsubst_flags_t flags)
5234 #define RECUR(T,RV) \
5235 potential_constant_expression_1 ((T), (RV), strict, now, flags)
5237 enum { any = false, rval = true };
5238 int i;
5239 tree tmp;
5241 if (t == error_mark_node)
5242 return false;
5243 if (t == NULL_TREE)
5244 return true;
5245 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
5246 if (TREE_THIS_VOLATILE (t) && !DECL_P (t))
5248 if (flags & tf_error)
5249 error_at (loc, "expression %qE has side-effects", t);
5250 return false;
5252 if (CONSTANT_CLASS_P (t))
5253 return true;
5254 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED)
5255 && TREE_TYPE (t) == error_mark_node)
5256 return false;
5258 switch (TREE_CODE (t))
5260 case FUNCTION_DECL:
5261 case BASELINK:
5262 case TEMPLATE_DECL:
5263 case OVERLOAD:
5264 case TEMPLATE_ID_EXPR:
5265 case LABEL_DECL:
5266 case LABEL_EXPR:
5267 case CASE_LABEL_EXPR:
5268 case CONST_DECL:
5269 case SIZEOF_EXPR:
5270 case ALIGNOF_EXPR:
5271 case OFFSETOF_EXPR:
5272 case NOEXCEPT_EXPR:
5273 case TEMPLATE_PARM_INDEX:
5274 case TRAIT_EXPR:
5275 case IDENTIFIER_NODE:
5276 case USERDEF_LITERAL:
5277 /* We can see a FIELD_DECL in a pointer-to-member expression. */
5278 case FIELD_DECL:
5279 case RESULT_DECL:
5280 case USING_DECL:
5281 case USING_STMT:
5282 case PLACEHOLDER_EXPR:
5283 case BREAK_STMT:
5284 case CONTINUE_STMT:
5285 case REQUIRES_EXPR:
5286 case STATIC_ASSERT:
5287 case DEBUG_BEGIN_STMT:
5288 return true;
5290 case PARM_DECL:
5291 if (now)
5293 if (flags & tf_error)
5294 error ("%qE is not a constant expression", t);
5295 return false;
5297 return true;
5299 case AGGR_INIT_EXPR:
5300 case CALL_EXPR:
5301 /* -- an invocation of a function other than a constexpr function
5302 or a constexpr constructor. */
5304 tree fun = get_function_named_in_call (t);
5305 const int nargs = call_expr_nargs (t);
5306 i = 0;
5308 if (fun == NULL_TREE)
5310 /* Reset to allow the function to continue past the end
5311 of the block below. Otherwise return early. */
5312 bool bail = true;
5314 if (TREE_CODE (t) == CALL_EXPR
5315 && CALL_EXPR_FN (t) == NULL_TREE)
5316 switch (CALL_EXPR_IFN (t))
5318 /* These should be ignored, they are optimized away from
5319 constexpr functions. */
5320 case IFN_UBSAN_NULL:
5321 case IFN_UBSAN_BOUNDS:
5322 case IFN_UBSAN_VPTR:
5323 case IFN_FALLTHROUGH:
5324 return true;
5326 case IFN_ADD_OVERFLOW:
5327 case IFN_SUB_OVERFLOW:
5328 case IFN_MUL_OVERFLOW:
5329 case IFN_LAUNDER:
5330 bail = false;
5332 default:
5333 break;
5336 if (bail)
5338 /* fold_call_expr can't do anything with IFN calls. */
5339 if (flags & tf_error)
5340 error_at (loc, "call to internal function %qE", t);
5341 return false;
5345 if (fun && is_overloaded_fn (fun))
5347 if (TREE_CODE (fun) == FUNCTION_DECL)
5349 if (builtin_valid_in_constant_expr_p (fun))
5350 return true;
5351 if (!DECL_DECLARED_CONSTEXPR_P (fun)
5352 /* Allow any built-in function; if the expansion
5353 isn't constant, we'll deal with that then. */
5354 && !is_builtin_fn (fun))
5356 if (flags & tf_error)
5358 error_at (loc, "call to non-%<constexpr%> function %qD",
5359 fun);
5360 explain_invalid_constexpr_fn (fun);
5362 return false;
5364 /* A call to a non-static member function takes the address
5365 of the object as the first argument. But in a constant
5366 expression the address will be folded away, so look
5367 through it now. */
5368 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5369 && !DECL_CONSTRUCTOR_P (fun))
5371 tree x = get_nth_callarg (t, 0);
5372 if (is_this_parameter (x))
5373 return true;
5374 /* Don't require an immediately constant value, as
5375 constexpr substitution might not use the value. */
5376 bool sub_now = false;
5377 if (!potential_constant_expression_1 (x, rval, strict,
5378 sub_now, flags))
5379 return false;
5380 i = 1;
5383 else
5385 if (!RECUR (fun, true))
5386 return false;
5387 fun = get_first_fn (fun);
5389 /* Skip initial arguments to base constructors. */
5390 if (DECL_BASE_CONSTRUCTOR_P (fun))
5391 i = num_artificial_parms_for (fun);
5392 fun = DECL_ORIGIN (fun);
5394 else if (fun)
5396 if (RECUR (fun, rval))
5397 /* Might end up being a constant function pointer. */;
5398 else
5399 return false;
5401 for (; i < nargs; ++i)
5403 tree x = get_nth_callarg (t, i);
5404 /* In a template, reference arguments haven't been converted to
5405 REFERENCE_TYPE and we might not even know if the parameter
5406 is a reference, so accept lvalue constants too. */
5407 bool rv = processing_template_decl ? any : rval;
5408 /* Don't require an immediately constant value, as constexpr
5409 substitution might not use the value of the argument. */
5410 bool sub_now = false;
5411 if (!potential_constant_expression_1 (x, rv, strict,
5412 sub_now, flags))
5413 return false;
5415 return true;
5418 case NON_LVALUE_EXPR:
5419 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
5420 -- an lvalue of integral type that refers to a non-volatile
5421 const variable or static data member initialized with
5422 constant expressions, or
5424 -- an lvalue of literal type that refers to non-volatile
5425 object defined with constexpr, or that refers to a
5426 sub-object of such an object; */
5427 return RECUR (TREE_OPERAND (t, 0), rval);
5429 case VAR_DECL:
5430 if (DECL_HAS_VALUE_EXPR_P (t))
5432 if (now && is_normal_capture_proxy (t))
5434 /* -- in a lambda-expression, a reference to this or to a
5435 variable with automatic storage duration defined outside that
5436 lambda-expression, where the reference would be an
5437 odr-use. */
5438 if (flags & tf_error)
5440 tree cap = DECL_CAPTURED_VARIABLE (t);
5441 error ("lambda capture of %qE is not a constant expression",
5442 cap);
5443 if (!want_rval && decl_constant_var_p (cap))
5444 inform (input_location, "because it is used as a glvalue");
5446 return false;
5448 return RECUR (DECL_VALUE_EXPR (t), rval);
5450 if (want_rval
5451 && !var_in_maybe_constexpr_fn (t)
5452 && !type_dependent_expression_p (t)
5453 && !decl_maybe_constant_var_p (t)
5454 && (strict
5455 || !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (t))
5456 || (DECL_INITIAL (t)
5457 && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t)))
5458 && COMPLETE_TYPE_P (TREE_TYPE (t))
5459 && !is_really_empty_class (TREE_TYPE (t)))
5461 if (flags & tf_error)
5462 non_const_var_error (t);
5463 return false;
5465 return true;
5467 case NOP_EXPR:
5468 case CONVERT_EXPR:
5469 case VIEW_CONVERT_EXPR:
5470 /* -- a reinterpret_cast. FIXME not implemented, and this rule
5471 may change to something more specific to type-punning (DR 1312). */
5473 tree from = TREE_OPERAND (t, 0);
5474 if (POINTER_TYPE_P (TREE_TYPE (t))
5475 && TREE_CODE (from) == INTEGER_CST
5476 && !integer_zerop (from))
5478 if (flags & tf_error)
5479 error_at (loc, "reinterpret_cast from integer to pointer");
5480 return false;
5482 return (RECUR (from, TREE_CODE (t) != VIEW_CONVERT_EXPR));
5485 case ADDRESSOF_EXPR:
5486 /* This is like ADDR_EXPR, except it won't form pointer-to-member. */
5487 t = TREE_OPERAND (t, 0);
5488 goto handle_addr_expr;
5490 case ADDR_EXPR:
5491 /* -- a unary operator & that is applied to an lvalue that
5492 designates an object with thread or automatic storage
5493 duration; */
5494 t = TREE_OPERAND (t, 0);
5496 if (TREE_CODE (t) == OFFSET_REF && PTRMEM_OK_P (t))
5497 /* A pointer-to-member constant. */
5498 return true;
5500 handle_addr_expr:
5501 #if 0
5502 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
5503 any checking here, as we might dereference the pointer later. If
5504 we remove this code, also remove check_automatic_or_tls. */
5505 i = check_automatic_or_tls (t);
5506 if (i == ck_ok)
5507 return true;
5508 if (i == ck_bad)
5510 if (flags & tf_error)
5511 error ("address-of an object %qE with thread local or "
5512 "automatic storage is not a constant expression", t);
5513 return false;
5515 #endif
5516 return RECUR (t, any);
5518 case REALPART_EXPR:
5519 case IMAGPART_EXPR:
5520 case COMPONENT_REF:
5521 case BIT_FIELD_REF:
5522 case ARROW_EXPR:
5523 case OFFSET_REF:
5524 /* -- a class member access unless its postfix-expression is
5525 of literal type or of pointer to literal type. */
5526 /* This test would be redundant, as it follows from the
5527 postfix-expression being a potential constant expression. */
5528 if (type_unknown_p (t))
5529 return true;
5530 return RECUR (TREE_OPERAND (t, 0), want_rval);
5532 case EXPR_PACK_EXPANSION:
5533 return RECUR (PACK_EXPANSION_PATTERN (t), want_rval);
5535 case INDIRECT_REF:
5537 tree x = TREE_OPERAND (t, 0);
5538 STRIP_NOPS (x);
5539 if (is_this_parameter (x) && !is_capture_proxy (x))
5541 if (!var_in_maybe_constexpr_fn (x))
5543 if (flags & tf_error)
5544 error_at (loc, "use of %<this%> in a constant expression");
5545 return false;
5547 return true;
5549 return RECUR (x, rval);
5552 case STATEMENT_LIST:
5554 tree_stmt_iterator i;
5555 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5557 if (!RECUR (tsi_stmt (i), any))
5558 return false;
5560 return true;
5562 break;
5564 case MODIFY_EXPR:
5565 if (cxx_dialect < cxx14)
5566 goto fail;
5567 if (!RECUR (TREE_OPERAND (t, 0), any))
5568 return false;
5569 if (!RECUR (TREE_OPERAND (t, 1), rval))
5570 return false;
5571 return true;
5573 case MODOP_EXPR:
5574 if (cxx_dialect < cxx14)
5575 goto fail;
5576 if (!RECUR (TREE_OPERAND (t, 0), rval))
5577 return false;
5578 if (!RECUR (TREE_OPERAND (t, 2), rval))
5579 return false;
5580 return true;
5582 case DO_STMT:
5583 if (!RECUR (DO_COND (t), rval))
5584 return false;
5585 if (!RECUR (DO_BODY (t), any))
5586 return false;
5587 return true;
5589 case FOR_STMT:
5590 if (!RECUR (FOR_INIT_STMT (t), any))
5591 return false;
5592 if (!RECUR (FOR_COND (t), rval))
5593 return false;
5594 if (!RECUR (FOR_EXPR (t), any))
5595 return false;
5596 if (!RECUR (FOR_BODY (t), any))
5597 return false;
5598 return true;
5600 case RANGE_FOR_STMT:
5601 if (!RECUR (RANGE_FOR_EXPR (t), any))
5602 return false;
5603 if (!RECUR (RANGE_FOR_BODY (t), any))
5604 return false;
5605 return true;
5607 case WHILE_STMT:
5608 if (!RECUR (WHILE_COND (t), rval))
5609 return false;
5610 if (!RECUR (WHILE_BODY (t), any))
5611 return false;
5612 return true;
5614 case SWITCH_STMT:
5615 if (!RECUR (SWITCH_STMT_COND (t), rval))
5616 return false;
5617 /* FIXME we don't check SWITCH_STMT_BODY currently, because even
5618 unreachable labels would be checked. */
5619 return true;
5621 case STMT_EXPR:
5622 return RECUR (STMT_EXPR_STMT (t), rval);
5624 case LAMBDA_EXPR:
5625 if (cxx_dialect >= cxx17)
5626 /* In C++17 lambdas can be constexpr, don't give up yet. */
5627 return true;
5628 else if (flags & tf_error)
5629 error_at (loc, "lambda-expression is not a constant expression "
5630 "before C++17");
5631 return false;
5633 case DYNAMIC_CAST_EXPR:
5634 case PSEUDO_DTOR_EXPR:
5635 case NEW_EXPR:
5636 case VEC_NEW_EXPR:
5637 case DELETE_EXPR:
5638 case VEC_DELETE_EXPR:
5639 case THROW_EXPR:
5640 case OMP_PARALLEL:
5641 case OMP_TASK:
5642 case OMP_FOR:
5643 case OMP_SIMD:
5644 case OMP_DISTRIBUTE:
5645 case OMP_TASKLOOP:
5646 case OMP_TEAMS:
5647 case OMP_TARGET_DATA:
5648 case OMP_TARGET:
5649 case OMP_SECTIONS:
5650 case OMP_ORDERED:
5651 case OMP_CRITICAL:
5652 case OMP_SINGLE:
5653 case OMP_SECTION:
5654 case OMP_MASTER:
5655 case OMP_TASKGROUP:
5656 case OMP_TARGET_UPDATE:
5657 case OMP_TARGET_ENTER_DATA:
5658 case OMP_TARGET_EXIT_DATA:
5659 case OMP_ATOMIC:
5660 case OMP_ATOMIC_READ:
5661 case OMP_ATOMIC_CAPTURE_OLD:
5662 case OMP_ATOMIC_CAPTURE_NEW:
5663 case OACC_PARALLEL:
5664 case OACC_KERNELS:
5665 case OACC_DATA:
5666 case OACC_HOST_DATA:
5667 case OACC_LOOP:
5668 case OACC_CACHE:
5669 case OACC_DECLARE:
5670 case OACC_ENTER_DATA:
5671 case OACC_EXIT_DATA:
5672 case OACC_UPDATE:
5673 /* GCC internal stuff. */
5674 case VA_ARG_EXPR:
5675 case OBJ_TYPE_REF:
5676 case TRANSACTION_EXPR:
5677 case ASM_EXPR:
5678 case AT_ENCODE_EXPR:
5679 fail:
5680 if (flags & tf_error)
5681 error_at (loc, "expression %qE is not a constant expression", t);
5682 return false;
5684 case TYPEID_EXPR:
5685 /* -- a typeid expression whose operand is of polymorphic
5686 class type; */
5688 tree e = TREE_OPERAND (t, 0);
5689 if (!TYPE_P (e) && !type_dependent_expression_p (e)
5690 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
5692 if (flags & tf_error)
5693 error_at (loc, "typeid-expression is not a constant expression "
5694 "because %qE is of polymorphic type", e);
5695 return false;
5697 return true;
5700 case POINTER_DIFF_EXPR:
5701 case MINUS_EXPR:
5702 want_rval = true;
5703 goto binary;
5705 case LT_EXPR:
5706 case LE_EXPR:
5707 case GT_EXPR:
5708 case GE_EXPR:
5709 case EQ_EXPR:
5710 case NE_EXPR:
5711 want_rval = true;
5712 goto binary;
5714 case PREINCREMENT_EXPR:
5715 case POSTINCREMENT_EXPR:
5716 case PREDECREMENT_EXPR:
5717 case POSTDECREMENT_EXPR:
5718 if (cxx_dialect < cxx14)
5719 goto fail;
5720 goto unary;
5722 case BIT_NOT_EXPR:
5723 /* A destructor. */
5724 if (TYPE_P (TREE_OPERAND (t, 0)))
5725 return true;
5726 /* fall through. */
5728 case CONJ_EXPR:
5729 case SAVE_EXPR:
5730 case FIX_TRUNC_EXPR:
5731 case FLOAT_EXPR:
5732 case NEGATE_EXPR:
5733 case ABS_EXPR:
5734 case TRUTH_NOT_EXPR:
5735 case FIXED_CONVERT_EXPR:
5736 case UNARY_PLUS_EXPR:
5737 case UNARY_LEFT_FOLD_EXPR:
5738 case UNARY_RIGHT_FOLD_EXPR:
5739 unary:
5740 return RECUR (TREE_OPERAND (t, 0), rval);
5742 case CAST_EXPR:
5743 case CONST_CAST_EXPR:
5744 case STATIC_CAST_EXPR:
5745 case REINTERPRET_CAST_EXPR:
5746 case IMPLICIT_CONV_EXPR:
5747 if (cxx_dialect < cxx11
5748 && !dependent_type_p (TREE_TYPE (t))
5749 && !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t)))
5750 /* In C++98, a conversion to non-integral type can't be part of a
5751 constant expression. */
5753 if (flags & tf_error)
5754 error_at (loc,
5755 "cast to non-integral type %qT in a constant expression",
5756 TREE_TYPE (t));
5757 return false;
5760 return (RECUR (TREE_OPERAND (t, 0),
5761 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE));
5763 case BIND_EXPR:
5764 return RECUR (BIND_EXPR_BODY (t), want_rval);
5766 case CLEANUP_POINT_EXPR:
5767 case MUST_NOT_THROW_EXPR:
5768 case TRY_CATCH_EXPR:
5769 case TRY_BLOCK:
5770 case EH_SPEC_BLOCK:
5771 case EXPR_STMT:
5772 case PAREN_EXPR:
5773 case NON_DEPENDENT_EXPR:
5774 /* For convenience. */
5775 case RETURN_EXPR:
5776 case LOOP_EXPR:
5777 case EXIT_EXPR:
5778 return RECUR (TREE_OPERAND (t, 0), want_rval);
5780 case DECL_EXPR:
5781 tmp = DECL_EXPR_DECL (t);
5782 if (VAR_P (tmp) && !DECL_ARTIFICIAL (tmp))
5784 if (TREE_STATIC (tmp))
5786 if (flags & tf_error)
5787 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5788 "%<static%> in %<constexpr%> context", tmp);
5789 return false;
5791 else if (CP_DECL_THREAD_LOCAL_P (tmp))
5793 if (flags & tf_error)
5794 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5795 "%<thread_local%> in %<constexpr%> context", tmp);
5796 return false;
5798 else if (!check_for_uninitialized_const_var
5799 (tmp, /*constexpr_context_p=*/true, flags))
5800 return false;
5802 return RECUR (tmp, want_rval);
5804 case TRY_FINALLY_EXPR:
5805 return (RECUR (TREE_OPERAND (t, 0), want_rval)
5806 && RECUR (TREE_OPERAND (t, 1), any));
5808 case SCOPE_REF:
5809 return RECUR (TREE_OPERAND (t, 1), want_rval);
5811 case TARGET_EXPR:
5812 if (!TARGET_EXPR_DIRECT_INIT_P (t)
5813 && !literal_type_p (TREE_TYPE (t)))
5815 if (flags & tf_error)
5817 error_at (loc, "temporary of non-literal type %qT in a "
5818 "constant expression", TREE_TYPE (t));
5819 explain_non_literal_class (TREE_TYPE (t));
5821 return false;
5823 /* FALLTHRU */
5824 case INIT_EXPR:
5825 return RECUR (TREE_OPERAND (t, 1), rval);
5827 case CONSTRUCTOR:
5829 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5830 constructor_elt *ce;
5831 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5832 if (!RECUR (ce->value, want_rval))
5833 return false;
5834 return true;
5837 case TREE_LIST:
5839 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
5840 || DECL_P (TREE_PURPOSE (t)));
5841 if (!RECUR (TREE_VALUE (t), want_rval))
5842 return false;
5843 if (TREE_CHAIN (t) == NULL_TREE)
5844 return true;
5845 return RECUR (TREE_CHAIN (t), want_rval);
5848 case TRUNC_DIV_EXPR:
5849 case CEIL_DIV_EXPR:
5850 case FLOOR_DIV_EXPR:
5851 case ROUND_DIV_EXPR:
5852 case TRUNC_MOD_EXPR:
5853 case CEIL_MOD_EXPR:
5854 case ROUND_MOD_EXPR:
5856 tree denom = TREE_OPERAND (t, 1);
5857 if (!RECUR (denom, rval))
5858 return false;
5859 /* We can't call cxx_eval_outermost_constant_expr on an expression
5860 that hasn't been through instantiate_non_dependent_expr yet. */
5861 if (!processing_template_decl)
5862 denom = cxx_eval_outermost_constant_expr (denom, true);
5863 if (integer_zerop (denom))
5865 if (flags & tf_error)
5866 error ("division by zero is not a constant expression");
5867 return false;
5869 else
5871 want_rval = true;
5872 return RECUR (TREE_OPERAND (t, 0), want_rval);
5876 case COMPOUND_EXPR:
5878 /* check_return_expr sometimes wraps a TARGET_EXPR in a
5879 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
5880 introduced by build_call_a. */
5881 tree op0 = TREE_OPERAND (t, 0);
5882 tree op1 = TREE_OPERAND (t, 1);
5883 STRIP_NOPS (op1);
5884 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
5885 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
5886 return RECUR (op0, want_rval);
5887 else
5888 goto binary;
5891 /* If the first operand is the non-short-circuit constant, look at
5892 the second operand; otherwise we only care about the first one for
5893 potentiality. */
5894 case TRUTH_AND_EXPR:
5895 case TRUTH_ANDIF_EXPR:
5896 tmp = boolean_true_node;
5897 goto truth;
5898 case TRUTH_OR_EXPR:
5899 case TRUTH_ORIF_EXPR:
5900 tmp = boolean_false_node;
5901 truth:
5903 tree op = TREE_OPERAND (t, 0);
5904 if (!RECUR (op, rval))
5905 return false;
5906 if (!processing_template_decl)
5907 op = cxx_eval_outermost_constant_expr (op, true);
5908 if (tree_int_cst_equal (op, tmp))
5909 return RECUR (TREE_OPERAND (t, 1), rval);
5910 else
5911 return true;
5914 case PLUS_EXPR:
5915 case MULT_EXPR:
5916 case POINTER_PLUS_EXPR:
5917 case RDIV_EXPR:
5918 case EXACT_DIV_EXPR:
5919 case MIN_EXPR:
5920 case MAX_EXPR:
5921 case LSHIFT_EXPR:
5922 case RSHIFT_EXPR:
5923 case LROTATE_EXPR:
5924 case RROTATE_EXPR:
5925 case BIT_IOR_EXPR:
5926 case BIT_XOR_EXPR:
5927 case BIT_AND_EXPR:
5928 case TRUTH_XOR_EXPR:
5929 case UNORDERED_EXPR:
5930 case ORDERED_EXPR:
5931 case UNLT_EXPR:
5932 case UNLE_EXPR:
5933 case UNGT_EXPR:
5934 case UNGE_EXPR:
5935 case UNEQ_EXPR:
5936 case LTGT_EXPR:
5937 case RANGE_EXPR:
5938 case COMPLEX_EXPR:
5939 want_rval = true;
5940 /* Fall through. */
5941 case ARRAY_REF:
5942 case ARRAY_RANGE_REF:
5943 case MEMBER_REF:
5944 case DOTSTAR_EXPR:
5945 case MEM_REF:
5946 case BINARY_LEFT_FOLD_EXPR:
5947 case BINARY_RIGHT_FOLD_EXPR:
5948 binary:
5949 for (i = 0; i < 2; ++i)
5950 if (!RECUR (TREE_OPERAND (t, i), want_rval))
5951 return false;
5952 return true;
5954 case FMA_EXPR:
5955 case VEC_PERM_EXPR:
5956 for (i = 0; i < 3; ++i)
5957 if (!RECUR (TREE_OPERAND (t, i), true))
5958 return false;
5959 return true;
5961 case COND_EXPR:
5962 if (COND_EXPR_IS_VEC_DELETE (t))
5964 if (flags & tf_error)
5965 error_at (loc, "%<delete[]%> is not a constant expression");
5966 return false;
5968 /* Fall through. */
5969 case IF_STMT:
5970 case VEC_COND_EXPR:
5971 /* If the condition is a known constant, we know which of the legs we
5972 care about; otherwise we only require that the condition and
5973 either of the legs be potentially constant. */
5974 tmp = TREE_OPERAND (t, 0);
5975 if (!RECUR (tmp, rval))
5976 return false;
5977 if (!processing_template_decl)
5978 tmp = cxx_eval_outermost_constant_expr (tmp, true);
5979 if (integer_zerop (tmp))
5980 return RECUR (TREE_OPERAND (t, 2), want_rval);
5981 else if (TREE_CODE (tmp) == INTEGER_CST)
5982 return RECUR (TREE_OPERAND (t, 1), want_rval);
5983 for (i = 1; i < 3; ++i)
5984 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
5985 want_rval, strict, now, tf_none))
5986 return true;
5987 if (flags & tf_error)
5988 error_at (loc, "expression %qE is not a constant expression", t);
5989 return false;
5991 case VEC_INIT_EXPR:
5992 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
5993 return true;
5994 if (flags & tf_error)
5996 error_at (loc, "non-constant array initialization");
5997 diagnose_non_constexpr_vec_init (t);
5999 return false;
6001 case TYPE_DECL:
6002 case TAG_DEFN:
6003 /* We can see these in statement-expressions. */
6004 return true;
6006 case CLEANUP_STMT:
6007 case EMPTY_CLASS_EXPR:
6008 case PREDICT_EXPR:
6009 return false;
6011 case GOTO_EXPR:
6013 tree *target = &TREE_OPERAND (t, 0);
6014 /* Gotos representing break and continue are OK. */
6015 if (breaks (target) || continues (target))
6016 return true;
6017 if (flags & tf_error)
6018 error_at (loc, "%<goto%> is not a constant expression");
6019 return false;
6022 case ANNOTATE_EXPR:
6023 return RECUR (TREE_OPERAND (t, 0), rval);
6025 default:
6026 if (objc_is_property_ref (t))
6027 return false;
6029 sorry ("unexpected AST of kind %s", get_tree_code_name (TREE_CODE (t)));
6030 gcc_unreachable ();
6031 return false;
6033 #undef RECUR
6036 /* The main entry point to the above. */
6038 bool
6039 potential_constant_expression (tree t)
6041 return potential_constant_expression_1 (t, false, true, false, tf_none);
6044 /* As above, but require a constant rvalue. */
6046 bool
6047 potential_rvalue_constant_expression (tree t)
6049 return potential_constant_expression_1 (t, true, true, false, tf_none);
6052 /* Like above, but complain about non-constant expressions. */
6054 bool
6055 require_potential_constant_expression (tree t)
6057 return potential_constant_expression_1 (t, false, true, false,
6058 tf_warning_or_error);
6061 /* Cross product of the above. */
6063 bool
6064 require_potential_rvalue_constant_expression (tree t)
6066 return potential_constant_expression_1 (t, true, true, false,
6067 tf_warning_or_error);
6070 /* Like above, but don't consider PARM_DECL a potential_constant_expression. */
6072 bool
6073 require_rvalue_constant_expression (tree t)
6075 return potential_constant_expression_1 (t, true, true, true,
6076 tf_warning_or_error);
6079 /* Like potential_constant_expression, but don't consider possible constexpr
6080 substitution of the current function. That is, PARM_DECL qualifies under
6081 potential_constant_expression, but not here.
6083 This is basically what you can check when any actual constant values might
6084 be value-dependent. */
6086 bool
6087 is_constant_expression (tree t)
6089 return potential_constant_expression_1 (t, false, true, true, tf_none);
6092 /* Like above, but complain about non-constant expressions. */
6094 bool
6095 require_constant_expression (tree t)
6097 return potential_constant_expression_1 (t, false, true, true,
6098 tf_warning_or_error);
6101 /* Like is_constant_expression, but allow const variables that are not allowed
6102 under constexpr rules. */
6104 bool
6105 is_static_init_expression (tree t)
6107 return potential_constant_expression_1 (t, false, false, true, tf_none);
6110 /* Returns true if T is a potential constant expression that is not
6111 instantiation-dependent, and therefore a candidate for constant folding even
6112 in a template. */
6114 bool
6115 is_nondependent_constant_expression (tree t)
6117 return (!type_unknown_p (t)
6118 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6119 && is_constant_expression (t)
6120 && !instantiation_dependent_expression_p (t));
6123 /* Returns true if T is a potential static initializer expression that is not
6124 instantiation-dependent. */
6126 bool
6127 is_nondependent_static_init_expression (tree t)
6129 return (!type_unknown_p (t)
6130 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6131 && is_static_init_expression (t)
6132 && !instantiation_dependent_expression_p (t));
6135 /* Finalize constexpr processing after parsing. */
6137 void
6138 fini_constexpr (void)
6140 /* The contexpr call and fundef copies tables are no longer needed. */
6141 constexpr_call_table = NULL;
6142 fundef_copies_table = NULL;
6145 #include "gt-cp-constexpr.h"