[AArch64] Avoid GET_MODE_NUNITS in v8.4 support
[official-gcc.git] / gcc / cp / constexpr.c
blobb216e090b45386d961f5303a35dd04a01d320f7f
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 the DECL if OK, otherwise NULL. */
80 tree
81 ensure_literal_type_for_constexpr_object (tree decl)
83 tree type = TREE_TYPE (decl);
84 if (VAR_P (decl)
85 && (DECL_DECLARED_CONSTEXPR_P (decl)
86 || var_in_constexpr_fn (decl))
87 && !processing_template_decl)
89 tree stype = strip_array_types (type);
90 if (CLASS_TYPE_P (stype) && !COMPLETE_TYPE_P (complete_type (stype)))
91 /* Don't complain here, we'll complain about incompleteness
92 when we try to initialize the variable. */;
93 else if (!literal_type_p (type))
95 if (DECL_DECLARED_CONSTEXPR_P (decl))
97 error ("the type %qT of %<constexpr%> variable %qD "
98 "is not literal", type, decl);
99 explain_non_literal_class (type);
101 else
103 if (!is_instantiation_of_constexpr (current_function_decl))
105 error ("variable %qD of non-literal type %qT in %<constexpr%> "
106 "function", decl, type);
107 explain_non_literal_class (type);
109 cp_function_chain->invalid_constexpr = true;
111 return NULL;
114 return decl;
117 /* Representation of entries in the constexpr function definition table. */
119 struct GTY((for_user)) constexpr_fundef {
120 tree decl;
121 tree body;
124 struct constexpr_fundef_hasher : ggc_ptr_hash<constexpr_fundef>
126 static hashval_t hash (constexpr_fundef *);
127 static bool equal (constexpr_fundef *, constexpr_fundef *);
130 /* This table holds all constexpr function definitions seen in
131 the current translation unit. */
133 static GTY (()) hash_table<constexpr_fundef_hasher> *constexpr_fundef_table;
135 /* Utility function used for managing the constexpr function table.
136 Return true if the entries pointed to by P and Q are for the
137 same constexpr function. */
139 inline bool
140 constexpr_fundef_hasher::equal (constexpr_fundef *lhs, constexpr_fundef *rhs)
142 return lhs->decl == rhs->decl;
145 /* Utility function used for managing the constexpr function table.
146 Return a hash value for the entry pointed to by Q. */
148 inline hashval_t
149 constexpr_fundef_hasher::hash (constexpr_fundef *fundef)
151 return DECL_UID (fundef->decl);
154 /* Return a previously saved definition of function FUN. */
156 static constexpr_fundef *
157 retrieve_constexpr_fundef (tree fun)
159 constexpr_fundef fundef = { NULL, NULL };
160 if (constexpr_fundef_table == NULL)
161 return NULL;
163 fundef.decl = fun;
164 return constexpr_fundef_table->find (&fundef);
167 /* Check whether the parameter and return types of FUN are valid for a
168 constexpr function, and complain if COMPLAIN. */
170 bool
171 is_valid_constexpr_fn (tree fun, bool complain)
173 bool ret = true;
175 if (DECL_INHERITED_CTOR (fun)
176 && TREE_CODE (fun) == TEMPLATE_DECL)
178 ret = false;
179 if (complain)
180 error ("inherited constructor %qD is not %<constexpr%>",
181 DECL_INHERITED_CTOR (fun));
183 else
185 for (tree parm = FUNCTION_FIRST_USER_PARM (fun);
186 parm != NULL_TREE; parm = TREE_CHAIN (parm))
187 if (!literal_type_p (TREE_TYPE (parm)))
189 ret = false;
190 if (complain)
192 error ("invalid type for parameter %d of %<constexpr%> "
193 "function %q+#D", DECL_PARM_INDEX (parm), fun);
194 explain_non_literal_class (TREE_TYPE (parm));
199 if (LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun)) && cxx_dialect < cxx17)
201 ret = false;
202 if (complain)
203 inform (DECL_SOURCE_LOCATION (fun),
204 "lambdas are implicitly %<constexpr%> only in C++17 and later");
206 else if (!DECL_CONSTRUCTOR_P (fun))
208 tree rettype = TREE_TYPE (TREE_TYPE (fun));
209 if (!literal_type_p (rettype))
211 ret = false;
212 if (complain)
214 error ("invalid return type %qT of %<constexpr%> function %q+D",
215 rettype, fun);
216 explain_non_literal_class (rettype);
220 /* C++14 DR 1684 removed this restriction. */
221 if (cxx_dialect < cxx14
222 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
223 && !CLASSTYPE_LITERAL_P (DECL_CONTEXT (fun)))
225 ret = false;
226 if (complain
227 && pedwarn (DECL_SOURCE_LOCATION (fun), OPT_Wpedantic,
228 "enclosing class of %<constexpr%> non-static member "
229 "function %q+#D is not a literal type", fun))
230 explain_non_literal_class (DECL_CONTEXT (fun));
233 else if (CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fun)))
235 ret = false;
236 if (complain)
237 error ("%q#T has virtual base classes", DECL_CONTEXT (fun));
240 return ret;
243 /* Subroutine of build_data_member_initialization. MEMBER is a COMPONENT_REF
244 for a member of an anonymous aggregate, INIT is the initializer for that
245 member, and VEC_OUTER is the vector of constructor elements for the class
246 whose constructor we are processing. Add the initializer to the vector
247 and return true to indicate success. */
249 static bool
250 build_anon_member_initialization (tree member, tree init,
251 vec<constructor_elt, va_gc> **vec_outer)
253 /* MEMBER presents the relevant fields from the inside out, but we need
254 to build up the initializer from the outside in so that we can reuse
255 previously built CONSTRUCTORs if this is, say, the second field in an
256 anonymous struct. So we use a vec as a stack. */
257 auto_vec<tree, 2> fields;
260 fields.safe_push (TREE_OPERAND (member, 1));
261 member = TREE_OPERAND (member, 0);
263 while (ANON_AGGR_TYPE_P (TREE_TYPE (member))
264 && TREE_CODE (member) == COMPONENT_REF);
266 /* VEC has the constructor elements vector for the context of FIELD.
267 If FIELD is an anonymous aggregate, we will push inside it. */
268 vec<constructor_elt, va_gc> **vec = vec_outer;
269 tree field;
270 while (field = fields.pop(),
271 ANON_AGGR_TYPE_P (TREE_TYPE (field)))
273 tree ctor;
274 /* If there is already an outer constructor entry for the anonymous
275 aggregate FIELD, use it; otherwise, insert one. */
276 if (vec_safe_is_empty (*vec)
277 || (*vec)->last().index != field)
279 ctor = build_constructor (TREE_TYPE (field), NULL);
280 CONSTRUCTOR_APPEND_ELT (*vec, field, ctor);
282 else
283 ctor = (*vec)->last().value;
284 vec = &CONSTRUCTOR_ELTS (ctor);
287 /* Now we're at the innermost field, the one that isn't an anonymous
288 aggregate. Add its initializer to the CONSTRUCTOR and we're done. */
289 gcc_assert (fields.is_empty());
290 CONSTRUCTOR_APPEND_ELT (*vec, field, init);
292 return true;
295 /* Subroutine of build_constexpr_constructor_member_initializers.
296 The expression tree T represents a data member initialization
297 in a (constexpr) constructor definition. Build a pairing of
298 the data member with its initializer, and prepend that pair
299 to the existing initialization pair INITS. */
301 static bool
302 build_data_member_initialization (tree t, vec<constructor_elt, va_gc> **vec)
304 tree member, init;
305 if (TREE_CODE (t) == CLEANUP_POINT_EXPR)
306 t = TREE_OPERAND (t, 0);
307 if (TREE_CODE (t) == EXPR_STMT)
308 t = TREE_OPERAND (t, 0);
309 if (t == error_mark_node)
310 return false;
311 if (TREE_CODE (t) == STATEMENT_LIST)
313 tree_stmt_iterator i;
314 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
316 if (! build_data_member_initialization (tsi_stmt (i), vec))
317 return false;
319 return true;
321 if (TREE_CODE (t) == CLEANUP_STMT)
323 /* We can't see a CLEANUP_STMT in a constructor for a literal class,
324 but we can in a constexpr constructor for a non-literal class. Just
325 ignore it; either all the initialization will be constant, in which
326 case the cleanup can't run, or it can't be constexpr.
327 Still recurse into CLEANUP_BODY. */
328 return build_data_member_initialization (CLEANUP_BODY (t), vec);
330 if (TREE_CODE (t) == CONVERT_EXPR)
331 t = TREE_OPERAND (t, 0);
332 if (TREE_CODE (t) == INIT_EXPR
333 /* vptr initialization shows up as a MODIFY_EXPR. In C++14 we only
334 use what this function builds for cx_check_missing_mem_inits, and
335 assignment in the ctor body doesn't count. */
336 || (cxx_dialect < cxx14 && TREE_CODE (t) == MODIFY_EXPR))
338 member = TREE_OPERAND (t, 0);
339 init = break_out_target_exprs (TREE_OPERAND (t, 1));
341 else if (TREE_CODE (t) == CALL_EXPR)
343 tree fn = get_callee_fndecl (t);
344 if (!fn || !DECL_CONSTRUCTOR_P (fn))
345 /* We're only interested in calls to subobject constructors. */
346 return true;
347 member = CALL_EXPR_ARG (t, 0);
348 /* We don't use build_cplus_new here because it complains about
349 abstract bases. Leaving the call unwrapped means that it has the
350 wrong type, but cxx_eval_constant_expression doesn't care. */
351 init = break_out_target_exprs (t);
353 else if (TREE_CODE (t) == BIND_EXPR)
354 return build_data_member_initialization (BIND_EXPR_BODY (t), vec);
355 else
356 /* Don't add anything else to the CONSTRUCTOR. */
357 return true;
358 if (INDIRECT_REF_P (member))
359 member = TREE_OPERAND (member, 0);
360 if (TREE_CODE (member) == NOP_EXPR)
362 tree op = member;
363 STRIP_NOPS (op);
364 if (TREE_CODE (op) == ADDR_EXPR)
366 gcc_assert (same_type_ignoring_top_level_qualifiers_p
367 (TREE_TYPE (TREE_TYPE (op)),
368 TREE_TYPE (TREE_TYPE (member))));
369 /* Initializing a cv-qualified member; we need to look through
370 the const_cast. */
371 member = op;
373 else if (op == current_class_ptr
374 && (same_type_ignoring_top_level_qualifiers_p
375 (TREE_TYPE (TREE_TYPE (member)),
376 current_class_type)))
377 /* Delegating constructor. */
378 member = op;
379 else
381 /* This is an initializer for an empty base; keep it for now so
382 we can check it in cxx_eval_bare_aggregate. */
383 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (member))));
386 if (TREE_CODE (member) == ADDR_EXPR)
387 member = TREE_OPERAND (member, 0);
388 if (TREE_CODE (member) == COMPONENT_REF)
390 tree aggr = TREE_OPERAND (member, 0);
391 if (TREE_CODE (aggr) == VAR_DECL)
392 /* Initializing a local variable, don't add anything. */
393 return true;
394 if (TREE_CODE (aggr) != COMPONENT_REF)
395 /* Normal member initialization. */
396 member = TREE_OPERAND (member, 1);
397 else if (ANON_AGGR_TYPE_P (TREE_TYPE (aggr)))
398 /* Initializing a member of an anonymous union. */
399 return build_anon_member_initialization (member, init, vec);
400 else
401 /* We're initializing a vtable pointer in a base. Leave it as
402 COMPONENT_REF so we remember the path to get to the vfield. */
403 gcc_assert (TREE_TYPE (member) == vtbl_ptr_type_node);
406 /* Value-initialization can produce multiple initializers for the
407 same field; use the last one. */
408 if (!vec_safe_is_empty (*vec) && (*vec)->last().index == member)
409 (*vec)->last().value = init;
410 else
411 CONSTRUCTOR_APPEND_ELT (*vec, member, init);
412 return true;
415 /* Subroutine of check_constexpr_ctor_body_1 and constexpr_fn_retval.
416 In C++11 mode checks that the TYPE_DECLs in the BIND_EXPR_VARS of a
417 BIND_EXPR conform to 7.1.5/3/4 on typedef and alias declarations. */
419 static bool
420 check_constexpr_bind_expr_vars (tree t)
422 gcc_assert (TREE_CODE (t) == BIND_EXPR);
424 for (tree var = BIND_EXPR_VARS (t); var; var = DECL_CHAIN (var))
425 if (TREE_CODE (var) == TYPE_DECL
426 && DECL_IMPLICIT_TYPEDEF_P (var)
427 && !LAMBDA_TYPE_P (TREE_TYPE (var)))
428 return false;
429 return true;
432 /* Subroutine of check_constexpr_ctor_body. */
434 static bool
435 check_constexpr_ctor_body_1 (tree last, tree list)
437 switch (TREE_CODE (list))
439 case DECL_EXPR:
440 if (TREE_CODE (DECL_EXPR_DECL (list)) == USING_DECL
441 || TREE_CODE (DECL_EXPR_DECL (list)) == TYPE_DECL)
442 return true;
443 return false;
445 case CLEANUP_POINT_EXPR:
446 return check_constexpr_ctor_body (last, TREE_OPERAND (list, 0),
447 /*complain=*/false);
449 case BIND_EXPR:
450 if (!check_constexpr_bind_expr_vars (list)
451 || !check_constexpr_ctor_body (last, BIND_EXPR_BODY (list),
452 /*complain=*/false))
453 return false;
454 return true;
456 case USING_STMT:
457 case STATIC_ASSERT:
458 case DEBUG_BEGIN_STMT:
459 return true;
461 default:
462 return false;
466 /* Make sure that there are no statements after LAST in the constructor
467 body represented by LIST. */
469 bool
470 check_constexpr_ctor_body (tree last, tree list, bool complain)
472 /* C++14 doesn't require a constexpr ctor to have an empty body. */
473 if (cxx_dialect >= cxx14)
474 return true;
476 bool ok = true;
477 if (TREE_CODE (list) == STATEMENT_LIST)
479 tree_stmt_iterator i = tsi_last (list);
480 for (; !tsi_end_p (i); tsi_prev (&i))
482 tree t = tsi_stmt (i);
483 if (t == last)
484 break;
485 if (!check_constexpr_ctor_body_1 (last, t))
487 ok = false;
488 break;
492 else if (list != last
493 && !check_constexpr_ctor_body_1 (last, list))
494 ok = false;
495 if (!ok)
497 if (complain)
498 error ("%<constexpr%> constructor does not have empty body");
499 DECL_DECLARED_CONSTEXPR_P (current_function_decl) = false;
501 return ok;
504 /* V is a vector of constructor elements built up for the base and member
505 initializers of a constructor for TYPE. They need to be in increasing
506 offset order, which they might not be yet if TYPE has a primary base
507 which is not first in the base-clause or a vptr and at least one base
508 all of which are non-primary. */
510 static vec<constructor_elt, va_gc> *
511 sort_constexpr_mem_initializers (tree type, vec<constructor_elt, va_gc> *v)
513 tree pri = CLASSTYPE_PRIMARY_BINFO (type);
514 tree field_type;
515 unsigned i;
516 constructor_elt *ce;
518 if (pri)
519 field_type = BINFO_TYPE (pri);
520 else if (TYPE_CONTAINS_VPTR_P (type))
521 field_type = vtbl_ptr_type_node;
522 else
523 return v;
525 /* Find the element for the primary base or vptr and move it to the
526 beginning of the vec. */
527 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
528 if (TREE_TYPE (ce->index) == field_type)
529 break;
531 if (i > 0 && i < vec_safe_length (v))
533 vec<constructor_elt, va_gc> &vref = *v;
534 constructor_elt elt = vref[i];
535 for (; i > 0; --i)
536 vref[i] = vref[i-1];
537 vref[0] = elt;
540 return v;
543 /* Build compile-time evalable representations of member-initializer list
544 for a constexpr constructor. */
546 static tree
547 build_constexpr_constructor_member_initializers (tree type, tree body)
549 vec<constructor_elt, va_gc> *vec = NULL;
550 bool ok = true;
551 while (true)
552 switch (TREE_CODE (body))
554 case MUST_NOT_THROW_EXPR:
555 case EH_SPEC_BLOCK:
556 body = TREE_OPERAND (body, 0);
557 break;
559 case STATEMENT_LIST:
560 for (tree_stmt_iterator i = tsi_start (body);
561 !tsi_end_p (i); tsi_next (&i))
563 body = tsi_stmt (i);
564 if (TREE_CODE (body) == BIND_EXPR)
565 break;
567 break;
569 case BIND_EXPR:
570 body = BIND_EXPR_BODY (body);
571 goto found;
573 default:
574 gcc_unreachable ();
576 found:
577 if (TREE_CODE (body) == CLEANUP_POINT_EXPR)
579 body = TREE_OPERAND (body, 0);
580 if (TREE_CODE (body) == EXPR_STMT)
581 body = TREE_OPERAND (body, 0);
582 if (TREE_CODE (body) == INIT_EXPR
583 && (same_type_ignoring_top_level_qualifiers_p
584 (TREE_TYPE (TREE_OPERAND (body, 0)),
585 current_class_type)))
587 /* Trivial copy. */
588 return TREE_OPERAND (body, 1);
590 ok = build_data_member_initialization (body, &vec);
592 else if (TREE_CODE (body) == STATEMENT_LIST)
594 tree_stmt_iterator i;
595 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
597 ok = build_data_member_initialization (tsi_stmt (i), &vec);
598 if (!ok)
599 break;
602 else if (TREE_CODE (body) == TRY_BLOCK)
604 error ("body of %<constexpr%> constructor cannot be "
605 "a function-try-block");
606 return error_mark_node;
608 else if (EXPR_P (body))
609 ok = build_data_member_initialization (body, &vec);
610 else
611 gcc_assert (errorcount > 0);
612 if (ok)
614 if (vec_safe_length (vec) > 0)
616 /* In a delegating constructor, return the target. */
617 constructor_elt *ce = &(*vec)[0];
618 if (ce->index == current_class_ptr)
620 body = ce->value;
621 vec_free (vec);
622 return body;
625 vec = sort_constexpr_mem_initializers (type, vec);
626 return build_constructor (type, vec);
628 else
629 return error_mark_node;
632 /* We have an expression tree T that represents a call, either CALL_EXPR
633 or AGGR_INIT_EXPR. If the call is lexically to a named function,
634 retrun the _DECL for that function. */
636 static tree
637 get_function_named_in_call (tree t)
639 tree fun = cp_get_callee (t);
640 if (fun && TREE_CODE (fun) == ADDR_EXPR
641 && TREE_CODE (TREE_OPERAND (fun, 0)) == FUNCTION_DECL)
642 fun = TREE_OPERAND (fun, 0);
643 return fun;
646 /* Subroutine of register_constexpr_fundef. BODY is the body of a function
647 declared to be constexpr, or a sub-statement thereof. Returns the
648 return value if suitable, error_mark_node for a statement not allowed in
649 a constexpr function, or NULL_TREE if no return value was found. */
651 static tree
652 constexpr_fn_retval (tree body)
654 switch (TREE_CODE (body))
656 case STATEMENT_LIST:
658 tree_stmt_iterator i;
659 tree expr = NULL_TREE;
660 for (i = tsi_start (body); !tsi_end_p (i); tsi_next (&i))
662 tree s = constexpr_fn_retval (tsi_stmt (i));
663 if (s == error_mark_node)
664 return error_mark_node;
665 else if (s == NULL_TREE)
666 /* Keep iterating. */;
667 else if (expr)
668 /* Multiple return statements. */
669 return error_mark_node;
670 else
671 expr = s;
673 return expr;
676 case RETURN_EXPR:
677 return break_out_target_exprs (TREE_OPERAND (body, 0));
679 case DECL_EXPR:
681 tree decl = DECL_EXPR_DECL (body);
682 if (TREE_CODE (decl) == USING_DECL
683 /* Accept __func__, __FUNCTION__, and __PRETTY_FUNCTION__. */
684 || DECL_ARTIFICIAL (decl))
685 return NULL_TREE;
686 return error_mark_node;
689 case CLEANUP_POINT_EXPR:
690 return constexpr_fn_retval (TREE_OPERAND (body, 0));
692 case BIND_EXPR:
693 if (!check_constexpr_bind_expr_vars (body))
694 return error_mark_node;
695 return constexpr_fn_retval (BIND_EXPR_BODY (body));
697 case USING_STMT:
698 case DEBUG_BEGIN_STMT:
699 return NULL_TREE;
701 case CALL_EXPR:
703 tree fun = get_function_named_in_call (body);
704 if (fun != NULL_TREE
705 && DECL_FUNCTION_CODE (fun) == BUILT_IN_UNREACHABLE)
706 return NULL_TREE;
708 /* Fallthru. */
710 default:
711 return error_mark_node;
715 /* Subroutine of register_constexpr_fundef. BODY is the DECL_SAVED_TREE of
716 FUN; do the necessary transformations to turn it into a single expression
717 that we can store in the hash table. */
719 static tree
720 massage_constexpr_body (tree fun, tree body)
722 if (DECL_CONSTRUCTOR_P (fun))
723 body = build_constexpr_constructor_member_initializers
724 (DECL_CONTEXT (fun), body);
725 else if (cxx_dialect < cxx14)
727 if (TREE_CODE (body) == EH_SPEC_BLOCK)
728 body = EH_SPEC_STMTS (body);
729 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
730 body = TREE_OPERAND (body, 0);
731 body = constexpr_fn_retval (body);
733 return body;
736 /* CTYPE is a type constructed from BODY. Return true if some
737 bases/fields are uninitialized, and complain if COMPLAIN. */
739 static bool
740 cx_check_missing_mem_inits (tree ctype, tree body, bool complain)
742 unsigned nelts = 0;
744 if (body)
746 if (TREE_CODE (body) != CONSTRUCTOR)
747 return false;
748 nelts = CONSTRUCTOR_NELTS (body);
750 tree field = TYPE_FIELDS (ctype);
752 if (TREE_CODE (ctype) == UNION_TYPE)
754 if (nelts == 0 && next_initializable_field (field))
756 if (complain)
757 error ("%<constexpr%> constructor for union %qT must "
758 "initialize exactly one non-static data member", ctype);
759 return true;
761 return false;
764 /* Iterate over the CONSTRUCTOR, checking any missing fields don't
765 need an explicit initialization. */
766 bool bad = false;
767 for (unsigned i = 0; i <= nelts; ++i)
769 tree index = NULL_TREE;
770 if (i < nelts)
772 index = CONSTRUCTOR_ELT (body, i)->index;
773 /* Skip base and vtable inits. */
774 if (TREE_CODE (index) != FIELD_DECL
775 || DECL_ARTIFICIAL (index))
776 continue;
779 for (; field != index; field = DECL_CHAIN (field))
781 tree ftype;
782 if (TREE_CODE (field) != FIELD_DECL)
783 continue;
784 if (DECL_C_BIT_FIELD (field) && !DECL_NAME (field))
785 continue;
786 if (DECL_ARTIFICIAL (field))
787 continue;
788 if (ANON_AGGR_TYPE_P (TREE_TYPE (field)))
790 /* Recurse to check the anonummous aggregate member. */
791 bad |= cx_check_missing_mem_inits
792 (TREE_TYPE (field), NULL_TREE, complain);
793 if (bad && !complain)
794 return true;
795 continue;
797 ftype = strip_array_types (TREE_TYPE (field));
798 if (type_has_constexpr_default_constructor (ftype))
800 /* It's OK to skip a member with a trivial constexpr ctor.
801 A constexpr ctor that isn't trivial should have been
802 added in by now. */
803 gcc_checking_assert (!TYPE_HAS_COMPLEX_DFLT (ftype)
804 || errorcount != 0);
805 continue;
807 if (!complain)
808 return true;
809 error ("member %qD must be initialized by mem-initializer "
810 "in %<constexpr%> constructor", field);
811 inform (DECL_SOURCE_LOCATION (field), "declared here");
812 bad = true;
814 if (field == NULL_TREE)
815 break;
817 if (ANON_AGGR_TYPE_P (TREE_TYPE (index)))
819 /* Check the anonymous aggregate initializer is valid. */
820 bad |= cx_check_missing_mem_inits
821 (TREE_TYPE (index), CONSTRUCTOR_ELT (body, i)->value, complain);
822 if (bad && !complain)
823 return true;
825 field = DECL_CHAIN (field);
828 return bad;
831 /* We are processing the definition of the constexpr function FUN.
832 Check that its BODY fulfills the propriate requirements and
833 enter it in the constexpr function definition table.
834 For constructor BODY is actually the TREE_LIST of the
835 member-initializer list. */
837 tree
838 register_constexpr_fundef (tree fun, tree body)
840 constexpr_fundef entry;
841 constexpr_fundef **slot;
843 if (!is_valid_constexpr_fn (fun, !DECL_GENERATED_P (fun)))
844 return NULL;
846 tree massaged = massage_constexpr_body (fun, body);
847 if (massaged == NULL_TREE || massaged == error_mark_node)
849 if (!DECL_CONSTRUCTOR_P (fun))
850 error ("body of %<constexpr%> function %qD not a return-statement",
851 fun);
852 return NULL;
855 if (!potential_rvalue_constant_expression (massaged))
857 if (!DECL_GENERATED_P (fun))
858 require_potential_rvalue_constant_expression (massaged);
859 return NULL;
862 if (DECL_CONSTRUCTOR_P (fun)
863 && cx_check_missing_mem_inits (DECL_CONTEXT (fun),
864 massaged, !DECL_GENERATED_P (fun)))
865 return NULL;
867 /* Create the constexpr function table if necessary. */
868 if (constexpr_fundef_table == NULL)
869 constexpr_fundef_table
870 = hash_table<constexpr_fundef_hasher>::create_ggc (101);
872 entry.decl = fun;
873 entry.body = body;
874 slot = constexpr_fundef_table->find_slot (&entry, INSERT);
876 gcc_assert (*slot == NULL);
877 *slot = ggc_alloc<constexpr_fundef> ();
878 **slot = entry;
880 return fun;
883 /* FUN is a non-constexpr function called in a context that requires a
884 constant expression. If it comes from a constexpr template, explain why
885 the instantiation isn't constexpr. */
887 void
888 explain_invalid_constexpr_fn (tree fun)
890 static hash_set<tree> *diagnosed;
891 tree body;
892 location_t save_loc;
893 /* Only diagnose defaulted functions, lambdas, or instantiations. */
894 if (!DECL_DEFAULTED_FN (fun)
895 && !LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun))
896 && !is_instantiation_of_constexpr (fun))
897 return;
898 if (diagnosed == NULL)
899 diagnosed = new hash_set<tree>;
900 if (diagnosed->add (fun))
901 /* Already explained. */
902 return;
904 save_loc = input_location;
905 if (!lambda_static_thunk_p (fun))
907 /* Diagnostics should completely ignore the static thunk, so leave
908 input_location set to our caller's location. */
909 input_location = DECL_SOURCE_LOCATION (fun);
910 inform (input_location,
911 "%qD is not usable as a %<constexpr%> function because:", fun);
913 /* First check the declaration. */
914 if (is_valid_constexpr_fn (fun, true))
916 /* Then if it's OK, the body. */
917 if (!DECL_DECLARED_CONSTEXPR_P (fun)
918 && !LAMBDA_TYPE_P (CP_DECL_CONTEXT (fun)))
919 explain_implicit_non_constexpr (fun);
920 else
922 body = massage_constexpr_body (fun, DECL_SAVED_TREE (fun));
923 require_potential_rvalue_constant_expression (body);
924 if (DECL_CONSTRUCTOR_P (fun))
925 cx_check_missing_mem_inits (DECL_CONTEXT (fun), body, true);
928 input_location = save_loc;
931 /* Objects of this type represent calls to constexpr functions
932 along with the bindings of parameters to their arguments, for
933 the purpose of compile time evaluation. */
935 struct GTY((for_user)) constexpr_call {
936 /* Description of the constexpr function definition. */
937 constexpr_fundef *fundef;
938 /* Parameter bindings environment. A TREE_LIST where each TREE_PURPOSE
939 is a parameter _DECL and the TREE_VALUE is the value of the parameter.
940 Note: This arrangement is made to accommodate the use of
941 iterative_hash_template_arg (see pt.c). If you change this
942 representation, also change the hash calculation in
943 cxx_eval_call_expression. */
944 tree bindings;
945 /* Result of the call.
946 NULL means the call is being evaluated.
947 error_mark_node means that the evaluation was erroneous;
948 otherwise, the actuall value of the call. */
949 tree result;
950 /* The hash of this call; we remember it here to avoid having to
951 recalculate it when expanding the hash table. */
952 hashval_t hash;
955 struct constexpr_call_hasher : ggc_ptr_hash<constexpr_call>
957 static hashval_t hash (constexpr_call *);
958 static bool equal (constexpr_call *, constexpr_call *);
961 enum constexpr_switch_state {
962 /* Used when processing a switch for the first time by cxx_eval_switch_expr
963 and default: label for that switch has not been seen yet. */
964 css_default_not_seen,
965 /* Used when processing a switch for the first time by cxx_eval_switch_expr
966 and default: label for that switch has been seen already. */
967 css_default_seen,
968 /* Used when processing a switch for the second time by
969 cxx_eval_switch_expr, where default: label should match. */
970 css_default_processing
973 /* The constexpr expansion context. CALL is the current function
974 expansion, CTOR is the current aggregate initializer, OBJECT is the
975 object being initialized by CTOR, either a VAR_DECL or a _REF. VALUES
976 is a map of values of variables initialized within the expression. */
978 struct constexpr_ctx {
979 /* The innermost call we're evaluating. */
980 constexpr_call *call;
981 /* Values for any temporaries or local variables within the
982 constant-expression. */
983 hash_map<tree,tree> *values;
984 /* SAVE_EXPRs that we've seen within the current LOOP_EXPR. NULL if we
985 aren't inside a loop. */
986 hash_set<tree> *save_exprs;
987 /* The CONSTRUCTOR we're currently building up for an aggregate
988 initializer. */
989 tree ctor;
990 /* The object we're building the CONSTRUCTOR for. */
991 tree object;
992 /* If inside SWITCH_EXPR. */
993 constexpr_switch_state *css_state;
994 /* Whether we should error on a non-constant expression or fail quietly. */
995 bool quiet;
996 /* Whether we are strictly conforming to constant expression rules or
997 trying harder to get a constant value. */
998 bool strict;
1001 /* A table of all constexpr calls that have been evaluated by the
1002 compiler in this translation unit. */
1004 static GTY (()) hash_table<constexpr_call_hasher> *constexpr_call_table;
1006 static tree cxx_eval_constant_expression (const constexpr_ctx *, tree,
1007 bool, bool *, bool *, tree * = NULL);
1009 /* Compute a hash value for a constexpr call representation. */
1011 inline hashval_t
1012 constexpr_call_hasher::hash (constexpr_call *info)
1014 return info->hash;
1017 /* Return true if the objects pointed to by P and Q represent calls
1018 to the same constexpr function with the same arguments.
1019 Otherwise, return false. */
1021 bool
1022 constexpr_call_hasher::equal (constexpr_call *lhs, constexpr_call *rhs)
1024 tree lhs_bindings;
1025 tree rhs_bindings;
1026 if (lhs == rhs)
1027 return 1;
1028 if (!constexpr_fundef_hasher::equal (lhs->fundef, rhs->fundef))
1029 return 0;
1030 lhs_bindings = lhs->bindings;
1031 rhs_bindings = rhs->bindings;
1032 while (lhs_bindings != NULL && rhs_bindings != NULL)
1034 tree lhs_arg = TREE_VALUE (lhs_bindings);
1035 tree rhs_arg = TREE_VALUE (rhs_bindings);
1036 gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg));
1037 if (!cp_tree_equal (lhs_arg, rhs_arg))
1038 return 0;
1039 lhs_bindings = TREE_CHAIN (lhs_bindings);
1040 rhs_bindings = TREE_CHAIN (rhs_bindings);
1042 return lhs_bindings == rhs_bindings;
1045 /* Initialize the constexpr call table, if needed. */
1047 static void
1048 maybe_initialize_constexpr_call_table (void)
1050 if (constexpr_call_table == NULL)
1051 constexpr_call_table = hash_table<constexpr_call_hasher>::create_ggc (101);
1054 /* During constexpr CALL_EXPR evaluation, to avoid issues with sharing when
1055 a function happens to get called recursively, we unshare the callee
1056 function's body and evaluate this unshared copy instead of evaluating the
1057 original body.
1059 FUNDEF_COPIES_TABLE is a per-function freelist of these unshared function
1060 copies. The underlying data structure of FUNDEF_COPIES_TABLE is a hash_map
1061 that's keyed off of the original FUNCTION_DECL and whose value is a
1062 TREE_LIST of this function's unused copies awaiting reuse.
1064 This is not GC-deletable to avoid GC affecting UID generation. */
1066 static GTY(()) hash_map<tree, tree> *fundef_copies_table;
1068 /* Initialize FUNDEF_COPIES_TABLE if it's not initialized. */
1070 static void
1071 maybe_initialize_fundef_copies_table ()
1073 if (fundef_copies_table == NULL)
1074 fundef_copies_table = hash_map<tree,tree>::create_ggc (101);
1077 /* Reuse a copy or create a new unshared copy of the function FUN.
1078 Return this copy. We use a TREE_LIST whose PURPOSE is body, VALUE
1079 is parms, TYPE is result. */
1081 static tree
1082 get_fundef_copy (tree fun)
1084 maybe_initialize_fundef_copies_table ();
1086 tree copy;
1087 bool existed;
1088 tree *slot = &fundef_copies_table->get_or_insert (fun, &existed);
1090 if (!existed)
1092 /* There is no cached function available, or in use. We can use
1093 the function directly. That the slot is now created records
1094 that this function is now in use. */
1095 copy = build_tree_list (DECL_SAVED_TREE (fun), DECL_ARGUMENTS (fun));
1096 TREE_TYPE (copy) = DECL_RESULT (fun);
1098 else if (*slot == NULL_TREE)
1100 /* We've already used the function itself, so make a copy. */
1101 copy = build_tree_list (NULL, NULL);
1102 TREE_PURPOSE (copy) = copy_fn (fun, TREE_VALUE (copy), TREE_TYPE (copy));
1104 else
1106 /* We have a cached function available. */
1107 copy = *slot;
1108 *slot = TREE_CHAIN (copy);
1111 return copy;
1114 /* Save the copy COPY of function FUN for later reuse by
1115 get_fundef_copy(). By construction, there will always be an entry
1116 to find. */
1118 static void
1119 save_fundef_copy (tree fun, tree copy)
1121 tree *slot = fundef_copies_table->get (fun);
1122 TREE_CHAIN (copy) = *slot;
1123 *slot = copy;
1126 /* We have an expression tree T that represents a call, either CALL_EXPR
1127 or AGGR_INIT_EXPR. Return the Nth argument. */
1129 static inline tree
1130 get_nth_callarg (tree t, int n)
1132 switch (TREE_CODE (t))
1134 case CALL_EXPR:
1135 return CALL_EXPR_ARG (t, n);
1137 case AGGR_INIT_EXPR:
1138 return AGGR_INIT_EXPR_ARG (t, n);
1140 default:
1141 gcc_unreachable ();
1142 return NULL;
1146 /* Attempt to evaluate T which represents a call to a builtin function.
1147 We assume here that all builtin functions evaluate to scalar types
1148 represented by _CST nodes. */
1150 static tree
1151 cxx_eval_builtin_function_call (const constexpr_ctx *ctx, tree t, tree fun,
1152 bool lval,
1153 bool *non_constant_p, bool *overflow_p)
1155 const int nargs = call_expr_nargs (t);
1156 tree *args = (tree *) alloca (nargs * sizeof (tree));
1157 tree new_call;
1158 int i;
1160 /* Don't fold __builtin_constant_p within a constexpr function. */
1161 bool bi_const_p = (DECL_FUNCTION_CODE (fun) == BUILT_IN_CONSTANT_P);
1163 if (bi_const_p
1164 && current_function_decl
1165 && DECL_DECLARED_CONSTEXPR_P (current_function_decl))
1167 *non_constant_p = true;
1168 return t;
1171 /* Be permissive for arguments to built-ins; __builtin_constant_p should
1172 return constant false for a non-constant argument. */
1173 constexpr_ctx new_ctx = *ctx;
1174 new_ctx.quiet = true;
1175 bool dummy1 = false, dummy2 = false;
1176 for (i = 0; i < nargs; ++i)
1178 args[i] = cxx_eval_constant_expression (&new_ctx, CALL_EXPR_ARG (t, i),
1179 false, &dummy1, &dummy2);
1180 if (bi_const_p)
1181 /* For __built_in_constant_p, fold all expressions with constant values
1182 even if they aren't C++ constant-expressions. */
1183 args[i] = cp_fully_fold (args[i]);
1186 bool save_ffbcp = force_folding_builtin_constant_p;
1187 force_folding_builtin_constant_p = true;
1188 new_call = fold_builtin_call_array (EXPR_LOCATION (t), TREE_TYPE (t),
1189 CALL_EXPR_FN (t), nargs, args);
1190 force_folding_builtin_constant_p = save_ffbcp;
1191 if (new_call == NULL)
1193 if (!*non_constant_p && !ctx->quiet)
1195 /* Do not allow__builtin_unreachable in constexpr function.
1196 The __builtin_unreachable call with BUILTINS_LOCATION
1197 comes from cp_maybe_instrument_return. */
1198 if (DECL_FUNCTION_CODE (fun) == BUILT_IN_UNREACHABLE
1199 && EXPR_LOCATION (t) == BUILTINS_LOCATION)
1200 error ("%<constexpr%> call flows off the end of the function");
1201 else
1203 new_call = build_call_array_loc (EXPR_LOCATION (t), TREE_TYPE (t),
1204 CALL_EXPR_FN (t), nargs, args);
1205 error ("%q+E is not a constant expression", new_call);
1208 *non_constant_p = true;
1209 return t;
1212 if (!is_constant_expression (new_call))
1214 if (!*non_constant_p && !ctx->quiet)
1215 error ("%q+E is not a constant expression", new_call);
1216 *non_constant_p = true;
1217 return t;
1220 return cxx_eval_constant_expression (&new_ctx, new_call, lval,
1221 non_constant_p, overflow_p);
1224 /* TEMP is the constant value of a temporary object of type TYPE. Adjust
1225 the type of the value to match. */
1227 static tree
1228 adjust_temp_type (tree type, tree temp)
1230 if (TREE_TYPE (temp) == type)
1231 return temp;
1232 /* Avoid wrapping an aggregate value in a NOP_EXPR. */
1233 if (TREE_CODE (temp) == CONSTRUCTOR)
1234 return build_constructor (type, CONSTRUCTOR_ELTS (temp));
1235 gcc_assert (scalarish_type_p (type));
1236 return cp_fold_convert (type, temp);
1239 /* Callback for walk_tree used by unshare_constructor. */
1241 static tree
1242 find_constructor (tree *tp, int *walk_subtrees, void *)
1244 if (TYPE_P (*tp))
1245 *walk_subtrees = 0;
1246 if (TREE_CODE (*tp) == CONSTRUCTOR)
1247 return *tp;
1248 return NULL_TREE;
1251 /* If T is a CONSTRUCTOR or an expression that has a CONSTRUCTOR node as a
1252 subexpression, return an unshared copy of T. Otherwise return T. */
1254 static tree
1255 unshare_constructor (tree t)
1257 tree ctor = walk_tree (&t, find_constructor, NULL, NULL);
1258 if (ctor != NULL_TREE)
1259 return unshare_expr (t);
1260 return t;
1263 /* Subroutine of cxx_eval_call_expression.
1264 We are processing a call expression (either CALL_EXPR or
1265 AGGR_INIT_EXPR) in the context of CTX. Evaluate
1266 all arguments and bind their values to correspondings
1267 parameters, making up the NEW_CALL context. */
1269 static void
1270 cxx_bind_parameters_in_call (const constexpr_ctx *ctx, tree t,
1271 constexpr_call *new_call,
1272 bool *non_constant_p, bool *overflow_p,
1273 bool *non_constant_args)
1275 const int nargs = call_expr_nargs (t);
1276 tree fun = new_call->fundef->decl;
1277 tree parms = DECL_ARGUMENTS (fun);
1278 int i;
1279 tree *p = &new_call->bindings;
1280 for (i = 0; i < nargs; ++i)
1282 tree x, arg;
1283 tree type = parms ? TREE_TYPE (parms) : void_type_node;
1284 x = get_nth_callarg (t, i);
1285 /* For member function, the first argument is a pointer to the implied
1286 object. For a constructor, it might still be a dummy object, in
1287 which case we get the real argument from ctx. */
1288 if (i == 0 && DECL_CONSTRUCTOR_P (fun)
1289 && is_dummy_object (x))
1291 x = ctx->object;
1292 x = build_address (x);
1294 arg = cxx_eval_constant_expression (ctx, x, /*lval=*/false,
1295 non_constant_p, overflow_p);
1296 /* Don't VERIFY_CONSTANT here. */
1297 if (*non_constant_p && ctx->quiet)
1298 return;
1299 /* Just discard ellipsis args after checking their constantitude. */
1300 if (!parms)
1301 continue;
1303 if (!*non_constant_p)
1305 /* Make sure the binding has the same type as the parm. But
1306 only for constant args. */
1307 if (TREE_CODE (type) != REFERENCE_TYPE)
1308 arg = adjust_temp_type (type, arg);
1309 if (!TREE_CONSTANT (arg))
1310 *non_constant_args = true;
1311 *p = build_tree_list (parms, arg);
1312 p = &TREE_CHAIN (*p);
1314 parms = TREE_CHAIN (parms);
1318 /* Variables and functions to manage constexpr call expansion context.
1319 These do not need to be marked for PCH or GC. */
1321 /* FIXME remember and print actual constant arguments. */
1322 static vec<tree> call_stack;
1323 static int call_stack_tick;
1324 static int last_cx_error_tick;
1326 static bool
1327 push_cx_call_context (tree call)
1329 ++call_stack_tick;
1330 if (!EXPR_HAS_LOCATION (call))
1331 SET_EXPR_LOCATION (call, input_location);
1332 call_stack.safe_push (call);
1333 if (call_stack.length () > (unsigned) max_constexpr_depth)
1334 return false;
1335 return true;
1338 static void
1339 pop_cx_call_context (void)
1341 ++call_stack_tick;
1342 call_stack.pop ();
1345 vec<tree>
1346 cx_error_context (void)
1348 vec<tree> r = vNULL;
1349 if (call_stack_tick != last_cx_error_tick
1350 && !call_stack.is_empty ())
1351 r = call_stack;
1352 last_cx_error_tick = call_stack_tick;
1353 return r;
1356 /* Evaluate a call T to a GCC internal function when possible and return
1357 the evaluated result or, under the control of CTX, give an error, set
1358 NON_CONSTANT_P, and return the unevaluated call T otherwise. */
1360 static tree
1361 cxx_eval_internal_function (const constexpr_ctx *ctx, tree t,
1362 bool lval,
1363 bool *non_constant_p, bool *overflow_p)
1365 enum tree_code opcode = ERROR_MARK;
1367 switch (CALL_EXPR_IFN (t))
1369 case IFN_UBSAN_NULL:
1370 case IFN_UBSAN_BOUNDS:
1371 case IFN_UBSAN_VPTR:
1372 case IFN_FALLTHROUGH:
1373 return void_node;
1375 case IFN_ADD_OVERFLOW:
1376 opcode = PLUS_EXPR;
1377 break;
1378 case IFN_SUB_OVERFLOW:
1379 opcode = MINUS_EXPR;
1380 break;
1381 case IFN_MUL_OVERFLOW:
1382 opcode = MULT_EXPR;
1383 break;
1385 case IFN_LAUNDER:
1386 return cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 0),
1387 false, non_constant_p, overflow_p);
1389 default:
1390 if (!ctx->quiet)
1391 error_at (EXPR_LOC_OR_LOC (t, input_location),
1392 "call to internal function %qE", t);
1393 *non_constant_p = true;
1394 return t;
1397 /* Evaluate constant arguments using OPCODE and return a complex
1398 number containing the result and the overflow bit. */
1399 tree arg0 = cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 0), lval,
1400 non_constant_p, overflow_p);
1401 tree arg1 = cxx_eval_constant_expression (ctx, CALL_EXPR_ARG (t, 1), lval,
1402 non_constant_p, overflow_p);
1404 if (TREE_CODE (arg0) == INTEGER_CST && TREE_CODE (arg1) == INTEGER_CST)
1406 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
1407 tree type = TREE_TYPE (TREE_TYPE (t));
1408 tree result = fold_binary_loc (loc, opcode, type,
1409 fold_convert_loc (loc, type, arg0),
1410 fold_convert_loc (loc, type, arg1));
1411 tree ovf
1412 = build_int_cst (type, arith_overflowed_p (opcode, type, arg0, arg1));
1413 /* Reset TREE_OVERFLOW to avoid warnings for the overflow. */
1414 if (TREE_OVERFLOW (result))
1415 TREE_OVERFLOW (result) = 0;
1417 return build_complex (TREE_TYPE (t), result, ovf);
1420 *non_constant_p = true;
1421 return t;
1424 /* Clean CONSTRUCTOR_NO_IMPLICIT_ZERO from CTOR and its sub-aggregates. */
1426 static void
1427 clear_no_implicit_zero (tree ctor)
1429 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor))
1431 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor) = false;
1432 tree elt; unsigned HOST_WIDE_INT idx;
1433 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), idx, elt)
1434 if (TREE_CODE (elt) == CONSTRUCTOR)
1435 clear_no_implicit_zero (elt);
1439 /* Subroutine of cxx_eval_constant_expression.
1440 Evaluate the call expression tree T in the context of OLD_CALL expression
1441 evaluation. */
1443 static tree
1444 cxx_eval_call_expression (const constexpr_ctx *ctx, tree t,
1445 bool lval,
1446 bool *non_constant_p, bool *overflow_p)
1448 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
1449 tree fun = get_function_named_in_call (t);
1450 constexpr_call new_call = { NULL, NULL, NULL, 0 };
1451 bool depth_ok;
1453 if (fun == NULL_TREE)
1454 return cxx_eval_internal_function (ctx, t, lval,
1455 non_constant_p, overflow_p);
1457 if (TREE_CODE (fun) != FUNCTION_DECL)
1459 /* Might be a constexpr function pointer. */
1460 fun = cxx_eval_constant_expression (ctx, fun,
1461 /*lval*/false, non_constant_p,
1462 overflow_p);
1463 STRIP_NOPS (fun);
1464 if (TREE_CODE (fun) == ADDR_EXPR)
1465 fun = TREE_OPERAND (fun, 0);
1467 if (TREE_CODE (fun) != FUNCTION_DECL)
1469 if (!ctx->quiet && !*non_constant_p)
1470 error_at (loc, "expression %qE does not designate a %<constexpr%> "
1471 "function", fun);
1472 *non_constant_p = true;
1473 return t;
1475 if (DECL_CLONED_FUNCTION_P (fun))
1476 fun = DECL_CLONED_FUNCTION (fun);
1478 if (is_ubsan_builtin_p (fun))
1479 return void_node;
1481 if (is_builtin_fn (fun))
1482 return cxx_eval_builtin_function_call (ctx, t, fun,
1483 lval, non_constant_p, overflow_p);
1484 if (!DECL_DECLARED_CONSTEXPR_P (fun))
1486 if (!ctx->quiet)
1488 if (!lambda_static_thunk_p (fun))
1489 error_at (loc, "call to non-%<constexpr%> function %qD", fun);
1490 explain_invalid_constexpr_fn (fun);
1492 *non_constant_p = true;
1493 return t;
1496 constexpr_ctx new_ctx = *ctx;
1497 if (DECL_CONSTRUCTOR_P (fun) && !ctx->object
1498 && TREE_CODE (t) == AGGR_INIT_EXPR)
1500 /* We want to have an initialization target for an AGGR_INIT_EXPR.
1501 If we don't already have one in CTX, use the AGGR_INIT_EXPR_SLOT. */
1502 new_ctx.object = AGGR_INIT_EXPR_SLOT (t);
1503 tree ctor = new_ctx.ctor = build_constructor (DECL_CONTEXT (fun), NULL);
1504 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctor) = true;
1505 ctx->values->put (new_ctx.object, ctor);
1506 ctx = &new_ctx;
1509 /* Shortcut trivial constructor/op=. */
1510 if (trivial_fn_p (fun))
1512 tree init = NULL_TREE;
1513 if (call_expr_nargs (t) == 2)
1514 init = convert_from_reference (get_nth_callarg (t, 1));
1515 else if (TREE_CODE (t) == AGGR_INIT_EXPR
1516 && AGGR_INIT_ZERO_FIRST (t))
1517 init = build_zero_init (DECL_CONTEXT (fun), NULL_TREE, false);
1518 if (init)
1520 tree op = get_nth_callarg (t, 0);
1521 if (is_dummy_object (op))
1522 op = ctx->object;
1523 else
1524 op = build1 (INDIRECT_REF, TREE_TYPE (TREE_TYPE (op)), op);
1525 tree set = build2 (MODIFY_EXPR, TREE_TYPE (op), op, init);
1526 new_ctx.call = &new_call;
1527 return cxx_eval_constant_expression (&new_ctx, set, lval,
1528 non_constant_p, overflow_p);
1532 /* We can't defer instantiating the function any longer. */
1533 if (!DECL_INITIAL (fun)
1534 && DECL_TEMPLOID_INSTANTIATION (fun))
1536 location_t save_loc = input_location;
1537 input_location = loc;
1538 ++function_depth;
1539 instantiate_decl (fun, /*defer_ok*/false, /*expl_inst*/false);
1540 --function_depth;
1541 input_location = save_loc;
1544 /* If in direct recursive call, optimize definition search. */
1545 if (ctx && ctx->call && ctx->call->fundef && ctx->call->fundef->decl == fun)
1546 new_call.fundef = ctx->call->fundef;
1547 else
1549 new_call.fundef = retrieve_constexpr_fundef (fun);
1550 if (new_call.fundef == NULL || new_call.fundef->body == NULL
1551 || fun == current_function_decl)
1553 if (!ctx->quiet)
1555 /* We need to check for current_function_decl here in case we're
1556 being called during cp_fold_function, because at that point
1557 DECL_INITIAL is set properly and we have a fundef but we
1558 haven't lowered invisirefs yet (c++/70344). */
1559 if (DECL_INITIAL (fun) == error_mark_node
1560 || fun == current_function_decl)
1561 error_at (loc, "%qD called in a constant expression before its "
1562 "definition is complete", fun);
1563 else if (DECL_INITIAL (fun))
1565 /* The definition of fun was somehow unsuitable. But pretend
1566 that lambda static thunks don't exist. */
1567 if (!lambda_static_thunk_p (fun))
1568 error_at (loc, "%qD called in a constant expression", fun);
1569 explain_invalid_constexpr_fn (fun);
1571 else
1572 error_at (loc, "%qD used before its definition", fun);
1574 *non_constant_p = true;
1575 return t;
1579 bool non_constant_args = false;
1580 cxx_bind_parameters_in_call (ctx, t, &new_call,
1581 non_constant_p, overflow_p, &non_constant_args);
1582 if (*non_constant_p)
1583 return t;
1585 depth_ok = push_cx_call_context (t);
1587 tree result = NULL_TREE;
1589 constexpr_call *entry = NULL;
1590 if (depth_ok && !non_constant_args && ctx->strict)
1592 new_call.hash = iterative_hash_template_arg
1593 (new_call.bindings, constexpr_fundef_hasher::hash (new_call.fundef));
1595 /* If we have seen this call before, we are done. */
1596 maybe_initialize_constexpr_call_table ();
1597 constexpr_call **slot
1598 = constexpr_call_table->find_slot (&new_call, INSERT);
1599 entry = *slot;
1600 if (entry == NULL)
1602 /* We need to keep a pointer to the entry, not just the slot, as the
1603 slot can move in the call to cxx_eval_builtin_function_call. */
1604 *slot = entry = ggc_alloc<constexpr_call> ();
1605 *entry = new_call;
1607 /* Calls that are in progress have their result set to NULL,
1608 so that we can detect circular dependencies. */
1609 else if (entry->result == NULL)
1611 if (!ctx->quiet)
1612 error ("call has circular dependency");
1613 *non_constant_p = true;
1614 entry->result = result = error_mark_node;
1616 else
1617 result = entry->result;
1620 if (!depth_ok)
1622 if (!ctx->quiet)
1623 error ("%<constexpr%> evaluation depth exceeds maximum of %d (use "
1624 "-fconstexpr-depth= to increase the maximum)",
1625 max_constexpr_depth);
1626 *non_constant_p = true;
1627 result = error_mark_node;
1629 else
1631 if (result && result != error_mark_node)
1632 /* OK */;
1633 else if (!DECL_SAVED_TREE (fun))
1635 /* When at_eof >= 2, cgraph has started throwing away
1636 DECL_SAVED_TREE, so fail quietly. FIXME we get here because of
1637 late code generation for VEC_INIT_EXPR, which needs to be
1638 completely reconsidered. */
1639 gcc_assert (at_eof >= 2 && ctx->quiet);
1640 *non_constant_p = true;
1642 else
1644 tree body, parms, res;
1646 /* Reuse or create a new unshared copy of this function's body. */
1647 tree copy = get_fundef_copy (fun);
1648 body = TREE_PURPOSE (copy);
1649 parms = TREE_VALUE (copy);
1650 res = TREE_TYPE (copy);
1652 /* Associate the bindings with the remapped parms. */
1653 tree bound = new_call.bindings;
1654 tree remapped = parms;
1655 while (bound)
1657 tree oparm = TREE_PURPOSE (bound);
1658 tree arg = TREE_VALUE (bound);
1659 gcc_assert (DECL_NAME (remapped) == DECL_NAME (oparm));
1660 /* Don't share a CONSTRUCTOR that might be changed. */
1661 arg = unshare_constructor (arg);
1662 ctx->values->put (remapped, arg);
1663 bound = TREE_CHAIN (bound);
1664 remapped = DECL_CHAIN (remapped);
1666 /* Add the RESULT_DECL to the values map, too. */
1667 tree slot = NULL_TREE;
1668 if (DECL_BY_REFERENCE (res))
1670 slot = AGGR_INIT_EXPR_SLOT (t);
1671 tree addr = build_address (slot);
1672 addr = build_nop (TREE_TYPE (res), addr);
1673 ctx->values->put (res, addr);
1674 ctx->values->put (slot, NULL_TREE);
1676 else
1677 ctx->values->put (res, NULL_TREE);
1679 /* Track the callee's evaluated SAVE_EXPRs so that we can forget
1680 their values after the call. */
1681 constexpr_ctx ctx_with_save_exprs = *ctx;
1682 hash_set<tree> save_exprs;
1683 ctx_with_save_exprs.save_exprs = &save_exprs;
1684 ctx_with_save_exprs.call = &new_call;
1686 tree jump_target = NULL_TREE;
1687 cxx_eval_constant_expression (&ctx_with_save_exprs, body,
1688 lval, non_constant_p, overflow_p,
1689 &jump_target);
1691 if (DECL_CONSTRUCTOR_P (fun))
1692 /* This can be null for a subobject constructor call, in
1693 which case what we care about is the initialization
1694 side-effects rather than the value. We could get at the
1695 value by evaluating *this, but we don't bother; there's
1696 no need to put such a call in the hash table. */
1697 result = lval ? ctx->object : ctx->ctor;
1698 else if (VOID_TYPE_P (TREE_TYPE (res)))
1699 result = void_node;
1700 else
1702 result = *ctx->values->get (slot ? slot : res);
1703 if (result == NULL_TREE && !*non_constant_p)
1705 if (!ctx->quiet)
1706 error ("%<constexpr%> call flows off the end "
1707 "of the function");
1708 *non_constant_p = true;
1712 /* Forget the saved values of the callee's SAVE_EXPRs. */
1713 for (hash_set<tree>::iterator iter = save_exprs.begin();
1714 iter != save_exprs.end(); ++iter)
1715 ctx_with_save_exprs.values->remove (*iter);
1717 /* Remove the parms/result from the values map. Is it worth
1718 bothering to do this when the map itself is only live for
1719 one constexpr evaluation? If so, maybe also clear out
1720 other vars from call, maybe in BIND_EXPR handling? */
1721 ctx->values->remove (res);
1722 if (slot)
1723 ctx->values->remove (slot);
1724 for (tree parm = parms; parm; parm = TREE_CHAIN (parm))
1725 ctx->values->remove (parm);
1727 /* Make the unshared function copy we used available for re-use. */
1728 save_fundef_copy (fun, copy);
1731 if (result == error_mark_node)
1732 *non_constant_p = true;
1733 if (*non_constant_p || *overflow_p)
1734 result = error_mark_node;
1735 else if (!result)
1736 result = void_node;
1737 if (entry)
1738 entry->result = result;
1741 /* The result of a constexpr function must be completely initialized. */
1742 if (TREE_CODE (result) == CONSTRUCTOR)
1743 clear_no_implicit_zero (result);
1745 pop_cx_call_context ();
1746 return unshare_constructor (result);
1749 /* FIXME speed this up, it's taking 16% of compile time on sieve testcase. */
1751 bool
1752 reduced_constant_expression_p (tree t)
1754 switch (TREE_CODE (t))
1756 case PTRMEM_CST:
1757 /* Even if we can't lower this yet, it's constant. */
1758 return true;
1760 case CONSTRUCTOR:
1761 /* And we need to handle PTRMEM_CST wrapped in a CONSTRUCTOR. */
1762 tree idx, val, field; unsigned HOST_WIDE_INT i;
1763 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (t))
1764 field = next_initializable_field (TYPE_FIELDS (TREE_TYPE (t)));
1765 else
1766 field = NULL_TREE;
1767 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), i, idx, val)
1769 if (!val)
1770 /* We're in the middle of initializing this element. */
1771 return false;
1772 if (!reduced_constant_expression_p (val))
1773 return false;
1774 if (field)
1776 if (idx != field)
1777 return false;
1778 field = next_initializable_field (DECL_CHAIN (field));
1781 if (field)
1782 return false;
1783 else if (CONSTRUCTOR_NO_IMPLICIT_ZERO (t))
1784 /* All the fields are initialized. */
1785 CONSTRUCTOR_NO_IMPLICIT_ZERO (t) = false;
1786 return true;
1788 default:
1789 /* FIXME are we calling this too much? */
1790 return initializer_constant_valid_p (t, TREE_TYPE (t)) != NULL_TREE;
1794 /* Some expressions may have constant operands but are not constant
1795 themselves, such as 1/0. Call this function (or rather, the macro
1796 following it) to check for that condition.
1798 We only call this in places that require an arithmetic constant, not in
1799 places where we might have a non-constant expression that can be a
1800 component of a constant expression, such as the address of a constexpr
1801 variable that might be dereferenced later. */
1803 static bool
1804 verify_constant (tree t, bool allow_non_constant, bool *non_constant_p,
1805 bool *overflow_p)
1807 if (!*non_constant_p && !reduced_constant_expression_p (t))
1809 if (!allow_non_constant)
1810 error ("%q+E is not a constant expression", t);
1811 *non_constant_p = true;
1813 if (TREE_OVERFLOW_P (t))
1815 if (!allow_non_constant)
1817 permerror (input_location, "overflow in constant expression");
1818 /* If we're being permissive (and are in an enforcing
1819 context), ignore the overflow. */
1820 if (flag_permissive)
1821 return *non_constant_p;
1823 *overflow_p = true;
1825 return *non_constant_p;
1828 /* Check whether the shift operation with code CODE and type TYPE on LHS
1829 and RHS is undefined. If it is, give an error with an explanation,
1830 and return true; return false otherwise. */
1832 static bool
1833 cxx_eval_check_shift_p (location_t loc, const constexpr_ctx *ctx,
1834 enum tree_code code, tree type, tree lhs, tree rhs)
1836 if ((code != LSHIFT_EXPR && code != RSHIFT_EXPR)
1837 || TREE_CODE (lhs) != INTEGER_CST
1838 || TREE_CODE (rhs) != INTEGER_CST)
1839 return false;
1841 tree lhstype = TREE_TYPE (lhs);
1842 unsigned HOST_WIDE_INT uprec = TYPE_PRECISION (TREE_TYPE (lhs));
1844 /* [expr.shift] The behavior is undefined if the right operand
1845 is negative, or greater than or equal to the length in bits
1846 of the promoted left operand. */
1847 if (tree_int_cst_sgn (rhs) == -1)
1849 if (!ctx->quiet)
1850 permerror (loc, "right operand of shift expression %q+E is negative",
1851 build2_loc (loc, code, type, lhs, rhs));
1852 return (!flag_permissive || ctx->quiet);
1854 if (compare_tree_int (rhs, uprec) >= 0)
1856 if (!ctx->quiet)
1857 permerror (loc, "right operand of shift expression %q+E is >= than "
1858 "the precision of the left operand",
1859 build2_loc (loc, code, type, lhs, rhs));
1860 return (!flag_permissive || ctx->quiet);
1863 /* The value of E1 << E2 is E1 left-shifted E2 bit positions; [...]
1864 if E1 has a signed type and non-negative value, and E1x2^E2 is
1865 representable in the corresponding unsigned type of the result type,
1866 then that value, converted to the result type, is the resulting value;
1867 otherwise, the behavior is undefined. */
1868 if (code == LSHIFT_EXPR && !TYPE_UNSIGNED (lhstype)
1869 && (cxx_dialect >= cxx11))
1871 if (tree_int_cst_sgn (lhs) == -1)
1873 if (!ctx->quiet)
1874 permerror (loc,
1875 "left operand of shift expression %q+E is negative",
1876 build2_loc (loc, code, type, lhs, rhs));
1877 return (!flag_permissive || ctx->quiet);
1879 /* For signed x << y the following:
1880 (unsigned) x >> ((prec (lhs) - 1) - y)
1881 if > 1, is undefined. The right-hand side of this formula
1882 is the highest bit of the LHS that can be set (starting from 0),
1883 so that the shift doesn't overflow. We then right-shift the LHS
1884 to see whether any other bit is set making the original shift
1885 undefined -- the result is not representable in the corresponding
1886 unsigned type. */
1887 tree t = build_int_cst (unsigned_type_node, uprec - 1);
1888 t = fold_build2 (MINUS_EXPR, unsigned_type_node, t, rhs);
1889 tree ulhs = fold_convert (unsigned_type_for (lhstype), lhs);
1890 t = fold_build2 (RSHIFT_EXPR, TREE_TYPE (ulhs), ulhs, t);
1891 if (tree_int_cst_lt (integer_one_node, t))
1893 if (!ctx->quiet)
1894 permerror (loc, "shift expression %q+E overflows",
1895 build2_loc (loc, code, type, lhs, rhs));
1896 return (!flag_permissive || ctx->quiet);
1899 return false;
1902 /* Subroutine of cxx_eval_constant_expression.
1903 Attempt to reduce the unary expression tree T to a compile time value.
1904 If successful, return the value. Otherwise issue a diagnostic
1905 and return error_mark_node. */
1907 static tree
1908 cxx_eval_unary_expression (const constexpr_ctx *ctx, tree t,
1909 bool /*lval*/,
1910 bool *non_constant_p, bool *overflow_p)
1912 tree r;
1913 tree orig_arg = TREE_OPERAND (t, 0);
1914 tree arg = cxx_eval_constant_expression (ctx, orig_arg, /*lval*/false,
1915 non_constant_p, overflow_p);
1916 VERIFY_CONSTANT (arg);
1917 location_t loc = EXPR_LOCATION (t);
1918 enum tree_code code = TREE_CODE (t);
1919 tree type = TREE_TYPE (t);
1920 r = fold_unary_loc (loc, code, type, arg);
1921 if (r == NULL_TREE)
1923 if (arg == orig_arg)
1924 r = t;
1925 else
1926 r = build1_loc (loc, code, type, arg);
1928 VERIFY_CONSTANT (r);
1929 return r;
1932 /* Helper function for cxx_eval_binary_expression. Try to optimize
1933 original POINTER_PLUS_EXPR T, LHS p+ RHS, return NULL_TREE if the
1934 generic folding should be used. */
1936 static tree
1937 cxx_fold_pointer_plus_expression (const constexpr_ctx *ctx, tree t,
1938 tree lhs, tree rhs, bool *non_constant_p,
1939 bool *overflow_p)
1941 STRIP_NOPS (lhs);
1942 if (TREE_CODE (lhs) != ADDR_EXPR)
1943 return NULL_TREE;
1945 lhs = TREE_OPERAND (lhs, 0);
1947 /* &A[i] p+ j => &A[i + j] */
1948 if (TREE_CODE (lhs) == ARRAY_REF
1949 && TREE_CODE (TREE_OPERAND (lhs, 1)) == INTEGER_CST
1950 && TREE_CODE (rhs) == INTEGER_CST
1951 && TYPE_SIZE_UNIT (TREE_TYPE (lhs))
1952 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (lhs))) == INTEGER_CST)
1954 tree orig_type = TREE_TYPE (t);
1955 location_t loc = EXPR_LOCATION (t);
1956 tree type = TREE_TYPE (lhs);
1958 t = fold_convert_loc (loc, ssizetype, TREE_OPERAND (lhs, 1));
1959 tree nelts = array_type_nelts_top (TREE_TYPE (TREE_OPERAND (lhs, 0)));
1960 nelts = cxx_eval_constant_expression (ctx, nelts, false, non_constant_p,
1961 overflow_p);
1962 if (*non_constant_p)
1963 return NULL_TREE;
1964 /* Don't fold an out-of-bound access. */
1965 if (!tree_int_cst_le (t, nelts))
1966 return NULL_TREE;
1967 rhs = cp_fold_convert (ssizetype, rhs);
1968 /* Don't fold if rhs can't be divided exactly by TYPE_SIZE_UNIT.
1969 constexpr int A[1]; ... (char *)&A[0] + 1 */
1970 if (!integer_zerop (fold_build2_loc (loc, TRUNC_MOD_EXPR, sizetype,
1971 rhs, TYPE_SIZE_UNIT (type))))
1972 return NULL_TREE;
1973 /* Make sure to treat the second operand of POINTER_PLUS_EXPR
1974 as signed. */
1975 rhs = fold_build2_loc (loc, EXACT_DIV_EXPR, ssizetype, rhs,
1976 TYPE_SIZE_UNIT (type));
1977 t = size_binop_loc (loc, PLUS_EXPR, rhs, t);
1978 t = build4_loc (loc, ARRAY_REF, type, TREE_OPERAND (lhs, 0),
1979 t, NULL_TREE, NULL_TREE);
1980 t = cp_build_addr_expr (t, tf_warning_or_error);
1981 t = cp_fold_convert (orig_type, t);
1982 return cxx_eval_constant_expression (ctx, t, /*lval*/false,
1983 non_constant_p, overflow_p);
1986 return NULL_TREE;
1989 /* Subroutine of cxx_eval_constant_expression.
1990 Like cxx_eval_unary_expression, except for binary expressions. */
1992 static tree
1993 cxx_eval_binary_expression (const constexpr_ctx *ctx, tree t,
1994 bool /*lval*/,
1995 bool *non_constant_p, bool *overflow_p)
1997 tree r = NULL_TREE;
1998 tree orig_lhs = TREE_OPERAND (t, 0);
1999 tree orig_rhs = TREE_OPERAND (t, 1);
2000 tree lhs, rhs;
2001 lhs = cxx_eval_constant_expression (ctx, orig_lhs, /*lval*/false,
2002 non_constant_p, overflow_p);
2003 /* Don't VERIFY_CONSTANT here, it's unnecessary and will break pointer
2004 subtraction. */
2005 if (*non_constant_p)
2006 return t;
2007 rhs = cxx_eval_constant_expression (ctx, orig_rhs, /*lval*/false,
2008 non_constant_p, overflow_p);
2009 if (*non_constant_p)
2010 return t;
2012 location_t loc = EXPR_LOCATION (t);
2013 enum tree_code code = TREE_CODE (t);
2014 tree type = TREE_TYPE (t);
2016 if (code == EQ_EXPR || code == NE_EXPR)
2018 bool is_code_eq = (code == EQ_EXPR);
2020 if (TREE_CODE (lhs) == PTRMEM_CST
2021 && TREE_CODE (rhs) == PTRMEM_CST)
2022 r = constant_boolean_node (cp_tree_equal (lhs, rhs) == is_code_eq,
2023 type);
2024 else if ((TREE_CODE (lhs) == PTRMEM_CST
2025 || TREE_CODE (rhs) == PTRMEM_CST)
2026 && (null_member_pointer_value_p (lhs)
2027 || null_member_pointer_value_p (rhs)))
2028 r = constant_boolean_node (!is_code_eq, type);
2029 else if (TREE_CODE (lhs) == PTRMEM_CST)
2030 lhs = cplus_expand_constant (lhs);
2031 else if (TREE_CODE (rhs) == PTRMEM_CST)
2032 rhs = cplus_expand_constant (rhs);
2034 if (code == POINTER_PLUS_EXPR && !*non_constant_p
2035 && integer_zerop (lhs) && !integer_zerop (rhs))
2037 if (!ctx->quiet)
2038 error ("arithmetic involving a null pointer in %qE", lhs);
2039 return t;
2041 else if (code == POINTER_PLUS_EXPR)
2042 r = cxx_fold_pointer_plus_expression (ctx, t, lhs, rhs, non_constant_p,
2043 overflow_p);
2045 if (r == NULL_TREE)
2046 r = fold_binary_loc (loc, code, type, lhs, rhs);
2048 if (r == NULL_TREE)
2050 if (lhs == orig_lhs && rhs == orig_rhs)
2051 r = t;
2052 else
2053 r = build2_loc (loc, code, type, lhs, rhs);
2055 else if (cxx_eval_check_shift_p (loc, ctx, code, type, lhs, rhs))
2056 *non_constant_p = true;
2057 /* Don't VERIFY_CONSTANT if this might be dealing with a pointer to
2058 a local array in a constexpr function. */
2059 bool ptr = POINTER_TYPE_P (TREE_TYPE (lhs));
2060 if (!ptr)
2061 VERIFY_CONSTANT (r);
2062 return r;
2065 /* Subroutine of cxx_eval_constant_expression.
2066 Attempt to evaluate condition expressions. Dead branches are not
2067 looked into. */
2069 static tree
2070 cxx_eval_conditional_expression (const constexpr_ctx *ctx, tree t,
2071 bool lval,
2072 bool *non_constant_p, bool *overflow_p,
2073 tree *jump_target)
2075 tree val = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2076 /*lval*/false,
2077 non_constant_p, overflow_p);
2078 VERIFY_CONSTANT (val);
2079 /* Don't VERIFY_CONSTANT the other operands. */
2080 if (integer_zerop (val))
2081 return cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
2082 lval,
2083 non_constant_p, overflow_p,
2084 jump_target);
2085 return cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2086 lval,
2087 non_constant_p, overflow_p,
2088 jump_target);
2091 /* Subroutine of cxx_eval_constant_expression.
2092 Attempt to evaluate vector condition expressions. Unlike
2093 cxx_eval_conditional_expression, VEC_COND_EXPR acts like a normal
2094 ternary arithmetics operation, where all 3 arguments have to be
2095 evaluated as constants and then folding computes the result from
2096 them. */
2098 static tree
2099 cxx_eval_vector_conditional_expression (const constexpr_ctx *ctx, tree t,
2100 bool *non_constant_p, bool *overflow_p)
2102 tree arg1 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2103 /*lval*/false,
2104 non_constant_p, overflow_p);
2105 VERIFY_CONSTANT (arg1);
2106 tree arg2 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2107 /*lval*/false,
2108 non_constant_p, overflow_p);
2109 VERIFY_CONSTANT (arg2);
2110 tree arg3 = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
2111 /*lval*/false,
2112 non_constant_p, overflow_p);
2113 VERIFY_CONSTANT (arg3);
2114 location_t loc = EXPR_LOCATION (t);
2115 tree type = TREE_TYPE (t);
2116 tree r = fold_ternary_loc (loc, VEC_COND_EXPR, type, arg1, arg2, arg3);
2117 if (r == NULL_TREE)
2119 if (arg1 == TREE_OPERAND (t, 0)
2120 && arg2 == TREE_OPERAND (t, 1)
2121 && arg3 == TREE_OPERAND (t, 2))
2122 r = t;
2123 else
2124 r = build3_loc (loc, VEC_COND_EXPR, type, arg1, arg2, arg3);
2126 VERIFY_CONSTANT (r);
2127 return r;
2130 /* Returns less than, equal to, or greater than zero if KEY is found to be
2131 less than, to match, or to be greater than the constructor_elt's INDEX. */
2133 static int
2134 array_index_cmp (tree key, tree index)
2136 gcc_assert (TREE_CODE (key) == INTEGER_CST);
2138 switch (TREE_CODE (index))
2140 case INTEGER_CST:
2141 return tree_int_cst_compare (key, index);
2142 case RANGE_EXPR:
2144 tree lo = TREE_OPERAND (index, 0);
2145 tree hi = TREE_OPERAND (index, 1);
2146 if (tree_int_cst_lt (key, lo))
2147 return -1;
2148 else if (tree_int_cst_lt (hi, key))
2149 return 1;
2150 else
2151 return 0;
2153 default:
2154 gcc_unreachable ();
2158 /* Returns the index of the constructor_elt of ARY which matches DINDEX, or -1
2159 if none. If INSERT is true, insert a matching element rather than fail. */
2161 static HOST_WIDE_INT
2162 find_array_ctor_elt (tree ary, tree dindex, bool insert = false)
2164 if (tree_int_cst_sgn (dindex) < 0)
2165 return -1;
2167 unsigned HOST_WIDE_INT i = tree_to_uhwi (dindex);
2168 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (ary);
2169 unsigned HOST_WIDE_INT len = vec_safe_length (elts);
2171 unsigned HOST_WIDE_INT end = len;
2172 unsigned HOST_WIDE_INT begin = 0;
2174 /* If the last element of the CONSTRUCTOR has its own index, we can assume
2175 that the same is true of the other elements and index directly. */
2176 if (end > 0)
2178 tree cindex = (*elts)[end-1].index;
2179 if (TREE_CODE (cindex) == INTEGER_CST
2180 && compare_tree_int (cindex, end-1) == 0)
2182 if (i < end)
2183 return i;
2184 else
2185 begin = end;
2189 /* Otherwise, find a matching index by means of a binary search. */
2190 while (begin != end)
2192 unsigned HOST_WIDE_INT middle = (begin + end) / 2;
2193 constructor_elt &elt = (*elts)[middle];
2194 tree idx = elt.index;
2196 int cmp = array_index_cmp (dindex, idx);
2197 if (cmp < 0)
2198 end = middle;
2199 else if (cmp > 0)
2200 begin = middle + 1;
2201 else
2203 if (insert && TREE_CODE (idx) == RANGE_EXPR)
2205 /* We need to split the range. */
2206 constructor_elt e;
2207 tree lo = TREE_OPERAND (idx, 0);
2208 tree hi = TREE_OPERAND (idx, 1);
2209 if (tree_int_cst_lt (lo, dindex))
2211 /* There are still some lower elts; shorten the range. */
2212 tree new_hi = int_const_binop (MINUS_EXPR, dindex,
2213 size_one_node);
2214 if (tree_int_cst_equal (lo, new_hi))
2215 /* Only one element left, no longer a range. */
2216 elt.index = lo;
2217 else
2218 TREE_OPERAND (idx, 1) = new_hi;
2219 /* Append the element we want to insert. */
2220 ++middle;
2221 e.index = dindex;
2222 e.value = unshare_constructor (elt.value);
2223 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle, e);
2225 else
2226 /* No lower elts, the range elt is now ours. */
2227 elt.index = dindex;
2229 if (tree_int_cst_lt (dindex, hi))
2231 /* There are still some higher elts; append a range. */
2232 tree new_lo = int_const_binop (PLUS_EXPR, dindex,
2233 size_one_node);
2234 if (tree_int_cst_equal (new_lo, hi))
2235 e.index = hi;
2236 else
2237 e.index = build2 (RANGE_EXPR, sizetype, new_lo, hi);
2238 e.value = unshare_constructor (elt.value);
2239 vec_safe_insert (CONSTRUCTOR_ELTS (ary), middle+1, e);
2242 return middle;
2246 if (insert)
2248 constructor_elt e = { dindex, NULL_TREE };
2249 vec_safe_insert (CONSTRUCTOR_ELTS (ary), end, e);
2250 return end;
2253 return -1;
2256 /* Under the control of CTX, issue a detailed diagnostic for
2257 an out-of-bounds subscript INDEX into the expression ARRAY. */
2259 static void
2260 diag_array_subscript (const constexpr_ctx *ctx, tree array, tree index)
2262 if (!ctx->quiet)
2264 tree arraytype = TREE_TYPE (array);
2266 /* Convert the unsigned array subscript to a signed integer to avoid
2267 printing huge numbers for small negative values. */
2268 tree sidx = fold_convert (ssizetype, index);
2269 if (DECL_P (array))
2271 error ("array subscript value %qE is outside the bounds "
2272 "of array %qD of type %qT", sidx, array, arraytype);
2273 inform (DECL_SOURCE_LOCATION (array), "declared here");
2275 else
2276 error ("array subscript value %qE is outside the bounds "
2277 "of array type %qT", sidx, arraytype);
2281 /* Extract element INDEX consisting of CHARS_PER_ELT chars from
2282 STRING_CST STRING. */
2284 static tree
2285 extract_string_elt (tree string, unsigned chars_per_elt, unsigned index)
2287 tree type = cv_unqualified (TREE_TYPE (TREE_TYPE (string)));
2288 tree r;
2290 if (chars_per_elt == 1)
2291 r = build_int_cst (type, TREE_STRING_POINTER (string)[index]);
2292 else
2294 const unsigned char *ptr
2295 = ((const unsigned char *)TREE_STRING_POINTER (string)
2296 + index * chars_per_elt);
2297 r = native_interpret_expr (type, ptr, chars_per_elt);
2299 return r;
2302 /* Subroutine of cxx_eval_constant_expression.
2303 Attempt to reduce a reference to an array slot. */
2305 static tree
2306 cxx_eval_array_reference (const constexpr_ctx *ctx, tree t,
2307 bool lval,
2308 bool *non_constant_p, bool *overflow_p)
2310 tree oldary = TREE_OPERAND (t, 0);
2311 tree ary = cxx_eval_constant_expression (ctx, oldary,
2312 lval,
2313 non_constant_p, overflow_p);
2314 tree index, oldidx;
2315 HOST_WIDE_INT i = 0;
2316 tree elem_type = NULL_TREE;
2317 unsigned len = 0, elem_nchars = 1;
2318 if (*non_constant_p)
2319 return t;
2320 oldidx = TREE_OPERAND (t, 1);
2321 index = cxx_eval_constant_expression (ctx, oldidx,
2322 false,
2323 non_constant_p, overflow_p);
2324 VERIFY_CONSTANT (index);
2325 if (!lval)
2327 elem_type = TREE_TYPE (TREE_TYPE (ary));
2328 if (TREE_CODE (ary) == VIEW_CONVERT_EXPR
2329 && VECTOR_TYPE_P (TREE_TYPE (TREE_OPERAND (ary, 0)))
2330 && TREE_TYPE (t) == TREE_TYPE (TREE_TYPE (TREE_OPERAND (ary, 0))))
2331 ary = TREE_OPERAND (ary, 0);
2332 if (TREE_CODE (ary) == CONSTRUCTOR)
2333 len = CONSTRUCTOR_NELTS (ary);
2334 else if (TREE_CODE (ary) == STRING_CST)
2336 elem_nchars = (TYPE_PRECISION (elem_type)
2337 / TYPE_PRECISION (char_type_node));
2338 len = (unsigned) TREE_STRING_LENGTH (ary) / elem_nchars;
2340 else if (TREE_CODE (ary) == VECTOR_CST)
2341 /* We don't create variable-length VECTOR_CSTs. */
2342 len = VECTOR_CST_NELTS (ary).to_constant ();
2343 else
2345 /* We can't do anything with other tree codes, so use
2346 VERIFY_CONSTANT to complain and fail. */
2347 VERIFY_CONSTANT (ary);
2348 gcc_unreachable ();
2351 if (!tree_fits_shwi_p (index)
2352 || (i = tree_to_shwi (index)) < 0)
2354 diag_array_subscript (ctx, ary, index);
2355 *non_constant_p = true;
2356 return t;
2360 tree nelts;
2361 if (TREE_CODE (TREE_TYPE (ary)) == ARRAY_TYPE)
2362 nelts = array_type_nelts_top (TREE_TYPE (ary));
2363 else if (VECTOR_TYPE_P (TREE_TYPE (ary)))
2364 nelts = size_int (TYPE_VECTOR_SUBPARTS (TREE_TYPE (ary)));
2365 else
2366 gcc_unreachable ();
2368 /* For VLAs, the number of elements won't be an integer constant. */
2369 nelts = cxx_eval_constant_expression (ctx, nelts, false, non_constant_p,
2370 overflow_p);
2371 VERIFY_CONSTANT (nelts);
2372 if ((lval
2373 ? !tree_int_cst_le (index, nelts)
2374 : !tree_int_cst_lt (index, nelts))
2375 || tree_int_cst_sgn (index) < 0)
2377 diag_array_subscript (ctx, ary, index);
2378 *non_constant_p = true;
2379 return t;
2382 if (lval && ary == oldary && index == oldidx)
2383 return t;
2384 else if (lval)
2385 return build4 (ARRAY_REF, TREE_TYPE (t), ary, index, NULL, NULL);
2387 bool found;
2388 if (TREE_CODE (ary) == CONSTRUCTOR)
2390 HOST_WIDE_INT ix = find_array_ctor_elt (ary, index);
2391 found = (ix >= 0);
2392 if (found)
2393 i = ix;
2395 else
2396 found = (i < len);
2398 if (found)
2400 tree r;
2401 if (TREE_CODE (ary) == CONSTRUCTOR)
2402 r = (*CONSTRUCTOR_ELTS (ary))[i].value;
2403 else if (TREE_CODE (ary) == VECTOR_CST)
2404 r = VECTOR_CST_ELT (ary, i);
2405 else
2406 r = extract_string_elt (ary, elem_nchars, i);
2408 if (r)
2409 /* Don't VERIFY_CONSTANT here. */
2410 return r;
2412 /* Otherwise the element doesn't have a value yet. */
2415 /* Not found. */
2417 if (TREE_CODE (ary) == CONSTRUCTOR
2418 && CONSTRUCTOR_NO_IMPLICIT_ZERO (ary))
2420 /* 'ary' is part of the aggregate initializer we're currently
2421 building; if there's no initializer for this element yet,
2422 that's an error. */
2423 if (!ctx->quiet)
2424 error ("accessing uninitialized array element");
2425 *non_constant_p = true;
2426 return t;
2429 /* If it's within the array bounds but doesn't have an explicit
2430 initializer, it's value-initialized. */
2431 tree val = build_value_init (elem_type, tf_warning_or_error);
2432 return cxx_eval_constant_expression (ctx, val, lval, non_constant_p,
2433 overflow_p);
2436 /* Subroutine of cxx_eval_constant_expression.
2437 Attempt to reduce a field access of a value of class type. */
2439 static tree
2440 cxx_eval_component_reference (const constexpr_ctx *ctx, tree t,
2441 bool lval,
2442 bool *non_constant_p, bool *overflow_p)
2444 unsigned HOST_WIDE_INT i;
2445 tree field;
2446 tree value;
2447 tree part = TREE_OPERAND (t, 1);
2448 tree orig_whole = TREE_OPERAND (t, 0);
2449 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2450 lval,
2451 non_constant_p, overflow_p);
2452 if (TREE_CODE (whole) == INDIRECT_REF
2453 && integer_zerop (TREE_OPERAND (whole, 0))
2454 && !ctx->quiet)
2455 error ("dereferencing a null pointer in %qE", orig_whole);
2457 if (TREE_CODE (whole) == PTRMEM_CST)
2458 whole = cplus_expand_constant (whole);
2459 if (whole == orig_whole)
2460 return t;
2461 if (lval)
2462 return fold_build3 (COMPONENT_REF, TREE_TYPE (t),
2463 whole, part, NULL_TREE);
2464 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2465 CONSTRUCTOR. */
2466 if (!*non_constant_p && TREE_CODE (whole) != CONSTRUCTOR)
2468 if (!ctx->quiet)
2469 error ("%qE is not a constant expression", orig_whole);
2470 *non_constant_p = true;
2472 if (DECL_MUTABLE_P (part))
2474 if (!ctx->quiet)
2475 error ("mutable %qD is not usable in a constant expression", part);
2476 *non_constant_p = true;
2478 if (*non_constant_p)
2479 return t;
2480 bool pmf = TYPE_PTRMEMFUNC_P (TREE_TYPE (whole));
2481 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2483 /* Use name match for PMF fields, as a variant will have a
2484 different FIELD_DECL with a different type. */
2485 if (pmf ? DECL_NAME (field) == DECL_NAME (part)
2486 : field == part)
2488 if (value)
2489 return value;
2490 else
2491 /* We're in the middle of initializing it. */
2492 break;
2495 if (TREE_CODE (TREE_TYPE (whole)) == UNION_TYPE
2496 && CONSTRUCTOR_NELTS (whole) > 0)
2498 /* DR 1188 says we don't have to deal with this. */
2499 if (!ctx->quiet)
2500 error ("accessing %qD member instead of initialized %qD member in "
2501 "constant expression", part, CONSTRUCTOR_ELT (whole, 0)->index);
2502 *non_constant_p = true;
2503 return t;
2506 /* We only create a CONSTRUCTOR for a subobject when we modify it, so empty
2507 classes never get represented; throw together a value now. */
2508 if (is_really_empty_class (TREE_TYPE (t)))
2509 return build_constructor (TREE_TYPE (t), NULL);
2511 gcc_assert (DECL_CONTEXT (part) == TYPE_MAIN_VARIANT (TREE_TYPE (whole)));
2513 if (CONSTRUCTOR_NO_IMPLICIT_ZERO (whole))
2515 /* 'whole' is part of the aggregate initializer we're currently
2516 building; if there's no initializer for this member yet, that's an
2517 error. */
2518 if (!ctx->quiet)
2519 error ("accessing uninitialized member %qD", part);
2520 *non_constant_p = true;
2521 return t;
2524 /* If there's no explicit init for this field, it's value-initialized. */
2525 value = build_value_init (TREE_TYPE (t), tf_warning_or_error);
2526 return cxx_eval_constant_expression (ctx, value,
2527 lval,
2528 non_constant_p, overflow_p);
2531 /* Subroutine of cxx_eval_constant_expression.
2532 Attempt to reduce a field access of a value of class type that is
2533 expressed as a BIT_FIELD_REF. */
2535 static tree
2536 cxx_eval_bit_field_ref (const constexpr_ctx *ctx, tree t,
2537 bool lval,
2538 bool *non_constant_p, bool *overflow_p)
2540 tree orig_whole = TREE_OPERAND (t, 0);
2541 tree retval, fldval, utype, mask;
2542 bool fld_seen = false;
2543 HOST_WIDE_INT istart, isize;
2544 tree whole = cxx_eval_constant_expression (ctx, orig_whole,
2545 lval,
2546 non_constant_p, overflow_p);
2547 tree start, field, value;
2548 unsigned HOST_WIDE_INT i;
2550 if (whole == orig_whole)
2551 return t;
2552 /* Don't VERIFY_CONSTANT here; we only want to check that we got a
2553 CONSTRUCTOR. */
2554 if (!*non_constant_p
2555 && TREE_CODE (whole) != VECTOR_CST
2556 && TREE_CODE (whole) != CONSTRUCTOR)
2558 if (!ctx->quiet)
2559 error ("%qE is not a constant expression", orig_whole);
2560 *non_constant_p = true;
2562 if (*non_constant_p)
2563 return t;
2565 if (TREE_CODE (whole) == VECTOR_CST)
2566 return fold_ternary (BIT_FIELD_REF, TREE_TYPE (t), whole,
2567 TREE_OPERAND (t, 1), TREE_OPERAND (t, 2));
2569 start = TREE_OPERAND (t, 2);
2570 istart = tree_to_shwi (start);
2571 isize = tree_to_shwi (TREE_OPERAND (t, 1));
2572 utype = TREE_TYPE (t);
2573 if (!TYPE_UNSIGNED (utype))
2574 utype = build_nonstandard_integer_type (TYPE_PRECISION (utype), 1);
2575 retval = build_int_cst (utype, 0);
2576 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (whole), i, field, value)
2578 tree bitpos = bit_position (field);
2579 if (bitpos == start && DECL_SIZE (field) == TREE_OPERAND (t, 1))
2580 return value;
2581 if (TREE_CODE (TREE_TYPE (field)) == INTEGER_TYPE
2582 && TREE_CODE (value) == INTEGER_CST
2583 && tree_fits_shwi_p (bitpos)
2584 && tree_fits_shwi_p (DECL_SIZE (field)))
2586 HOST_WIDE_INT bit = tree_to_shwi (bitpos);
2587 HOST_WIDE_INT sz = tree_to_shwi (DECL_SIZE (field));
2588 HOST_WIDE_INT shift;
2589 if (bit >= istart && bit + sz <= istart + isize)
2591 fldval = fold_convert (utype, value);
2592 mask = build_int_cst_type (utype, -1);
2593 mask = fold_build2 (LSHIFT_EXPR, utype, mask,
2594 size_int (TYPE_PRECISION (utype) - sz));
2595 mask = fold_build2 (RSHIFT_EXPR, utype, mask,
2596 size_int (TYPE_PRECISION (utype) - sz));
2597 fldval = fold_build2 (BIT_AND_EXPR, utype, fldval, mask);
2598 shift = bit - istart;
2599 if (BYTES_BIG_ENDIAN)
2600 shift = TYPE_PRECISION (utype) - shift - sz;
2601 fldval = fold_build2 (LSHIFT_EXPR, utype, fldval,
2602 size_int (shift));
2603 retval = fold_build2 (BIT_IOR_EXPR, utype, retval, fldval);
2604 fld_seen = true;
2608 if (fld_seen)
2609 return fold_convert (TREE_TYPE (t), retval);
2610 gcc_unreachable ();
2611 return error_mark_node;
2614 /* Subroutine of cxx_eval_constant_expression.
2615 Evaluate a short-circuited logical expression T in the context
2616 of a given constexpr CALL. BAILOUT_VALUE is the value for
2617 early return. CONTINUE_VALUE is used here purely for
2618 sanity check purposes. */
2620 static tree
2621 cxx_eval_logical_expression (const constexpr_ctx *ctx, tree t,
2622 tree bailout_value, tree continue_value,
2623 bool lval,
2624 bool *non_constant_p, bool *overflow_p)
2626 tree r;
2627 tree lhs = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
2628 lval,
2629 non_constant_p, overflow_p);
2630 VERIFY_CONSTANT (lhs);
2631 if (tree_int_cst_equal (lhs, bailout_value))
2632 return lhs;
2633 gcc_assert (tree_int_cst_equal (lhs, continue_value));
2634 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
2635 lval, non_constant_p,
2636 overflow_p);
2637 VERIFY_CONSTANT (r);
2638 return r;
2641 /* REF is a COMPONENT_REF designating a particular field. V is a vector of
2642 CONSTRUCTOR elements to initialize (part of) an object containing that
2643 field. Return a pointer to the constructor_elt corresponding to the
2644 initialization of the field. */
2646 static constructor_elt *
2647 base_field_constructor_elt (vec<constructor_elt, va_gc> *v, tree ref)
2649 tree aggr = TREE_OPERAND (ref, 0);
2650 tree field = TREE_OPERAND (ref, 1);
2651 HOST_WIDE_INT i;
2652 constructor_elt *ce;
2654 gcc_assert (TREE_CODE (ref) == COMPONENT_REF);
2656 if (TREE_CODE (aggr) == COMPONENT_REF)
2658 constructor_elt *base_ce
2659 = base_field_constructor_elt (v, aggr);
2660 v = CONSTRUCTOR_ELTS (base_ce->value);
2663 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
2664 if (ce->index == field)
2665 return ce;
2667 gcc_unreachable ();
2668 return NULL;
2671 /* Some of the expressions fed to the constexpr mechanism are calls to
2672 constructors, which have type void. In that case, return the type being
2673 initialized by the constructor. */
2675 static tree
2676 initialized_type (tree t)
2678 if (TYPE_P (t))
2679 return t;
2680 tree type = cv_unqualified (TREE_TYPE (t));
2681 if (TREE_CODE (t) == CALL_EXPR || TREE_CODE (t) == AGGR_INIT_EXPR)
2683 /* A constructor call has void type, so we need to look deeper. */
2684 tree fn = get_function_named_in_call (t);
2685 if (fn && TREE_CODE (fn) == FUNCTION_DECL
2686 && DECL_CXX_CONSTRUCTOR_P (fn))
2687 type = DECL_CONTEXT (fn);
2689 return type;
2692 /* We're about to initialize element INDEX of an array or class from VALUE.
2693 Set up NEW_CTX appropriately by adjusting .object to refer to the
2694 subobject and creating a new CONSTRUCTOR if the element is itself
2695 a class or array. */
2697 static void
2698 init_subob_ctx (const constexpr_ctx *ctx, constexpr_ctx &new_ctx,
2699 tree index, tree &value)
2701 new_ctx = *ctx;
2703 if (index && TREE_CODE (index) != INTEGER_CST
2704 && TREE_CODE (index) != FIELD_DECL)
2705 /* This won't have an element in the new CONSTRUCTOR. */
2706 return;
2708 tree type = initialized_type (value);
2709 if (!AGGREGATE_TYPE_P (type) && !VECTOR_TYPE_P (type))
2710 /* A non-aggregate member doesn't get its own CONSTRUCTOR. */
2711 return;
2713 /* The sub-aggregate initializer might contain a placeholder;
2714 update object to refer to the subobject and ctor to refer to
2715 the (newly created) sub-initializer. */
2716 if (ctx->object)
2717 new_ctx.object = build_ctor_subob_ref (index, type, ctx->object);
2718 tree elt = build_constructor (type, NULL);
2719 CONSTRUCTOR_NO_IMPLICIT_ZERO (elt) = true;
2720 new_ctx.ctor = elt;
2722 if (TREE_CODE (value) == TARGET_EXPR)
2723 /* Avoid creating another CONSTRUCTOR when we expand the TARGET_EXPR. */
2724 value = TARGET_EXPR_INITIAL (value);
2727 /* We're about to process an initializer for a class or array TYPE. Make
2728 sure that CTX is set up appropriately. */
2730 static void
2731 verify_ctor_sanity (const constexpr_ctx *ctx, tree type)
2733 /* We don't bother building a ctor for an empty base subobject. */
2734 if (is_empty_class (type))
2735 return;
2737 /* We're in the middle of an initializer that might involve placeholders;
2738 our caller should have created a CONSTRUCTOR for us to put the
2739 initializer into. We will either return that constructor or T. */
2740 gcc_assert (ctx->ctor);
2741 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2742 (type, TREE_TYPE (ctx->ctor)));
2743 /* We used to check that ctx->ctor was empty, but that isn't the case when
2744 the object is zero-initialized before calling the constructor. */
2745 if (ctx->object)
2747 tree otype = TREE_TYPE (ctx->object);
2748 gcc_assert (same_type_ignoring_top_level_qualifiers_p (type, otype)
2749 /* Handle flexible array members. */
2750 || (TREE_CODE (otype) == ARRAY_TYPE
2751 && TYPE_DOMAIN (otype) == NULL_TREE
2752 && TREE_CODE (type) == ARRAY_TYPE
2753 && (same_type_ignoring_top_level_qualifiers_p
2754 (TREE_TYPE (type), TREE_TYPE (otype)))));
2756 gcc_assert (!ctx->object || !DECL_P (ctx->object)
2757 || *(ctx->values->get (ctx->object)) == ctx->ctor);
2760 /* Subroutine of cxx_eval_constant_expression.
2761 The expression tree T denotes a C-style array or a C-style
2762 aggregate. Reduce it to a constant expression. */
2764 static tree
2765 cxx_eval_bare_aggregate (const constexpr_ctx *ctx, tree t,
2766 bool lval,
2767 bool *non_constant_p, bool *overflow_p)
2769 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
2770 bool changed = false;
2771 gcc_assert (!BRACE_ENCLOSED_INITIALIZER_P (t));
2772 tree type = TREE_TYPE (t);
2774 constexpr_ctx new_ctx;
2775 if (TYPE_PTRMEMFUNC_P (type) || VECTOR_TYPE_P (type))
2777 /* We don't really need the ctx->ctor business for a PMF or
2778 vector, but it's simpler to use the same code. */
2779 new_ctx = *ctx;
2780 new_ctx.ctor = build_constructor (type, NULL);
2781 new_ctx.object = NULL_TREE;
2782 ctx = &new_ctx;
2784 verify_ctor_sanity (ctx, type);
2785 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2786 vec_alloc (*p, vec_safe_length (v));
2788 unsigned i;
2789 tree index, value;
2790 bool constant_p = true;
2791 bool side_effects_p = false;
2792 FOR_EACH_CONSTRUCTOR_ELT (v, i, index, value)
2794 tree orig_value = value;
2795 init_subob_ctx (ctx, new_ctx, index, value);
2796 if (new_ctx.ctor != ctx->ctor)
2797 /* If we built a new CONSTRUCTOR, attach it now so that other
2798 initializers can refer to it. */
2799 CONSTRUCTOR_APPEND_ELT (*p, index, new_ctx.ctor);
2800 tree elt = cxx_eval_constant_expression (&new_ctx, value,
2801 lval,
2802 non_constant_p, overflow_p);
2803 /* Don't VERIFY_CONSTANT here. */
2804 if (ctx->quiet && *non_constant_p)
2805 break;
2806 if (elt != orig_value)
2807 changed = true;
2809 if (!TREE_CONSTANT (elt))
2810 constant_p = false;
2811 if (TREE_SIDE_EFFECTS (elt))
2812 side_effects_p = true;
2813 if (index && TREE_CODE (index) == COMPONENT_REF)
2815 /* This is an initialization of a vfield inside a base
2816 subaggregate that we already initialized; push this
2817 initialization into the previous initialization. */
2818 constructor_elt *inner = base_field_constructor_elt (*p, index);
2819 inner->value = elt;
2820 changed = true;
2822 else if (index
2823 && (TREE_CODE (index) == NOP_EXPR
2824 || TREE_CODE (index) == POINTER_PLUS_EXPR))
2826 /* This is an initializer for an empty base; now that we've
2827 checked that it's constant, we can ignore it. */
2828 gcc_assert (is_empty_class (TREE_TYPE (TREE_TYPE (index))));
2829 changed = true;
2831 else if (new_ctx.ctor != ctx->ctor)
2833 /* We appended this element above; update the value. */
2834 gcc_assert ((*p)->last().index == index);
2835 (*p)->last().value = elt;
2837 else
2838 CONSTRUCTOR_APPEND_ELT (*p, index, elt);
2840 if (*non_constant_p || !changed)
2841 return t;
2842 t = ctx->ctor;
2843 /* We're done building this CONSTRUCTOR, so now we can interpret an
2844 element without an explicit initializer as value-initialized. */
2845 CONSTRUCTOR_NO_IMPLICIT_ZERO (t) = false;
2846 TREE_CONSTANT (t) = constant_p;
2847 TREE_SIDE_EFFECTS (t) = side_effects_p;
2848 if (VECTOR_TYPE_P (type))
2849 t = fold (t);
2850 return t;
2853 /* Subroutine of cxx_eval_constant_expression.
2854 The expression tree T is a VEC_INIT_EXPR which denotes the desired
2855 initialization of a non-static data member of array type. Reduce it to a
2856 CONSTRUCTOR.
2858 Note that apart from value-initialization (when VALUE_INIT is true),
2859 this is only intended to support value-initialization and the
2860 initializations done by defaulted constructors for classes with
2861 non-static data members of array type. In this case, VEC_INIT_EXPR_INIT
2862 will either be NULL_TREE for the default constructor, or a COMPONENT_REF
2863 for the copy/move constructor. */
2865 static tree
2866 cxx_eval_vec_init_1 (const constexpr_ctx *ctx, tree atype, tree init,
2867 bool value_init, bool lval,
2868 bool *non_constant_p, bool *overflow_p)
2870 tree elttype = TREE_TYPE (atype);
2871 unsigned HOST_WIDE_INT max = tree_to_uhwi (array_type_nelts_top (atype));
2872 verify_ctor_sanity (ctx, atype);
2873 vec<constructor_elt, va_gc> **p = &CONSTRUCTOR_ELTS (ctx->ctor);
2874 vec_alloc (*p, max + 1);
2875 bool pre_init = false;
2876 unsigned HOST_WIDE_INT i;
2878 /* For the default constructor, build up a call to the default
2879 constructor of the element type. We only need to handle class types
2880 here, as for a constructor to be constexpr, all members must be
2881 initialized, which for a defaulted default constructor means they must
2882 be of a class type with a constexpr default constructor. */
2883 if (TREE_CODE (elttype) == ARRAY_TYPE)
2884 /* We only do this at the lowest level. */;
2885 else if (value_init)
2887 init = build_value_init (elttype, tf_warning_or_error);
2888 pre_init = true;
2890 else if (!init)
2892 vec<tree, va_gc> *argvec = make_tree_vector ();
2893 init = build_special_member_call (NULL_TREE, complete_ctor_identifier,
2894 &argvec, elttype, LOOKUP_NORMAL,
2895 tf_warning_or_error);
2896 release_tree_vector (argvec);
2897 init = build_aggr_init_expr (TREE_TYPE (init), init);
2898 pre_init = true;
2901 for (i = 0; i < max; ++i)
2903 tree idx = build_int_cst (size_type_node, i);
2904 tree eltinit;
2905 bool reuse = false;
2906 constexpr_ctx new_ctx;
2907 init_subob_ctx (ctx, new_ctx, idx, pre_init ? init : elttype);
2908 if (new_ctx.ctor != ctx->ctor)
2909 CONSTRUCTOR_APPEND_ELT (*p, idx, new_ctx.ctor);
2910 if (TREE_CODE (elttype) == ARRAY_TYPE)
2912 /* A multidimensional array; recurse. */
2913 if (value_init || init == NULL_TREE)
2915 eltinit = NULL_TREE;
2916 reuse = i == 0;
2918 else
2919 eltinit = cp_build_array_ref (input_location, init, idx,
2920 tf_warning_or_error);
2921 eltinit = cxx_eval_vec_init_1 (&new_ctx, elttype, eltinit, value_init,
2922 lval,
2923 non_constant_p, overflow_p);
2925 else if (pre_init)
2927 /* Initializing an element using value or default initialization
2928 we just pre-built above. */
2929 eltinit = cxx_eval_constant_expression (&new_ctx, init, lval,
2930 non_constant_p, overflow_p);
2931 reuse = i == 0;
2933 else
2935 /* Copying an element. */
2936 gcc_assert (same_type_ignoring_top_level_qualifiers_p
2937 (atype, TREE_TYPE (init)));
2938 eltinit = cp_build_array_ref (input_location, init, idx,
2939 tf_warning_or_error);
2940 if (!lvalue_p (init))
2941 eltinit = move (eltinit);
2942 eltinit = force_rvalue (eltinit, tf_warning_or_error);
2943 eltinit = (cxx_eval_constant_expression
2944 (&new_ctx, eltinit, lval,
2945 non_constant_p, overflow_p));
2947 if (*non_constant_p && !ctx->quiet)
2948 break;
2949 if (new_ctx.ctor != ctx->ctor)
2951 /* We appended this element above; update the value. */
2952 gcc_assert ((*p)->last().index == idx);
2953 (*p)->last().value = eltinit;
2955 else
2956 CONSTRUCTOR_APPEND_ELT (*p, idx, eltinit);
2957 /* Reuse the result of cxx_eval_constant_expression call
2958 from the first iteration to all others if it is a constant
2959 initializer that doesn't require relocations. */
2960 if (reuse
2961 && max > 1
2962 && (initializer_constant_valid_p (eltinit, TREE_TYPE (eltinit))
2963 == null_pointer_node))
2965 if (new_ctx.ctor != ctx->ctor)
2966 eltinit = new_ctx.ctor;
2967 for (i = 1; i < max; ++i)
2969 idx = build_int_cst (size_type_node, i);
2970 CONSTRUCTOR_APPEND_ELT (*p, idx, unshare_constructor (eltinit));
2972 break;
2976 if (!*non_constant_p)
2978 init = ctx->ctor;
2979 CONSTRUCTOR_NO_IMPLICIT_ZERO (init) = false;
2981 return init;
2984 static tree
2985 cxx_eval_vec_init (const constexpr_ctx *ctx, tree t,
2986 bool lval,
2987 bool *non_constant_p, bool *overflow_p)
2989 tree atype = TREE_TYPE (t);
2990 tree init = VEC_INIT_EXPR_INIT (t);
2991 tree r = cxx_eval_vec_init_1 (ctx, atype, init,
2992 VEC_INIT_EXPR_VALUE_INIT (t),
2993 lval, non_constant_p, overflow_p);
2994 if (*non_constant_p)
2995 return t;
2996 else
2997 return r;
3000 /* A less strict version of fold_indirect_ref_1, which requires cv-quals to
3001 match. We want to be less strict for simple *& folding; if we have a
3002 non-const temporary that we access through a const pointer, that should
3003 work. We handle this here rather than change fold_indirect_ref_1
3004 because we're dealing with things like ADDR_EXPR of INTEGER_CST which
3005 don't really make sense outside of constant expression evaluation. Also
3006 we want to allow folding to COMPONENT_REF, which could cause trouble
3007 with TBAA in fold_indirect_ref_1.
3009 Try to keep this function synced with fold_indirect_ref_1. */
3011 static tree
3012 cxx_fold_indirect_ref (location_t loc, tree type, tree op0, bool *empty_base)
3014 tree sub, subtype;
3016 sub = op0;
3017 STRIP_NOPS (sub);
3018 subtype = TREE_TYPE (sub);
3019 if (!POINTER_TYPE_P (subtype))
3020 return NULL_TREE;
3022 if (TREE_CODE (sub) == ADDR_EXPR)
3024 tree op = TREE_OPERAND (sub, 0);
3025 tree optype = TREE_TYPE (op);
3027 /* *&CONST_DECL -> to the value of the const decl. */
3028 if (TREE_CODE (op) == CONST_DECL)
3029 return DECL_INITIAL (op);
3030 /* *&p => p; make sure to handle *&"str"[cst] here. */
3031 if (same_type_ignoring_top_level_qualifiers_p (optype, type)
3032 /* Also handle the case where the desired type is an array of unknown
3033 bounds because the variable has had its bounds deduced since the
3034 ADDR_EXPR was created. */
3035 || (TREE_CODE (type) == ARRAY_TYPE
3036 && TREE_CODE (optype) == ARRAY_TYPE
3037 && TYPE_DOMAIN (type) == NULL_TREE
3038 && same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (optype),
3039 TREE_TYPE (type))))
3041 tree fop = fold_read_from_constant_string (op);
3042 if (fop)
3043 return fop;
3044 else
3045 return op;
3047 /* *(foo *)&fooarray => fooarray[0] */
3048 else if (TREE_CODE (optype) == ARRAY_TYPE
3049 && (same_type_ignoring_top_level_qualifiers_p
3050 (type, TREE_TYPE (optype))))
3052 tree type_domain = TYPE_DOMAIN (optype);
3053 tree min_val = size_zero_node;
3054 if (type_domain && TYPE_MIN_VALUE (type_domain))
3055 min_val = TYPE_MIN_VALUE (type_domain);
3056 return build4_loc (loc, ARRAY_REF, type, op, min_val,
3057 NULL_TREE, NULL_TREE);
3059 /* *(foo *)&complexfoo => __real__ complexfoo */
3060 else if (TREE_CODE (optype) == COMPLEX_TYPE
3061 && (same_type_ignoring_top_level_qualifiers_p
3062 (type, TREE_TYPE (optype))))
3063 return fold_build1_loc (loc, REALPART_EXPR, type, op);
3064 /* *(foo *)&vectorfoo => BIT_FIELD_REF<vectorfoo,...> */
3065 else if (VECTOR_TYPE_P (optype)
3066 && (same_type_ignoring_top_level_qualifiers_p
3067 (type, TREE_TYPE (optype))))
3069 tree part_width = TYPE_SIZE (type);
3070 tree index = bitsize_int (0);
3071 return fold_build3_loc (loc, BIT_FIELD_REF, type, op, part_width, index);
3073 /* Also handle conversion to an empty base class, which
3074 is represented with a NOP_EXPR. */
3075 else if (is_empty_class (type)
3076 && CLASS_TYPE_P (optype)
3077 && DERIVED_FROM_P (type, optype))
3079 *empty_base = true;
3080 return op;
3082 /* *(foo *)&struct_with_foo_field => COMPONENT_REF */
3083 else if (RECORD_OR_UNION_TYPE_P (optype))
3085 tree field = TYPE_FIELDS (optype);
3086 for (; field; field = DECL_CHAIN (field))
3087 if (TREE_CODE (field) == FIELD_DECL
3088 && TREE_TYPE (field) != error_mark_node
3089 && integer_zerop (byte_position (field))
3090 && (same_type_ignoring_top_level_qualifiers_p
3091 (TREE_TYPE (field), type)))
3092 return fold_build3 (COMPONENT_REF, type, op, field, NULL_TREE);
3095 else if (TREE_CODE (sub) == POINTER_PLUS_EXPR
3096 && TREE_CODE (TREE_OPERAND (sub, 1)) == INTEGER_CST)
3098 tree op00 = TREE_OPERAND (sub, 0);
3099 tree op01 = TREE_OPERAND (sub, 1);
3101 STRIP_NOPS (op00);
3102 if (TREE_CODE (op00) == ADDR_EXPR)
3104 tree op00type;
3105 op00 = TREE_OPERAND (op00, 0);
3106 op00type = TREE_TYPE (op00);
3108 /* ((foo*)&vectorfoo)[1] => BIT_FIELD_REF<vectorfoo,...> */
3109 if (VECTOR_TYPE_P (op00type)
3110 && (same_type_ignoring_top_level_qualifiers_p
3111 (type, TREE_TYPE (op00type))))
3113 HOST_WIDE_INT offset = tree_to_shwi (op01);
3114 tree part_width = TYPE_SIZE (type);
3115 unsigned HOST_WIDE_INT part_widthi = tree_to_shwi (part_width)/BITS_PER_UNIT;
3116 unsigned HOST_WIDE_INT indexi = offset * BITS_PER_UNIT;
3117 tree index = bitsize_int (indexi);
3119 if (known_lt (offset / part_widthi,
3120 TYPE_VECTOR_SUBPARTS (op00type)))
3121 return fold_build3_loc (loc,
3122 BIT_FIELD_REF, type, op00,
3123 part_width, index);
3126 /* ((foo*)&complexfoo)[1] => __imag__ complexfoo */
3127 else if (TREE_CODE (op00type) == COMPLEX_TYPE
3128 && (same_type_ignoring_top_level_qualifiers_p
3129 (type, TREE_TYPE (op00type))))
3131 tree size = TYPE_SIZE_UNIT (type);
3132 if (tree_int_cst_equal (size, op01))
3133 return fold_build1_loc (loc, IMAGPART_EXPR, type, op00);
3135 /* ((foo *)&fooarray)[1] => fooarray[1] */
3136 else if (TREE_CODE (op00type) == ARRAY_TYPE
3137 && (same_type_ignoring_top_level_qualifiers_p
3138 (type, TREE_TYPE (op00type))))
3140 tree type_domain = TYPE_DOMAIN (op00type);
3141 tree min_val = size_zero_node;
3142 if (type_domain && TYPE_MIN_VALUE (type_domain))
3143 min_val = TYPE_MIN_VALUE (type_domain);
3144 op01 = size_binop_loc (loc, EXACT_DIV_EXPR, op01,
3145 TYPE_SIZE_UNIT (type));
3146 op01 = size_binop_loc (loc, PLUS_EXPR, op01, min_val);
3147 return build4_loc (loc, ARRAY_REF, type, op00, op01,
3148 NULL_TREE, NULL_TREE);
3150 /* Also handle conversion to an empty base class, which
3151 is represented with a NOP_EXPR. */
3152 else if (is_empty_class (type)
3153 && CLASS_TYPE_P (op00type)
3154 && DERIVED_FROM_P (type, op00type))
3156 *empty_base = true;
3157 return op00;
3159 /* ((foo *)&struct_with_foo_field)[1] => COMPONENT_REF */
3160 else if (RECORD_OR_UNION_TYPE_P (op00type))
3162 tree field = TYPE_FIELDS (op00type);
3163 for (; field; field = DECL_CHAIN (field))
3164 if (TREE_CODE (field) == FIELD_DECL
3165 && TREE_TYPE (field) != error_mark_node
3166 && tree_int_cst_equal (byte_position (field), op01)
3167 && (same_type_ignoring_top_level_qualifiers_p
3168 (TREE_TYPE (field), type)))
3169 return fold_build3 (COMPONENT_REF, type, op00,
3170 field, NULL_TREE);
3174 /* *(foo *)fooarrptr => (*fooarrptr)[0] */
3175 else if (TREE_CODE (TREE_TYPE (subtype)) == ARRAY_TYPE
3176 && (same_type_ignoring_top_level_qualifiers_p
3177 (type, TREE_TYPE (TREE_TYPE (subtype)))))
3179 tree type_domain;
3180 tree min_val = size_zero_node;
3181 tree newsub = cxx_fold_indirect_ref (loc, TREE_TYPE (subtype), sub, NULL);
3182 if (newsub)
3183 sub = newsub;
3184 else
3185 sub = build1_loc (loc, INDIRECT_REF, TREE_TYPE (subtype), sub);
3186 type_domain = TYPE_DOMAIN (TREE_TYPE (sub));
3187 if (type_domain && TYPE_MIN_VALUE (type_domain))
3188 min_val = TYPE_MIN_VALUE (type_domain);
3189 return build4_loc (loc, ARRAY_REF, type, sub, min_val, NULL_TREE,
3190 NULL_TREE);
3193 return NULL_TREE;
3196 static tree
3197 cxx_eval_indirect_ref (const constexpr_ctx *ctx, tree t,
3198 bool lval,
3199 bool *non_constant_p, bool *overflow_p)
3201 tree orig_op0 = TREE_OPERAND (t, 0);
3202 bool empty_base = false;
3204 /* We can handle a MEM_REF like an INDIRECT_REF, if MEM_REF's second
3205 operand is an integer-zero. Otherwise reject the MEM_REF for now. */
3207 if (TREE_CODE (t) == MEM_REF
3208 && (!TREE_OPERAND (t, 1) || !integer_zerop (TREE_OPERAND (t, 1))))
3210 gcc_assert (ctx->quiet);
3211 *non_constant_p = true;
3212 return t;
3215 /* First try to simplify it directly. */
3216 tree r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), orig_op0,
3217 &empty_base);
3218 if (!r)
3220 /* If that didn't work, evaluate the operand first. */
3221 tree op0 = cxx_eval_constant_expression (ctx, orig_op0,
3222 /*lval*/false, non_constant_p,
3223 overflow_p);
3224 /* Don't VERIFY_CONSTANT here. */
3225 if (*non_constant_p)
3226 return t;
3228 if (!lval && integer_zerop (op0))
3230 if (!ctx->quiet)
3231 error ("dereferencing a null pointer");
3232 *non_constant_p = true;
3233 return t;
3236 r = cxx_fold_indirect_ref (EXPR_LOCATION (t), TREE_TYPE (t), op0,
3237 &empty_base);
3238 if (r == NULL_TREE)
3240 /* We couldn't fold to a constant value. Make sure it's not
3241 something we should have been able to fold. */
3242 tree sub = op0;
3243 STRIP_NOPS (sub);
3244 if (TREE_CODE (sub) == ADDR_EXPR)
3246 gcc_assert (!same_type_ignoring_top_level_qualifiers_p
3247 (TREE_TYPE (TREE_TYPE (sub)), TREE_TYPE (t)));
3248 /* DR 1188 says we don't have to deal with this. */
3249 if (!ctx->quiet)
3250 error ("accessing value of %qE through a %qT glvalue in a "
3251 "constant expression", build_fold_indirect_ref (sub),
3252 TREE_TYPE (t));
3253 *non_constant_p = true;
3254 return t;
3257 if (lval && op0 != orig_op0)
3258 return build1 (INDIRECT_REF, TREE_TYPE (t), op0);
3259 if (!lval)
3260 VERIFY_CONSTANT (t);
3261 return t;
3265 r = cxx_eval_constant_expression (ctx, r,
3266 lval, non_constant_p, overflow_p);
3267 if (*non_constant_p)
3268 return t;
3270 /* If we're pulling out the value of an empty base, just return an empty
3271 CONSTRUCTOR. */
3272 if (empty_base && !lval)
3274 r = build_constructor (TREE_TYPE (t), NULL);
3275 TREE_CONSTANT (r) = true;
3278 return r;
3281 /* Complain about R, a VAR_DECL, not being usable in a constant expression.
3282 Shared between potential_constant_expression and
3283 cxx_eval_constant_expression. */
3285 static void
3286 non_const_var_error (tree r)
3288 tree type = TREE_TYPE (r);
3289 error ("the value of %qD is not usable in a constant "
3290 "expression", r);
3291 /* Avoid error cascade. */
3292 if (DECL_INITIAL (r) == error_mark_node)
3293 return;
3294 if (DECL_DECLARED_CONSTEXPR_P (r))
3295 inform (DECL_SOURCE_LOCATION (r),
3296 "%qD used in its own initializer", r);
3297 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
3299 if (!CP_TYPE_CONST_P (type))
3300 inform (DECL_SOURCE_LOCATION (r),
3301 "%q#D is not const", r);
3302 else if (CP_TYPE_VOLATILE_P (type))
3303 inform (DECL_SOURCE_LOCATION (r),
3304 "%q#D is volatile", r);
3305 else if (!DECL_INITIAL (r)
3306 || !TREE_CONSTANT (DECL_INITIAL (r))
3307 || !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r))
3308 inform (DECL_SOURCE_LOCATION (r),
3309 "%qD was not initialized with a constant "
3310 "expression", r);
3311 else
3312 gcc_unreachable ();
3314 else if (TREE_CODE (type) == REFERENCE_TYPE)
3315 inform (DECL_SOURCE_LOCATION (r),
3316 "%qD was not initialized with a constant "
3317 "expression", r);
3318 else
3320 if (cxx_dialect >= cxx11 && !DECL_DECLARED_CONSTEXPR_P (r))
3321 inform (DECL_SOURCE_LOCATION (r),
3322 "%qD was not declared %<constexpr%>", r);
3323 else
3324 inform (DECL_SOURCE_LOCATION (r),
3325 "%qD does not have integral or enumeration type",
3330 /* Subroutine of cxx_eval_constant_expression.
3331 Like cxx_eval_unary_expression, except for trinary expressions. */
3333 static tree
3334 cxx_eval_trinary_expression (const constexpr_ctx *ctx, tree t,
3335 bool lval,
3336 bool *non_constant_p, bool *overflow_p)
3338 int i;
3339 tree args[3];
3340 tree val;
3342 for (i = 0; i < 3; i++)
3344 args[i] = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, i),
3345 lval,
3346 non_constant_p, overflow_p);
3347 VERIFY_CONSTANT (args[i]);
3350 val = fold_ternary_loc (EXPR_LOCATION (t), TREE_CODE (t), TREE_TYPE (t),
3351 args[0], args[1], args[2]);
3352 if (val == NULL_TREE)
3353 return t;
3354 VERIFY_CONSTANT (val);
3355 return val;
3358 /* True if T was declared in a function declared to be constexpr, and
3359 therefore potentially constant in C++14. */
3361 bool
3362 var_in_constexpr_fn (tree t)
3364 tree ctx = DECL_CONTEXT (t);
3365 return (ctx && TREE_CODE (ctx) == FUNCTION_DECL
3366 && DECL_DECLARED_CONSTEXPR_P (ctx));
3369 /* True if T was declared in a function that might be constexpr: either a
3370 function that was declared constexpr, or a C++17 lambda op(). */
3372 bool
3373 var_in_maybe_constexpr_fn (tree t)
3375 if (cxx_dialect >= cxx17
3376 && DECL_FUNCTION_SCOPE_P (t)
3377 && LAMBDA_FUNCTION_P (DECL_CONTEXT (t)))
3378 return true;
3379 return var_in_constexpr_fn (t);
3382 /* We're assigning INIT to TARGET. In do_build_copy_constructor and
3383 build_over_call we implement trivial copy of a class with tail padding using
3384 assignment of character arrays, which is valid in normal code, but not in
3385 constexpr evaluation. We don't need to worry about clobbering tail padding
3386 in constexpr evaluation, so strip the type punning. */
3388 static void
3389 maybe_simplify_trivial_copy (tree &target, tree &init)
3391 if (TREE_CODE (target) == MEM_REF
3392 && TREE_CODE (init) == MEM_REF
3393 && TREE_TYPE (target) == TREE_TYPE (init)
3394 && TREE_CODE (TREE_TYPE (target)) == ARRAY_TYPE
3395 && TREE_TYPE (TREE_TYPE (target)) == unsigned_char_type_node)
3397 target = build_fold_indirect_ref (TREE_OPERAND (target, 0));
3398 init = build_fold_indirect_ref (TREE_OPERAND (init, 0));
3402 /* Evaluate an INIT_EXPR or MODIFY_EXPR. */
3404 static tree
3405 cxx_eval_store_expression (const constexpr_ctx *ctx, tree t,
3406 bool lval,
3407 bool *non_constant_p, bool *overflow_p)
3409 constexpr_ctx new_ctx = *ctx;
3411 tree init = TREE_OPERAND (t, 1);
3412 if (TREE_CLOBBER_P (init))
3413 /* Just ignore clobbers. */
3414 return void_node;
3416 /* First we figure out where we're storing to. */
3417 tree target = TREE_OPERAND (t, 0);
3419 maybe_simplify_trivial_copy (target, init);
3421 tree type = TREE_TYPE (target);
3422 target = cxx_eval_constant_expression (ctx, target,
3423 true,
3424 non_constant_p, overflow_p);
3425 if (*non_constant_p)
3426 return t;
3428 /* cxx_eval_array_reference for lval = true allows references one past
3429 end of array, because it does not know if it is just taking address
3430 (which is valid), or actual dereference. Here we know it is
3431 a dereference, so diagnose it here. */
3432 for (tree probe = target; probe; )
3434 switch (TREE_CODE (probe))
3436 case ARRAY_REF:
3437 tree nelts, ary;
3438 ary = TREE_OPERAND (probe, 0);
3439 if (TREE_CODE (TREE_TYPE (ary)) == ARRAY_TYPE)
3440 nelts = array_type_nelts_top (TREE_TYPE (ary));
3441 else if (VECTOR_TYPE_P (TREE_TYPE (ary)))
3442 nelts = size_int (TYPE_VECTOR_SUBPARTS (TREE_TYPE (ary)));
3443 else
3444 gcc_unreachable ();
3445 nelts = cxx_eval_constant_expression (ctx, nelts, false,
3446 non_constant_p, overflow_p);
3447 VERIFY_CONSTANT (nelts);
3448 gcc_assert (TREE_CODE (nelts) == INTEGER_CST
3449 && TREE_CODE (TREE_OPERAND (probe, 1)) == INTEGER_CST);
3450 if (wi::to_widest (TREE_OPERAND (probe, 1)) == wi::to_widest (nelts))
3452 diag_array_subscript (ctx, ary, TREE_OPERAND (probe, 1));
3453 *non_constant_p = true;
3454 return t;
3456 /* FALLTHRU */
3458 case BIT_FIELD_REF:
3459 case COMPONENT_REF:
3460 probe = TREE_OPERAND (probe, 0);
3461 continue;
3463 default:
3464 probe = NULL_TREE;
3465 continue;
3469 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (target), type))
3471 /* For initialization of an empty base, the original target will be
3472 *(base*)this, which the above evaluation resolves to the object
3473 argument, which has the derived type rather than the base type. In
3474 this situation, just evaluate the initializer and return, since
3475 there's no actual data to store. */
3476 gcc_assert (is_empty_class (type));
3477 return cxx_eval_constant_expression (ctx, init, false,
3478 non_constant_p, overflow_p);
3481 /* And then find the underlying variable. */
3482 vec<tree,va_gc> *refs = make_tree_vector();
3483 tree object = NULL_TREE;
3484 for (tree probe = target; object == NULL_TREE; )
3486 switch (TREE_CODE (probe))
3488 case BIT_FIELD_REF:
3489 case COMPONENT_REF:
3490 case ARRAY_REF:
3491 vec_safe_push (refs, TREE_OPERAND (probe, 1));
3492 vec_safe_push (refs, TREE_TYPE (probe));
3493 probe = TREE_OPERAND (probe, 0);
3494 break;
3496 default:
3497 object = probe;
3501 /* And then find/build up our initializer for the path to the subobject
3502 we're initializing. */
3503 tree *valp;
3504 if (object == ctx->object && VAR_P (object)
3505 && DECL_NAME (object) && ctx->call == NULL)
3506 /* The variable we're building up an aggregate initializer for is outside
3507 the constant-expression, so don't evaluate the store. We check
3508 DECL_NAME to handle TARGET_EXPR temporaries, which are fair game. */
3509 valp = NULL;
3510 else if (DECL_P (object))
3511 valp = ctx->values->get (object);
3512 else
3513 valp = NULL;
3514 if (!valp)
3516 /* A constant-expression cannot modify objects from outside the
3517 constant-expression. */
3518 if (!ctx->quiet)
3519 error ("modification of %qE is not a constant expression", object);
3520 *non_constant_p = true;
3521 return t;
3523 type = TREE_TYPE (object);
3524 bool no_zero_init = true;
3526 vec<tree,va_gc> *ctors = make_tree_vector ();
3527 while (!refs->is_empty())
3529 if (*valp == NULL_TREE)
3531 *valp = build_constructor (type, NULL);
3532 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3534 else if (TREE_CODE (*valp) == STRING_CST)
3536 /* An array was initialized with a string constant, and now
3537 we're writing into one of its elements. Explode the
3538 single initialization into a set of element
3539 initializations. */
3540 gcc_assert (TREE_CODE (type) == ARRAY_TYPE);
3542 tree string = *valp;
3543 tree elt_type = TREE_TYPE (type);
3544 unsigned chars_per_elt = (TYPE_PRECISION (elt_type)
3545 / TYPE_PRECISION (char_type_node));
3546 unsigned num_elts = TREE_STRING_LENGTH (string) / chars_per_elt;
3547 tree ary_ctor = build_constructor (type, NULL);
3549 vec_safe_reserve (CONSTRUCTOR_ELTS (ary_ctor), num_elts);
3550 for (unsigned ix = 0; ix != num_elts; ix++)
3552 constructor_elt elt =
3554 build_int_cst (size_type_node, ix),
3555 extract_string_elt (string, chars_per_elt, ix)
3557 CONSTRUCTOR_ELTS (ary_ctor)->quick_push (elt);
3560 *valp = ary_ctor;
3563 /* If the value of object is already zero-initialized, any new ctors for
3564 subobjects will also be zero-initialized. */
3565 no_zero_init = CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp);
3567 vec_safe_push (ctors, *valp);
3569 enum tree_code code = TREE_CODE (type);
3570 type = refs->pop();
3571 tree index = refs->pop();
3573 constructor_elt *cep = NULL;
3574 if (code == ARRAY_TYPE)
3576 HOST_WIDE_INT i
3577 = find_array_ctor_elt (*valp, index, /*insert*/true);
3578 gcc_assert (i >= 0);
3579 cep = CONSTRUCTOR_ELT (*valp, i);
3580 gcc_assert (TREE_CODE (cep->index) != RANGE_EXPR);
3582 else
3584 gcc_assert (TREE_CODE (index) == FIELD_DECL);
3586 /* We must keep the CONSTRUCTOR's ELTS in FIELD order.
3587 Usually we meet initializers in that order, but it is
3588 possible for base types to be placed not in program
3589 order. */
3590 tree fields = TYPE_FIELDS (DECL_CONTEXT (index));
3591 unsigned HOST_WIDE_INT idx;
3593 if (code == UNION_TYPE && CONSTRUCTOR_NELTS (*valp)
3594 && CONSTRUCTOR_ELT (*valp, 0)->index != index)
3595 /* Changing active member. */
3596 vec_safe_truncate (CONSTRUCTOR_ELTS (*valp), 0);
3598 for (idx = 0;
3599 vec_safe_iterate (CONSTRUCTOR_ELTS (*valp), idx, &cep);
3600 idx++, fields = DECL_CHAIN (fields))
3602 if (index == cep->index)
3603 goto found;
3605 /* The field we're initializing must be on the field
3606 list. Look to see if it is present before the
3607 field the current ELT initializes. */
3608 for (; fields != cep->index; fields = DECL_CHAIN (fields))
3609 if (index == fields)
3610 goto insert;
3613 /* We fell off the end of the CONSTRUCTOR, so insert a new
3614 entry at the end. */
3615 insert:
3617 constructor_elt ce = { index, NULL_TREE };
3619 vec_safe_insert (CONSTRUCTOR_ELTS (*valp), idx, ce);
3620 cep = CONSTRUCTOR_ELT (*valp, idx);
3622 found:;
3624 valp = &cep->value;
3626 release_tree_vector (refs);
3628 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
3630 /* Create a new CONSTRUCTOR in case evaluation of the initializer
3631 wants to modify it. */
3632 if (*valp == NULL_TREE)
3634 *valp = build_constructor (type, NULL);
3635 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp) = no_zero_init;
3637 else if (TREE_CODE (*valp) == PTRMEM_CST)
3638 *valp = cplus_expand_constant (*valp);
3639 new_ctx.ctor = *valp;
3640 new_ctx.object = target;
3643 init = cxx_eval_constant_expression (&new_ctx, init, false,
3644 non_constant_p, overflow_p);
3645 /* Don't share a CONSTRUCTOR that might be changed later. */
3646 init = unshare_constructor (init);
3647 if (target == object)
3648 /* The hash table might have moved since the get earlier. */
3649 valp = ctx->values->get (object);
3651 if (TREE_CODE (init) == CONSTRUCTOR)
3653 /* An outer ctx->ctor might be pointing to *valp, so replace
3654 its contents. */
3655 CONSTRUCTOR_ELTS (*valp) = CONSTRUCTOR_ELTS (init);
3656 TREE_CONSTANT (*valp) = TREE_CONSTANT (init);
3657 TREE_SIDE_EFFECTS (*valp) = TREE_SIDE_EFFECTS (init);
3658 CONSTRUCTOR_NO_IMPLICIT_ZERO (*valp)
3659 = CONSTRUCTOR_NO_IMPLICIT_ZERO (init);
3661 else
3662 *valp = init;
3664 /* Update TREE_CONSTANT and TREE_SIDE_EFFECTS on enclosing
3665 CONSTRUCTORs, if any. */
3666 tree elt;
3667 unsigned i;
3668 bool c = TREE_CONSTANT (init);
3669 bool s = TREE_SIDE_EFFECTS (init);
3670 if (!c || s)
3671 FOR_EACH_VEC_SAFE_ELT (ctors, i, elt)
3673 if (!c)
3674 TREE_CONSTANT (elt) = false;
3675 if (s)
3676 TREE_SIDE_EFFECTS (elt) = true;
3678 release_tree_vector (ctors);
3680 if (*non_constant_p)
3681 return t;
3682 else if (lval)
3683 return target;
3684 else
3685 return init;
3688 /* Evaluate a ++ or -- expression. */
3690 static tree
3691 cxx_eval_increment_expression (const constexpr_ctx *ctx, tree t,
3692 bool lval,
3693 bool *non_constant_p, bool *overflow_p)
3695 enum tree_code code = TREE_CODE (t);
3696 tree type = TREE_TYPE (t);
3697 tree op = TREE_OPERAND (t, 0);
3698 tree offset = TREE_OPERAND (t, 1);
3699 gcc_assert (TREE_CONSTANT (offset));
3701 /* The operand as an lvalue. */
3702 op = cxx_eval_constant_expression (ctx, op, true,
3703 non_constant_p, overflow_p);
3705 /* The operand as an rvalue. */
3706 tree val
3707 = cxx_eval_constant_expression (ctx, op, false,
3708 non_constant_p, overflow_p);
3709 /* Don't VERIFY_CONSTANT if this might be dealing with a pointer to
3710 a local array in a constexpr function. */
3711 bool ptr = POINTER_TYPE_P (TREE_TYPE (val));
3712 if (!ptr)
3713 VERIFY_CONSTANT (val);
3715 /* The modified value. */
3716 bool inc = (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR);
3717 tree mod;
3718 if (POINTER_TYPE_P (type))
3720 /* The middle end requires pointers to use POINTER_PLUS_EXPR. */
3721 offset = convert_to_ptrofftype (offset);
3722 if (!inc)
3723 offset = fold_build1 (NEGATE_EXPR, TREE_TYPE (offset), offset);
3724 mod = fold_build2 (POINTER_PLUS_EXPR, type, val, offset);
3726 else
3727 mod = fold_build2 (inc ? PLUS_EXPR : MINUS_EXPR, type, val, offset);
3728 if (!ptr)
3729 VERIFY_CONSTANT (mod);
3731 /* Storing the modified value. */
3732 tree store = build2 (MODIFY_EXPR, type, op, mod);
3733 cxx_eval_constant_expression (ctx, store,
3734 true, non_constant_p, overflow_p);
3736 /* And the value of the expression. */
3737 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
3739 /* Prefix ops are lvalues. */
3740 if (lval)
3741 return op;
3742 else
3743 /* But we optimize when the caller wants an rvalue. */
3744 return mod;
3746 else
3747 /* Postfix ops are rvalues. */
3748 return val;
3751 /* Predicates for the meaning of *jump_target. */
3753 static bool
3754 returns (tree *jump_target)
3756 return *jump_target
3757 && (TREE_CODE (*jump_target) == RETURN_EXPR
3758 || (TREE_CODE (*jump_target) == LABEL_DECL
3759 && LABEL_DECL_CDTOR (*jump_target)));
3762 static bool
3763 breaks (tree *jump_target)
3765 return *jump_target
3766 && ((TREE_CODE (*jump_target) == LABEL_DECL
3767 && LABEL_DECL_BREAK (*jump_target))
3768 || TREE_CODE (*jump_target) == EXIT_EXPR);
3771 static bool
3772 continues (tree *jump_target)
3774 return *jump_target
3775 && TREE_CODE (*jump_target) == LABEL_DECL
3776 && LABEL_DECL_CONTINUE (*jump_target);
3779 static bool
3780 switches (tree *jump_target)
3782 return *jump_target
3783 && TREE_CODE (*jump_target) == INTEGER_CST;
3786 /* Subroutine of cxx_eval_statement_list. Determine whether the statement
3787 STMT matches *jump_target. If we're looking for a case label and we see
3788 the default label, note it in ctx->css_state. */
3790 static bool
3791 label_matches (const constexpr_ctx *ctx, tree *jump_target, tree stmt)
3793 switch (TREE_CODE (*jump_target))
3795 case LABEL_DECL:
3796 if (TREE_CODE (stmt) == LABEL_EXPR
3797 && LABEL_EXPR_LABEL (stmt) == *jump_target)
3798 return true;
3799 break;
3801 case INTEGER_CST:
3802 if (TREE_CODE (stmt) == CASE_LABEL_EXPR)
3804 gcc_assert (ctx->css_state != NULL);
3805 if (!CASE_LOW (stmt))
3807 /* default: should appear just once in a SWITCH_EXPR
3808 body (excluding nested SWITCH_EXPR). */
3809 gcc_assert (*ctx->css_state != css_default_seen);
3810 /* When evaluating SWITCH_EXPR body for the second time,
3811 return true for the default: label. */
3812 if (*ctx->css_state == css_default_processing)
3813 return true;
3814 *ctx->css_state = css_default_seen;
3816 else if (CASE_HIGH (stmt))
3818 if (tree_int_cst_le (CASE_LOW (stmt), *jump_target)
3819 && tree_int_cst_le (*jump_target, CASE_HIGH (stmt)))
3820 return true;
3822 else if (tree_int_cst_equal (*jump_target, CASE_LOW (stmt)))
3823 return true;
3825 break;
3827 default:
3828 gcc_unreachable ();
3830 return false;
3833 /* Evaluate a STATEMENT_LIST for side-effects. Handles various jump
3834 semantics, for switch, break, continue, and return. */
3836 static tree
3837 cxx_eval_statement_list (const constexpr_ctx *ctx, tree t,
3838 bool *non_constant_p, bool *overflow_p,
3839 tree *jump_target)
3841 tree_stmt_iterator i;
3842 tree local_target;
3843 /* In a statement-expression we want to return the last value.
3844 For empty statement expression return void_node. */
3845 tree r = void_node;
3846 if (!jump_target)
3848 local_target = NULL_TREE;
3849 jump_target = &local_target;
3851 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
3853 tree stmt = tsi_stmt (i);
3854 if (TREE_CODE (stmt) == DEBUG_BEGIN_STMT)
3855 continue;
3856 r = cxx_eval_constant_expression (ctx, stmt, false,
3857 non_constant_p, overflow_p,
3858 jump_target);
3859 if (*non_constant_p)
3860 break;
3861 if (returns (jump_target) || breaks (jump_target))
3862 break;
3864 return r;
3867 /* Evaluate a LOOP_EXPR for side-effects. Handles break and return
3868 semantics; continue semantics are covered by cxx_eval_statement_list. */
3870 static tree
3871 cxx_eval_loop_expr (const constexpr_ctx *ctx, tree t,
3872 bool *non_constant_p, bool *overflow_p,
3873 tree *jump_target)
3875 constexpr_ctx new_ctx = *ctx;
3877 tree body = TREE_OPERAND (t, 0);
3878 int count = 0;
3881 hash_set<tree> save_exprs;
3882 new_ctx.save_exprs = &save_exprs;
3884 cxx_eval_constant_expression (&new_ctx, body, /*lval*/false,
3885 non_constant_p, overflow_p, jump_target);
3887 /* Forget saved values of SAVE_EXPRs. */
3888 for (hash_set<tree>::iterator iter = save_exprs.begin();
3889 iter != save_exprs.end(); ++iter)
3890 new_ctx.values->remove (*iter);
3891 if (++count >= constexpr_loop_limit)
3893 if (!ctx->quiet)
3894 error_at (EXPR_LOC_OR_LOC (t, input_location),
3895 "%<constexpr%> loop iteration count exceeds limit of %d "
3896 "(use -fconstexpr-loop-limit= to increase the limit)",
3897 constexpr_loop_limit);
3898 *non_constant_p = true;
3899 break;
3902 while (!returns (jump_target)
3903 && !breaks (jump_target)
3904 && !switches (jump_target)
3905 && !*non_constant_p);
3907 if (breaks (jump_target))
3908 *jump_target = NULL_TREE;
3910 return NULL_TREE;
3913 /* Evaluate a SWITCH_EXPR for side-effects. Handles switch and break jump
3914 semantics. */
3916 static tree
3917 cxx_eval_switch_expr (const constexpr_ctx *ctx, tree t,
3918 bool *non_constant_p, bool *overflow_p,
3919 tree *jump_target)
3921 tree cond = TREE_OPERAND (t, 0);
3922 cond = cxx_eval_constant_expression (ctx, cond, false,
3923 non_constant_p, overflow_p);
3924 VERIFY_CONSTANT (cond);
3925 *jump_target = cond;
3927 tree body = TREE_OPERAND (t, 1);
3928 constexpr_ctx new_ctx = *ctx;
3929 constexpr_switch_state css = css_default_not_seen;
3930 new_ctx.css_state = &css;
3931 cxx_eval_constant_expression (&new_ctx, body, false,
3932 non_constant_p, overflow_p, jump_target);
3933 if (switches (jump_target) && css == css_default_seen)
3935 /* If the SWITCH_EXPR body has default: label, process it once again,
3936 this time instructing label_matches to return true for default:
3937 label on switches (jump_target). */
3938 css = css_default_processing;
3939 cxx_eval_constant_expression (&new_ctx, body, false,
3940 non_constant_p, overflow_p, jump_target);
3942 if (breaks (jump_target) || switches (jump_target))
3943 *jump_target = NULL_TREE;
3944 return NULL_TREE;
3947 /* Find the object of TYPE under initialization in CTX. */
3949 static tree
3950 lookup_placeholder (const constexpr_ctx *ctx, bool lval, tree type)
3952 if (!ctx)
3953 return NULL_TREE;
3955 /* We could use ctx->object unconditionally, but using ctx->ctor when we
3956 can is a minor optimization. */
3957 if (!lval && ctx->ctor && same_type_p (TREE_TYPE (ctx->ctor), type))
3958 return ctx->ctor;
3960 if (!ctx->object)
3961 return NULL_TREE;
3963 /* Since an object cannot have a field of its own type, we can search outward
3964 from ctx->object to find the unique containing object of TYPE. */
3965 tree ob = ctx->object;
3966 while (ob)
3968 if (same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (ob), type))
3969 break;
3970 if (handled_component_p (ob))
3971 ob = TREE_OPERAND (ob, 0);
3972 else
3973 ob = NULL_TREE;
3976 return ob;
3979 /* Attempt to reduce the expression T to a constant value.
3980 On failure, issue diagnostic and return error_mark_node. */
3981 /* FIXME unify with c_fully_fold */
3982 /* FIXME overflow_p is too global */
3984 static tree
3985 cxx_eval_constant_expression (const constexpr_ctx *ctx, tree t,
3986 bool lval,
3987 bool *non_constant_p, bool *overflow_p,
3988 tree *jump_target)
3990 constexpr_ctx new_ctx;
3991 tree r = t;
3993 if (jump_target && *jump_target)
3995 /* If we are jumping, ignore all statements/expressions except those
3996 that could have LABEL_EXPR or CASE_LABEL_EXPR in their bodies. */
3997 switch (TREE_CODE (t))
3999 case BIND_EXPR:
4000 case STATEMENT_LIST:
4001 case LOOP_EXPR:
4002 case COND_EXPR:
4003 break;
4004 case LABEL_EXPR:
4005 case CASE_LABEL_EXPR:
4006 if (label_matches (ctx, jump_target, t))
4007 /* Found it. */
4008 *jump_target = NULL_TREE;
4009 return NULL_TREE;
4010 default:
4011 return NULL_TREE;
4014 if (t == error_mark_node)
4016 *non_constant_p = true;
4017 return t;
4019 if (CONSTANT_CLASS_P (t))
4021 if (TREE_OVERFLOW (t))
4023 if (!ctx->quiet)
4024 permerror (input_location, "overflow in constant expression");
4025 if (!flag_permissive || ctx->quiet)
4026 *overflow_p = true;
4029 if (TREE_CODE (t) == INTEGER_CST
4030 && TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE
4031 && !integer_zerop (t))
4033 if (!ctx->quiet)
4034 error ("value %qE of type %qT is not a constant expression",
4035 t, TREE_TYPE (t));
4036 *non_constant_p = true;
4039 return t;
4042 tree_code tcode = TREE_CODE (t);
4043 switch (tcode)
4045 case RESULT_DECL:
4046 if (lval)
4047 return t;
4048 /* We ask for an rvalue for the RESULT_DECL when indirecting
4049 through an invisible reference, or in named return value
4050 optimization. */
4051 return (*ctx->values->get (t));
4053 case VAR_DECL:
4054 if (DECL_HAS_VALUE_EXPR_P (t))
4055 return cxx_eval_constant_expression (ctx, DECL_VALUE_EXPR (t),
4056 lval, non_constant_p, overflow_p);
4057 /* fall through */
4058 case CONST_DECL:
4059 /* We used to not check lval for CONST_DECL, but darwin.c uses
4060 CONST_DECL for aggregate constants. */
4061 if (lval)
4062 return t;
4063 if (COMPLETE_TYPE_P (TREE_TYPE (t))
4064 && is_really_empty_class (TREE_TYPE (t)))
4066 /* If the class is empty, we aren't actually loading anything. */
4067 r = build_constructor (TREE_TYPE (t), NULL);
4068 TREE_CONSTANT (r) = true;
4070 else if (ctx->strict)
4071 r = decl_really_constant_value (t);
4072 else
4073 r = decl_constant_value (t);
4074 if (TREE_CODE (r) == TARGET_EXPR
4075 && TREE_CODE (TARGET_EXPR_INITIAL (r)) == CONSTRUCTOR)
4076 r = TARGET_EXPR_INITIAL (r);
4077 if (VAR_P (r))
4078 if (tree *p = ctx->values->get (r))
4079 if (*p != NULL_TREE)
4080 r = *p;
4081 if (DECL_P (r))
4083 if (!ctx->quiet)
4084 non_const_var_error (r);
4085 *non_constant_p = true;
4087 break;
4089 case DEBUG_BEGIN_STMT:
4090 /* ??? It might be nice to retain this information somehow, so
4091 as to be able to step into a constexpr function call. */
4092 /* Fall through. */
4094 case FUNCTION_DECL:
4095 case TEMPLATE_DECL:
4096 case LABEL_DECL:
4097 case LABEL_EXPR:
4098 case CASE_LABEL_EXPR:
4099 case PREDICT_EXPR:
4100 return t;
4102 case PARM_DECL:
4103 if (lval && TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
4104 /* glvalue use. */;
4105 else if (tree *p = ctx->values->get (r))
4106 r = *p;
4107 else if (lval)
4108 /* Defer in case this is only used for its type. */;
4109 else if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
4110 /* Defer, there's no lvalue->rvalue conversion. */;
4111 else if (COMPLETE_TYPE_P (TREE_TYPE (t))
4112 && is_really_empty_class (TREE_TYPE (t)))
4114 /* If the class is empty, we aren't actually loading anything. */
4115 r = build_constructor (TREE_TYPE (t), NULL);
4116 TREE_CONSTANT (r) = true;
4118 else
4120 if (!ctx->quiet)
4121 error ("%qE is not a constant expression", t);
4122 *non_constant_p = true;
4124 break;
4126 case CALL_EXPR:
4127 case AGGR_INIT_EXPR:
4128 r = cxx_eval_call_expression (ctx, t, lval,
4129 non_constant_p, overflow_p);
4130 break;
4132 case DECL_EXPR:
4134 r = DECL_EXPR_DECL (t);
4135 if (AGGREGATE_TYPE_P (TREE_TYPE (r))
4136 || VECTOR_TYPE_P (TREE_TYPE (r)))
4138 new_ctx = *ctx;
4139 new_ctx.object = r;
4140 new_ctx.ctor = build_constructor (TREE_TYPE (r), NULL);
4141 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4142 new_ctx.values->put (r, new_ctx.ctor);
4143 ctx = &new_ctx;
4146 if (tree init = DECL_INITIAL (r))
4148 init = cxx_eval_constant_expression (ctx, init,
4149 false,
4150 non_constant_p, overflow_p);
4151 /* Don't share a CONSTRUCTOR that might be changed. */
4152 init = unshare_constructor (init);
4153 ctx->values->put (r, init);
4155 else if (ctx == &new_ctx)
4156 /* We gave it a CONSTRUCTOR above. */;
4157 else
4158 ctx->values->put (r, NULL_TREE);
4160 break;
4162 case TARGET_EXPR:
4163 if (!literal_type_p (TREE_TYPE (t)))
4165 if (!ctx->quiet)
4167 error ("temporary of non-literal type %qT in a "
4168 "constant expression", TREE_TYPE (t));
4169 explain_non_literal_class (TREE_TYPE (t));
4171 *non_constant_p = true;
4172 break;
4174 if ((AGGREGATE_TYPE_P (TREE_TYPE (t)) || VECTOR_TYPE_P (TREE_TYPE (t))))
4176 /* We're being expanded without an explicit target, so start
4177 initializing a new object; expansion with an explicit target
4178 strips the TARGET_EXPR before we get here. */
4179 new_ctx = *ctx;
4180 new_ctx.ctor = build_constructor (TREE_TYPE (t), NULL);
4181 CONSTRUCTOR_NO_IMPLICIT_ZERO (new_ctx.ctor) = true;
4182 new_ctx.object = TARGET_EXPR_SLOT (t);
4183 ctx->values->put (new_ctx.object, new_ctx.ctor);
4184 ctx = &new_ctx;
4186 /* Pass false for 'lval' because this indicates
4187 initialization of a temporary. */
4188 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4189 false,
4190 non_constant_p, overflow_p);
4191 if (!*non_constant_p)
4192 /* Adjust the type of the result to the type of the temporary. */
4193 r = adjust_temp_type (TREE_TYPE (t), r);
4194 if (lval)
4196 tree slot = TARGET_EXPR_SLOT (t);
4197 r = unshare_constructor (r);
4198 ctx->values->put (slot, r);
4199 return slot;
4201 break;
4203 case INIT_EXPR:
4204 case MODIFY_EXPR:
4205 gcc_assert (jump_target == NULL || *jump_target == NULL_TREE);
4206 r = cxx_eval_store_expression (ctx, t, lval,
4207 non_constant_p, overflow_p);
4208 break;
4210 case SCOPE_REF:
4211 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4212 lval,
4213 non_constant_p, overflow_p);
4214 break;
4216 case RETURN_EXPR:
4217 if (TREE_OPERAND (t, 0) != NULL_TREE)
4218 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4219 lval,
4220 non_constant_p, overflow_p);
4221 *jump_target = t;
4222 break;
4224 case SAVE_EXPR:
4225 /* Avoid evaluating a SAVE_EXPR more than once. */
4226 if (tree *p = ctx->values->get (t))
4227 r = *p;
4228 else
4230 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), false,
4231 non_constant_p, overflow_p);
4232 ctx->values->put (t, r);
4233 if (ctx->save_exprs)
4234 ctx->save_exprs->add (t);
4236 break;
4238 case NON_LVALUE_EXPR:
4239 case TRY_CATCH_EXPR:
4240 case TRY_BLOCK:
4241 case CLEANUP_POINT_EXPR:
4242 case MUST_NOT_THROW_EXPR:
4243 case EXPR_STMT:
4244 case EH_SPEC_BLOCK:
4245 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4246 lval,
4247 non_constant_p, overflow_p,
4248 jump_target);
4249 break;
4251 case TRY_FINALLY_EXPR:
4252 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4253 non_constant_p, overflow_p,
4254 jump_target);
4255 if (!*non_constant_p)
4256 /* Also evaluate the cleanup. */
4257 cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1), true,
4258 non_constant_p, overflow_p,
4259 jump_target);
4260 break;
4262 /* These differ from cxx_eval_unary_expression in that this doesn't
4263 check for a constant operand or result; an address can be
4264 constant without its operand being, and vice versa. */
4265 case MEM_REF:
4266 case INDIRECT_REF:
4267 r = cxx_eval_indirect_ref (ctx, t, lval,
4268 non_constant_p, overflow_p);
4269 break;
4271 case ADDR_EXPR:
4273 tree oldop = TREE_OPERAND (t, 0);
4274 tree op = cxx_eval_constant_expression (ctx, oldop,
4275 /*lval*/true,
4276 non_constant_p, overflow_p);
4277 /* Don't VERIFY_CONSTANT here. */
4278 if (*non_constant_p)
4279 return t;
4280 gcc_checking_assert (TREE_CODE (op) != CONSTRUCTOR);
4281 /* This function does more aggressive folding than fold itself. */
4282 r = build_fold_addr_expr_with_type (op, TREE_TYPE (t));
4283 if (TREE_CODE (r) == ADDR_EXPR && TREE_OPERAND (r, 0) == oldop)
4284 return t;
4285 break;
4288 case REALPART_EXPR:
4289 case IMAGPART_EXPR:
4290 if (lval)
4292 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0), lval,
4293 non_constant_p, overflow_p);
4294 if (r == error_mark_node)
4296 else if (r == TREE_OPERAND (t, 0))
4297 r = t;
4298 else
4299 r = fold_build1 (TREE_CODE (t), TREE_TYPE (t), r);
4300 break;
4302 /* FALLTHRU */
4303 case CONJ_EXPR:
4304 case FIX_TRUNC_EXPR:
4305 case FLOAT_EXPR:
4306 case NEGATE_EXPR:
4307 case ABS_EXPR:
4308 case BIT_NOT_EXPR:
4309 case TRUTH_NOT_EXPR:
4310 case FIXED_CONVERT_EXPR:
4311 r = cxx_eval_unary_expression (ctx, t, lval,
4312 non_constant_p, overflow_p);
4313 break;
4315 case SIZEOF_EXPR:
4316 r = fold_sizeof_expr (t);
4317 VERIFY_CONSTANT (r);
4318 break;
4320 case COMPOUND_EXPR:
4322 /* check_return_expr sometimes wraps a TARGET_EXPR in a
4323 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
4324 introduced by build_call_a. */
4325 tree op0 = TREE_OPERAND (t, 0);
4326 tree op1 = TREE_OPERAND (t, 1);
4327 STRIP_NOPS (op1);
4328 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
4329 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
4330 r = cxx_eval_constant_expression (ctx, op0,
4331 lval, non_constant_p, overflow_p,
4332 jump_target);
4333 else
4335 /* Check that the LHS is constant and then discard it. */
4336 cxx_eval_constant_expression (ctx, op0,
4337 true, non_constant_p, overflow_p,
4338 jump_target);
4339 if (*non_constant_p)
4340 return t;
4341 op1 = TREE_OPERAND (t, 1);
4342 r = cxx_eval_constant_expression (ctx, op1,
4343 lval, non_constant_p, overflow_p,
4344 jump_target);
4347 break;
4349 case POINTER_PLUS_EXPR:
4350 case POINTER_DIFF_EXPR:
4351 case PLUS_EXPR:
4352 case MINUS_EXPR:
4353 case MULT_EXPR:
4354 case TRUNC_DIV_EXPR:
4355 case CEIL_DIV_EXPR:
4356 case FLOOR_DIV_EXPR:
4357 case ROUND_DIV_EXPR:
4358 case TRUNC_MOD_EXPR:
4359 case CEIL_MOD_EXPR:
4360 case ROUND_MOD_EXPR:
4361 case RDIV_EXPR:
4362 case EXACT_DIV_EXPR:
4363 case MIN_EXPR:
4364 case MAX_EXPR:
4365 case LSHIFT_EXPR:
4366 case RSHIFT_EXPR:
4367 case LROTATE_EXPR:
4368 case RROTATE_EXPR:
4369 case BIT_IOR_EXPR:
4370 case BIT_XOR_EXPR:
4371 case BIT_AND_EXPR:
4372 case TRUTH_XOR_EXPR:
4373 case LT_EXPR:
4374 case LE_EXPR:
4375 case GT_EXPR:
4376 case GE_EXPR:
4377 case EQ_EXPR:
4378 case NE_EXPR:
4379 case UNORDERED_EXPR:
4380 case ORDERED_EXPR:
4381 case UNLT_EXPR:
4382 case UNLE_EXPR:
4383 case UNGT_EXPR:
4384 case UNGE_EXPR:
4385 case UNEQ_EXPR:
4386 case LTGT_EXPR:
4387 case RANGE_EXPR:
4388 case COMPLEX_EXPR:
4389 r = cxx_eval_binary_expression (ctx, t, lval,
4390 non_constant_p, overflow_p);
4391 break;
4393 /* fold can introduce non-IF versions of these; still treat them as
4394 short-circuiting. */
4395 case TRUTH_AND_EXPR:
4396 case TRUTH_ANDIF_EXPR:
4397 r = cxx_eval_logical_expression (ctx, t, boolean_false_node,
4398 boolean_true_node,
4399 lval,
4400 non_constant_p, overflow_p);
4401 break;
4403 case TRUTH_OR_EXPR:
4404 case TRUTH_ORIF_EXPR:
4405 r = cxx_eval_logical_expression (ctx, t, boolean_true_node,
4406 boolean_false_node,
4407 lval,
4408 non_constant_p, overflow_p);
4409 break;
4411 case ARRAY_REF:
4412 r = cxx_eval_array_reference (ctx, t, lval,
4413 non_constant_p, overflow_p);
4414 break;
4416 case COMPONENT_REF:
4417 if (is_overloaded_fn (t))
4419 /* We can only get here in checking mode via
4420 build_non_dependent_expr, because any expression that
4421 calls or takes the address of the function will have
4422 pulled a FUNCTION_DECL out of the COMPONENT_REF. */
4423 gcc_checking_assert (ctx->quiet || errorcount);
4424 *non_constant_p = true;
4425 return t;
4427 r = cxx_eval_component_reference (ctx, t, lval,
4428 non_constant_p, overflow_p);
4429 break;
4431 case BIT_FIELD_REF:
4432 r = cxx_eval_bit_field_ref (ctx, t, lval,
4433 non_constant_p, overflow_p);
4434 break;
4436 case COND_EXPR:
4437 if (jump_target && *jump_target)
4439 /* When jumping to a label, the label might be either in the
4440 then or else blocks, so process then block first in skipping
4441 mode first, and if we are still in the skipping mode at its end,
4442 process the else block too. */
4443 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 1),
4444 lval, non_constant_p, overflow_p,
4445 jump_target);
4446 if (*jump_target)
4447 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 2),
4448 lval, non_constant_p, overflow_p,
4449 jump_target);
4450 break;
4452 r = cxx_eval_conditional_expression (ctx, t, lval,
4453 non_constant_p, overflow_p,
4454 jump_target);
4455 break;
4456 case VEC_COND_EXPR:
4457 r = cxx_eval_vector_conditional_expression (ctx, t, non_constant_p,
4458 overflow_p);
4459 break;
4461 case CONSTRUCTOR:
4462 if (TREE_CONSTANT (t))
4464 /* Don't re-process a constant CONSTRUCTOR, but do fold it to
4465 VECTOR_CST if applicable. */
4466 /* FIXME after GCC 6 branches, make the verify unconditional. */
4467 if (CHECKING_P)
4468 verify_constructor_flags (t);
4469 else
4470 recompute_constructor_flags (t);
4471 if (TREE_CONSTANT (t))
4472 return fold (t);
4474 r = cxx_eval_bare_aggregate (ctx, t, lval,
4475 non_constant_p, overflow_p);
4476 break;
4478 case VEC_INIT_EXPR:
4479 /* We can get this in a defaulted constructor for a class with a
4480 non-static data member of array type. Either the initializer will
4481 be NULL, meaning default-initialization, or it will be an lvalue
4482 or xvalue of the same type, meaning direct-initialization from the
4483 corresponding member. */
4484 r = cxx_eval_vec_init (ctx, t, lval,
4485 non_constant_p, overflow_p);
4486 break;
4488 case FMA_EXPR:
4489 case VEC_PERM_EXPR:
4490 r = cxx_eval_trinary_expression (ctx, t, lval,
4491 non_constant_p, overflow_p);
4492 break;
4494 case CONVERT_EXPR:
4495 case VIEW_CONVERT_EXPR:
4496 case NOP_EXPR:
4497 case UNARY_PLUS_EXPR:
4499 tree oldop = TREE_OPERAND (t, 0);
4501 tree op = cxx_eval_constant_expression (ctx, oldop,
4502 lval,
4503 non_constant_p, overflow_p);
4504 if (*non_constant_p)
4505 return t;
4506 tree type = TREE_TYPE (t);
4507 if (TREE_CODE (op) == PTRMEM_CST
4508 && !TYPE_PTRMEM_P (type))
4509 op = cplus_expand_constant (op);
4510 if (TREE_CODE (op) == PTRMEM_CST && tcode == NOP_EXPR)
4512 if (same_type_ignoring_top_level_qualifiers_p (type,
4513 TREE_TYPE (op))
4514 || can_convert_qual (type, op))
4515 return cp_fold_convert (type, op);
4516 else
4518 if (!ctx->quiet)
4519 error_at (EXPR_LOC_OR_LOC (t, input_location),
4520 "a reinterpret_cast is not a constant expression");
4521 *non_constant_p = true;
4522 return t;
4526 if (POINTER_TYPE_P (type) && TREE_CODE (op) == INTEGER_CST)
4528 if (integer_zerop (op))
4530 if (TREE_CODE (type) == REFERENCE_TYPE)
4532 if (!ctx->quiet)
4533 error_at (EXPR_LOC_OR_LOC (t, input_location),
4534 "dereferencing a null pointer");
4535 *non_constant_p = true;
4536 return t;
4538 else if (TREE_CODE (TREE_TYPE (op)) == POINTER_TYPE)
4540 tree from = TREE_TYPE (op);
4542 if (!can_convert (type, from, tf_none))
4544 if (!ctx->quiet)
4545 error_at (EXPR_LOC_OR_LOC (t, input_location),
4546 "conversion of %qT null pointer to %qT "
4547 "is not a constant expression",
4548 from, type);
4549 *non_constant_p = true;
4550 return t;
4554 else
4556 /* This detects for example:
4557 reinterpret_cast<void*>(sizeof 0)
4559 if (!ctx->quiet)
4560 error_at (EXPR_LOC_OR_LOC (t, input_location),
4561 "%<reinterpret_cast<%T>(%E)%> is not "
4562 "a constant expression",
4563 type, op);
4564 *non_constant_p = true;
4565 return t;
4568 if (op == oldop && tcode != UNARY_PLUS_EXPR)
4569 /* We didn't fold at the top so we could check for ptr-int
4570 conversion. */
4571 return fold (t);
4572 if (tcode == UNARY_PLUS_EXPR)
4573 r = fold_convert (TREE_TYPE (t), op);
4574 else
4575 r = fold_build1 (tcode, type, op);
4576 /* Conversion of an out-of-range value has implementation-defined
4577 behavior; the language considers it different from arithmetic
4578 overflow, which is undefined. */
4579 if (TREE_OVERFLOW_P (r) && !TREE_OVERFLOW_P (op))
4580 TREE_OVERFLOW (r) = false;
4582 break;
4584 case EMPTY_CLASS_EXPR:
4585 /* This is good enough for a function argument that might not get
4586 used, and they can't do anything with it, so just return it. */
4587 return t;
4589 case STATEMENT_LIST:
4590 new_ctx = *ctx;
4591 new_ctx.ctor = new_ctx.object = NULL_TREE;
4592 return cxx_eval_statement_list (&new_ctx, t,
4593 non_constant_p, overflow_p, jump_target);
4595 case BIND_EXPR:
4596 return cxx_eval_constant_expression (ctx, BIND_EXPR_BODY (t),
4597 lval,
4598 non_constant_p, overflow_p,
4599 jump_target);
4601 case PREINCREMENT_EXPR:
4602 case POSTINCREMENT_EXPR:
4603 case PREDECREMENT_EXPR:
4604 case POSTDECREMENT_EXPR:
4605 return cxx_eval_increment_expression (ctx, t,
4606 lval, non_constant_p, overflow_p);
4608 case LAMBDA_EXPR:
4609 case NEW_EXPR:
4610 case VEC_NEW_EXPR:
4611 case DELETE_EXPR:
4612 case VEC_DELETE_EXPR:
4613 case THROW_EXPR:
4614 case MODOP_EXPR:
4615 /* GCC internal stuff. */
4616 case VA_ARG_EXPR:
4617 case OBJ_TYPE_REF:
4618 case NON_DEPENDENT_EXPR:
4619 case BASELINK:
4620 case OFFSET_REF:
4621 if (!ctx->quiet)
4622 error_at (EXPR_LOC_OR_LOC (t, input_location),
4623 "expression %qE is not a constant expression", t);
4624 *non_constant_p = true;
4625 break;
4627 case PLACEHOLDER_EXPR:
4628 /* Use of the value or address of the current object. */
4629 if (tree ctor = lookup_placeholder (ctx, lval, TREE_TYPE (t)))
4630 return cxx_eval_constant_expression (ctx, ctor, lval,
4631 non_constant_p, overflow_p);
4632 /* A placeholder without a referent. We can get here when
4633 checking whether NSDMIs are noexcept, or in massage_init_elt;
4634 just say it's non-constant for now. */
4635 gcc_assert (ctx->quiet);
4636 *non_constant_p = true;
4637 break;
4639 case EXIT_EXPR:
4641 tree cond = TREE_OPERAND (t, 0);
4642 cond = cxx_eval_constant_expression (ctx, cond, /*lval*/false,
4643 non_constant_p, overflow_p);
4644 VERIFY_CONSTANT (cond);
4645 if (integer_nonzerop (cond))
4646 *jump_target = t;
4648 break;
4650 case GOTO_EXPR:
4651 *jump_target = TREE_OPERAND (t, 0);
4652 gcc_assert (breaks (jump_target) || continues (jump_target)
4653 /* Allow for jumping to a cdtor_label. */
4654 || returns (jump_target));
4655 break;
4657 case LOOP_EXPR:
4658 cxx_eval_loop_expr (ctx, t,
4659 non_constant_p, overflow_p, jump_target);
4660 break;
4662 case SWITCH_EXPR:
4663 cxx_eval_switch_expr (ctx, t,
4664 non_constant_p, overflow_p, jump_target);
4665 break;
4667 case REQUIRES_EXPR:
4668 /* It's possible to get a requires-expression in a constant
4669 expression. For example:
4671 template<typename T> concept bool C() {
4672 return requires (T t) { t; };
4675 template<typename T> requires !C<T>() void f(T);
4677 Normalization leaves f with the associated constraint
4678 '!requires (T t) { ... }' which is not transformed into
4679 a constraint. */
4680 if (!processing_template_decl)
4681 return evaluate_constraint_expression (t, NULL_TREE);
4682 else
4683 *non_constant_p = true;
4684 return t;
4686 case ANNOTATE_EXPR:
4687 r = cxx_eval_constant_expression (ctx, TREE_OPERAND (t, 0),
4688 lval,
4689 non_constant_p, overflow_p,
4690 jump_target);
4691 break;
4693 default:
4694 if (STATEMENT_CODE_P (TREE_CODE (t)))
4696 /* This function doesn't know how to deal with pre-genericize
4697 statements; this can only happen with statement-expressions,
4698 so for now just fail. */
4699 if (!ctx->quiet)
4700 error_at (EXPR_LOCATION (t),
4701 "statement is not a constant expression");
4703 else
4704 internal_error ("unexpected expression %qE of kind %s", t,
4705 get_tree_code_name (TREE_CODE (t)));
4706 *non_constant_p = true;
4707 break;
4710 if (r == error_mark_node)
4711 *non_constant_p = true;
4713 if (*non_constant_p)
4714 return t;
4715 else
4716 return r;
4719 static tree
4720 cxx_eval_outermost_constant_expr (tree t, bool allow_non_constant,
4721 bool strict = true, tree object = NULL_TREE)
4723 auto_timevar time (TV_CONSTEXPR);
4725 bool non_constant_p = false;
4726 bool overflow_p = false;
4727 hash_map<tree,tree> map;
4729 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL,
4730 allow_non_constant, strict };
4732 tree type = initialized_type (t);
4733 tree r = t;
4734 if (AGGREGATE_TYPE_P (type) || VECTOR_TYPE_P (type))
4736 /* In C++14 an NSDMI can participate in aggregate initialization,
4737 and can refer to the address of the object being initialized, so
4738 we need to pass in the relevant VAR_DECL if we want to do the
4739 evaluation in a single pass. The evaluation will dynamically
4740 update ctx.values for the VAR_DECL. We use the same strategy
4741 for C++11 constexpr constructors that refer to the object being
4742 initialized. */
4743 ctx.ctor = build_constructor (type, NULL);
4744 CONSTRUCTOR_NO_IMPLICIT_ZERO (ctx.ctor) = true;
4745 if (!object)
4747 if (TREE_CODE (t) == TARGET_EXPR)
4748 object = TARGET_EXPR_SLOT (t);
4749 else if (TREE_CODE (t) == AGGR_INIT_EXPR)
4750 object = AGGR_INIT_EXPR_SLOT (t);
4752 ctx.object = object;
4753 if (object)
4754 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4755 (type, TREE_TYPE (object)));
4756 if (object && DECL_P (object))
4757 map.put (object, ctx.ctor);
4758 if (TREE_CODE (r) == TARGET_EXPR)
4759 /* Avoid creating another CONSTRUCTOR when we expand the
4760 TARGET_EXPR. */
4761 r = TARGET_EXPR_INITIAL (r);
4764 r = cxx_eval_constant_expression (&ctx, r,
4765 false, &non_constant_p, &overflow_p);
4767 verify_constant (r, allow_non_constant, &non_constant_p, &overflow_p);
4769 /* Mutable logic is a bit tricky: we want to allow initialization of
4770 constexpr variables with mutable members, but we can't copy those
4771 members to another constexpr variable. */
4772 if (TREE_CODE (r) == CONSTRUCTOR
4773 && CONSTRUCTOR_MUTABLE_POISON (r))
4775 if (!allow_non_constant)
4776 error ("%qE is not a constant expression because it refers to "
4777 "mutable subobjects of %qT", t, type);
4778 non_constant_p = true;
4781 if (TREE_CODE (r) == CONSTRUCTOR
4782 && CONSTRUCTOR_NO_IMPLICIT_ZERO (r))
4784 if (!allow_non_constant)
4785 error ("%qE is not a constant expression because it refers to "
4786 "an incompletely initialized variable", t);
4787 TREE_CONSTANT (r) = false;
4788 non_constant_p = true;
4791 /* Technically we should check this for all subexpressions, but that
4792 runs into problems with our internal representation of pointer
4793 subtraction and the 5.19 rules are still in flux. */
4794 if (CONVERT_EXPR_CODE_P (TREE_CODE (r))
4795 && ARITHMETIC_TYPE_P (TREE_TYPE (r))
4796 && TREE_CODE (TREE_OPERAND (r, 0)) == ADDR_EXPR)
4798 if (!allow_non_constant)
4799 error ("conversion from pointer type %qT "
4800 "to arithmetic type %qT in a constant expression",
4801 TREE_TYPE (TREE_OPERAND (r, 0)), TREE_TYPE (r));
4802 non_constant_p = true;
4805 if (!non_constant_p && overflow_p)
4806 non_constant_p = true;
4808 /* Unshare the result unless it's a CONSTRUCTOR in which case it's already
4809 unshared. */
4810 bool should_unshare = true;
4811 if (r == t || TREE_CODE (r) == CONSTRUCTOR)
4812 should_unshare = false;
4814 if (non_constant_p && !allow_non_constant)
4815 return error_mark_node;
4816 else if (non_constant_p && TREE_CONSTANT (r))
4818 /* This isn't actually constant, so unset TREE_CONSTANT. */
4819 if (EXPR_P (r))
4820 r = copy_node (r);
4821 else if (TREE_CODE (r) == CONSTRUCTOR)
4822 r = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (r), r);
4823 else
4824 r = build_nop (TREE_TYPE (r), r);
4825 TREE_CONSTANT (r) = false;
4827 else if (non_constant_p || r == t)
4828 return t;
4830 if (should_unshare)
4831 r = unshare_expr (r);
4833 if (TREE_CODE (r) == CONSTRUCTOR && CLASS_TYPE_P (TREE_TYPE (r)))
4835 if (TREE_CODE (t) == TARGET_EXPR
4836 && TARGET_EXPR_INITIAL (t) == r)
4837 return t;
4838 else
4840 r = get_target_expr (r);
4841 TREE_CONSTANT (r) = true;
4842 return r;
4845 else
4846 return r;
4849 /* Returns true if T is a valid subexpression of a constant expression,
4850 even if it isn't itself a constant expression. */
4852 bool
4853 is_sub_constant_expr (tree t)
4855 bool non_constant_p = false;
4856 bool overflow_p = false;
4857 hash_map <tree, tree> map;
4859 constexpr_ctx ctx = { NULL, &map, NULL, NULL, NULL, NULL, true, true };
4861 cxx_eval_constant_expression (&ctx, t, false, &non_constant_p,
4862 &overflow_p);
4863 return !non_constant_p && !overflow_p;
4866 /* If T represents a constant expression returns its reduced value.
4867 Otherwise return error_mark_node. If T is dependent, then
4868 return NULL. */
4870 tree
4871 cxx_constant_value (tree t, tree decl)
4873 return cxx_eval_outermost_constant_expr (t, false, true, decl);
4876 /* Helper routine for fold_simple function. Either return simplified
4877 expression T, otherwise NULL_TREE.
4878 In contrast to cp_fully_fold, and to maybe_constant_value, we try to fold
4879 even if we are within template-declaration. So be careful on call, as in
4880 such case types can be undefined. */
4882 static tree
4883 fold_simple_1 (tree t)
4885 tree op1;
4886 enum tree_code code = TREE_CODE (t);
4888 switch (code)
4890 case INTEGER_CST:
4891 case REAL_CST:
4892 case VECTOR_CST:
4893 case FIXED_CST:
4894 case COMPLEX_CST:
4895 return t;
4897 case SIZEOF_EXPR:
4898 return fold_sizeof_expr (t);
4900 case ABS_EXPR:
4901 case CONJ_EXPR:
4902 case REALPART_EXPR:
4903 case IMAGPART_EXPR:
4904 case NEGATE_EXPR:
4905 case BIT_NOT_EXPR:
4906 case TRUTH_NOT_EXPR:
4907 case NOP_EXPR:
4908 case VIEW_CONVERT_EXPR:
4909 case CONVERT_EXPR:
4910 case FLOAT_EXPR:
4911 case FIX_TRUNC_EXPR:
4912 case FIXED_CONVERT_EXPR:
4913 case ADDR_SPACE_CONVERT_EXPR:
4915 op1 = TREE_OPERAND (t, 0);
4917 t = const_unop (code, TREE_TYPE (t), op1);
4918 if (!t)
4919 return NULL_TREE;
4921 if (CONVERT_EXPR_CODE_P (code)
4922 && TREE_OVERFLOW_P (t) && !TREE_OVERFLOW_P (op1))
4923 TREE_OVERFLOW (t) = false;
4924 return t;
4926 default:
4927 return NULL_TREE;
4931 /* If T is a simple constant expression, returns its simplified value.
4932 Otherwise returns T. In contrast to maybe_constant_value do we
4933 simplify only few operations on constant-expressions, and we don't
4934 try to simplify constexpressions. */
4936 tree
4937 fold_simple (tree t)
4939 tree r = NULL_TREE;
4940 if (processing_template_decl)
4941 return t;
4943 r = fold_simple_1 (t);
4944 if (!r)
4945 r = t;
4947 return r;
4950 /* If T is a constant expression, returns its reduced value.
4951 Otherwise, if T does not have TREE_CONSTANT set, returns T.
4952 Otherwise, returns a version of T without TREE_CONSTANT. */
4954 static GTY((deletable)) hash_map<tree, tree> *cv_cache;
4956 tree
4957 maybe_constant_value (tree t, tree decl)
4959 tree r;
4961 if (!is_nondependent_constant_expression (t))
4963 if (TREE_OVERFLOW_P (t))
4965 t = build_nop (TREE_TYPE (t), t);
4966 TREE_CONSTANT (t) = false;
4968 return t;
4970 else if (CONSTANT_CLASS_P (t))
4971 /* No caching or evaluation needed. */
4972 return t;
4974 if (cv_cache == NULL)
4975 cv_cache = hash_map<tree, tree>::create_ggc (101);
4976 if (tree *cached = cv_cache->get (t))
4977 return *cached;
4979 r = cxx_eval_outermost_constant_expr (t, true, true, decl);
4980 gcc_checking_assert (r == t
4981 || CONVERT_EXPR_P (t)
4982 || TREE_CODE (t) == VIEW_CONVERT_EXPR
4983 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
4984 || !cp_tree_equal (r, t));
4985 cv_cache->put (t, r);
4986 return r;
4989 /* Dispose of the whole CV_CACHE. */
4991 static void
4992 clear_cv_cache (void)
4994 if (cv_cache != NULL)
4995 cv_cache->empty ();
4998 /* Dispose of the whole CV_CACHE and FOLD_CACHE. */
5000 void
5001 clear_cv_and_fold_caches (void)
5003 clear_cv_cache ();
5004 clear_fold_cache ();
5007 /* Like maybe_constant_value but first fully instantiate the argument.
5009 Note: this is equivalent to instantiate_non_dependent_expr_sfinae
5010 (t, tf_none) followed by maybe_constant_value but is more efficient,
5011 because calls instantiation_dependent_expression_p and
5012 potential_constant_expression at most once. */
5014 tree
5015 fold_non_dependent_expr (tree t)
5017 if (t == NULL_TREE)
5018 return NULL_TREE;
5020 /* If we're in a template, but T isn't value dependent, simplify
5021 it. We're supposed to treat:
5023 template <typename T> void f(T[1 + 1]);
5024 template <typename T> void f(T[2]);
5026 as two declarations of the same function, for example. */
5027 if (processing_template_decl)
5029 if (is_nondependent_constant_expression (t))
5031 processing_template_decl_sentinel s;
5032 t = instantiate_non_dependent_expr_internal (t, tf_none);
5034 if (type_unknown_p (t)
5035 || BRACE_ENCLOSED_INITIALIZER_P (t))
5037 if (TREE_OVERFLOW_P (t))
5039 t = build_nop (TREE_TYPE (t), t);
5040 TREE_CONSTANT (t) = false;
5042 return t;
5045 tree r = cxx_eval_outermost_constant_expr (t, true, true, NULL_TREE);
5046 /* cp_tree_equal looks through NOPs, so allow them. */
5047 gcc_checking_assert (r == t
5048 || CONVERT_EXPR_P (t)
5049 || TREE_CODE (t) == VIEW_CONVERT_EXPR
5050 || (TREE_CONSTANT (t) && !TREE_CONSTANT (r))
5051 || !cp_tree_equal (r, t));
5052 return r;
5054 else if (TREE_OVERFLOW_P (t))
5056 t = build_nop (TREE_TYPE (t), t);
5057 TREE_CONSTANT (t) = false;
5059 return t;
5062 return maybe_constant_value (t);
5065 /* Like maybe_constant_value, but returns a CONSTRUCTOR directly, rather
5066 than wrapped in a TARGET_EXPR. */
5068 tree
5069 maybe_constant_init (tree t, tree decl)
5071 if (!t)
5072 return t;
5073 if (TREE_CODE (t) == EXPR_STMT)
5074 t = TREE_OPERAND (t, 0);
5075 if (TREE_CODE (t) == CONVERT_EXPR
5076 && VOID_TYPE_P (TREE_TYPE (t)))
5077 t = TREE_OPERAND (t, 0);
5078 if (TREE_CODE (t) == INIT_EXPR)
5079 t = TREE_OPERAND (t, 1);
5080 if (TREE_CODE (t) == TARGET_EXPR)
5081 t = TARGET_EXPR_INITIAL (t);
5082 if (!is_nondependent_static_init_expression (t))
5083 /* Don't try to evaluate it. */;
5084 else if (CONSTANT_CLASS_P (t))
5085 /* No evaluation needed. */;
5086 else
5087 t = cxx_eval_outermost_constant_expr (t, true, false, decl);
5088 if (TREE_CODE (t) == TARGET_EXPR)
5090 tree init = TARGET_EXPR_INITIAL (t);
5091 if (TREE_CODE (init) == CONSTRUCTOR)
5092 t = init;
5094 return t;
5097 #if 0
5098 /* FIXME see ADDR_EXPR section in potential_constant_expression_1. */
5099 /* Return true if the object referred to by REF has automatic or thread
5100 local storage. */
5102 enum { ck_ok, ck_bad, ck_unknown };
5103 static int
5104 check_automatic_or_tls (tree ref)
5106 machine_mode mode;
5107 poly_int64 bitsize, bitpos;
5108 tree offset;
5109 int volatilep = 0, unsignedp = 0;
5110 tree decl = get_inner_reference (ref, &bitsize, &bitpos, &offset,
5111 &mode, &unsignedp, &volatilep, false);
5112 duration_kind dk;
5114 /* If there isn't a decl in the middle, we don't know the linkage here,
5115 and this isn't a constant expression anyway. */
5116 if (!DECL_P (decl))
5117 return ck_unknown;
5118 dk = decl_storage_duration (decl);
5119 return (dk == dk_auto || dk == dk_thread) ? ck_bad : ck_ok;
5121 #endif
5123 /* Return true if T denotes a potentially constant expression. Issue
5124 diagnostic as appropriate under control of FLAGS. If WANT_RVAL is true,
5125 an lvalue-rvalue conversion is implied. If NOW is true, we want to
5126 consider the expression in the current context, independent of constexpr
5127 substitution.
5129 C++0x [expr.const] used to say
5131 6 An expression is a potential constant expression if it is
5132 a constant expression where all occurrences of function
5133 parameters are replaced by arbitrary constant expressions
5134 of the appropriate type.
5136 2 A conditional expression is a constant expression unless it
5137 involves one of the following as a potentially evaluated
5138 subexpression (3.2), but subexpressions of logical AND (5.14),
5139 logical OR (5.15), and conditional (5.16) operations that are
5140 not evaluated are not considered. */
5142 static bool
5143 potential_constant_expression_1 (tree t, bool want_rval, bool strict, bool now,
5144 tsubst_flags_t flags)
5146 #define RECUR(T,RV) \
5147 potential_constant_expression_1 ((T), (RV), strict, now, flags)
5149 enum { any = false, rval = true };
5150 int i;
5151 tree tmp;
5153 if (t == error_mark_node)
5154 return false;
5155 if (t == NULL_TREE)
5156 return true;
5157 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
5158 if (TREE_THIS_VOLATILE (t) && !DECL_P (t))
5160 if (flags & tf_error)
5161 error_at (loc, "expression %qE has side-effects", t);
5162 return false;
5164 if (CONSTANT_CLASS_P (t))
5165 return true;
5166 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_TYPED)
5167 && TREE_TYPE (t) == error_mark_node)
5168 return false;
5170 switch (TREE_CODE (t))
5172 case FUNCTION_DECL:
5173 case BASELINK:
5174 case TEMPLATE_DECL:
5175 case OVERLOAD:
5176 case TEMPLATE_ID_EXPR:
5177 case LABEL_DECL:
5178 case LABEL_EXPR:
5179 case CASE_LABEL_EXPR:
5180 case CONST_DECL:
5181 case SIZEOF_EXPR:
5182 case ALIGNOF_EXPR:
5183 case OFFSETOF_EXPR:
5184 case NOEXCEPT_EXPR:
5185 case TEMPLATE_PARM_INDEX:
5186 case TRAIT_EXPR:
5187 case IDENTIFIER_NODE:
5188 case USERDEF_LITERAL:
5189 /* We can see a FIELD_DECL in a pointer-to-member expression. */
5190 case FIELD_DECL:
5191 case RESULT_DECL:
5192 case USING_DECL:
5193 case USING_STMT:
5194 case PLACEHOLDER_EXPR:
5195 case BREAK_STMT:
5196 case CONTINUE_STMT:
5197 case REQUIRES_EXPR:
5198 case STATIC_ASSERT:
5199 case DEBUG_BEGIN_STMT:
5200 return true;
5202 case PARM_DECL:
5203 if (now)
5205 if (flags & tf_error)
5206 error ("%qE is not a constant expression", t);
5207 return false;
5209 return true;
5211 case AGGR_INIT_EXPR:
5212 case CALL_EXPR:
5213 /* -- an invocation of a function other than a constexpr function
5214 or a constexpr constructor. */
5216 tree fun = get_function_named_in_call (t);
5217 const int nargs = call_expr_nargs (t);
5218 i = 0;
5220 if (fun == NULL_TREE)
5222 /* Reset to allow the function to continue past the end
5223 of the block below. Otherwise return early. */
5224 bool bail = true;
5226 if (TREE_CODE (t) == CALL_EXPR
5227 && CALL_EXPR_FN (t) == NULL_TREE)
5228 switch (CALL_EXPR_IFN (t))
5230 /* These should be ignored, they are optimized away from
5231 constexpr functions. */
5232 case IFN_UBSAN_NULL:
5233 case IFN_UBSAN_BOUNDS:
5234 case IFN_UBSAN_VPTR:
5235 case IFN_FALLTHROUGH:
5236 return true;
5238 case IFN_ADD_OVERFLOW:
5239 case IFN_SUB_OVERFLOW:
5240 case IFN_MUL_OVERFLOW:
5241 case IFN_LAUNDER:
5242 bail = false;
5244 default:
5245 break;
5248 if (bail)
5250 /* fold_call_expr can't do anything with IFN calls. */
5251 if (flags & tf_error)
5252 error_at (loc, "call to internal function %qE", t);
5253 return false;
5257 if (fun && is_overloaded_fn (fun))
5259 if (TREE_CODE (fun) == FUNCTION_DECL)
5261 if (builtin_valid_in_constant_expr_p (fun))
5262 return true;
5263 if (!DECL_DECLARED_CONSTEXPR_P (fun)
5264 /* Allow any built-in function; if the expansion
5265 isn't constant, we'll deal with that then. */
5266 && !is_builtin_fn (fun))
5268 if (flags & tf_error)
5270 error_at (loc, "call to non-%<constexpr%> function %qD",
5271 fun);
5272 explain_invalid_constexpr_fn (fun);
5274 return false;
5276 /* A call to a non-static member function takes the address
5277 of the object as the first argument. But in a constant
5278 expression the address will be folded away, so look
5279 through it now. */
5280 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fun)
5281 && !DECL_CONSTRUCTOR_P (fun))
5283 tree x = get_nth_callarg (t, 0);
5284 if (is_this_parameter (x))
5285 return true;
5286 /* Don't require an immediately constant value, as
5287 constexpr substitution might not use the value. */
5288 bool sub_now = false;
5289 if (!potential_constant_expression_1 (x, rval, strict,
5290 sub_now, flags))
5291 return false;
5292 i = 1;
5295 else
5297 if (!RECUR (fun, true))
5298 return false;
5299 fun = get_first_fn (fun);
5301 /* Skip initial arguments to base constructors. */
5302 if (DECL_BASE_CONSTRUCTOR_P (fun))
5303 i = num_artificial_parms_for (fun);
5304 fun = DECL_ORIGIN (fun);
5306 else if (fun)
5308 if (RECUR (fun, rval))
5309 /* Might end up being a constant function pointer. */;
5310 else
5311 return false;
5313 for (; i < nargs; ++i)
5315 tree x = get_nth_callarg (t, i);
5316 /* In a template, reference arguments haven't been converted to
5317 REFERENCE_TYPE and we might not even know if the parameter
5318 is a reference, so accept lvalue constants too. */
5319 bool rv = processing_template_decl ? any : rval;
5320 /* Don't require an immediately constant value, as constexpr
5321 substitution might not use the value of the argument. */
5322 bool sub_now = false;
5323 if (!potential_constant_expression_1 (x, rv, strict,
5324 sub_now, flags))
5325 return false;
5327 return true;
5330 case NON_LVALUE_EXPR:
5331 /* -- an lvalue-to-rvalue conversion (4.1) unless it is applied to
5332 -- an lvalue of integral type that refers to a non-volatile
5333 const variable or static data member initialized with
5334 constant expressions, or
5336 -- an lvalue of literal type that refers to non-volatile
5337 object defined with constexpr, or that refers to a
5338 sub-object of such an object; */
5339 return RECUR (TREE_OPERAND (t, 0), rval);
5341 case VAR_DECL:
5342 if (DECL_HAS_VALUE_EXPR_P (t))
5344 if (now && is_normal_capture_proxy (t))
5346 /* -- in a lambda-expression, a reference to this or to a
5347 variable with automatic storage duration defined outside that
5348 lambda-expression, where the reference would be an
5349 odr-use. */
5350 if (flags & tf_error)
5352 tree cap = DECL_CAPTURED_VARIABLE (t);
5353 error ("lambda capture of %qE is not a constant expression",
5354 cap);
5355 if (!want_rval && decl_constant_var_p (cap))
5356 inform (input_location, "because it is used as a glvalue");
5358 return false;
5360 return RECUR (DECL_VALUE_EXPR (t), rval);
5362 if (want_rval
5363 && !var_in_maybe_constexpr_fn (t)
5364 && !type_dependent_expression_p (t)
5365 && !decl_maybe_constant_var_p (t)
5366 && (strict
5367 || !CP_TYPE_CONST_NON_VOLATILE_P (TREE_TYPE (t))
5368 || (DECL_INITIAL (t)
5369 && !DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t)))
5370 && COMPLETE_TYPE_P (TREE_TYPE (t))
5371 && !is_really_empty_class (TREE_TYPE (t)))
5373 if (flags & tf_error)
5374 non_const_var_error (t);
5375 return false;
5377 return true;
5379 case NOP_EXPR:
5380 case CONVERT_EXPR:
5381 case VIEW_CONVERT_EXPR:
5382 /* -- a reinterpret_cast. FIXME not implemented, and this rule
5383 may change to something more specific to type-punning (DR 1312). */
5385 tree from = TREE_OPERAND (t, 0);
5386 if (POINTER_TYPE_P (TREE_TYPE (t))
5387 && TREE_CODE (from) == INTEGER_CST
5388 && !integer_zerop (from))
5390 if (flags & tf_error)
5391 error_at (loc, "reinterpret_cast from integer to pointer");
5392 return false;
5394 return (RECUR (from, TREE_CODE (t) != VIEW_CONVERT_EXPR));
5397 case ADDRESSOF_EXPR:
5398 /* This is like ADDR_EXPR, except it won't form pointer-to-member. */
5399 t = TREE_OPERAND (t, 0);
5400 goto handle_addr_expr;
5402 case ADDR_EXPR:
5403 /* -- a unary operator & that is applied to an lvalue that
5404 designates an object with thread or automatic storage
5405 duration; */
5406 t = TREE_OPERAND (t, 0);
5408 if (TREE_CODE (t) == OFFSET_REF && PTRMEM_OK_P (t))
5409 /* A pointer-to-member constant. */
5410 return true;
5412 handle_addr_expr:
5413 #if 0
5414 /* FIXME adjust when issue 1197 is fully resolved. For now don't do
5415 any checking here, as we might dereference the pointer later. If
5416 we remove this code, also remove check_automatic_or_tls. */
5417 i = check_automatic_or_tls (t);
5418 if (i == ck_ok)
5419 return true;
5420 if (i == ck_bad)
5422 if (flags & tf_error)
5423 error ("address-of an object %qE with thread local or "
5424 "automatic storage is not a constant expression", t);
5425 return false;
5427 #endif
5428 return RECUR (t, any);
5430 case REALPART_EXPR:
5431 case IMAGPART_EXPR:
5432 case COMPONENT_REF:
5433 case BIT_FIELD_REF:
5434 case ARROW_EXPR:
5435 case OFFSET_REF:
5436 /* -- a class member access unless its postfix-expression is
5437 of literal type or of pointer to literal type. */
5438 /* This test would be redundant, as it follows from the
5439 postfix-expression being a potential constant expression. */
5440 if (type_unknown_p (t))
5441 return true;
5442 return RECUR (TREE_OPERAND (t, 0), want_rval);
5444 case EXPR_PACK_EXPANSION:
5445 return RECUR (PACK_EXPANSION_PATTERN (t), want_rval);
5447 case INDIRECT_REF:
5449 tree x = TREE_OPERAND (t, 0);
5450 STRIP_NOPS (x);
5451 if (is_this_parameter (x) && !is_capture_proxy (x))
5453 if (!var_in_maybe_constexpr_fn (x))
5455 if (flags & tf_error)
5456 error_at (loc, "use of %<this%> in a constant expression");
5457 return false;
5459 return true;
5461 return RECUR (x, rval);
5464 case STATEMENT_LIST:
5466 tree_stmt_iterator i;
5467 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
5469 if (!RECUR (tsi_stmt (i), any))
5470 return false;
5472 return true;
5474 break;
5476 case MODIFY_EXPR:
5477 if (cxx_dialect < cxx14)
5478 goto fail;
5479 if (!RECUR (TREE_OPERAND (t, 0), any))
5480 return false;
5481 if (!RECUR (TREE_OPERAND (t, 1), rval))
5482 return false;
5483 return true;
5485 case MODOP_EXPR:
5486 if (cxx_dialect < cxx14)
5487 goto fail;
5488 if (!RECUR (TREE_OPERAND (t, 0), rval))
5489 return false;
5490 if (!RECUR (TREE_OPERAND (t, 2), rval))
5491 return false;
5492 return true;
5494 case DO_STMT:
5495 if (!RECUR (DO_COND (t), rval))
5496 return false;
5497 if (!RECUR (DO_BODY (t), any))
5498 return false;
5499 return true;
5501 case FOR_STMT:
5502 if (!RECUR (FOR_INIT_STMT (t), any))
5503 return false;
5504 if (!RECUR (FOR_COND (t), rval))
5505 return false;
5506 if (!RECUR (FOR_EXPR (t), any))
5507 return false;
5508 if (!RECUR (FOR_BODY (t), any))
5509 return false;
5510 return true;
5512 case RANGE_FOR_STMT:
5513 if (!RECUR (RANGE_FOR_EXPR (t), any))
5514 return false;
5515 if (!RECUR (RANGE_FOR_BODY (t), any))
5516 return false;
5517 return true;
5519 case WHILE_STMT:
5520 if (!RECUR (WHILE_COND (t), rval))
5521 return false;
5522 if (!RECUR (WHILE_BODY (t), any))
5523 return false;
5524 return true;
5526 case SWITCH_STMT:
5527 if (!RECUR (SWITCH_STMT_COND (t), rval))
5528 return false;
5529 /* FIXME we don't check SWITCH_STMT_BODY currently, because even
5530 unreachable labels would be checked. */
5531 return true;
5533 case STMT_EXPR:
5534 return RECUR (STMT_EXPR_STMT (t), rval);
5536 case LAMBDA_EXPR:
5537 if (cxx_dialect >= cxx17)
5538 /* In C++17 lambdas can be constexpr, don't give up yet. */
5539 return true;
5540 else if (flags & tf_error)
5541 error_at (loc, "lambda-expression is not a constant expression "
5542 "before C++17");
5543 return false;
5545 case DYNAMIC_CAST_EXPR:
5546 case PSEUDO_DTOR_EXPR:
5547 case NEW_EXPR:
5548 case VEC_NEW_EXPR:
5549 case DELETE_EXPR:
5550 case VEC_DELETE_EXPR:
5551 case THROW_EXPR:
5552 case OMP_PARALLEL:
5553 case OMP_TASK:
5554 case OMP_FOR:
5555 case OMP_DISTRIBUTE:
5556 case OMP_TASKLOOP:
5557 case OMP_TEAMS:
5558 case OMP_TARGET_DATA:
5559 case OMP_TARGET:
5560 case OMP_SECTIONS:
5561 case OMP_ORDERED:
5562 case OMP_CRITICAL:
5563 case OMP_SINGLE:
5564 case OMP_SECTION:
5565 case OMP_MASTER:
5566 case OMP_TASKGROUP:
5567 case OMP_TARGET_UPDATE:
5568 case OMP_TARGET_ENTER_DATA:
5569 case OMP_TARGET_EXIT_DATA:
5570 case OMP_ATOMIC:
5571 case OMP_ATOMIC_READ:
5572 case OMP_ATOMIC_CAPTURE_OLD:
5573 case OMP_ATOMIC_CAPTURE_NEW:
5574 case OACC_PARALLEL:
5575 case OACC_KERNELS:
5576 case OACC_DATA:
5577 case OACC_HOST_DATA:
5578 case OACC_LOOP:
5579 case OACC_CACHE:
5580 case OACC_DECLARE:
5581 case OACC_ENTER_DATA:
5582 case OACC_EXIT_DATA:
5583 case OACC_UPDATE:
5584 /* GCC internal stuff. */
5585 case VA_ARG_EXPR:
5586 case OBJ_TYPE_REF:
5587 case TRANSACTION_EXPR:
5588 case ASM_EXPR:
5589 case AT_ENCODE_EXPR:
5590 fail:
5591 if (flags & tf_error)
5592 error_at (loc, "expression %qE is not a constant expression", t);
5593 return false;
5595 case TYPEID_EXPR:
5596 /* -- a typeid expression whose operand is of polymorphic
5597 class type; */
5599 tree e = TREE_OPERAND (t, 0);
5600 if (!TYPE_P (e) && !type_dependent_expression_p (e)
5601 && TYPE_POLYMORPHIC_P (TREE_TYPE (e)))
5603 if (flags & tf_error)
5604 error_at (loc, "typeid-expression is not a constant expression "
5605 "because %qE is of polymorphic type", e);
5606 return false;
5608 return true;
5611 case POINTER_DIFF_EXPR:
5612 case MINUS_EXPR:
5613 want_rval = true;
5614 goto binary;
5616 case LT_EXPR:
5617 case LE_EXPR:
5618 case GT_EXPR:
5619 case GE_EXPR:
5620 case EQ_EXPR:
5621 case NE_EXPR:
5622 want_rval = true;
5623 goto binary;
5625 case PREINCREMENT_EXPR:
5626 case POSTINCREMENT_EXPR:
5627 case PREDECREMENT_EXPR:
5628 case POSTDECREMENT_EXPR:
5629 if (cxx_dialect < cxx14)
5630 goto fail;
5631 goto unary;
5633 case BIT_NOT_EXPR:
5634 /* A destructor. */
5635 if (TYPE_P (TREE_OPERAND (t, 0)))
5636 return true;
5637 /* fall through. */
5639 case CONJ_EXPR:
5640 case SAVE_EXPR:
5641 case FIX_TRUNC_EXPR:
5642 case FLOAT_EXPR:
5643 case NEGATE_EXPR:
5644 case ABS_EXPR:
5645 case TRUTH_NOT_EXPR:
5646 case FIXED_CONVERT_EXPR:
5647 case UNARY_PLUS_EXPR:
5648 case UNARY_LEFT_FOLD_EXPR:
5649 case UNARY_RIGHT_FOLD_EXPR:
5650 unary:
5651 return RECUR (TREE_OPERAND (t, 0), rval);
5653 case CAST_EXPR:
5654 case CONST_CAST_EXPR:
5655 case STATIC_CAST_EXPR:
5656 case REINTERPRET_CAST_EXPR:
5657 case IMPLICIT_CONV_EXPR:
5658 if (cxx_dialect < cxx11
5659 && !dependent_type_p (TREE_TYPE (t))
5660 && !INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t)))
5661 /* In C++98, a conversion to non-integral type can't be part of a
5662 constant expression. */
5664 if (flags & tf_error)
5665 error_at (loc,
5666 "cast to non-integral type %qT in a constant expression",
5667 TREE_TYPE (t));
5668 return false;
5671 return (RECUR (TREE_OPERAND (t, 0),
5672 TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE));
5674 case BIND_EXPR:
5675 return RECUR (BIND_EXPR_BODY (t), want_rval);
5677 case CLEANUP_POINT_EXPR:
5678 case MUST_NOT_THROW_EXPR:
5679 case TRY_CATCH_EXPR:
5680 case TRY_BLOCK:
5681 case EH_SPEC_BLOCK:
5682 case EXPR_STMT:
5683 case PAREN_EXPR:
5684 case NON_DEPENDENT_EXPR:
5685 /* For convenience. */
5686 case RETURN_EXPR:
5687 case LOOP_EXPR:
5688 case EXIT_EXPR:
5689 return RECUR (TREE_OPERAND (t, 0), want_rval);
5691 case DECL_EXPR:
5692 tmp = DECL_EXPR_DECL (t);
5693 if (VAR_P (tmp) && !DECL_ARTIFICIAL (tmp))
5695 if (TREE_STATIC (tmp))
5697 if (flags & tf_error)
5698 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5699 "%<static%> in %<constexpr%> context", tmp);
5700 return false;
5702 else if (CP_DECL_THREAD_LOCAL_P (tmp))
5704 if (flags & tf_error)
5705 error_at (DECL_SOURCE_LOCATION (tmp), "%qD declared "
5706 "%<thread_local%> in %<constexpr%> context", tmp);
5707 return false;
5709 else if (!DECL_NONTRIVIALLY_INITIALIZED_P (tmp))
5711 if (flags & tf_error)
5712 error_at (DECL_SOURCE_LOCATION (tmp), "uninitialized "
5713 "variable %qD in %<constexpr%> context", tmp);
5714 return false;
5717 return RECUR (tmp, want_rval);
5719 case TRY_FINALLY_EXPR:
5720 return (RECUR (TREE_OPERAND (t, 0), want_rval)
5721 && RECUR (TREE_OPERAND (t, 1), any));
5723 case SCOPE_REF:
5724 return RECUR (TREE_OPERAND (t, 1), want_rval);
5726 case TARGET_EXPR:
5727 if (!literal_type_p (TREE_TYPE (t)))
5729 if (flags & tf_error)
5731 error_at (loc, "temporary of non-literal type %qT in a "
5732 "constant expression", TREE_TYPE (t));
5733 explain_non_literal_class (TREE_TYPE (t));
5735 return false;
5737 /* FALLTHRU */
5738 case INIT_EXPR:
5739 return RECUR (TREE_OPERAND (t, 1), rval);
5741 case CONSTRUCTOR:
5743 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (t);
5744 constructor_elt *ce;
5745 for (i = 0; vec_safe_iterate (v, i, &ce); ++i)
5746 if (!RECUR (ce->value, want_rval))
5747 return false;
5748 return true;
5751 case TREE_LIST:
5753 gcc_assert (TREE_PURPOSE (t) == NULL_TREE
5754 || DECL_P (TREE_PURPOSE (t)));
5755 if (!RECUR (TREE_VALUE (t), want_rval))
5756 return false;
5757 if (TREE_CHAIN (t) == NULL_TREE)
5758 return true;
5759 return RECUR (TREE_CHAIN (t), want_rval);
5762 case TRUNC_DIV_EXPR:
5763 case CEIL_DIV_EXPR:
5764 case FLOOR_DIV_EXPR:
5765 case ROUND_DIV_EXPR:
5766 case TRUNC_MOD_EXPR:
5767 case CEIL_MOD_EXPR:
5768 case ROUND_MOD_EXPR:
5770 tree denom = TREE_OPERAND (t, 1);
5771 if (!RECUR (denom, rval))
5772 return false;
5773 /* We can't call cxx_eval_outermost_constant_expr on an expression
5774 that hasn't been through instantiate_non_dependent_expr yet. */
5775 if (!processing_template_decl)
5776 denom = cxx_eval_outermost_constant_expr (denom, true);
5777 if (integer_zerop (denom))
5779 if (flags & tf_error)
5780 error ("division by zero is not a constant expression");
5781 return false;
5783 else
5785 want_rval = true;
5786 return RECUR (TREE_OPERAND (t, 0), want_rval);
5790 case COMPOUND_EXPR:
5792 /* check_return_expr sometimes wraps a TARGET_EXPR in a
5793 COMPOUND_EXPR; don't get confused. Also handle EMPTY_CLASS_EXPR
5794 introduced by build_call_a. */
5795 tree op0 = TREE_OPERAND (t, 0);
5796 tree op1 = TREE_OPERAND (t, 1);
5797 STRIP_NOPS (op1);
5798 if ((TREE_CODE (op0) == TARGET_EXPR && op1 == TARGET_EXPR_SLOT (op0))
5799 || TREE_CODE (op1) == EMPTY_CLASS_EXPR)
5800 return RECUR (op0, want_rval);
5801 else
5802 goto binary;
5805 /* If the first operand is the non-short-circuit constant, look at
5806 the second operand; otherwise we only care about the first one for
5807 potentiality. */
5808 case TRUTH_AND_EXPR:
5809 case TRUTH_ANDIF_EXPR:
5810 tmp = boolean_true_node;
5811 goto truth;
5812 case TRUTH_OR_EXPR:
5813 case TRUTH_ORIF_EXPR:
5814 tmp = boolean_false_node;
5815 truth:
5817 tree op = TREE_OPERAND (t, 0);
5818 if (!RECUR (op, rval))
5819 return false;
5820 if (!processing_template_decl)
5821 op = cxx_eval_outermost_constant_expr (op, true);
5822 if (tree_int_cst_equal (op, tmp))
5823 return RECUR (TREE_OPERAND (t, 1), rval);
5824 else
5825 return true;
5828 case PLUS_EXPR:
5829 case MULT_EXPR:
5830 case POINTER_PLUS_EXPR:
5831 case RDIV_EXPR:
5832 case EXACT_DIV_EXPR:
5833 case MIN_EXPR:
5834 case MAX_EXPR:
5835 case LSHIFT_EXPR:
5836 case RSHIFT_EXPR:
5837 case LROTATE_EXPR:
5838 case RROTATE_EXPR:
5839 case BIT_IOR_EXPR:
5840 case BIT_XOR_EXPR:
5841 case BIT_AND_EXPR:
5842 case TRUTH_XOR_EXPR:
5843 case UNORDERED_EXPR:
5844 case ORDERED_EXPR:
5845 case UNLT_EXPR:
5846 case UNLE_EXPR:
5847 case UNGT_EXPR:
5848 case UNGE_EXPR:
5849 case UNEQ_EXPR:
5850 case LTGT_EXPR:
5851 case RANGE_EXPR:
5852 case COMPLEX_EXPR:
5853 want_rval = true;
5854 /* Fall through. */
5855 case ARRAY_REF:
5856 case ARRAY_RANGE_REF:
5857 case MEMBER_REF:
5858 case DOTSTAR_EXPR:
5859 case MEM_REF:
5860 case BINARY_LEFT_FOLD_EXPR:
5861 case BINARY_RIGHT_FOLD_EXPR:
5862 binary:
5863 for (i = 0; i < 2; ++i)
5864 if (!RECUR (TREE_OPERAND (t, i), want_rval))
5865 return false;
5866 return true;
5868 case FMA_EXPR:
5869 case VEC_PERM_EXPR:
5870 for (i = 0; i < 3; ++i)
5871 if (!RECUR (TREE_OPERAND (t, i), true))
5872 return false;
5873 return true;
5875 case COND_EXPR:
5876 if (COND_EXPR_IS_VEC_DELETE (t))
5878 if (flags & tf_error)
5879 error_at (loc, "%<delete[]%> is not a constant expression");
5880 return false;
5882 /* Fall through. */
5883 case IF_STMT:
5884 case VEC_COND_EXPR:
5885 /* If the condition is a known constant, we know which of the legs we
5886 care about; otherwise we only require that the condition and
5887 either of the legs be potentially constant. */
5888 tmp = TREE_OPERAND (t, 0);
5889 if (!RECUR (tmp, rval))
5890 return false;
5891 if (!processing_template_decl)
5892 tmp = cxx_eval_outermost_constant_expr (tmp, true);
5893 if (integer_zerop (tmp))
5894 return RECUR (TREE_OPERAND (t, 2), want_rval);
5895 else if (TREE_CODE (tmp) == INTEGER_CST)
5896 return RECUR (TREE_OPERAND (t, 1), want_rval);
5897 for (i = 1; i < 3; ++i)
5898 if (potential_constant_expression_1 (TREE_OPERAND (t, i),
5899 want_rval, strict, now, tf_none))
5900 return true;
5901 if (flags & tf_error)
5902 error_at (loc, "expression %qE is not a constant expression", t);
5903 return false;
5905 case VEC_INIT_EXPR:
5906 if (VEC_INIT_EXPR_IS_CONSTEXPR (t))
5907 return true;
5908 if (flags & tf_error)
5910 error_at (loc, "non-constant array initialization");
5911 diagnose_non_constexpr_vec_init (t);
5913 return false;
5915 case TYPE_DECL:
5916 case TAG_DEFN:
5917 /* We can see these in statement-expressions. */
5918 return true;
5920 case CLEANUP_STMT:
5921 case EMPTY_CLASS_EXPR:
5922 case PREDICT_EXPR:
5923 return false;
5925 case GOTO_EXPR:
5927 tree *target = &TREE_OPERAND (t, 0);
5928 /* Gotos representing break and continue are OK. */
5929 if (breaks (target) || continues (target))
5930 return true;
5931 if (flags & tf_error)
5932 error_at (loc, "%<goto%> is not a constant expression");
5933 return false;
5936 case ANNOTATE_EXPR:
5937 return RECUR (TREE_OPERAND (t, 0), rval);
5939 default:
5940 if (objc_is_property_ref (t))
5941 return false;
5943 sorry ("unexpected AST of kind %s", get_tree_code_name (TREE_CODE (t)));
5944 gcc_unreachable ();
5945 return false;
5947 #undef RECUR
5950 /* The main entry point to the above. */
5952 bool
5953 potential_constant_expression (tree t)
5955 return potential_constant_expression_1 (t, false, true, false, tf_none);
5958 /* As above, but require a constant rvalue. */
5960 bool
5961 potential_rvalue_constant_expression (tree t)
5963 return potential_constant_expression_1 (t, true, true, false, tf_none);
5966 /* Like above, but complain about non-constant expressions. */
5968 bool
5969 require_potential_constant_expression (tree t)
5971 return potential_constant_expression_1 (t, false, true, false, tf_warning_or_error);
5974 /* Cross product of the above. */
5976 bool
5977 require_potential_rvalue_constant_expression (tree t)
5979 return potential_constant_expression_1 (t, true, true, false, tf_warning_or_error);
5982 /* Like potential_constant_expression, but don't consider possible constexpr
5983 substitution of the current function. That is, PARM_DECL qualifies under
5984 potential_constant_expression, but not here.
5986 This is basically what you can check when any actual constant values might
5987 be value-dependent. */
5989 bool
5990 is_constant_expression (tree t)
5992 return potential_constant_expression_1 (t, false, true, true, tf_none);
5995 /* Like above, but complain about non-constant expressions. */
5997 bool
5998 require_constant_expression (tree t)
6000 return potential_constant_expression_1 (t, false, true, true,
6001 tf_warning_or_error);
6004 /* Like is_constant_expression, but allow const variables that are not allowed
6005 under constexpr rules. */
6007 bool
6008 is_static_init_expression (tree t)
6010 return potential_constant_expression_1 (t, false, false, true, tf_none);
6013 /* Returns true if T is a potential constant expression that is not
6014 instantiation-dependent, and therefore a candidate for constant folding even
6015 in a template. */
6017 bool
6018 is_nondependent_constant_expression (tree t)
6020 return (!type_unknown_p (t)
6021 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6022 && is_constant_expression (t)
6023 && !instantiation_dependent_expression_p (t));
6026 /* Returns true if T is a potential static initializer expression that is not
6027 instantiation-dependent. */
6029 bool
6030 is_nondependent_static_init_expression (tree t)
6032 return (!type_unknown_p (t)
6033 && !BRACE_ENCLOSED_INITIALIZER_P (t)
6034 && is_static_init_expression (t)
6035 && !instantiation_dependent_expression_p (t));
6038 /* Finalize constexpr processing after parsing. */
6040 void
6041 fini_constexpr (void)
6043 /* The contexpr call and fundef copies tables are no longer needed. */
6044 constexpr_call_table = NULL;
6045 fundef_copies_table = NULL;
6048 #include "gt-cp-constexpr.h"