PR c++/84808
[official-gcc.git] / gcc / cp / constexpr.c
blob05a1cb64d61e2c6c84b27a564ddd8ae0ddb31326
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 tree value = elt.value;
2229 dindex = fold_convert (sizetype, dindex);
2230 if (tree_int_cst_lt (lo, dindex))
2232 /* There are still some lower elts; shorten the range. */
2233 tree new_hi = int_const_binop (MINUS_EXPR, dindex,
2234 size_one_node);
2235 if (tree_int_cst_equal (lo, new_hi))
2236 /* Only one element left, no longer a range. */
2237 elt.index = lo;
2238 else
2239 TREE_OPERAND (idx, 1) = new_hi;
2240 /* Append the element we want to insert. */
2241 ++middle;
2242 e.index = dindex;
2243 e.value = unshare_constructor (value);
2244 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle, e);
2246 else
2247 /* No lower elts, the range elt is now ours. */
2248 elt.index = dindex;
2250 if (tree_int_cst_lt (dindex, hi))
2252 /* There are still some higher elts; append a range. */
2253 tree new_lo = int_const_binop (PLUS_EXPR, dindex,
2254 size_one_node);
2255 if (tree_int_cst_equal (new_lo, hi))
2256 e.index = hi;
2257 else
2258 e.index = build2 (RANGE_EXPR, sizetype, new_lo, hi);
2259 e.value = unshare_constructor (value);
2260 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle + 1, e);
2263 return middle;
2267 if (insert)
2269 constructor_elt e = { dindex, NULL_TREE };
2270 vec_safe_insert (CONSTRUCTOR_ELTS (ary), end, e);
2271 return end;
2274 return -1;
2277 /* Under the control of CTX, issue a detailed diagnostic for
2278 an out-of-bounds subscript INDEX into the expression ARRAY. */
2280 static void
2281 diag_array_subscript (const constexpr_ctx *ctx, tree array, tree index)
2283 if (!ctx->quiet)
2285 tree arraytype = TREE_TYPE (array);
2287 /* Convert the unsigned array subscript to a signed integer to avoid
2288 printing huge numbers for small negative values. */
2289 tree sidx = fold_convert (ssizetype, index);
2290 if (DECL_P (array))
2292 if (TYPE_DOMAIN (arraytype))
2293 error ("array subscript value %qE is outside the bounds "
2294 "of array %qD of type %qT", sidx, array, arraytype);
2295 else
2296 error ("non-zero array subscript %qE is used with array %qD of "
2297 "type %qT with unknown bounds", sidx, array, arraytype);
2298 inform (DECL_SOURCE_LOCATION (array), "declared here");
2300 else if (TYPE_DOMAIN (arraytype))
2301 error ("array subscript value %qE is outside the bounds "
2302 "of array type %qT", sidx, arraytype);
2303 else
2304 error ("non-zero array subscript %qE is used with array of type %qT "
2305 "with unknown bounds", sidx, arraytype);
2309 /* Return the number of elements for TYPE (which is an ARRAY_TYPE or
2310 a VECTOR_TYPE). */
2312 static tree
2313 get_array_or_vector_nelts (const constexpr_ctx *ctx, tree type,
2314 bool *non_constant_p, bool *overflow_p)
2316 tree nelts;
2317 if (TREE_CODE (type) == ARRAY_TYPE)
2319 if (TYPE_DOMAIN (type))
2320 nelts = array_type_nelts_top (type);
2321 else
2322 nelts = size_zero_node;
2324 else if (VECTOR_TYPE_P (type))
2325 nelts = size_int (TYPE_VECTOR_SUBPARTS (type));
2326 else
2327 gcc_unreachable ();
2329 /* For VLAs, the number of elements won't be an integer constant. */
2330 nelts = cxx_eval_constant_expression (ctx, nelts, false,
2331 non_constant_p, overflow_p);
2332 return nelts;
2335 /* Extract element INDEX consisting of CHARS_PER_ELT chars from
2336 STRING_CST STRING. */
2338 static tree
2339 extract_string_elt (tree string, unsigned chars_per_elt, unsigned index)
2341 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (string)));
2342 tree r;
2344 if (chars_per_elt == 1)
2345 r = build_int_cst (type, TREE_STRING_POINTER (string)[index]);
2346 else
2348 const unsigned char *ptr
2349 = ((const unsigned char *)TREE_STRING_POINTER (string)
2350 + index * chars_per_elt);
2351 r = native_interpret_expr (type, ptr, chars_per_elt);
2353 return r;
2356 /* Subroutine of cxx_eval_constant_expression.
2357 Attempt to reduce a reference to an array slot. */
2359 static tree
2360 cxx_eval_array_reference (const constexpr_ctx *ctx, tree t,
2361 bool lval,
2362 bool *non_constant_p, bool *overflow_p)
2364 tree oldary = TREE_OPERAND (t, 0);
2365 tree ary = cxx_eval_constant_expression (ctx, oldary,
2366 lval,
2367 non_constant_p, overflow_p);
2368 tree index, oldidx;
2369 HOST_WIDE_INT i = 0;
2370 tree elem_type = NULL_TREE;
2371 unsigned len = 0, elem_nchars = 1;
2372 if (*non_constant_p)
2373 return t;
2374 oldidx = TREE_OPERAND (t, 1);
2375 index = cxx_eval_constant_expression (ctx, oldidx,
2376 false,
2377 non_constant_p, overflow_p);
2378 VERIFY_CONSTANT (index);
2379 if (!lval)
2381 elem_type = TREE_TYPE (TREE_TYPE (ary));
2382 if (TREE_CODE (ary) == VIEW_CONVERT_EXPR
2383 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (ary, 0)))
2384 && TREE_TYPE (t) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (ary, 0))))
2385 ary = TREE_OPERAND (ary, 0);
2386 if (TREE_CODE (ary) == CONSTRUCTOR)
2387 len = CONSTRUCTOR_NELTS (ary);
2388 else if (TREE_CODE (ary) == STRING_CST)
2390 elem_nchars = (TYPE_PRECISION (elem_type)
2391 / TYPE_PRECISION (char_type_node));
2392 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
2394 else if (TREE_CODE (ary) == VECTOR_CST)
2395 /* We don't create variable-length VECTOR_CSTs. */
2396 len = VECTOR_CST_NELTS (ary).to_constant ();
2397 else
2399 /* We can't do anything with other tree codes, so use
2400 VERIFY_CONSTANT to complain and fail. */
2401 VERIFY_CONSTANT (ary);
2402 gcc_unreachable ();
2405 if (!tree_fits_shwi_p (index)
2406 || (i = tree_to_shwi (index)) < 0)
2408 diag_array_subscript (ctx, ary, index);
2409 *non_constant_p = true;
2410 return t;
2414 tree nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary), non_constant_p,
2415 overflow_p);
2416 VERIFY_CONSTANT (nelts);
2417 if ((lval
2418 ? !tree_int_cst_le (index, nelts)
2419 : !tree_int_cst_lt (index, nelts))
2420 || tree_int_cst_sgn (index) < 0)
2422 diag_array_subscript (ctx, ary, index);
2423 *non_constant_p = true;
2424 return t;
2427 if (lval && ary == oldary && index == oldidx)
2428 return t;
2429 else if (lval)
2430 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
2432 bool found;
2433 if (TREE_CODE (ary) == CONSTRUCTOR)
2435 HOST_WIDE_INT ix = find_array_ctor_elt (ary, index);
2436 found = (ix >= 0);
2437 if (found)
2438 i = ix;
2440 else
2441 found = (i < len);
2443 if (found)
2445 tree r;
2446 if (TREE_CODE (ary) == CONSTRUCTOR)
2447 r = (*CONSTRUCTOR_ELTS (ary))[i].value;
2448 else if (TREE_CODE (ary) == VECTOR_CST)
2449 r = VECTOR_CST_ELT (ary, i);
2450 else
2451 r = extract_string_elt (ary, elem_nchars, i);
2453 if (r)
2454 /* Don't VERIFY_CONSTANT here. */
2455 return r;
2457 /* Otherwise the element doesn't have a value yet. */
2460 /* Not found. */
2462 if (TREE_CODE (ary) == CONSTRUCTOR
2463 && CONSTRUCTOR_NO_IMPLICIT_ZERO (ary))
2465 /* 'ary' is part of the aggregate initializer we're currently
2466 building; if there's no initializer for this element yet,
2467 that's an error. */
2468 if (!ctx->quiet)
2469 error ("accessing uninitialized array element");
2470 *non_constant_p = true;
2471 return t;
2474 /* If it's within the array bounds but doesn't have an explicit
2475 initializer, it's value-initialized. */
2476 tree val = build_value_init (elem_type, tf_warning_or_error);
2477 return cxx_eval_constant_expression (ctx, val, lval, non_constant_p,
2478 overflow_p);
2481 /* Subroutine of cxx_eval_constant_expression.
2482 Attempt to reduce a field access of a value of class type. */
2484 static tree
2485 cxx_eval_component_reference (const constexpr_ctx *ctx, tree t,
2486 bool lval,
2487 bool *non_constant_p, bool *overflow_p)
2489 unsigned HOST_WIDE_INT i;
2490 tree field;
2491 tree value;
2492 tree part = TREE_OPERAND (t, 1);
2493 tree orig_whole = TREE_OPERAND (t, 0);
2494 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2495 lval,
2496 non_constant_p, overflow_p);
2497 if (INDIRECT_REF_P (whole)
2498 && integer_zerop (TREE_OPERAND (whole, 0))
2499 && !ctx->quiet)
2500 error ("dereferencing a null pointer in %qE", orig_whole);
2502 if (TREE_CODE (whole) == PTRMEM_CST)
2503 whole = cplus_expand_constant (whole);
2504 if (whole == orig_whole)
2505 return t;
2506 if (lval)
2507 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
2508 whole, part, NULL_TREE);
2509 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2510 CONSTRUCTOR. */
2511 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
2513 if (!ctx->quiet)
2514 error ("%qE is not a constant expression", orig_whole);
2515 *non_constant_p = true;
2517 if (DECL_MUTABLE_P (part))
2519 if (!ctx->quiet)
2520 error ("mutable %qD is not usable in a constant expression", part);
2521 *non_constant_p = true;
2523 if (*non_constant_p)
2524 return t;
2525 bool pmf = TYPE_PTRMEMFUNC_P (TREE_TYPE (whole));
2526 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2528 /* Use name match for PMF fields, as a variant will have a
2529 different FIELD_DECL with a different type. */
2530 if (pmf ? DECL_NAME (field) == DECL_NAME (part)
2531 : field == part)
2533 if (value)
2534 return value;
2535 else
2536 /* We're in the middle of initializing it. */
2537 break;
2540 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
2541 && CONSTRUCTOR_NELTS (whole) > 0)
2543 /* DR 1188 says we don't have to deal with this. */
2544 if (!ctx->quiet)
2545 error ("accessing %qD member instead of initialized %qD member in "
2546 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
2547 *non_constant_p = true;
2548 return t;
2551 /* We only create a CONSTRUCTOR for a subobject when we modify it, so empty
2552 classes never get represented; throw together a value now. */
2553 if (is_really_empty_class (TREE_TYPE (t)))
2554 return build_constructor (TREE_TYPE (t), NULL);
2556 gcc_assert (DECL_CONTEXT (part) == TYPE_MAIN_VARIANT (TREE_TYPE (whole)));
2558 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (whole))
2560 /* 'whole' is part of the aggregate initializer we're currently
2561 building; if there's no initializer for this member yet, that's an
2562 error. */
2563 if (!ctx->quiet)
2564 error ("accessing uninitialized member %qD", part);
2565 *non_constant_p = true;
2566 return t;
2569 /* If there's no explicit init for this field, it's value-initialized. */
2570 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
2571 return cxx_eval_constant_expression (ctx, value,
2572 lval,
2573 non_constant_p, overflow_p);
2576 /* Subroutine of cxx_eval_constant_expression.
2577 Attempt to reduce a field access of a value of class type that is
2578 expressed as a BIT_FIELD_REF. */
2580 static tree
2581 cxx_eval_bit_field_ref (const constexpr_ctx *ctx, tree t,
2582 bool lval,
2583 bool *non_constant_p, bool *overflow_p)
2585 tree orig_whole = TREE_OPERAND (t, 0);
2586 tree retval, fldval, utype, mask;
2587 bool fld_seen = false;
2588 HOST_WIDE_INT istart, isize;
2589 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2590 lval,
2591 non_constant_p, overflow_p);
2592 tree start, field, value;
2593 unsigned HOST_WIDE_INT i;
2595 if (whole == orig_whole)
2596 return t;
2597 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2598 CONSTRUCTOR. */
2599 if (!*non_constant_p
2600 && TREE_CODE (whole) != VECTOR_CST
2601 && TREE_CODE (whole) != CONSTRUCTOR)
2603 if (!ctx->quiet)
2604 error ("%qE is not a constant expression", orig_whole);
2605 *non_constant_p = true;
2607 if (*non_constant_p)
2608 return t;
2610 if (TREE_CODE (whole) == VECTOR_CST)
2611 return fold_ternary (BIT_FIELD_REF, TREE_TYPE (t), whole,
2612 TREE_OPERAND (t, 1), TREE_OPERAND (t, 2));
2614 start = TREE_OPERAND (t, 2);
2615 istart = tree_to_shwi (start);
2616 isize = tree_to_shwi (TREE_OPERAND (t, 1));
2617 utype = TREE_TYPE (t);
2618 if (!TYPE_UNSIGNED (utype))
2619 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
2620 retval = build_int_cst (utype, 0);
2621 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2623 tree bitpos = bit_position (field);
2624 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
2625 return value;
2626 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
2627 && TREE_CODE (value) == INTEGER_CST
2628 && tree_fits_shwi_p (bitpos)
2629 && tree_fits_shwi_p (DECL_SIZE (field)))
2631 HOST_WIDE_INT bit = tree_to_shwi (bitpos);
2632 HOST_WIDE_INT sz = tree_to_shwi (DECL_SIZE (field));
2633 HOST_WIDE_INT shift;
2634 if (bit >= istart && bit + sz <= istart + isize)
2636 fldval = fold_convert (utype, value);
2637 mask = build_int_cst_type (utype, -1);
2638 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
2639 size_int (TYPE_PRECISION (utype) - sz));
2640 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
2641 size_int (TYPE_PRECISION (utype) - sz));
2642 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
2643 shift = bit - istart;
2644 if (BYTES_BIG_ENDIAN)
2645 shift = TYPE_PRECISION (utype) - shift - sz;
2646 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
2647 size_int (shift));
2648 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
2649 fld_seen = true;
2653 if (fld_seen)
2654 return fold_convert (TREE_TYPE (t), retval);
2655 gcc_unreachable ();
2656 return error_mark_node;
2659 /* Subroutine of cxx_eval_constant_expression.
2660 Evaluate a short-circuited logical expression T in the context
2661 of a given constexpr CALL. BAILOUT_VALUE is the value for
2662 early return. CONTINUE_VALUE is used here purely for
2663 sanity check purposes. */
2665 static tree
2666 cxx_eval_logical_expression (const constexpr_ctx *ctx, tree t,
2667 tree bailout_value, tree continue_value,
2668 bool lval,
2669 bool *non_constant_p, bool *overflow_p)
2671 tree r;
2672 tree lhs = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2673 lval,
2674 non_constant_p, overflow_p);
2675 VERIFY_CONSTANT (lhs);
2676 if (tree_int_cst_equal (lhs, bailout_value))
2677 return lhs;
2678 gcc_assert (tree_int_cst_equal (lhs, continue_value));
2679 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2680 lval, non_constant_p,
2681 overflow_p);
2682 VERIFY_CONSTANT (r);
2683 return r;
2686 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
2687 CONSTRUCTOR elements to initialize (part of) an object containing that
2688 field. Return a pointer to the constructor_elt corresponding to the
2689 initialization of the field. */
2691 static constructor_elt *
2692 base_field_constructor_elt (vec<constructor_elt, va_gc> *v, tree ref)
2694 tree aggr = TREE_OPERAND (ref, 0);
2695 tree field = TREE_OPERAND (ref, 1);
2696 HOST_WIDE_INT i;
2697 constructor_elt *ce;
2699 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
2701 if (TREE_CODE (aggr) == COMPONENT_REF)
2703 constructor_elt *base_ce
2704 = base_field_constructor_elt (v, aggr);
2705 v = CONSTRUCTOR_ELTS (base_ce->value);
2708 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
2709 if (ce->index == field)
2710 return ce;
2712 gcc_unreachable ();
2713 return NULL;
2716 /* Some of the expressions fed to the constexpr mechanism are calls to
2717 constructors, which have type void. In that case, return the type being
2718 initialized by the constructor. */
2720 static tree
2721 initialized_type (tree t)
2723 if (TYPE_P (t))
2724 return t;
2725 tree type = cv_unqualified (TREE_TYPE (t));
2726 if (TREE_CODE (t) == CALL_EXPR || TREE_CODE (t) == AGGR_INIT_EXPR)
2728 /* A constructor call has void type, so we need to look deeper. */
2729 tree fn = get_function_named_in_call (t);
2730 if (fn && TREE_CODE (fn) == FUNCTION_DECL
2731 && DECL_CXX_CONSTRUCTOR_P (fn))
2732 type = DECL_CONTEXT (fn);
2734 return type;
2737 /* We're about to initialize element INDEX of an array or class from VALUE.
2738 Set up NEW_CTX appropriately by adjusting .object to refer to the
2739 subobject and creating a new CONSTRUCTOR if the element is itself
2740 a class or array. */
2742 static void
2743 init_subob_ctx (const constexpr_ctx *ctx, constexpr_ctx &new_ctx,
2744 tree index, tree &value)
2746 new_ctx = *ctx;
2748 if (index && TREE_CODE (index) != INTEGER_CST
2749 && TREE_CODE (index) != FIELD_DECL)
2750 /* This won't have an element in the new CONSTRUCTOR. */
2751 return;
2753 tree type = initialized_type (value);
2754 if (!AGGREGATE_TYPE_P (type) && !VECTOR_TYPE_P (type))
2755 /* A non-aggregate member doesn't get its own CONSTRUCTOR. */
2756 return;
2758 /* The sub-aggregate initializer might contain a placeholder;
2759 update object to refer to the subobject and ctor to refer to
2760 the (newly created) sub-initializer. */
2761 if (ctx->object)
2762 new_ctx.object = build_ctor_subob_ref (index, type, ctx->object);
2763 tree elt = build_constructor (type, NULL);
2764 CONSTRUCTOR_NO_IMPLICIT_ZERO (elt) = true;
2765 new_ctx.ctor = elt;
2767 if (TREE_CODE (value) == TARGET_EXPR)
2768 /* Avoid creating another CONSTRUCTOR when we expand the TARGET_EXPR. */
2769 value = TARGET_EXPR_INITIAL (value);
2772 /* We're about to process an initializer for a class or array TYPE. Make
2773 sure that CTX is set up appropriately. */
2775 static void
2776 verify_ctor_sanity (const constexpr_ctx *ctx, tree type)
2778 /* We don't bother building a ctor for an empty base subobject. */
2779 if (is_empty_class (type))
2780 return;
2782 /* We're in the middle of an initializer that might involve placeholders;
2783 our caller should have created a CONSTRUCTOR for us to put the
2784 initializer into. We will either return that constructor or T. */
2785 gcc_assert (ctx->ctor);
2786 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2787 (type, TREE_TYPE (ctx->ctor)));
2788 /* We used to check that ctx->ctor was empty, but that isn't the case when
2789 the object is zero-initialized before calling the constructor. */
2790 if (ctx->object)
2792 tree otype = TREE_TYPE (ctx->object);
2793 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, otype)
2794 /* Handle flexible array members. */
2795 || (TREE_CODE (otype) == ARRAY_TYPE
2796 && TYPE_DOMAIN (otype) == NULL_TREE
2797 && TREE_CODE (type) == ARRAY_TYPE
2798 && (same_type_ignoring_top_level_qualifiers_p
2799 (TREE_TYPE (type), TREE_TYPE (otype)))));
2801 gcc_assert (!ctx->object || !DECL_P (ctx->object)
2802 || *(ctx->values->get (ctx->object)) == ctx->ctor);
2805 /* Subroutine of cxx_eval_constant_expression.
2806 The expression tree T denotes a C-style array or a C-style
2807 aggregate. Reduce it to a constant expression. */
2809 static tree
2810 cxx_eval_bare_aggregate (const constexpr_ctx *ctx, tree t,
2811 bool lval,
2812 bool *non_constant_p, bool *overflow_p)
2814 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
2815 bool changed = false;
2816 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
2817 tree type = TREE_TYPE (t);
2819 constexpr_ctx new_ctx;
2820 if (TYPE_PTRMEMFUNC_P (type) || VECTOR_TYPE_P (type))
2822 /* We don't really need the ctx->ctor business for a PMF or
2823 vector, but it's simpler to use the same code. */
2824 new_ctx = *ctx;
2825 new_ctx.ctor = build_constructor (type, NULL);
2826 new_ctx.object = NULL_TREE;
2827 ctx = &new_ctx;
2829 verify_ctor_sanity (ctx, type);
2830 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2831 vec_alloc (*p, vec_safe_length (v));
2833 unsigned i;
2834 tree index, value;
2835 bool constant_p = true;
2836 bool side_effects_p = false;
2837 FOR_EACH_CONSTRUCTOR_ELT (v, i, index, value)
2839 tree orig_value = value;
2840 init_subob_ctx (ctx, new_ctx, index, value);
2841 if (new_ctx.ctor != ctx->ctor)
2842 /* If we built a new CONSTRUCTOR, attach it now so that other
2843 initializers can refer to it. */
2844 CONSTRUCTOR_APPEND_ELT (*p, index, new_ctx.ctor);
2845 tree elt = cxx_eval_constant_expression (&new_ctx, value,
2846 lval,
2847 non_constant_p, overflow_p);
2848 /* Don't VERIFY_CONSTANT here. */
2849 if (ctx->quiet && *non_constant_p)
2850 break;
2851 if (elt != orig_value)
2852 changed = true;
2854 if (!TREE_CONSTANT (elt))
2855 constant_p = false;
2856 if (TREE_SIDE_EFFECTS (elt))
2857 side_effects_p = true;
2858 if (index && TREE_CODE (index) == COMPONENT_REF)
2860 /* This is an initialization of a vfield inside a base
2861 subaggregate that we already initialized; push this
2862 initialization into the previous initialization. */
2863 constructor_elt *inner = base_field_constructor_elt (*p, index);
2864 inner->value = elt;
2865 changed = true;
2867 else if (index
2868 && (TREE_CODE (index) == NOP_EXPR
2869 || TREE_CODE (index) == POINTER_PLUS_EXPR))
2871 /* This is an initializer for an empty base; now that we've
2872 checked that it's constant, we can ignore it. */
2873 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (index))));
2874 changed = true;
2876 else if (new_ctx.ctor != ctx->ctor)
2878 /* We appended this element above; update the value. */
2879 gcc_assert ((*p)->last().index == index);
2880 (*p)->last().value = elt;
2882 else
2883 CONSTRUCTOR_APPEND_ELT (*p, index, elt);
2885 if (*non_constant_p || !changed)
2886 return t;
2887 t = ctx->ctor;
2888 /* We're done building this CONSTRUCTOR, so now we can interpret an
2889 element without an explicit initializer as value-initialized. */
2890 CONSTRUCTOR_NO_IMPLICIT_ZERO (t) = false;
2891 TREE_CONSTANT (t) = constant_p;
2892 TREE_SIDE_EFFECTS (t) = side_effects_p;
2893 if (VECTOR_TYPE_P (type))
2894 t = fold (t);
2895 return t;
2898 /* Subroutine of cxx_eval_constant_expression.
2899 The expression tree T is a VEC_INIT_EXPR which denotes the desired
2900 initialization of a non-static data member of array type. Reduce it to a
2901 CONSTRUCTOR.
2903 Note that apart from value-initialization (when VALUE_INIT is true),
2904 this is only intended to support value-initialization and the
2905 initializations done by defaulted constructors for classes with
2906 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
2907 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
2908 for the copy/move constructor. */
2910 static tree
2911 cxx_eval_vec_init_1 (const constexpr_ctx *ctx, tree atype, tree init,
2912 bool value_init, bool lval,
2913 bool *non_constant_p, bool *overflow_p)
2915 tree elttype = TREE_TYPE (atype);
2916 verify_ctor_sanity (ctx, atype);
2917 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2918 bool pre_init = false;
2919 unsigned HOST_WIDE_INT i;
2921 /* For the default constructor, build up a call to the default
2922 constructor of the element type. We only need to handle class types
2923 here, as for a constructor to be constexpr, all members must be
2924 initialized, which for a defaulted default constructor means they must
2925 be of a class type with a constexpr default constructor. */
2926 if (TREE_CODE (elttype) == ARRAY_TYPE)
2927 /* We only do this at the lowest level. */;
2928 else if (value_init)
2930 init = build_value_init (elttype, tf_warning_or_error);
2931 pre_init = true;
2933 else if (!init)
2935 vec<tree, va_gc> *argvec = make_tree_vector ();
2936 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
2937 &argvec, elttype, LOOKUP_NORMAL,
2938 tf_warning_or_error);
2939 release_tree_vector (argvec);
2940 init = build_aggr_init_expr (TREE_TYPE (init), init);
2941 pre_init = true;
2944 tree nelts = get_array_or_vector_nelts (ctx, atype, non_constant_p,
2945 overflow_p);
2946 unsigned HOST_WIDE_INT max = tree_to_uhwi (nelts);
2947 for (i = 0; i < max; ++i)
2949 tree idx = build_int_cst (size_type_node, i);
2950 tree eltinit;
2951 bool reuse = false;
2952 constexpr_ctx new_ctx;
2953 init_subob_ctx (ctx, new_ctx, idx, pre_init ? init : elttype);
2954 if (new_ctx.ctor != ctx->ctor)
2955 CONSTRUCTOR_APPEND_ELT (*p, idx, new_ctx.ctor);
2956 if (TREE_CODE (elttype) == ARRAY_TYPE)
2958 /* A multidimensional array; recurse. */
2959 if (value_init || init == NULL_TREE)
2961 eltinit = NULL_TREE;
2962 reuse = i == 0;
2964 else
2965 eltinit = cp_build_array_ref (input_location, init, idx,
2966 tf_warning_or_error);
2967 eltinit = cxx_eval_vec_init_1 (&new_ctx, elttype, eltinit, value_init,
2968 lval,
2969 non_constant_p, overflow_p);
2971 else if (pre_init)
2973 /* Initializing an element using value or default initialization
2974 we just pre-built above. */
2975 eltinit = cxx_eval_constant_expression (&new_ctx, init, lval,
2976 non_constant_p, overflow_p);
2977 reuse = i == 0;
2979 else
2981 /* Copying an element. */
2982 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2983 (atype, TREE_TYPE (init)));
2984 eltinit = cp_build_array_ref (input_location, init, idx,
2985 tf_warning_or_error);
2986 if (!lvalue_p (init))
2987 eltinit = move (eltinit);
2988 eltinit = force_rvalue (eltinit, tf_warning_or_error);
2989 eltinit = cxx_eval_constant_expression (&new_ctx, eltinit, lval,
2990 non_constant_p, overflow_p);
2992 if (*non_constant_p && !ctx->quiet)
2993 break;
2994 if (new_ctx.ctor != ctx->ctor)
2996 /* We appended this element above; update the value. */
2997 gcc_assert ((*p)->last().index == idx);
2998 (*p)->last().value = eltinit;
3000 else
3001 CONSTRUCTOR_APPEND_ELT (*p, idx, eltinit);
3002 /* Reuse the result of cxx_eval_constant_expression call
3003 from the first iteration to all others if it is a constant
3004 initializer that doesn't require relocations. */
3005 if (reuse
3006 && max > 1
3007 && (eltinit == NULL_TREE
3008 || (initializer_constant_valid_p (eltinit, TREE_TYPE (eltinit))
3009 == null_pointer_node)))
3011 if (new_ctx.ctor != ctx->ctor)
3012 eltinit = new_ctx.ctor;
3013 tree range = build2 (RANGE_EXPR, size_type_node,
3014 build_int_cst (size_type_node, 1),
3015 build_int_cst (size_type_node, max - 1));
3016 CONSTRUCTOR_APPEND_ELT (*p, range, unshare_constructor (eltinit));
3017 break;
3019 else if (i == 0)
3020 vec_safe_reserve (*p, max);
3023 if (!*non_constant_p)
3025 init = ctx->ctor;
3026 CONSTRUCTOR_NO_IMPLICIT_ZERO (init) = false;
3028 return init;
3031 static tree
3032 cxx_eval_vec_init (const constexpr_ctx *ctx, tree t,
3033 bool lval,
3034 bool *non_constant_p, bool *overflow_p)
3036 tree atype = TREE_TYPE (t);
3037 tree init = VEC_INIT_EXPR_INIT (t);
3038 tree r = cxx_eval_vec_init_1 (ctx, atype, init,
3039 VEC_INIT_EXPR_VALUE_INIT (t),
3040 lval, non_constant_p, overflow_p);
3041 if (*non_constant_p)
3042 return t;
3043 else
3044 return r;
3047 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
3048 match. We want to be less strict for simple *& folding; if we have a
3049 non-const temporary that we access through a const pointer, that should
3050 work. We handle this here rather than change fold_indirect_ref_1
3051 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
3052 don't really make sense outside of constant expression evaluation. Also
3053 we want to allow folding to COMPONENT_REF, which could cause trouble
3054 with TBAA in fold_indirect_ref_1.
3056 Try to keep this function synced with fold_indirect_ref_1. */
3058 static tree
3059 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
3061 tree sub = op0;
3062 tree subtype;
3063 poly_uint64 const_op01;
3065 STRIP_NOPS (sub);
3066 subtype = TREE_TYPE (sub);
3067 if (!POINTER_TYPE_P (subtype))
3068 return NULL_TREE;
3070 if (TREE_CODE (sub) == ADDR_EXPR)
3072 tree op = TREE_OPERAND (sub, 0);
3073 tree optype = TREE_TYPE (op);
3075 /* *&CONST_DECL -> to the value of the const decl. */
3076 if (TREE_CODE (op) == CONST_DECL)
3077 return DECL_INITIAL (op);
3078 /* *&p => p; make sure to handle *&"str"[cst] here. */
3079 if (same_type_ignoring_top_level_qualifiers_p (optype, type)
3080 /* Also handle the case where the desired type is an array of unknown
3081 bounds because the variable has had its bounds deduced since the
3082 ADDR_EXPR was created. */
3083 || (TREE_CODE (type) == ARRAY_TYPE
3084 && TREE_CODE (optype) == ARRAY_TYPE
3085 && TYPE_DOMAIN (type) == NULL_TREE
3086 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (optype),
3087 TREE_TYPE (type))))
3089 tree fop = fold_read_from_constant_string (op);
3090 if (fop)
3091 return fop;
3092 else
3093 return op;
3095 /* *(foo *)&fooarray => fooarray[0] */
3096 else if (TREE_CODE (optype) == ARRAY_TYPE
3097 && (same_type_ignoring_top_level_qualifiers_p
3098 (type, TREE_TYPE (optype))))
3100 tree type_domain = TYPE_DOMAIN (optype);
3101 tree min_val = size_zero_node;
3102 if (type_domain && TYPE_MIN_VALUE (type_domain))
3103 min_val = TYPE_MIN_VALUE (type_domain);
3104 return build4_loc (loc, ARRAY_REF, type, op, min_val,
3105 NULL_TREE, NULL_TREE);
3107 /* *(foo *)&complexfoo => __real__ complexfoo */
3108 else if (TREE_CODE (optype) == COMPLEX_TYPE
3109 && (same_type_ignoring_top_level_qualifiers_p
3110 (type, TREE_TYPE (optype))))
3111 return fold_build1_loc (loc, REALPART_EXPR, type, op);
3112 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
3113 else if (VECTOR_TYPE_P (optype)
3114 && (same_type_ignoring_top_level_qualifiers_p
3115 (type, TREE_TYPE (optype))))
3117 tree part_width = TYPE_SIZE (type);
3118 tree index = bitsize_int (0);
3119 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width,
3120 index);
3122 /* Also handle conversion to an empty base class, which
3123 is represented with a NOP_EXPR. */
3124 else if (is_empty_class (type)
3125 && CLASS_TYPE_P (optype)
3126 && DERIVED_FROM_P (type, optype))
3128 *empty_base = true;
3129 return op;
3131 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
3132 else if (RECORD_OR_UNION_TYPE_P (optype))
3134 tree field = TYPE_FIELDS (optype);
3135 for (; field; field = DECL_CHAIN (field))
3136 if (TREE_CODE (field) == FIELD_DECL
3137 && TREE_TYPE (field) != error_mark_node
3138 && integer_zerop (byte_position (field))
3139 && (same_type_ignoring_top_level_qualifiers_p
3140 (TREE_TYPE (field), type)))
3141 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
3144 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
3145 && poly_int_tree_p (TREE_OPERAND (sub, 1), &const_op01))
3147 tree op00 = TREE_OPERAND (sub, 0);
3148 tree op01 = TREE_OPERAND (sub, 1);
3150 STRIP_NOPS (op00);
3151 if (TREE_CODE (op00) == ADDR_EXPR)
3153 tree op00type;
3154 op00 = TREE_OPERAND (op00, 0);
3155 op00type = TREE_TYPE (op00);
3157 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
3158 if (VECTOR_TYPE_P (op00type)
3159 && same_type_ignoring_top_level_qualifiers_p
3160 (type, TREE_TYPE (op00type))
3161 /* POINTER_PLUS_EXPR second operand is sizetype, unsigned,
3162 but we want to treat offsets with MSB set as negative.
3163 For the code below negative offsets are invalid and
3164 TYPE_SIZE of the element is something unsigned, so
3165 check whether op01 fits into poly_int64, which implies
3166 it is from 0 to INTTYPE_MAXIMUM (HOST_WIDE_INT), and
3167 then just use poly_uint64 because we want to treat the
3168 value as unsigned. */
3169 && tree_fits_poly_int64_p (op01))
3171 tree part_width = TYPE_SIZE (type);
3172 poly_uint64 max_offset
3173 = (tree_to_uhwi (part_width) / BITS_PER_UNIT
3174 * TYPE_VECTOR_SUBPARTS (op00type));
3175 if (known_lt (const_op01, max_offset))
3177 tree index = bitsize_int (const_op01 * BITS_PER_UNIT);
3178 return fold_build3_loc (loc,
3179 BIT_FIELD_REF, type, op00,
3180 part_width, index);
3183 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
3184 else if (TREE_CODE (op00type) == COMPLEX_TYPE
3185 && (same_type_ignoring_top_level_qualifiers_p
3186 (type, TREE_TYPE (op00type))))
3188 if (known_eq (wi::to_poly_offset (TYPE_SIZE_UNIT (type)),
3189 const_op01))
3190 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
3192 /* ((foo *)&fooarray)[1] => fooarray[1] */
3193 else if (TREE_CODE (op00type) == ARRAY_TYPE
3194 && (same_type_ignoring_top_level_qualifiers_p
3195 (type, TREE_TYPE (op00type))))
3197 tree type_domain = TYPE_DOMAIN (op00type);
3198 tree min_val = size_zero_node;
3199 if (type_domain && TYPE_MIN_VALUE (type_domain))
3200 min_val = TYPE_MIN_VALUE (type_domain);
3201 offset_int off = wi::to_offset (op01);
3202 offset_int el_sz = wi::to_offset (TYPE_SIZE_UNIT (type));
3203 offset_int remainder;
3204 off = wi::divmod_trunc (off, el_sz, SIGNED, &remainder);
3205 if (remainder == 0 && TREE_CODE (min_val) == INTEGER_CST)
3207 off = off + wi::to_offset (min_val);
3208 op01 = wide_int_to_tree (sizetype, off);
3209 return build4_loc (loc, ARRAY_REF, type, op00, op01,
3210 NULL_TREE, NULL_TREE);
3213 /* Also handle conversion to an empty base class, which
3214 is represented with a NOP_EXPR. */
3215 else if (is_empty_class (type)
3216 && CLASS_TYPE_P (op00type)
3217 && DERIVED_FROM_P (type, op00type))
3219 *empty_base = true;
3220 return op00;
3222 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
3223 else if (RECORD_OR_UNION_TYPE_P (op00type))
3225 tree field = TYPE_FIELDS (op00type);
3226 for (; field; field = DECL_CHAIN (field))
3227 if (TREE_CODE (field) == FIELD_DECL
3228 && TREE_TYPE (field) != error_mark_node
3229 && tree_int_cst_equal (byte_position (field), op01)
3230 && (same_type_ignoring_top_level_qualifiers_p
3231 (TREE_TYPE (field), type)))
3232 return fold_build3 (COMPONENT_REF, type, op00,
3233 field, NULL_TREE);
3237 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3238 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3239 && (same_type_ignoring_top_level_qualifiers_p
3240 (type, TREE_TYPE (TREE_TYPE (subtype)))))
3242 tree type_domain;
3243 tree min_val = size_zero_node;
3244 tree newsub
3245 = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
3246 if (newsub)
3247 sub = newsub;
3248 else
3249 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
3250 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3251 if (type_domain && TYPE_MIN_VALUE (type_domain))
3252 min_val = TYPE_MIN_VALUE (type_domain);
3253 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
3254 NULL_TREE);
3257 return NULL_TREE;
3260 static tree
3261 cxx_eval_indirect_ref (const constexpr_ctx *ctx, tree t,
3262 bool lval,
3263 bool *non_constant_p, bool *overflow_p)
3265 tree orig_op0 = TREE_OPERAND (t, 0);
3266 bool empty_base = false;
3268 /* We can handle a MEM_REF like an INDIRECT_REF, if MEM_REF's second
3269 operand is an integer-zero. Otherwise reject the MEM_REF for now. */
3271 if (TREE_CODE (t) == MEM_REF
3272 && (!TREE_OPERAND (t, 1) || !integer_zerop (TREE_OPERAND (t, 1))))
3274 gcc_assert (ctx->quiet);
3275 *non_constant_p = true;
3276 return t;
3279 /* First try to simplify it directly. */
3280 tree r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), orig_op0,
3281 &empty_base);
3282 if (!r)
3284 /* If that didn't work, evaluate the operand first. */
3285 tree op0 = cxx_eval_constant_expression (ctx, orig_op0,
3286 /*lval*/false, non_constant_p,
3287 overflow_p);
3288 /* Don't VERIFY_CONSTANT here. */
3289 if (*non_constant_p)
3290 return t;
3292 if (!lval && integer_zerop (op0))
3294 if (!ctx->quiet)
3295 error ("dereferencing a null pointer");
3296 *non_constant_p = true;
3297 return t;
3300 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
3301 &empty_base);
3302 if (r == NULL_TREE)
3304 /* We couldn't fold to a constant value. Make sure it's not
3305 something we should have been able to fold. */
3306 tree sub = op0;
3307 STRIP_NOPS (sub);
3308 if (TREE_CODE (sub) == ADDR_EXPR)
3310 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
3311 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
3312 /* DR 1188 says we don't have to deal with this. */
3313 if (!ctx->quiet)
3314 error ("accessing value of %qE through a %qT glvalue in a "
3315 "constant expression", build_fold_indirect_ref (sub),
3316 TREE_TYPE (t));
3317 *non_constant_p = true;
3318 return t;
3321 if (lval && op0 != orig_op0)
3322 return build1 (INDIRECT_REF, TREE_TYPE (t), op0);
3323 if (!lval)
3324 VERIFY_CONSTANT (t);
3325 return t;
3329 r = cxx_eval_constant_expression (ctx, r,
3330 lval, non_constant_p, overflow_p);
3331 if (*non_constant_p)
3332 return t;
3334 /* If we're pulling out the value of an empty base, just return an empty
3335 CONSTRUCTOR. */
3336 if (empty_base && !lval)
3338 r = build_constructor (TREE_TYPE (t), NULL);
3339 TREE_CONSTANT (r) = true;
3342 return r;
3345 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
3346 Shared between potential_constant_expression and
3347 cxx_eval_constant_expression. */
3349 static void
3350 non_const_var_error (tree r)
3352 tree type = TREE_TYPE (r);
3353 error ("the value of %qD is not usable in a constant "
3354 "expression", r);
3355 /* Avoid error cascade. */
3356 if (DECL_INITIAL (r) == error_mark_node)
3357 return;
3358 if (DECL_DECLARED_CONSTEXPR_P (r))
3359 inform (DECL_SOURCE_LOCATION (r),
3360 "%qD used in its own initializer", r);
3361 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
3363 if (!CP_TYPE_CONST_P (type))
3364 inform (DECL_SOURCE_LOCATION (r),
3365 "%q#D is not const", r);
3366 else if (CP_TYPE_VOLATILE_P (type))
3367 inform (DECL_SOURCE_LOCATION (r),
3368 "%q#D is volatile", r);
3369 else if (!DECL_INITIAL (r)
3370 || !TREE_CONSTANT (DECL_INITIAL (r))
3371 || !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r))
3372 inform (DECL_SOURCE_LOCATION (r),
3373 "%qD was not initialized with a constant "
3374 "expression", r);
3375 else
3376 gcc_unreachable ();
3378 else if (TREE_CODE (type) == REFERENCE_TYPE)
3379 inform (DECL_SOURCE_LOCATION (r),
3380 "%qD was not initialized with a constant "
3381 "expression", r);
3382 else
3384 if (cxx_dialect >= cxx11 && !DECL_DECLARED_CONSTEXPR_P (r))
3385 inform (DECL_SOURCE_LOCATION (r),
3386 "%qD was not declared %<constexpr%>", r);
3387 else
3388 inform (DECL_SOURCE_LOCATION (r),
3389 "%qD does not have integral or enumeration type",
3394 /* Subroutine of cxx_eval_constant_expression.
3395 Like cxx_eval_unary_expression, except for trinary expressions. */
3397 static tree
3398 cxx_eval_trinary_expression (const constexpr_ctx *ctx, tree t,
3399 bool lval,
3400 bool *non_constant_p, bool *overflow_p)
3402 int i;
3403 tree args[3];
3404 tree val;
3406 for (i = 0; i < 3; i++)
3408 args[i] = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, i),
3409 lval,
3410 non_constant_p, overflow_p);
3411 VERIFY_CONSTANT (args[i]);
3414 val = fold_ternary_loc (EXPR_LOCATION (t), TREE_CODE (t), TREE_TYPE (t),
3415 args[0], args[1], args[2]);
3416 if (val == NULL_TREE)
3417 return t;
3418 VERIFY_CONSTANT (val);
3419 return val;
3422 /* True if T was declared in a function declared to be constexpr, and
3423 therefore potentially constant in C++14. */
3425 bool
3426 var_in_constexpr_fn (tree t)
3428 tree ctx = DECL_CONTEXT (t);
3429 return (ctx && TREE_CODE (ctx) == FUNCTION_DECL
3430 && DECL_DECLARED_CONSTEXPR_P (ctx));
3433 /* True if T was declared in a function that might be constexpr: either a
3434 function that was declared constexpr, or a C++17 lambda op(). */
3436 bool
3437 var_in_maybe_constexpr_fn (tree t)
3439 if (cxx_dialect >= cxx17
3440 && DECL_FUNCTION_SCOPE_P (t)
3441 && LAMBDA_FUNCTION_P (DECL_CONTEXT (t)))
3442 return true;
3443 return var_in_constexpr_fn (t);
3446 /* We're assigning INIT to TARGET. In do_build_copy_constructor and
3447 build_over_call we implement trivial copy of a class with tail padding using
3448 assignment of character arrays, which is valid in normal code, but not in
3449 constexpr evaluation. We don't need to worry about clobbering tail padding
3450 in constexpr evaluation, so strip the type punning. */
3452 static void
3453 maybe_simplify_trivial_copy (tree &target, tree &init)
3455 if (TREE_CODE (target) == MEM_REF
3456 && TREE_CODE (init) == MEM_REF
3457 && TREE_TYPE (target) == TREE_TYPE (init)
3458 && TREE_CODE (TREE_TYPE (target)) == ARRAY_TYPE
3459 && TREE_TYPE (TREE_TYPE (target)) == unsigned_char_type_node)
3461 target = build_fold_indirect_ref (TREE_OPERAND (target, 0));
3462 init = build_fold_indirect_ref (TREE_OPERAND (init, 0));
3466 /* Evaluate an INIT_EXPR or MODIFY_EXPR. */
3468 static tree
3469 cxx_eval_store_expression (const constexpr_ctx *ctx, tree t,
3470 bool lval,
3471 bool *non_constant_p, bool *overflow_p)
3473 constexpr_ctx new_ctx = *ctx;
3475 tree init = TREE_OPERAND (t, 1);
3476 if (TREE_CLOBBER_P (init))
3477 /* Just ignore clobbers. */
3478 return void_node;
3480 /* First we figure out where we're storing to. */
3481 tree target = TREE_OPERAND (t, 0);
3483 maybe_simplify_trivial_copy (target, init);
3485 tree type = TREE_TYPE (target);
3486 target = cxx_eval_constant_expression (ctx, target,
3487 true,
3488 non_constant_p, overflow_p);
3489 if (*non_constant_p)
3490 return t;
3492 /* cxx_eval_array_reference for lval = true allows references one past
3493 end of array, because it does not know if it is just taking address
3494 (which is valid), or actual dereference. Here we know it is
3495 a dereference, so diagnose it here. */
3496 for (tree probe = target; probe; )
3498 switch (TREE_CODE (probe))
3500 case ARRAY_REF:
3501 tree nelts, ary;
3502 ary = TREE_OPERAND (probe, 0);
3503 nelts = get_array_or_vector_nelts (ctx, TREE_TYPE (ary),
3504 non_constant_p, overflow_p);
3505 VERIFY_CONSTANT (nelts);
3506 gcc_assert (TREE_CODE (nelts) == INTEGER_CST
3507 && TREE_CODE (TREE_OPERAND (probe, 1)) == INTEGER_CST);
3508 if (wi::to_widest (TREE_OPERAND (probe, 1)) == wi::to_widest (nelts))
3510 diag_array_subscript (ctx, ary, TREE_OPERAND (probe, 1));
3511 *non_constant_p = true;
3512 return t;
3514 /* FALLTHRU */
3516 case BIT_FIELD_REF:
3517 case COMPONENT_REF:
3518 probe = TREE_OPERAND (probe, 0);
3519 continue;
3521 default:
3522 probe = NULL_TREE;
3523 continue;
3527 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (target), type))
3529 /* For initialization of an empty base, the original target will be
3530 *(base*)this, which the above evaluation resolves to the object
3531 argument, which has the derived type rather than the base type. In
3532 this situation, just evaluate the initializer and return, since
3533 there's no actual data to store. */
3534 gcc_assert (is_empty_class (type));
3535 return cxx_eval_constant_expression (ctx, init, false,
3536 non_constant_p, overflow_p);
3539 /* And then find the underlying variable. */
3540 vec<tree,va_gc> *refs = make_tree_vector();
3541 tree object = NULL_TREE;
3542 for (tree probe = target; object == NULL_TREE; )
3544 switch (TREE_CODE (probe))
3546 case BIT_FIELD_REF:
3547 case COMPONENT_REF:
3548 case ARRAY_REF:
3549 vec_safe_push (refs, TREE_OPERAND (probe, 1));
3550 vec_safe_push (refs, TREE_TYPE (probe));
3551 probe = TREE_OPERAND (probe, 0);
3552 break;
3554 default:
3555 object = probe;
3559 /* And then find/build up our initializer for the path to the subobject
3560 we're initializing. */
3561 tree *valp;
3562 if (object == ctx->object && VAR_P (object)
3563 && DECL_NAME (object) && ctx->call == NULL)
3564 /* The variable we're building up an aggregate initializer for is outside
3565 the constant-expression, so don't evaluate the store. We check
3566 DECL_NAME to handle TARGET_EXPR temporaries, which are fair game. */
3567 valp = NULL;
3568 else if (DECL_P (object))
3569 valp = ctx->values->get (object);
3570 else
3571 valp = NULL;
3572 if (!valp)
3574 /* A constant-expression cannot modify objects from outside the
3575 constant-expression. */
3576 if (!ctx->quiet)
3577 error ("modification of %qE is not a constant expression", object);
3578 *non_constant_p = true;
3579 return t;
3581 type = TREE_TYPE (object);
3582 bool no_zero_init = true;
3584 vec<tree,va_gc> *ctors = make_tree_vector ();
3585 while (!refs->is_empty())
3587 if (*valp == NULL_TREE)
3589 *valp = build_constructor (type, NULL);
3590 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3592 else if (TREE_CODE (*valp) == STRING_CST)
3594 /* An array was initialized with a string constant, and now
3595 we're writing into one of its elements. Explode the
3596 single initialization into a set of element
3597 initializations. */
3598 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
3600 tree string = *valp;
3601 tree elt_type = TREE_TYPE (type);
3602 unsigned chars_per_elt = (TYPE_PRECISION (elt_type)
3603 / TYPE_PRECISION (char_type_node));
3604 unsigned num_elts = TREE_STRING_LENGTH (string) / chars_per_elt;
3605 tree ary_ctor = build_constructor (type, NULL);
3607 vec_safe_reserve (CONSTRUCTOR_ELTS (ary_ctor), num_elts);
3608 for (unsigned ix = 0; ix != num_elts; ix++)
3610 constructor_elt elt =
3612 build_int_cst (size_type_node, ix),
3613 extract_string_elt (string, chars_per_elt, ix)
3615 CONSTRUCTOR_ELTS (ary_ctor)->quick_push (elt);
3618 *valp = ary_ctor;
3621 /* If the value of object is already zero-initialized, any new ctors for
3622 subobjects will also be zero-initialized. */
3623 no_zero_init = CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp);
3625 vec_safe_push (ctors, *valp);
3627 enum tree_code code = TREE_CODE (type);
3628 type = refs->pop();
3629 tree index = refs->pop();
3631 constructor_elt *cep = NULL;
3632 if (code == ARRAY_TYPE)
3634 HOST_WIDE_INT i
3635 = find_array_ctor_elt (*valp, index, /*insert*/true);
3636 gcc_assert (i >= 0);
3637 cep = CONSTRUCTOR_ELT (*valp, i);
3638 gcc_assert (TREE_CODE (cep->index) != RANGE_EXPR);
3640 else
3642 gcc_assert (TREE_CODE (index) == FIELD_DECL);
3644 /* We must keep the CONSTRUCTOR's ELTS in FIELD order.
3645 Usually we meet initializers in that order, but it is
3646 possible for base types to be placed not in program
3647 order. */
3648 tree fields = TYPE_FIELDS (DECL_CONTEXT (index));
3649 unsigned HOST_WIDE_INT idx;
3651 if (code == UNION_TYPE && CONSTRUCTOR_NELTS (*valp)
3652 && CONSTRUCTOR_ELT (*valp, 0)->index != index)
3653 /* Changing active member. */
3654 vec_safe_truncate (CONSTRUCTOR_ELTS (*valp), 0);
3656 for (idx = 0;
3657 vec_safe_iterate (CONSTRUCTOR_ELTS (*valp), idx, &cep);
3658 idx++, fields = DECL_CHAIN (fields))
3660 if (index == cep->index)
3661 goto found;
3663 /* The field we're initializing must be on the field
3664 list. Look to see if it is present before the
3665 field the current ELT initializes. */
3666 for (; fields != cep->index; fields = DECL_CHAIN (fields))
3667 if (index == fields)
3668 goto insert;
3671 /* We fell off the end of the CONSTRUCTOR, so insert a new
3672 entry at the end. */
3673 insert:
3675 constructor_elt ce = { index, NULL_TREE };
3677 vec_safe_insert (CONSTRUCTOR_ELTS (*valp), idx, ce);
3678 cep = CONSTRUCTOR_ELT (*valp, idx);
3680 found:;
3682 valp = &cep->value;
3684 release_tree_vector (refs);
3686 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
3688 /* Create a new CONSTRUCTOR in case evaluation of the initializer
3689 wants to modify it. */
3690 if (*valp == NULL_TREE)
3692 *valp = build_constructor (type, NULL);
3693 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3695 else if (TREE_CODE (*valp) == PTRMEM_CST)
3696 *valp = cplus_expand_constant (*valp);
3697 new_ctx.ctor = *valp;
3698 new_ctx.object = target;
3701 init = cxx_eval_constant_expression (&new_ctx, init, false,
3702 non_constant_p, overflow_p);
3703 /* Don't share a CONSTRUCTOR that might be changed later. */
3704 init = unshare_constructor (init);
3705 if (target == object)
3706 /* The hash table might have moved since the get earlier. */
3707 valp = ctx->values->get (object);
3709 if (TREE_CODE (init) == CONSTRUCTOR)
3711 /* An outer ctx->ctor might be pointing to *valp, so replace
3712 its contents. */
3713 CONSTRUCTOR_ELTS (*valp) = CONSTRUCTOR_ELTS (init);
3714 TREE_CONSTANT (*valp) = TREE_CONSTANT (init);
3715 TREE_SIDE_EFFECTS (*valp) = TREE_SIDE_EFFECTS (init);
3716 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp)
3717 = CONSTRUCTOR_NO_IMPLICIT_ZERO (init);
3719 else
3720 *valp = init;
3722 /* Update TREE_CONSTANT and TREE_SIDE_EFFECTS on enclosing
3723 CONSTRUCTORs, if any. */
3724 tree elt;
3725 unsigned i;
3726 bool c = TREE_CONSTANT (init);
3727 bool s = TREE_SIDE_EFFECTS (init);
3728 if (!c || s)
3729 FOR_EACH_VEC_SAFE_ELT (ctors, i, elt)
3731 if (!c)
3732 TREE_CONSTANT (elt) = false;
3733 if (s)
3734 TREE_SIDE_EFFECTS (elt) = true;
3736 release_tree_vector (ctors);
3738 if (*non_constant_p)
3739 return t;
3740 else if (lval)
3741 return target;
3742 else
3743 return init;
3746 /* Evaluate a ++ or -- expression. */
3748 static tree
3749 cxx_eval_increment_expression (const constexpr_ctx *ctx, tree t,
3750 bool lval,
3751 bool *non_constant_p, bool *overflow_p)
3753 enum tree_code code = TREE_CODE (t);
3754 tree type = TREE_TYPE (t);
3755 tree op = TREE_OPERAND (t, 0);
3756 tree offset = TREE_OPERAND (t, 1);
3757 gcc_assert (TREE_CONSTANT (offset));
3759 /* The operand as an lvalue. */
3760 op = cxx_eval_constant_expression (ctx, op, true,
3761 non_constant_p, overflow_p);
3763 /* The operand as an rvalue. */
3764 tree val
3765 = cxx_eval_constant_expression (ctx, op, false,
3766 non_constant_p, overflow_p);
3767 /* Don't VERIFY_CONSTANT if this might be dealing with a pointer to
3768 a local array in a constexpr function. */
3769 bool ptr = POINTER_TYPE_P (TREE_TYPE (val));
3770 if (!ptr)
3771 VERIFY_CONSTANT (val);
3773 /* The modified value. */
3774 bool inc = (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR);
3775 tree mod;
3776 if (POINTER_TYPE_P (type))
3778 /* The middle end requires pointers to use POINTER_PLUS_EXPR. */
3779 offset = convert_to_ptrofftype (offset);
3780 if (!inc)
3781 offset = fold_build1 (NEGATE_EXPR, TREE_TYPE (offset), offset);
3782 mod = fold_build2 (POINTER_PLUS_EXPR, type, val, offset);
3784 else
3785 mod = fold_build2 (inc ? PLUS_EXPR : MINUS_EXPR, type, val, offset);
3786 if (!ptr)
3787 VERIFY_CONSTANT (mod);
3789 /* Storing the modified value. */
3790 tree store = build2 (MODIFY_EXPR, type, op, mod);
3791 cxx_eval_constant_expression (ctx, store,
3792 true, non_constant_p, overflow_p);
3794 /* And the value of the expression. */
3795 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
3797 /* Prefix ops are lvalues. */
3798 if (lval)
3799 return op;
3800 else
3801 /* But we optimize when the caller wants an rvalue. */
3802 return mod;
3804 else
3805 /* Postfix ops are rvalues. */
3806 return val;
3809 /* Predicates for the meaning of *jump_target. */
3811 static bool
3812 returns (tree *jump_target)
3814 return *jump_target
3815 && (TREE_CODE (*jump_target) == RETURN_EXPR
3816 || (TREE_CODE (*jump_target) == LABEL_DECL
3817 && LABEL_DECL_CDTOR (*jump_target)));
3820 static bool
3821 breaks (tree *jump_target)
3823 return *jump_target
3824 && ((TREE_CODE (*jump_target) == LABEL_DECL
3825 && LABEL_DECL_BREAK (*jump_target))
3826 || TREE_CODE (*jump_target) == EXIT_EXPR);
3829 static bool
3830 continues (tree *jump_target)
3832 return *jump_target
3833 && TREE_CODE (*jump_target) == LABEL_DECL
3834 && LABEL_DECL_CONTINUE (*jump_target);
3837 static bool
3838 switches (tree *jump_target)
3840 return *jump_target
3841 && TREE_CODE (*jump_target) == INTEGER_CST;
3844 /* Subroutine of cxx_eval_statement_list. Determine whether the statement
3845 STMT matches *jump_target. If we're looking for a case label and we see
3846 the default label, note it in ctx->css_state. */
3848 static bool
3849 label_matches (const constexpr_ctx *ctx, tree *jump_target, tree stmt)
3851 switch (TREE_CODE (*jump_target))
3853 case LABEL_DECL:
3854 if (TREE_CODE (stmt) == LABEL_EXPR
3855 && LABEL_EXPR_LABEL (stmt) == *jump_target)
3856 return true;
3857 break;
3859 case INTEGER_CST:
3860 if (TREE_CODE (stmt) == CASE_LABEL_EXPR)
3862 gcc_assert (ctx->css_state != NULL);
3863 if (!CASE_LOW (stmt))
3865 /* default: should appear just once in a SWITCH_EXPR
3866 body (excluding nested SWITCH_EXPR). */
3867 gcc_assert (*ctx->css_state != css_default_seen);
3868 /* When evaluating SWITCH_EXPR body for the second time,
3869 return true for the default: label. */
3870 if (*ctx->css_state == css_default_processing)
3871 return true;
3872 *ctx->css_state = css_default_seen;
3874 else if (CASE_HIGH (stmt))
3876 if (tree_int_cst_le (CASE_LOW (stmt), *jump_target)
3877 && tree_int_cst_le (*jump_target, CASE_HIGH (stmt)))
3878 return true;
3880 else if (tree_int_cst_equal (*jump_target, CASE_LOW (stmt)))
3881 return true;
3883 break;
3885 default:
3886 gcc_unreachable ();
3888 return false;
3891 /* Evaluate a STATEMENT_LIST for side-effects. Handles various jump
3892 semantics, for switch, break, continue, and return. */
3894 static tree
3895 cxx_eval_statement_list (const constexpr_ctx *ctx, tree t,
3896 bool *non_constant_p, bool *overflow_p,
3897 tree *jump_target)
3899 tree_stmt_iterator i;
3900 tree local_target;
3901 /* In a statement-expression we want to return the last value.
3902 For empty statement expression return void_node. */
3903 tree r = void_node;
3904 if (!jump_target)
3906 local_target = NULL_TREE;
3907 jump_target = &local_target;
3909 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
3911 tree stmt = tsi_stmt (i);
3912 if (TREE_CODE (stmt) == DEBUG_BEGIN_STMT)
3913 continue;
3914 r = cxx_eval_constant_expression (ctx, stmt, false,
3915 non_constant_p, overflow_p,
3916 jump_target);
3917 if (*non_constant_p)
3918 break;
3919 if (returns (jump_target) || breaks (jump_target))
3920 break;
3922 return r;
3925 /* Evaluate a LOOP_EXPR for side-effects. Handles break and return
3926 semantics; continue semantics are covered by cxx_eval_statement_list. */
3928 static tree
3929 cxx_eval_loop_expr (const constexpr_ctx *ctx, tree t,
3930 bool *non_constant_p, bool *overflow_p,
3931 tree *jump_target)
3933 constexpr_ctx new_ctx = *ctx;
3935 tree body = TREE_OPERAND (t, 0);
3936 int count = 0;
3939 hash_set<tree> save_exprs;
3940 new_ctx.save_exprs = &save_exprs;
3942 cxx_eval_constant_expression (&new_ctx, body, /*lval*/false,
3943 non_constant_p, overflow_p, jump_target);
3945 /* Forget saved values of SAVE_EXPRs. */
3946 for (hash_set<tree>::iterator iter = save_exprs.begin();
3947 iter != save_exprs.end(); ++iter)
3948 new_ctx.values->remove (*iter);
3949 if (++count >= constexpr_loop_limit)
3951 if (!ctx->quiet)
3952 error_at (EXPR_LOC_OR_LOC (t, input_location),
3953 "%<constexpr%> loop iteration count exceeds limit of %d "
3954 "(use -fconstexpr-loop-limit= to increase the limit)",
3955 constexpr_loop_limit);
3956 *non_constant_p = true;
3957 break;
3960 while (!returns (jump_target)
3961 && !breaks (jump_target)
3962 && !switches (jump_target)
3963 && !*non_constant_p);
3965 if (breaks (jump_target))
3966 *jump_target = NULL_TREE;
3968 return NULL_TREE;
3971 /* Evaluate a SWITCH_EXPR for side-effects. Handles switch and break jump
3972 semantics. */
3974 static tree
3975 cxx_eval_switch_expr (const constexpr_ctx *ctx, tree t,
3976 bool *non_constant_p, bool *overflow_p,
3977 tree *jump_target)
3979 tree cond = TREE_OPERAND (t, 0);
3980 cond = cxx_eval_constant_expression (ctx, cond, false,
3981 non_constant_p, overflow_p);
3982 VERIFY_CONSTANT (cond);
3983 *jump_target = cond;
3985 tree body = TREE_OPERAND (t, 1);
3986 constexpr_ctx new_ctx = *ctx;
3987 constexpr_switch_state css = css_default_not_seen;
3988 new_ctx.css_state = &css;
3989 cxx_eval_constant_expression (&new_ctx, body, false,
3990 non_constant_p, overflow_p, jump_target);
3991 if (switches (jump_target) && css == css_default_seen)
3993 /* If the SWITCH_EXPR body has default: label, process it once again,
3994 this time instructing label_matches to return true for default:
3995 label on switches (jump_target). */
3996 css = css_default_processing;
3997 cxx_eval_constant_expression (&new_ctx, body, false,
3998 non_constant_p, overflow_p, jump_target);
4000 if (breaks (jump_target) || switches (jump_target))
4001 *jump_target = NULL_TREE;
4002 return NULL_TREE;
4005 /* Find the object of TYPE under initialization in CTX. */
4007 static tree
4008 lookup_placeholder (const constexpr_ctx *ctx, bool lval, tree type)
4010 if (!ctx)
4011 return NULL_TREE;
4013 /* We could use ctx->object unconditionally, but using ctx->ctor when we
4014 can is a minor optimization. */
4015 if (!lval && ctx->ctor && same_type_p (TREE_TYPE (ctx->ctor), type))
4016 return ctx->ctor;
4018 if (!ctx->object)
4019 return NULL_TREE;
4021 /* Since an object cannot have a field of its own type, we can search outward
4022 from ctx->object to find the unique containing object of TYPE. */
4023 tree ob = ctx->object;
4024 while (ob)
4026 if (same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (ob), type))
4027 break;
4028 if (handled_component_p (ob))
4029 ob = TREE_OPERAND (ob, 0);
4030 else
4031 ob = NULL_TREE;
4034 return ob;
4037 /* Attempt to reduce the expression T to a constant value.
4038 On failure, issue diagnostic and return error_mark_node. */
4039 /* FIXME unify with c_fully_fold */
4040 /* FIXME overflow_p is too global */
4042 static tree
4043 cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t,
4044 bool lval,
4045 bool *non_constant_p, bool *overflow_p,
4046 tree *jump_target)
4048 constexpr_ctx new_ctx;
4049 tree r = t;
4051 if (jump_target && *jump_target)
4053 /* If we are jumping, ignore all statements/expressions except those
4054 that could have LABEL_EXPR or CASE_LABEL_EXPR in their bodies. */
4055 switch (TREE_CODE (t))
4057 case BIND_EXPR:
4058 case STATEMENT_LIST:
4059 case LOOP_EXPR:
4060 case COND_EXPR:
4061 break;
4062 case LABEL_EXPR:
4063 case CASE_LABEL_EXPR:
4064 if (label_matches (ctx, jump_target, t))
4065 /* Found it. */
4066 *jump_target = NULL_TREE;
4067 return NULL_TREE;
4068 default:
4069 return NULL_TREE;
4072 if (t == error_mark_node)
4074 *non_constant_p = true;
4075 return t;
4077 if (CONSTANT_CLASS_P (t))
4079 if (TREE_OVERFLOW (t))
4081 if (!ctx->quiet)
4082 permerror (input_location, "overflow in constant expression");
4083 if (!flag_permissive || ctx->quiet)
4084 *overflow_p = true;
4087 if (TREE_CODE (t) == INTEGER_CST
4088 && TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE
4089 && !integer_zerop (t))
4091 if (!ctx->quiet)
4092 error ("value %qE of type %qT is not a constant expression",
4093 t, TREE_TYPE (t));
4094 *non_constant_p = true;
4097 return t;
4100 tree_code tcode = TREE_CODE (t);
4101 switch (tcode)
4103 case RESULT_DECL:
4104 if (lval)
4105 return t;
4106 /* We ask for an rvalue for the RESULT_DECL when indirecting
4107 through an invisible reference, or in named return value
4108 optimization. */
4109 return (*ctx->values->get (t));
4111 case VAR_DECL:
4112 if (DECL_HAS_VALUE_EXPR_P (t))
4113 return cxx_eval_constant_expression (ctx, DECL_VALUE_EXPR (t),
4114 lval, non_constant_p, overflow_p);
4115 /* fall through */
4116 case CONST_DECL:
4117 /* We used to not check lval for CONST_DECL, but darwin.c uses
4118 CONST_DECL for aggregate constants. */
4119 if (lval)
4120 return t;
4121 if (COMPLETE_TYPE_P (TREE_TYPE (t))
4122 && is_really_empty_class (TREE_TYPE (t)))
4124 /* If the class is empty, we aren't actually loading anything. */
4125 r = build_constructor (TREE_TYPE (t), NULL);
4126 TREE_CONSTANT (r) = true;
4128 else if (ctx->strict)
4129 r = decl_really_constant_value (t);
4130 else
4131 r = decl_constant_value (t);
4132 if (TREE_CODE (r) == TARGET_EXPR
4133 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
4134 r = TARGET_EXPR_INITIAL (r);
4135 if (VAR_P (r))
4136 if (tree *p = ctx->values->get (r))
4137 if (*p != NULL_TREE)
4138 r = *p;
4139 if (DECL_P (r))
4141 if (!ctx->quiet)
4142 non_const_var_error (r);
4143 *non_constant_p = true;
4145 break;
4147 case DEBUG_BEGIN_STMT:
4148 /* ??? It might be nice to retain this information somehow, so
4149 as to be able to step into a constexpr function call. */
4150 /* Fall through. */
4152 case FUNCTION_DECL:
4153 case TEMPLATE_DECL:
4154 case LABEL_DECL:
4155 case LABEL_EXPR:
4156 case CASE_LABEL_EXPR:
4157 case PREDICT_EXPR:
4158 return t;
4160 case PARM_DECL:
4161 if (lval && TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
4162 /* glvalue use. */;
4163 else if (tree *p = ctx->values->get (r))
4164 r = *p;
4165 else if (lval)
4166 /* Defer in case this is only used for its type. */;
4167 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4168 /* Defer, there's no lvalue->rvalue conversion. */;
4169 else if (COMPLETE_TYPE_P (TREE_TYPE (t))
4170 && is_really_empty_class (TREE_TYPE (t)))
4172 /* If the class is empty, we aren't actually loading anything. */
4173 r = build_constructor (TREE_TYPE (t), NULL);
4174 TREE_CONSTANT (r) = true;
4176 else
4178 if (!ctx->quiet)
4179 error ("%qE is not a constant expression", t);
4180 *non_constant_p = true;
4182 break;
4184 case CALL_EXPR:
4185 case AGGR_INIT_EXPR:
4186 r = cxx_eval_call_expression (ctx, t, lval,
4187 non_constant_p, overflow_p);
4188 break;
4190 case DECL_EXPR:
4192 r = DECL_EXPR_DECL (t);
4193 if (AGGREGATE_TYPE_P (TREE_TYPE (r))
4194 || VECTOR_TYPE_P (TREE_TYPE (r)))
4196 new_ctx = *ctx;
4197 new_ctx.object = r;
4198 new_ctx.ctor = build_constructor (TREE_TYPE (r), NULL);
4199 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4200 new_ctx.values->put (r, new_ctx.ctor);
4201 ctx = &new_ctx;
4204 if (tree init = DECL_INITIAL (r))
4206 init = cxx_eval_constant_expression (ctx, init,
4207 false,
4208 non_constant_p, overflow_p);
4209 /* Don't share a CONSTRUCTOR that might be changed. */
4210 init = unshare_constructor (init);
4211 ctx->values->put (r, init);
4213 else if (ctx == &new_ctx)
4214 /* We gave it a CONSTRUCTOR above. */;
4215 else
4216 ctx->values->put (r, NULL_TREE);
4218 break;
4220 case TARGET_EXPR:
4221 if (!literal_type_p (TREE_TYPE (t)))
4223 if (!ctx->quiet)
4225 error ("temporary of non-literal type %qT in a "
4226 "constant expression", TREE_TYPE (t));
4227 explain_non_literal_class (TREE_TYPE (t));
4229 *non_constant_p = true;
4230 break;
4232 if ((AGGREGATE_TYPE_P (TREE_TYPE (t)) || VECTOR_TYPE_P (TREE_TYPE (t))))
4234 /* We're being expanded without an explicit target, so start
4235 initializing a new object; expansion with an explicit target
4236 strips the TARGET_EXPR before we get here. */
4237 new_ctx = *ctx;
4238 new_ctx.ctor = build_constructor (TREE_TYPE (t), NULL);
4239 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4240 new_ctx.object = TARGET_EXPR_SLOT (t);
4241 ctx->values->put (new_ctx.object, new_ctx.ctor);
4242 ctx = &new_ctx;
4244 /* Pass false for 'lval' because this indicates
4245 initialization of a temporary. */
4246 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4247 false,
4248 non_constant_p, overflow_p);
4249 if (!*non_constant_p)
4250 /* Adjust the type of the result to the type of the temporary. */
4251 r = adjust_temp_type (TREE_TYPE (t), r);
4252 if (lval)
4254 tree slot = TARGET_EXPR_SLOT (t);
4255 r = unshare_constructor (r);
4256 ctx->values->put (slot, r);
4257 return slot;
4259 break;
4261 case INIT_EXPR:
4262 case MODIFY_EXPR:
4263 gcc_assert (jump_target == NULL || *jump_target == NULL_TREE);
4264 r = cxx_eval_store_expression (ctx, t, lval,
4265 non_constant_p, overflow_p);
4266 break;
4268 case SCOPE_REF:
4269 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4270 lval,
4271 non_constant_p, overflow_p);
4272 break;
4274 case RETURN_EXPR:
4275 if (TREE_OPERAND (t, 0) != NULL_TREE)
4276 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4277 lval,
4278 non_constant_p, overflow_p);
4279 if (jump_target)
4280 *jump_target = t;
4281 else
4283 /* Can happen with ({ return true; }) && false; passed to
4284 maybe_constant_value. There is nothing to jump over in this
4285 case, and the bug will be diagnosed later. */
4286 gcc_assert (ctx->quiet);
4287 *non_constant_p = true;
4289 break;
4291 case SAVE_EXPR:
4292 /* Avoid evaluating a SAVE_EXPR more than once. */
4293 if (tree *p = ctx->values->get (t))
4294 r = *p;
4295 else
4297 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), false,
4298 non_constant_p, overflow_p);
4299 ctx->values->put (t, r);
4300 if (ctx->save_exprs)
4301 ctx->save_exprs->add (t);
4303 break;
4305 case NON_LVALUE_EXPR:
4306 case TRY_CATCH_EXPR:
4307 case TRY_BLOCK:
4308 case CLEANUP_POINT_EXPR:
4309 case MUST_NOT_THROW_EXPR:
4310 case EXPR_STMT:
4311 case EH_SPEC_BLOCK:
4312 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4313 lval,
4314 non_constant_p, overflow_p,
4315 jump_target);
4316 break;
4318 case TRY_FINALLY_EXPR:
4319 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4320 non_constant_p, overflow_p,
4321 jump_target);
4322 if (!*non_constant_p)
4323 /* Also evaluate the cleanup. */
4324 cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1), true,
4325 non_constant_p, overflow_p,
4326 jump_target);
4327 break;
4329 /* These differ from cxx_eval_unary_expression in that this doesn't
4330 check for a constant operand or result; an address can be
4331 constant without its operand being, and vice versa. */
4332 case MEM_REF:
4333 case INDIRECT_REF:
4334 r = cxx_eval_indirect_ref (ctx, t, lval,
4335 non_constant_p, overflow_p);
4336 break;
4338 case ADDR_EXPR:
4340 tree oldop = TREE_OPERAND (t, 0);
4341 tree op = cxx_eval_constant_expression (ctx, oldop,
4342 /*lval*/true,
4343 non_constant_p, overflow_p);
4344 /* Don't VERIFY_CONSTANT here. */
4345 if (*non_constant_p)
4346 return t;
4347 gcc_checking_assert (TREE_CODE (op) != CONSTRUCTOR);
4348 /* This function does more aggressive folding than fold itself. */
4349 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
4350 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
4351 return t;
4352 break;
4355 case REALPART_EXPR:
4356 case IMAGPART_EXPR:
4357 if (lval)
4359 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4360 non_constant_p, overflow_p);
4361 if (r == error_mark_node)
4363 else if (r == TREE_OPERAND (t, 0))
4364 r = t;
4365 else
4366 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), r);
4367 break;
4369 /* FALLTHRU */
4370 case CONJ_EXPR:
4371 case FIX_TRUNC_EXPR:
4372 case FLOAT_EXPR:
4373 case NEGATE_EXPR:
4374 case ABS_EXPR:
4375 case BIT_NOT_EXPR:
4376 case TRUTH_NOT_EXPR:
4377 case FIXED_CONVERT_EXPR:
4378 r = cxx_eval_unary_expression (ctx, t, lval,
4379 non_constant_p, overflow_p);
4380 break;
4382 case SIZEOF_EXPR:
4383 r = fold_sizeof_expr (t);
4384 VERIFY_CONSTANT (r);
4385 break;
4387 case COMPOUND_EXPR:
4389 /* check_return_expr sometimes wraps a TARGET_EXPR in a
4390 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
4391 introduced by build_call_a. */
4392 tree op0 = TREE_OPERAND (t, 0);
4393 tree op1 = TREE_OPERAND (t, 1);
4394 STRIP_NOPS (op1);
4395 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
4396 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
4397 r = cxx_eval_constant_expression (ctx, op0,
4398 lval, non_constant_p, overflow_p,
4399 jump_target);
4400 else
4402 /* Check that the LHS is constant and then discard it. */
4403 cxx_eval_constant_expression (ctx, op0,
4404 true, non_constant_p, overflow_p,
4405 jump_target);
4406 if (*non_constant_p)
4407 return t;
4408 op1 = TREE_OPERAND (t, 1);
4409 r = cxx_eval_constant_expression (ctx, op1,
4410 lval, non_constant_p, overflow_p,
4411 jump_target);
4414 break;
4416 case POINTER_PLUS_EXPR:
4417 case POINTER_DIFF_EXPR:
4418 case PLUS_EXPR:
4419 case MINUS_EXPR:
4420 case MULT_EXPR:
4421 case TRUNC_DIV_EXPR:
4422 case CEIL_DIV_EXPR:
4423 case FLOOR_DIV_EXPR:
4424 case ROUND_DIV_EXPR:
4425 case TRUNC_MOD_EXPR:
4426 case CEIL_MOD_EXPR:
4427 case ROUND_MOD_EXPR:
4428 case RDIV_EXPR:
4429 case EXACT_DIV_EXPR:
4430 case MIN_EXPR:
4431 case MAX_EXPR:
4432 case LSHIFT_EXPR:
4433 case RSHIFT_EXPR:
4434 case LROTATE_EXPR:
4435 case RROTATE_EXPR:
4436 case BIT_IOR_EXPR:
4437 case BIT_XOR_EXPR:
4438 case BIT_AND_EXPR:
4439 case TRUTH_XOR_EXPR:
4440 case LT_EXPR:
4441 case LE_EXPR:
4442 case GT_EXPR:
4443 case GE_EXPR:
4444 case EQ_EXPR:
4445 case NE_EXPR:
4446 case UNORDERED_EXPR:
4447 case ORDERED_EXPR:
4448 case UNLT_EXPR:
4449 case UNLE_EXPR:
4450 case UNGT_EXPR:
4451 case UNGE_EXPR:
4452 case UNEQ_EXPR:
4453 case LTGT_EXPR:
4454 case RANGE_EXPR:
4455 case COMPLEX_EXPR:
4456 r = cxx_eval_binary_expression (ctx, t, lval,
4457 non_constant_p, overflow_p);
4458 break;
4460 /* fold can introduce non-IF versions of these; still treat them as
4461 short-circuiting. */
4462 case TRUTH_AND_EXPR:
4463 case TRUTH_ANDIF_EXPR:
4464 r = cxx_eval_logical_expression (ctx, t, boolean_false_node,
4465 boolean_true_node,
4466 lval,
4467 non_constant_p, overflow_p);
4468 break;
4470 case TRUTH_OR_EXPR:
4471 case TRUTH_ORIF_EXPR:
4472 r = cxx_eval_logical_expression (ctx, t, boolean_true_node,
4473 boolean_false_node,
4474 lval,
4475 non_constant_p, overflow_p);
4476 break;
4478 case ARRAY_REF:
4479 r = cxx_eval_array_reference (ctx, t, lval,
4480 non_constant_p, overflow_p);
4481 break;
4483 case COMPONENT_REF:
4484 if (is_overloaded_fn (t))
4486 /* We can only get here in checking mode via
4487 build_non_dependent_expr, because any expression that
4488 calls or takes the address of the function will have
4489 pulled a FUNCTION_DECL out of the COMPONENT_REF. */
4490 gcc_checking_assert (ctx->quiet || errorcount);
4491 *non_constant_p = true;
4492 return t;
4494 r = cxx_eval_component_reference (ctx, t, lval,
4495 non_constant_p, overflow_p);
4496 break;
4498 case BIT_FIELD_REF:
4499 r = cxx_eval_bit_field_ref (ctx, t, lval,
4500 non_constant_p, overflow_p);
4501 break;
4503 case COND_EXPR:
4504 if (jump_target && *jump_target)
4506 /* When jumping to a label, the label might be either in the
4507 then or else blocks, so process then block first in skipping
4508 mode first, and if we are still in the skipping mode at its end,
4509 process the else block too. */
4510 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4511 lval, non_constant_p, overflow_p,
4512 jump_target);
4513 if (*jump_target)
4514 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
4515 lval, non_constant_p, overflow_p,
4516 jump_target);
4517 break;
4519 r = cxx_eval_conditional_expression (ctx, t, lval,
4520 non_constant_p, overflow_p,
4521 jump_target);
4522 break;
4523 case VEC_COND_EXPR:
4524 r = cxx_eval_vector_conditional_expression (ctx, t, non_constant_p,
4525 overflow_p);
4526 break;
4528 case CONSTRUCTOR:
4529 if (TREE_CONSTANT (t))
4531 /* Don't re-process a constant CONSTRUCTOR, but do fold it to
4532 VECTOR_CST if applicable. */
4533 /* FIXME after GCC 6 branches, make the verify unconditional. */
4534 if (CHECKING_P)
4535 verify_constructor_flags (t);
4536 else
4537 recompute_constructor_flags (t);
4538 if (TREE_CONSTANT (t))
4539 return fold (t);
4541 r = cxx_eval_bare_aggregate (ctx, t, lval,
4542 non_constant_p, overflow_p);
4543 break;
4545 case VEC_INIT_EXPR:
4546 /* We can get this in a defaulted constructor for a class with a
4547 non-static data member of array type. Either the initializer will
4548 be NULL, meaning default-initialization, or it will be an lvalue
4549 or xvalue of the same type, meaning direct-initialization from the
4550 corresponding member. */
4551 r = cxx_eval_vec_init (ctx, t, lval,
4552 non_constant_p, overflow_p);
4553 break;
4555 case FMA_EXPR:
4556 case VEC_PERM_EXPR:
4557 r = cxx_eval_trinary_expression (ctx, t, lval,
4558 non_constant_p, overflow_p);
4559 break;
4561 case CONVERT_EXPR:
4562 case VIEW_CONVERT_EXPR:
4563 case NOP_EXPR:
4564 case UNARY_PLUS_EXPR:
4566 tree oldop = TREE_OPERAND (t, 0);
4568 tree op = cxx_eval_constant_expression (ctx, oldop,
4569 lval,
4570 non_constant_p, overflow_p);
4571 if (*non_constant_p)
4572 return t;
4573 tree type = TREE_TYPE (t);
4574 if (TREE_CODE (op) == PTRMEM_CST
4575 && !TYPE_PTRMEM_P (type))
4576 op = cplus_expand_constant (op);
4577 if (TREE_CODE (op) == PTRMEM_CST && tcode == NOP_EXPR)
4579 if (same_type_ignoring_top_level_qualifiers_p (type,
4580 TREE_TYPE (op))
4581 || can_convert_qual (type, op))
4582 return cp_fold_convert (type, op);
4583 else
4585 if (!ctx->quiet)
4586 error_at (EXPR_LOC_OR_LOC (t, input_location),
4587 "a reinterpret_cast is not a constant expression");
4588 *non_constant_p = true;
4589 return t;
4593 if (POINTER_TYPE_P (type) && TREE_CODE (op) == INTEGER_CST)
4595 if (integer_zerop (op))
4597 if (TREE_CODE (type) == REFERENCE_TYPE)
4599 if (!ctx->quiet)
4600 error_at (EXPR_LOC_OR_LOC (t, input_location),
4601 "dereferencing a null pointer");
4602 *non_constant_p = true;
4603 return t;
4605 else if (TREE_CODE (TREE_TYPE (op)) == POINTER_TYPE)
4607 tree from = TREE_TYPE (op);
4609 if (!can_convert (type, from, tf_none))
4611 if (!ctx->quiet)
4612 error_at (EXPR_LOC_OR_LOC (t, input_location),
4613 "conversion of %qT null pointer to %qT "
4614 "is not a constant expression",
4615 from, type);
4616 *non_constant_p = true;
4617 return t;
4621 else
4623 /* This detects for example:
4624 reinterpret_cast<void*>(sizeof 0)
4626 if (!ctx->quiet)
4627 error_at (EXPR_LOC_OR_LOC (t, input_location),
4628 "%<reinterpret_cast<%T>(%E)%> is not "
4629 "a constant expression",
4630 type, op);
4631 *non_constant_p = true;
4632 return t;
4635 if (op == oldop && tcode != UNARY_PLUS_EXPR)
4636 /* We didn't fold at the top so we could check for ptr-int
4637 conversion. */
4638 return fold (t);
4639 if (tcode == UNARY_PLUS_EXPR)
4640 r = fold_convert (TREE_TYPE (t), op);
4641 else
4642 r = fold_build1 (tcode, type, op);
4643 /* Conversion of an out-of-range value has implementation-defined
4644 behavior; the language considers it different from arithmetic
4645 overflow, which is undefined. */
4646 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
4647 TREE_OVERFLOW (r) = false;
4649 break;
4651 case EMPTY_CLASS_EXPR:
4652 /* This is good enough for a function argument that might not get
4653 used, and they can't do anything with it, so just return it. */
4654 return t;
4656 case STATEMENT_LIST:
4657 new_ctx = *ctx;
4658 new_ctx.ctor = new_ctx.object = NULL_TREE;
4659 return cxx_eval_statement_list (&new_ctx, t,
4660 non_constant_p, overflow_p, jump_target);
4662 case BIND_EXPR:
4663 return cxx_eval_constant_expression (ctx, BIND_EXPR_BODY (t),
4664 lval,
4665 non_constant_p, overflow_p,
4666 jump_target);
4668 case PREINCREMENT_EXPR:
4669 case POSTINCREMENT_EXPR:
4670 case PREDECREMENT_EXPR:
4671 case POSTDECREMENT_EXPR:
4672 return cxx_eval_increment_expression (ctx, t,
4673 lval, non_constant_p, overflow_p);
4675 case LAMBDA_EXPR:
4676 case NEW_EXPR:
4677 case VEC_NEW_EXPR:
4678 case DELETE_EXPR:
4679 case VEC_DELETE_EXPR:
4680 case THROW_EXPR:
4681 case MODOP_EXPR:
4682 /* GCC internal stuff. */
4683 case VA_ARG_EXPR:
4684 case OBJ_TYPE_REF:
4685 case NON_DEPENDENT_EXPR:
4686 case BASELINK:
4687 case OFFSET_REF:
4688 if (!ctx->quiet)
4689 error_at (EXPR_LOC_OR_LOC (t, input_location),
4690 "expression %qE is not a constant expression", t);
4691 *non_constant_p = true;
4692 break;
4694 case PLACEHOLDER_EXPR:
4695 /* Use of the value or address of the current object. */
4696 if (tree ctor = lookup_placeholder (ctx, lval, TREE_TYPE (t)))
4697 return cxx_eval_constant_expression (ctx, ctor, lval,
4698 non_constant_p, overflow_p);
4699 /* A placeholder without a referent. We can get here when
4700 checking whether NSDMIs are noexcept, or in massage_init_elt;
4701 just say it's non-constant for now. */
4702 gcc_assert (ctx->quiet);
4703 *non_constant_p = true;
4704 break;
4706 case EXIT_EXPR:
4708 tree cond = TREE_OPERAND (t, 0);
4709 cond = cxx_eval_constant_expression (ctx, cond, /*lval*/false,
4710 non_constant_p, overflow_p);
4711 VERIFY_CONSTANT (cond);
4712 if (integer_nonzerop (cond))
4713 *jump_target = t;
4715 break;
4717 case GOTO_EXPR:
4718 *jump_target = TREE_OPERAND (t, 0);
4719 gcc_assert (breaks (jump_target) || continues (jump_target)
4720 /* Allow for jumping to a cdtor_label. */
4721 || returns (jump_target));
4722 break;
4724 case LOOP_EXPR:
4725 cxx_eval_loop_expr (ctx, t,
4726 non_constant_p, overflow_p, jump_target);
4727 break;
4729 case SWITCH_EXPR:
4730 cxx_eval_switch_expr (ctx, t,
4731 non_constant_p, overflow_p, jump_target);
4732 break;
4734 case REQUIRES_EXPR:
4735 /* It's possible to get a requires-expression in a constant
4736 expression. For example:
4738 template<typename T> concept bool C() {
4739 return requires (T t) { t; };
4742 template<typename T> requires !C<T>() void f(T);
4744 Normalization leaves f with the associated constraint
4745 '!requires (T t) { ... }' which is not transformed into
4746 a constraint. */
4747 if (!processing_template_decl)
4748 return evaluate_constraint_expression (t, NULL_TREE);
4749 else
4750 *non_constant_p = true;
4751 return t;
4753 case ANNOTATE_EXPR:
4754 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4755 lval,
4756 non_constant_p, overflow_p,
4757 jump_target);
4758 break;
4760 case USING_STMT:
4761 r = void_node;
4762 break;
4764 default:
4765 if (STATEMENT_CODE_P (TREE_CODE (t)))
4767 /* This function doesn't know how to deal with pre-genericize
4768 statements; this can only happen with statement-expressions,
4769 so for now just fail. */
4770 if (!ctx->quiet)
4771 error_at (EXPR_LOCATION (t),
4772 "statement is not a constant expression");
4774 else
4775 internal_error ("unexpected expression %qE of kind %s", t,
4776 get_tree_code_name (TREE_CODE (t)));
4777 *non_constant_p = true;
4778 break;
4781 if (r == error_mark_node)
4782 *non_constant_p = true;
4784 if (*non_constant_p)
4785 return t;
4786 else
4787 return r;
4790 static tree
4791 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant,
4792 bool strict = true, tree object = NULL_TREE)
4794 auto_timevar time (TV_CONSTEXPR);
4796 bool non_constant_p = false;
4797 bool overflow_p = false;
4798 hash_map<tree,tree> map;
4800 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL,
4801 allow_non_constant, strict };
4803 tree type = initialized_type (t);
4804 tree r = t;
4805 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
4807 /* In C++14 an NSDMI can participate in aggregate initialization,
4808 and can refer to the address of the object being initialized, so
4809 we need to pass in the relevant VAR_DECL if we want to do the
4810 evaluation in a single pass. The evaluation will dynamically
4811 update ctx.values for the VAR_DECL. We use the same strategy
4812 for C++11 constexpr constructors that refer to the object being
4813 initialized. */
4814 ctx.ctor = build_constructor (type, NULL);
4815 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctx.ctor) = true;
4816 if (!object)
4818 if (TREE_CODE (t) == TARGET_EXPR)
4819 object = TARGET_EXPR_SLOT (t);
4820 else if (TREE_CODE (t) == AGGR_INIT_EXPR)
4821 object = AGGR_INIT_EXPR_SLOT (t);
4823 ctx.object = object;
4824 if (object)
4825 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4826 (type, TREE_TYPE (object)));
4827 if (object && DECL_P (object))
4828 map.put (object, ctx.ctor);
4829 if (TREE_CODE (r) == TARGET_EXPR)
4830 /* Avoid creating another CONSTRUCTOR when we expand the
4831 TARGET_EXPR. */
4832 r = TARGET_EXPR_INITIAL (r);
4835 r = cxx_eval_constant_expression (&ctx, r,
4836 false, &non_constant_p, &overflow_p);
4838 verify_constant (r, allow_non_constant, &non_constant_p, &overflow_p);
4840 /* Mutable logic is a bit tricky: we want to allow initialization of
4841 constexpr variables with mutable members, but we can't copy those
4842 members to another constexpr variable. */
4843 if (TREE_CODE (r) == CONSTRUCTOR
4844 && CONSTRUCTOR_MUTABLE_POISON (r))
4846 if (!allow_non_constant)
4847 error ("%qE is not a constant expression because it refers to "
4848 "mutable subobjects of %qT", t, type);
4849 non_constant_p = true;
4852 if (TREE_CODE (r) == CONSTRUCTOR
4853 && CONSTRUCTOR_NO_IMPLICIT_ZERO (r))
4855 if (!allow_non_constant)
4856 error ("%qE is not a constant expression because it refers to "
4857 "an incompletely initialized variable", t);
4858 TREE_CONSTANT (r) = false;
4859 non_constant_p = true;
4862 /* Technically we should check this for all subexpressions, but that
4863 runs into problems with our internal representation of pointer
4864 subtraction and the 5.19 rules are still in flux. */
4865 if (CONVERT_EXPR_CODE_P (TREE_CODE (r))
4866 && ARITHMETIC_TYPE_P (TREE_TYPE (r))
4867 && TREE_CODE (TREE_OPERAND (r, 0)) == ADDR_EXPR)
4869 if (!allow_non_constant)
4870 error ("conversion from pointer type %qT "
4871 "to arithmetic type %qT in a constant expression",
4872 TREE_TYPE (TREE_OPERAND (r, 0)), TREE_TYPE (r));
4873 non_constant_p = true;
4876 if (!non_constant_p && overflow_p)
4877 non_constant_p = true;
4879 /* Unshare the result unless it's a CONSTRUCTOR in which case it's already
4880 unshared. */
4881 bool should_unshare = true;
4882 if (r == t || TREE_CODE (r) == CONSTRUCTOR)
4883 should_unshare = false;
4885 if (non_constant_p && !allow_non_constant)
4886 return error_mark_node;
4887 else if (non_constant_p && TREE_CONSTANT (r))
4889 /* This isn't actually constant, so unset TREE_CONSTANT.
4890 Don't clear TREE_CONSTANT on ADDR_EXPR, as the middle-end requires
4891 it to be set if it is invariant address, even when it is not
4892 a valid C++ constant expression. Wrap it with a NOP_EXPR
4893 instead. */
4894 if (EXPR_P (r) && TREE_CODE (r) != ADDR_EXPR)
4895 r = copy_node (r);
4896 else if (TREE_CODE (r) == CONSTRUCTOR)
4897 r = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (r), r);
4898 else
4899 r = build_nop (TREE_TYPE (r), r);
4900 TREE_CONSTANT (r) = false;
4902 else if (non_constant_p || r == t)
4903 return t;
4905 if (should_unshare)
4906 r = unshare_expr (r);
4908 if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
4910 if (TREE_CODE (t) == TARGET_EXPR
4911 && TARGET_EXPR_INITIAL (t) == r)
4912 return t;
4913 else
4915 r = get_target_expr (r);
4916 TREE_CONSTANT (r) = true;
4917 return r;
4920 else
4921 return r;
4924 /* Returns true if T is a valid subexpression of a constant expression,
4925 even if it isn't itself a constant expression. */
4927 bool
4928 is_sub_constant_expr (tree t)
4930 bool non_constant_p = false;
4931 bool overflow_p = false;
4932 hash_map <tree, tree> map;
4934 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL, true, true };
4936 cxx_eval_constant_expression (&ctx, t, false, &non_constant_p,
4937 &overflow_p);
4938 return !non_constant_p && !overflow_p;
4941 /* If T represents a constant expression returns its reduced value.
4942 Otherwise return error_mark_node. If T is dependent, then
4943 return NULL. */
4945 tree
4946 cxx_constant_value (tree t, tree decl)
4948 return cxx_eval_outermost_constant_expr (t, false, true, decl);
4951 /* Helper routine for fold_simple function. Either return simplified
4952 expression T, otherwise NULL_TREE.
4953 In contrast to cp_fully_fold, and to maybe_constant_value, we try to fold
4954 even if we are within template-declaration. So be careful on call, as in
4955 such case types can be undefined. */
4957 static tree
4958 fold_simple_1 (tree t)
4960 tree op1;
4961 enum tree_code code = TREE_CODE (t);
4963 switch (code)
4965 case INTEGER_CST:
4966 case REAL_CST:
4967 case VECTOR_CST:
4968 case FIXED_CST:
4969 case COMPLEX_CST:
4970 return t;
4972 case SIZEOF_EXPR:
4973 return fold_sizeof_expr (t);
4975 case ABS_EXPR:
4976 case CONJ_EXPR:
4977 case REALPART_EXPR:
4978 case IMAGPART_EXPR:
4979 case NEGATE_EXPR:
4980 case BIT_NOT_EXPR:
4981 case TRUTH_NOT_EXPR:
4982 case NOP_EXPR:
4983 case VIEW_CONVERT_EXPR:
4984 case CONVERT_EXPR:
4985 case FLOAT_EXPR:
4986 case FIX_TRUNC_EXPR:
4987 case FIXED_CONVERT_EXPR:
4988 case ADDR_SPACE_CONVERT_EXPR:
4990 op1 = TREE_OPERAND (t, 0);
4992 t = const_unop (code, TREE_TYPE (t), op1);
4993 if (!t)
4994 return NULL_TREE;
4996 if (CONVERT_EXPR_CODE_P (code)
4997 && TREE_OVERFLOW_P (t) && !TREE_OVERFLOW_P (op1))
4998 TREE_OVERFLOW (t) = false;
4999 return t;
5001 default:
5002 return NULL_TREE;
5006 /* If T is a simple constant expression, returns its simplified value.
5007 Otherwise returns T. In contrast to maybe_constant_value we
5008 simplify only few operations on constant-expressions, and we don't
5009 try to simplify constexpressions. */
5011 tree
5012 fold_simple (tree t)
5014 if (processing_template_decl)
5015 return t;
5017 tree r = fold_simple_1 (t);
5018 if (r)
5019 return r;
5021 return t;
5024 /* If T is a constant expression, returns its reduced value.
5025 Otherwise, if T does not have TREE_CONSTANT set, returns T.
5026 Otherwise, returns a version of T without TREE_CONSTANT. */
5028 static GTY((deletable)) hash_map<tree, tree> *cv_cache;
5030 tree
5031 maybe_constant_value (tree t, tree decl)
5033 tree r;
5035 if (!is_nondependent_constant_expression (t))
5037 if (TREE_OVERFLOW_P (t))
5039 t = build_nop (TREE_TYPE (t), t);
5040 TREE_CONSTANT (t) = false;
5042 return t;
5044 else if (CONSTANT_CLASS_P (t))
5045 /* No caching or evaluation needed. */
5046 return t;
5048 if (cv_cache == NULL)
5049 cv_cache = hash_map<tree, tree>::create_ggc (101);
5050 if (tree *cached = cv_cache->get (t))
5051 return *cached;
5053 r = cxx_eval_outermost_constant_expr (t, true, true, decl);
5054 gcc_checking_assert (r == t
5055 || CONVERT_EXPR_P (t)
5056 || TREE_CODE (t) == VIEW_CONVERT_EXPR
5057 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
5058 || !cp_tree_equal (r, t));
5059 cv_cache->put (t, r);
5060 return r;
5063 /* Dispose of the whole CV_CACHE. */
5065 static void
5066 clear_cv_cache (void)
5068 if (cv_cache != NULL)
5069 cv_cache->empty ();
5072 /* Dispose of the whole CV_CACHE and FOLD_CACHE. */
5074 void
5075 clear_cv_and_fold_caches (void)
5077 clear_cv_cache ();
5078 clear_fold_cache ();
5081 /* Like maybe_constant_value but first fully instantiate the argument.
5083 Note: this is equivalent to instantiate_non_dependent_expr_sfinae
5084 (t, tf_none) followed by maybe_constant_value but is more efficient,
5085 because calls instantiation_dependent_expression_p and
5086 potential_constant_expression at most once. */
5088 tree
5089 fold_non_dependent_expr (tree t)
5091 if (t == NULL_TREE)
5092 return NULL_TREE;
5094 /* If we're in a template, but T isn't value dependent, simplify
5095 it. We're supposed to treat:
5097 template <typename T> void f(T[1 + 1]);
5098 template <typename T> void f(T[2]);
5100 as two declarations of the same function, for example. */
5101 if (processing_template_decl)
5103 if (is_nondependent_constant_expression (t))
5105 processing_template_decl_sentinel s;
5106 t = instantiate_non_dependent_expr_internal (t, tf_none);
5108 if (type_unknown_p (t)
5109 || BRACE_ENCLOSED_INITIALIZER_P (t))
5111 if (TREE_OVERFLOW_P (t))
5113 t = build_nop (TREE_TYPE (t), t);
5114 TREE_CONSTANT (t) = false;
5116 return t;
5119 tree r = cxx_eval_outermost_constant_expr (t, true, true, NULL_TREE);
5120 /* cp_tree_equal looks through NOPs, so allow them. */
5121 gcc_checking_assert (r == t
5122 || CONVERT_EXPR_P (t)
5123 || TREE_CODE (t) == VIEW_CONVERT_EXPR
5124 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
5125 || !cp_tree_equal (r, t));
5126 return r;
5128 else if (TREE_OVERFLOW_P (t))
5130 t = build_nop (TREE_TYPE (t), t);
5131 TREE_CONSTANT (t) = false;
5133 return t;
5136 return maybe_constant_value (t);
5139 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
5140 than wrapped in a TARGET_EXPR. */
5142 static tree
5143 maybe_constant_init_1 (tree t, tree decl, bool allow_non_constant)
5145 if (!t)
5146 return t;
5147 if (TREE_CODE (t) == EXPR_STMT)
5148 t = TREE_OPERAND (t, 0);
5149 if (TREE_CODE (t) == CONVERT_EXPR
5150 && VOID_TYPE_P (TREE_TYPE (t)))
5151 t = TREE_OPERAND (t, 0);
5152 if (TREE_CODE (t) == INIT_EXPR)
5153 t = TREE_OPERAND (t, 1);
5154 if (TREE_CODE (t) == TARGET_EXPR)
5155 t = TARGET_EXPR_INITIAL (t);
5156 if (!is_nondependent_static_init_expression (t))
5157 /* Don't try to evaluate it. */;
5158 else if (CONSTANT_CLASS_P (t) && allow_non_constant)
5159 /* No evaluation needed. */;
5160 else
5161 t = cxx_eval_outermost_constant_expr (t, allow_non_constant, false, decl);
5162 if (TREE_CODE (t) == TARGET_EXPR)
5164 tree init = TARGET_EXPR_INITIAL (t);
5165 if (TREE_CODE (init) == CONSTRUCTOR)
5166 t = init;
5168 return t;
5171 /* Wrapper for maybe_constant_init_1 which permits non constants. */
5173 tree
5174 maybe_constant_init (tree t, tree decl)
5176 return maybe_constant_init_1 (t, decl, true);
5179 /* Wrapper for maybe_constant_init_1 which does not permit non constants. */
5181 tree
5182 cxx_constant_init (tree t, tree decl)
5184 return maybe_constant_init_1 (t, decl, false);
5187 #if 0
5188 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
5189 /* Return true if the object referred to by REF has automatic or thread
5190 local storage. */
5192 enum { ck_ok, ck_bad, ck_unknown };
5193 static int
5194 check_automatic_or_tls (tree ref)
5196 machine_mode mode;
5197 poly_int64 bitsize, bitpos;
5198 tree offset;
5199 int volatilep = 0, unsignedp = 0;
5200 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
5201 &mode, &unsignedp, &volatilep, false);
5202 duration_kind dk;
5204 /* If there isn't a decl in the middle, we don't know the linkage here,
5205 and this isn't a constant expression anyway. */
5206 if (!DECL_P (decl))
5207 return ck_unknown;
5208 dk = decl_storage_duration (decl);
5209 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
5211 #endif
5213 /* Return true if T denotes a potentially constant expression. Issue
5214 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
5215 an lvalue-rvalue conversion is implied. If NOW is true, we want to
5216 consider the expression in the current context, independent of constexpr
5217 substitution.
5219 C++0x [expr.const] used to say
5221 6 An expression is a potential constant expression if it is
5222 a constant expression where all occurrences of function
5223 parameters are replaced by arbitrary constant expressions
5224 of the appropriate type.
5226 2 A conditional expression is a constant expression unless it
5227 involves one of the following as a potentially evaluated
5228 subexpression (3.2), but subexpressions of logical AND (5.14),
5229 logical OR (5.15), and conditional (5.16) operations that are
5230 not evaluated are not considered. */
5232 static bool
5233 potential_constant_expression_1 (tree t, bool want_rval, bool strict, bool now,
5234 tsubst_flags_t flags)
5236 #define RECUR(T,RV) \
5237 potential_constant_expression_1 ((T), (RV), strict, now, flags)
5239 enum { any = false, rval = true };
5240 int i;
5241 tree tmp;
5243 if (t == error_mark_node)
5244 return false;
5245 if (t == NULL_TREE)
5246 return true;
5247 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
5248 if (TREE_THIS_VOLATILE (t) && !DECL_P (t))
5250 if (flags & tf_error)
5251 error_at (loc, "expression %qE has side-effects", t);
5252 return false;
5254 if (CONSTANT_CLASS_P (t))
5255 return true;
5256 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED)
5257 && TREE_TYPE (t) == error_mark_node)
5258 return false;
5260 switch (TREE_CODE (t))
5262 case FUNCTION_DECL:
5263 case BASELINK:
5264 case TEMPLATE_DECL:
5265 case OVERLOAD:
5266 case TEMPLATE_ID_EXPR:
5267 case LABEL_DECL:
5268 case LABEL_EXPR:
5269 case CASE_LABEL_EXPR:
5270 case CONST_DECL:
5271 case SIZEOF_EXPR:
5272 case ALIGNOF_EXPR:
5273 case OFFSETOF_EXPR:
5274 case NOEXCEPT_EXPR:
5275 case TEMPLATE_PARM_INDEX:
5276 case TRAIT_EXPR:
5277 case IDENTIFIER_NODE:
5278 case USERDEF_LITERAL:
5279 /* We can see a FIELD_DECL in a pointer-to-member expression. */
5280 case FIELD_DECL:
5281 case RESULT_DECL:
5282 case USING_DECL:
5283 case USING_STMT:
5284 case PLACEHOLDER_EXPR:
5285 case BREAK_STMT:
5286 case CONTINUE_STMT:
5287 case REQUIRES_EXPR:
5288 case STATIC_ASSERT:
5289 case DEBUG_BEGIN_STMT:
5290 return true;
5292 case PARM_DECL:
5293 if (now)
5295 if (flags & tf_error)
5296 error ("%qE is not a constant expression", t);
5297 return false;
5299 return true;
5301 case AGGR_INIT_EXPR:
5302 case CALL_EXPR:
5303 /* -- an invocation of a function other than a constexpr function
5304 or a constexpr constructor. */
5306 tree fun = get_function_named_in_call (t);
5307 const int nargs = call_expr_nargs (t);
5308 i = 0;
5310 if (fun == NULL_TREE)
5312 /* Reset to allow the function to continue past the end
5313 of the block below. Otherwise return early. */
5314 bool bail = true;
5316 if (TREE_CODE (t) == CALL_EXPR
5317 && CALL_EXPR_FN (t) == NULL_TREE)
5318 switch (CALL_EXPR_IFN (t))
5320 /* These should be ignored, they are optimized away from
5321 constexpr functions. */
5322 case IFN_UBSAN_NULL:
5323 case IFN_UBSAN_BOUNDS:
5324 case IFN_UBSAN_VPTR:
5325 case IFN_FALLTHROUGH:
5326 return true;
5328 case IFN_ADD_OVERFLOW:
5329 case IFN_SUB_OVERFLOW:
5330 case IFN_MUL_OVERFLOW:
5331 case IFN_LAUNDER:
5332 bail = false;
5334 default:
5335 break;
5338 if (bail)
5340 /* fold_call_expr can't do anything with IFN calls. */
5341 if (flags & tf_error)
5342 error_at (loc, "call to internal function %qE", t);
5343 return false;
5347 if (fun && is_overloaded_fn (fun))
5349 if (TREE_CODE (fun) == FUNCTION_DECL)
5351 if (builtin_valid_in_constant_expr_p (fun))
5352 return true;
5353 if (!DECL_DECLARED_CONSTEXPR_P (fun)
5354 /* Allow any built-in function; if the expansion
5355 isn't constant, we'll deal with that then. */
5356 && !is_builtin_fn (fun))
5358 if (flags & tf_error)
5360 error_at (loc, "call to non-%<constexpr%> function %qD",
5361 fun);
5362 explain_invalid_constexpr_fn (fun);
5364 return false;
5366 /* A call to a non-static member function takes the address
5367 of the object as the first argument. But in a constant
5368 expression the address will be folded away, so look
5369 through it now. */
5370 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5371 && !DECL_CONSTRUCTOR_P (fun))
5373 tree x = get_nth_callarg (t, 0);
5374 if (is_this_parameter (x))
5375 return true;
5376 /* Don't require an immediately constant value, as
5377 constexpr substitution might not use the value. */
5378 bool sub_now = false;
5379 if (!potential_constant_expression_1 (x, rval, strict,
5380 sub_now, flags))
5381 return false;
5382 i = 1;
5385 else
5387 if (!RECUR (fun, true))
5388 return false;
5389 fun = get_first_fn (fun);
5391 /* Skip initial arguments to base constructors. */
5392 if (DECL_BASE_CONSTRUCTOR_P (fun))
5393 i = num_artificial_parms_for (fun);
5394 fun = DECL_ORIGIN (fun);
5396 else if (fun)
5398 if (RECUR (fun, rval))
5399 /* Might end up being a constant function pointer. */;
5400 else
5401 return false;
5403 for (; i < nargs; ++i)
5405 tree x = get_nth_callarg (t, i);
5406 /* In a template, reference arguments haven't been converted to
5407 REFERENCE_TYPE and we might not even know if the parameter
5408 is a reference, so accept lvalue constants too. */
5409 bool rv = processing_template_decl ? any : rval;
5410 /* Don't require an immediately constant value, as constexpr
5411 substitution might not use the value of the argument. */
5412 bool sub_now = false;
5413 if (!potential_constant_expression_1 (x, rv, strict,
5414 sub_now, flags))
5415 return false;
5417 return true;
5420 case NON_LVALUE_EXPR:
5421 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
5422 -- an lvalue of integral type that refers to a non-volatile
5423 const variable or static data member initialized with
5424 constant expressions, or
5426 -- an lvalue of literal type that refers to non-volatile
5427 object defined with constexpr, or that refers to a
5428 sub-object of such an object; */
5429 return RECUR (TREE_OPERAND (t, 0), rval);
5431 case VAR_DECL:
5432 if (DECL_HAS_VALUE_EXPR_P (t))
5434 if (now && is_normal_capture_proxy (t))
5436 /* -- in a lambda-expression, a reference to this or to a
5437 variable with automatic storage duration defined outside that
5438 lambda-expression, where the reference would be an
5439 odr-use. */
5440 if (flags & tf_error)
5442 tree cap = DECL_CAPTURED_VARIABLE (t);
5443 error ("lambda capture of %qE is not a constant expression",
5444 cap);
5445 if (!want_rval && decl_constant_var_p (cap))
5446 inform (input_location, "because it is used as a glvalue");
5448 return false;
5450 return RECUR (DECL_VALUE_EXPR (t), rval);
5452 if (want_rval
5453 && !var_in_maybe_constexpr_fn (t)
5454 && !type_dependent_expression_p (t)
5455 && !decl_maybe_constant_var_p (t)
5456 && (strict
5457 || !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (t))
5458 || (DECL_INITIAL (t)
5459 && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t)))
5460 && COMPLETE_TYPE_P (TREE_TYPE (t))
5461 && !is_really_empty_class (TREE_TYPE (t)))
5463 if (flags & tf_error)
5464 non_const_var_error (t);
5465 return false;
5467 return true;
5469 case NOP_EXPR:
5470 case CONVERT_EXPR:
5471 case VIEW_CONVERT_EXPR:
5472 /* -- a reinterpret_cast. FIXME not implemented, and this rule
5473 may change to something more specific to type-punning (DR 1312). */
5475 tree from = TREE_OPERAND (t, 0);
5476 if (POINTER_TYPE_P (TREE_TYPE (t))
5477 && TREE_CODE (from) == INTEGER_CST
5478 && !integer_zerop (from))
5480 if (flags & tf_error)
5481 error_at (loc, "reinterpret_cast from integer to pointer");
5482 return false;
5484 return (RECUR (from, TREE_CODE (t) != VIEW_CONVERT_EXPR));
5487 case ADDRESSOF_EXPR:
5488 /* This is like ADDR_EXPR, except it won't form pointer-to-member. */
5489 t = TREE_OPERAND (t, 0);
5490 goto handle_addr_expr;
5492 case ADDR_EXPR:
5493 /* -- a unary operator & that is applied to an lvalue that
5494 designates an object with thread or automatic storage
5495 duration; */
5496 t = TREE_OPERAND (t, 0);
5498 if (TREE_CODE (t) == OFFSET_REF && PTRMEM_OK_P (t))
5499 /* A pointer-to-member constant. */
5500 return true;
5502 handle_addr_expr:
5503 #if 0
5504 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
5505 any checking here, as we might dereference the pointer later. If
5506 we remove this code, also remove check_automatic_or_tls. */
5507 i = check_automatic_or_tls (t);
5508 if (i == ck_ok)
5509 return true;
5510 if (i == ck_bad)
5512 if (flags & tf_error)
5513 error ("address-of an object %qE with thread local or "
5514 "automatic storage is not a constant expression", t);
5515 return false;
5517 #endif
5518 return RECUR (t, any);
5520 case REALPART_EXPR:
5521 case IMAGPART_EXPR:
5522 case COMPONENT_REF:
5523 case BIT_FIELD_REF:
5524 case ARROW_EXPR:
5525 case OFFSET_REF:
5526 /* -- a class member access unless its postfix-expression is
5527 of literal type or of pointer to literal type. */
5528 /* This test would be redundant, as it follows from the
5529 postfix-expression being a potential constant expression. */
5530 if (type_unknown_p (t))
5531 return true;
5532 return RECUR (TREE_OPERAND (t, 0), want_rval);
5534 case EXPR_PACK_EXPANSION:
5535 return RECUR (PACK_EXPANSION_PATTERN (t), want_rval);
5537 case INDIRECT_REF:
5539 tree x = TREE_OPERAND (t, 0);
5540 STRIP_NOPS (x);
5541 if (is_this_parameter (x) && !is_capture_proxy (x))
5543 if (!var_in_maybe_constexpr_fn (x))
5545 if (flags & tf_error)
5546 error_at (loc, "use of %<this%> in a constant expression");
5547 return false;
5549 return true;
5551 return RECUR (x, rval);
5554 case STATEMENT_LIST:
5556 tree_stmt_iterator i;
5557 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5559 if (!RECUR (tsi_stmt (i), any))
5560 return false;
5562 return true;
5564 break;
5566 case MODIFY_EXPR:
5567 if (cxx_dialect < cxx14)
5568 goto fail;
5569 if (!RECUR (TREE_OPERAND (t, 0), any))
5570 return false;
5571 if (!RECUR (TREE_OPERAND (t, 1), rval))
5572 return false;
5573 return true;
5575 case MODOP_EXPR:
5576 if (cxx_dialect < cxx14)
5577 goto fail;
5578 if (!RECUR (TREE_OPERAND (t, 0), rval))
5579 return false;
5580 if (!RECUR (TREE_OPERAND (t, 2), rval))
5581 return false;
5582 return true;
5584 case DO_STMT:
5585 if (!RECUR (DO_COND (t), rval))
5586 return false;
5587 if (!RECUR (DO_BODY (t), any))
5588 return false;
5589 return true;
5591 case FOR_STMT:
5592 if (!RECUR (FOR_INIT_STMT (t), any))
5593 return false;
5594 if (!RECUR (FOR_COND (t), rval))
5595 return false;
5596 if (!RECUR (FOR_EXPR (t), any))
5597 return false;
5598 if (!RECUR (FOR_BODY (t), any))
5599 return false;
5600 return true;
5602 case RANGE_FOR_STMT:
5603 if (!RECUR (RANGE_FOR_EXPR (t), any))
5604 return false;
5605 if (!RECUR (RANGE_FOR_BODY (t), any))
5606 return false;
5607 return true;
5609 case WHILE_STMT:
5610 if (!RECUR (WHILE_COND (t), rval))
5611 return false;
5612 if (!RECUR (WHILE_BODY (t), any))
5613 return false;
5614 return true;
5616 case SWITCH_STMT:
5617 if (!RECUR (SWITCH_STMT_COND (t), rval))
5618 return false;
5619 /* FIXME we don't check SWITCH_STMT_BODY currently, because even
5620 unreachable labels would be checked. */
5621 return true;
5623 case STMT_EXPR:
5624 return RECUR (STMT_EXPR_STMT (t), rval);
5626 case LAMBDA_EXPR:
5627 if (cxx_dialect >= cxx17)
5628 /* In C++17 lambdas can be constexpr, don't give up yet. */
5629 return true;
5630 else if (flags & tf_error)
5631 error_at (loc, "lambda-expression is not a constant expression "
5632 "before C++17");
5633 return false;
5635 case DYNAMIC_CAST_EXPR:
5636 case PSEUDO_DTOR_EXPR:
5637 case NEW_EXPR:
5638 case VEC_NEW_EXPR:
5639 case DELETE_EXPR:
5640 case VEC_DELETE_EXPR:
5641 case THROW_EXPR:
5642 case OMP_PARALLEL:
5643 case OMP_TASK:
5644 case OMP_FOR:
5645 case OMP_SIMD:
5646 case OMP_DISTRIBUTE:
5647 case OMP_TASKLOOP:
5648 case OMP_TEAMS:
5649 case OMP_TARGET_DATA:
5650 case OMP_TARGET:
5651 case OMP_SECTIONS:
5652 case OMP_ORDERED:
5653 case OMP_CRITICAL:
5654 case OMP_SINGLE:
5655 case OMP_SECTION:
5656 case OMP_MASTER:
5657 case OMP_TASKGROUP:
5658 case OMP_TARGET_UPDATE:
5659 case OMP_TARGET_ENTER_DATA:
5660 case OMP_TARGET_EXIT_DATA:
5661 case OMP_ATOMIC:
5662 case OMP_ATOMIC_READ:
5663 case OMP_ATOMIC_CAPTURE_OLD:
5664 case OMP_ATOMIC_CAPTURE_NEW:
5665 case OACC_PARALLEL:
5666 case OACC_KERNELS:
5667 case OACC_DATA:
5668 case OACC_HOST_DATA:
5669 case OACC_LOOP:
5670 case OACC_CACHE:
5671 case OACC_DECLARE:
5672 case OACC_ENTER_DATA:
5673 case OACC_EXIT_DATA:
5674 case OACC_UPDATE:
5675 /* GCC internal stuff. */
5676 case VA_ARG_EXPR:
5677 case OBJ_TYPE_REF:
5678 case TRANSACTION_EXPR:
5679 case ASM_EXPR:
5680 case AT_ENCODE_EXPR:
5681 fail:
5682 if (flags & tf_error)
5683 error_at (loc, "expression %qE is not a constant expression", t);
5684 return false;
5686 case TYPEID_EXPR:
5687 /* -- a typeid expression whose operand is of polymorphic
5688 class type; */
5690 tree e = TREE_OPERAND (t, 0);
5691 if (!TYPE_P (e) && !type_dependent_expression_p (e)
5692 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
5694 if (flags & tf_error)
5695 error_at (loc, "typeid-expression is not a constant expression "
5696 "because %qE is of polymorphic type", e);
5697 return false;
5699 return true;
5702 case POINTER_DIFF_EXPR:
5703 case MINUS_EXPR:
5704 want_rval = true;
5705 goto binary;
5707 case LT_EXPR:
5708 case LE_EXPR:
5709 case GT_EXPR:
5710 case GE_EXPR:
5711 case EQ_EXPR:
5712 case NE_EXPR:
5713 want_rval = true;
5714 goto binary;
5716 case PREINCREMENT_EXPR:
5717 case POSTINCREMENT_EXPR:
5718 case PREDECREMENT_EXPR:
5719 case POSTDECREMENT_EXPR:
5720 if (cxx_dialect < cxx14)
5721 goto fail;
5722 goto unary;
5724 case BIT_NOT_EXPR:
5725 /* A destructor. */
5726 if (TYPE_P (TREE_OPERAND (t, 0)))
5727 return true;
5728 /* fall through. */
5730 case CONJ_EXPR:
5731 case SAVE_EXPR:
5732 case FIX_TRUNC_EXPR:
5733 case FLOAT_EXPR:
5734 case NEGATE_EXPR:
5735 case ABS_EXPR:
5736 case TRUTH_NOT_EXPR:
5737 case FIXED_CONVERT_EXPR:
5738 case UNARY_PLUS_EXPR:
5739 case UNARY_LEFT_FOLD_EXPR:
5740 case UNARY_RIGHT_FOLD_EXPR:
5741 unary:
5742 return RECUR (TREE_OPERAND (t, 0), rval);
5744 case CAST_EXPR:
5745 case CONST_CAST_EXPR:
5746 case STATIC_CAST_EXPR:
5747 case REINTERPRET_CAST_EXPR:
5748 case IMPLICIT_CONV_EXPR:
5749 if (cxx_dialect < cxx11
5750 && !dependent_type_p (TREE_TYPE (t))
5751 && !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t)))
5752 /* In C++98, a conversion to non-integral type can't be part of a
5753 constant expression. */
5755 if (flags & tf_error)
5756 error_at (loc,
5757 "cast to non-integral type %qT in a constant expression",
5758 TREE_TYPE (t));
5759 return false;
5762 return (RECUR (TREE_OPERAND (t, 0),
5763 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE));
5765 case BIND_EXPR:
5766 return RECUR (BIND_EXPR_BODY (t), want_rval);
5768 case CLEANUP_POINT_EXPR:
5769 case MUST_NOT_THROW_EXPR:
5770 case TRY_CATCH_EXPR:
5771 case TRY_BLOCK:
5772 case EH_SPEC_BLOCK:
5773 case EXPR_STMT:
5774 case PAREN_EXPR:
5775 case NON_DEPENDENT_EXPR:
5776 /* For convenience. */
5777 case RETURN_EXPR:
5778 case LOOP_EXPR:
5779 case EXIT_EXPR:
5780 return RECUR (TREE_OPERAND (t, 0), want_rval);
5782 case DECL_EXPR:
5783 tmp = DECL_EXPR_DECL (t);
5784 if (VAR_P (tmp) && !DECL_ARTIFICIAL (tmp))
5786 if (TREE_STATIC (tmp))
5788 if (flags & tf_error)
5789 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5790 "%<static%> in %<constexpr%> context", tmp);
5791 return false;
5793 else if (CP_DECL_THREAD_LOCAL_P (tmp))
5795 if (flags & tf_error)
5796 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5797 "%<thread_local%> in %<constexpr%> context", tmp);
5798 return false;
5800 else if (!check_for_uninitialized_const_var
5801 (tmp, /*constexpr_context_p=*/true, flags))
5802 return false;
5804 return RECUR (tmp, want_rval);
5806 case TRY_FINALLY_EXPR:
5807 return (RECUR (TREE_OPERAND (t, 0), want_rval)
5808 && RECUR (TREE_OPERAND (t, 1), any));
5810 case SCOPE_REF:
5811 return RECUR (TREE_OPERAND (t, 1), want_rval);
5813 case TARGET_EXPR:
5814 if (!TARGET_EXPR_DIRECT_INIT_P (t)
5815 && !literal_type_p (TREE_TYPE (t)))
5817 if (flags & tf_error)
5819 error_at (loc, "temporary of non-literal type %qT in a "
5820 "constant expression", TREE_TYPE (t));
5821 explain_non_literal_class (TREE_TYPE (t));
5823 return false;
5825 /* FALLTHRU */
5826 case INIT_EXPR:
5827 return RECUR (TREE_OPERAND (t, 1), rval);
5829 case CONSTRUCTOR:
5831 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5832 constructor_elt *ce;
5833 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5834 if (!RECUR (ce->value, want_rval))
5835 return false;
5836 return true;
5839 case TREE_LIST:
5841 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
5842 || DECL_P (TREE_PURPOSE (t)));
5843 if (!RECUR (TREE_VALUE (t), want_rval))
5844 return false;
5845 if (TREE_CHAIN (t) == NULL_TREE)
5846 return true;
5847 return RECUR (TREE_CHAIN (t), want_rval);
5850 case TRUNC_DIV_EXPR:
5851 case CEIL_DIV_EXPR:
5852 case FLOOR_DIV_EXPR:
5853 case ROUND_DIV_EXPR:
5854 case TRUNC_MOD_EXPR:
5855 case CEIL_MOD_EXPR:
5856 case ROUND_MOD_EXPR:
5858 tree denom = TREE_OPERAND (t, 1);
5859 if (!RECUR (denom, rval))
5860 return false;
5861 /* We can't call cxx_eval_outermost_constant_expr on an expression
5862 that hasn't been through instantiate_non_dependent_expr yet. */
5863 if (!processing_template_decl)
5864 denom = cxx_eval_outermost_constant_expr (denom, true);
5865 if (integer_zerop (denom))
5867 if (flags & tf_error)
5868 error ("division by zero is not a constant expression");
5869 return false;
5871 else
5873 want_rval = true;
5874 return RECUR (TREE_OPERAND (t, 0), want_rval);
5878 case COMPOUND_EXPR:
5880 /* check_return_expr sometimes wraps a TARGET_EXPR in a
5881 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
5882 introduced by build_call_a. */
5883 tree op0 = TREE_OPERAND (t, 0);
5884 tree op1 = TREE_OPERAND (t, 1);
5885 STRIP_NOPS (op1);
5886 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
5887 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
5888 return RECUR (op0, want_rval);
5889 else
5890 goto binary;
5893 /* If the first operand is the non-short-circuit constant, look at
5894 the second operand; otherwise we only care about the first one for
5895 potentiality. */
5896 case TRUTH_AND_EXPR:
5897 case TRUTH_ANDIF_EXPR:
5898 tmp = boolean_true_node;
5899 goto truth;
5900 case TRUTH_OR_EXPR:
5901 case TRUTH_ORIF_EXPR:
5902 tmp = boolean_false_node;
5903 truth:
5905 tree op = TREE_OPERAND (t, 0);
5906 if (!RECUR (op, rval))
5907 return false;
5908 if (!processing_template_decl)
5909 op = cxx_eval_outermost_constant_expr (op, true);
5910 if (tree_int_cst_equal (op, tmp))
5911 return RECUR (TREE_OPERAND (t, 1), rval);
5912 else
5913 return true;
5916 case PLUS_EXPR:
5917 case MULT_EXPR:
5918 case POINTER_PLUS_EXPR:
5919 case RDIV_EXPR:
5920 case EXACT_DIV_EXPR:
5921 case MIN_EXPR:
5922 case MAX_EXPR:
5923 case LSHIFT_EXPR:
5924 case RSHIFT_EXPR:
5925 case LROTATE_EXPR:
5926 case RROTATE_EXPR:
5927 case BIT_IOR_EXPR:
5928 case BIT_XOR_EXPR:
5929 case BIT_AND_EXPR:
5930 case TRUTH_XOR_EXPR:
5931 case UNORDERED_EXPR:
5932 case ORDERED_EXPR:
5933 case UNLT_EXPR:
5934 case UNLE_EXPR:
5935 case UNGT_EXPR:
5936 case UNGE_EXPR:
5937 case UNEQ_EXPR:
5938 case LTGT_EXPR:
5939 case RANGE_EXPR:
5940 case COMPLEX_EXPR:
5941 want_rval = true;
5942 /* Fall through. */
5943 case ARRAY_REF:
5944 case ARRAY_RANGE_REF:
5945 case MEMBER_REF:
5946 case DOTSTAR_EXPR:
5947 case MEM_REF:
5948 case BINARY_LEFT_FOLD_EXPR:
5949 case BINARY_RIGHT_FOLD_EXPR:
5950 binary:
5951 for (i = 0; i < 2; ++i)
5952 if (!RECUR (TREE_OPERAND (t, i), want_rval))
5953 return false;
5954 return true;
5956 case FMA_EXPR:
5957 case VEC_PERM_EXPR:
5958 for (i = 0; i < 3; ++i)
5959 if (!RECUR (TREE_OPERAND (t, i), true))
5960 return false;
5961 return true;
5963 case COND_EXPR:
5964 if (COND_EXPR_IS_VEC_DELETE (t))
5966 if (flags & tf_error)
5967 error_at (loc, "%<delete[]%> is not a constant expression");
5968 return false;
5970 /* Fall through. */
5971 case IF_STMT:
5972 case VEC_COND_EXPR:
5973 /* If the condition is a known constant, we know which of the legs we
5974 care about; otherwise we only require that the condition and
5975 either of the legs be potentially constant. */
5976 tmp = TREE_OPERAND (t, 0);
5977 if (!RECUR (tmp, rval))
5978 return false;
5979 if (!processing_template_decl)
5980 tmp = cxx_eval_outermost_constant_expr (tmp, true);
5981 if (integer_zerop (tmp))
5982 return RECUR (TREE_OPERAND (t, 2), want_rval);
5983 else if (TREE_CODE (tmp) == INTEGER_CST)
5984 return RECUR (TREE_OPERAND (t, 1), want_rval);
5985 for (i = 1; i < 3; ++i)
5986 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
5987 want_rval, strict, now, tf_none))
5988 return true;
5989 if (flags & tf_error)
5990 error_at (loc, "expression %qE is not a constant expression", t);
5991 return false;
5993 case VEC_INIT_EXPR:
5994 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
5995 return true;
5996 if (flags & tf_error)
5998 error_at (loc, "non-constant array initialization");
5999 diagnose_non_constexpr_vec_init (t);
6001 return false;
6003 case TYPE_DECL:
6004 case TAG_DEFN:
6005 /* We can see these in statement-expressions. */
6006 return true;
6008 case CLEANUP_STMT:
6009 case EMPTY_CLASS_EXPR:
6010 case PREDICT_EXPR:
6011 return false;
6013 case GOTO_EXPR:
6015 tree *target = &TREE_OPERAND (t, 0);
6016 /* Gotos representing break and continue are OK. */
6017 if (breaks (target) || continues (target))
6018 return true;
6019 if (flags & tf_error)
6020 error_at (loc, "%<goto%> is not a constant expression");
6021 return false;
6024 case ANNOTATE_EXPR:
6025 return RECUR (TREE_OPERAND (t, 0), rval);
6027 default:
6028 if (objc_is_property_ref (t))
6029 return false;
6031 sorry ("unexpected AST of kind %s", get_tree_code_name (TREE_CODE (t)));
6032 gcc_unreachable ();
6033 return false;
6035 #undef RECUR
6038 /* The main entry point to the above. */
6040 bool
6041 potential_constant_expression (tree t)
6043 return potential_constant_expression_1 (t, false, true, false, tf_none);
6046 /* As above, but require a constant rvalue. */
6048 bool
6049 potential_rvalue_constant_expression (tree t)
6051 return potential_constant_expression_1 (t, true, true, false, tf_none);
6054 /* Like above, but complain about non-constant expressions. */
6056 bool
6057 require_potential_constant_expression (tree t)
6059 return potential_constant_expression_1 (t, false, true, false,
6060 tf_warning_or_error);
6063 /* Cross product of the above. */
6065 bool
6066 require_potential_rvalue_constant_expression (tree t)
6068 return potential_constant_expression_1 (t, true, true, false,
6069 tf_warning_or_error);
6072 /* Like above, but don't consider PARM_DECL a potential_constant_expression. */
6074 bool
6075 require_rvalue_constant_expression (tree t)
6077 return potential_constant_expression_1 (t, true, true, true,
6078 tf_warning_or_error);
6081 /* Like potential_constant_expression, but don't consider possible constexpr
6082 substitution of the current function. That is, PARM_DECL qualifies under
6083 potential_constant_expression, but not here.
6085 This is basically what you can check when any actual constant values might
6086 be value-dependent. */
6088 bool
6089 is_constant_expression (tree t)
6091 return potential_constant_expression_1 (t, false, true, true, tf_none);
6094 /* Like above, but complain about non-constant expressions. */
6096 bool
6097 require_constant_expression (tree t)
6099 return potential_constant_expression_1 (t, false, true, true,
6100 tf_warning_or_error);
6103 /* Like is_constant_expression, but allow const variables that are not allowed
6104 under constexpr rules. */
6106 bool
6107 is_static_init_expression (tree t)
6109 return potential_constant_expression_1 (t, false, false, true, tf_none);
6112 /* Returns true if T is a potential constant expression that is not
6113 instantiation-dependent, and therefore a candidate for constant folding even
6114 in a template. */
6116 bool
6117 is_nondependent_constant_expression (tree t)
6119 return (!type_unknown_p (t)
6120 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6121 && is_constant_expression (t)
6122 && !instantiation_dependent_expression_p (t));
6125 /* Returns true if T is a potential static initializer expression that is not
6126 instantiation-dependent. */
6128 bool
6129 is_nondependent_static_init_expression (tree t)
6131 return (!type_unknown_p (t)
6132 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6133 && is_static_init_expression (t)
6134 && !instantiation_dependent_expression_p (t));
6137 /* Finalize constexpr processing after parsing. */
6139 void
6140 fini_constexpr (void)
6142 /* The contexpr call and fundef copies tables are no longer needed. */
6143 constexpr_call_table = NULL;
6144 fundef_copies_table = NULL;
6147 #include "gt-cp-constexpr.h"