[PATCH] D147531: [clang] Reset track of immediate function context when entering new function
Mariya Podchishchaeva via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 4 07:52:52 PDT 2023
Fznamznon updated this revision to Diff 510807.
Fznamznon added a comment.
Add a comment, rebase, fix format
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D147531/new/
https://reviews.llvm.org/D147531
Files:
clang/docs/ReleaseNotes.rst
clang/lib/Sema/SemaDecl.cpp
clang/test/CodeGenCXX/cxx20-consteval-crash.cpp
Index: clang/test/CodeGenCXX/cxx20-consteval-crash.cpp
===================================================================
--- clang/test/CodeGenCXX/cxx20-consteval-crash.cpp
+++ clang/test/CodeGenCXX/cxx20-consteval-crash.cpp
@@ -116,3 +116,23 @@
}
} // namespace GH60166
+
+namespace GH61142 {
+
+template <typename T>
+struct Test {
+ constexpr static void g() {
+ f();
+ }
+ consteval static void f() {};
+};
+
+consteval void a() {
+ Test<int>::g();
+}
+
+void b() {
+ Test<int>::g();
+}
+
+} // namespace GH61142
Index: clang/lib/Sema/SemaDecl.cpp
===================================================================
--- clang/lib/Sema/SemaDecl.cpp
+++ clang/lib/Sema/SemaDecl.cpp
@@ -15175,6 +15175,16 @@
FD->isConsteval() ? ExpressionEvaluationContext::ImmediateFunctionContext
: ExprEvalContexts.back().Context);
+ // Each ExpressionEvaluationContextRecord also keeps track on whether the
+ // context is nested in an immediate function context, so smaller contexts
+ // that appear inside immediate functions (like variable initializers) are
+ // considered to be inside an immediate function context even though by
+ // themselves they are not immediate function contexts. But when the new
+ // function is entered, we need to reset this tracking, since entered function
+ // might be not an immediate one and therefore everything inside of it needs
+ // different handling.
+ ExprEvalContexts.back().InImmediateFunctionContext = FD->isConsteval();
+
// Check for defining attributes before the check for redefinition.
if (const auto *Attr = FD->getAttr<AliasAttr>()) {
Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0;
Index: clang/docs/ReleaseNotes.rst
===================================================================
--- clang/docs/ReleaseNotes.rst
+++ clang/docs/ReleaseNotes.rst
@@ -271,6 +271,9 @@
(`#60887 <https://github.com/llvm/llvm-project/issues/60887>`_)
- Fix incorrect merging of lambdas across modules.
(`#60985 <https://github.com/llvm/llvm-project/issues/60985>`_)
+- Fix assertion hit when template consteval function appears in nested
+ consteval/constexpr call chain.
+ (`#61142 <https://github.com/llvm/llvm-project/issues/61142>`_)
Bug Fixes to Compiler Builtins
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147531.510807.patch
Type: text/x-patch
Size: 2302 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230404/5c6e3581/attachment.bin>
More information about the cfe-commits
mailing list