[PATCH] D152132: [clang][Interp] Fix lifetime diagnostics for dead records
Timm Bäder via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Aug 20 02:53:46 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG39236e9c60e5: [clang][Interp] Fix lifetime diagnostics for dead records (authored by tbaeder).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152132/new/
https://reviews.llvm.org/D152132
Files:
clang/lib/AST/Interp/Descriptor.cpp
clang/lib/AST/Interp/InterpBlock.h
clang/lib/AST/Interp/InterpState.cpp
clang/test/AST/Interp/lifetimes.cpp
Index: clang/test/AST/Interp/lifetimes.cpp
===================================================================
--- /dev/null
+++ clang/test/AST/Interp/lifetimes.cpp
@@ -0,0 +1,24 @@
+// RUN: %clang_cc1 -fexperimental-new-constant-interpreter -verify %s
+// RUN: %clang_cc1 -verify=ref %s
+
+struct Foo {
+ int a;
+};
+
+constexpr int dead1() { // expected-error {{never produces a constant expression}}
+
+ Foo *F2 = nullptr;
+ {
+ Foo F{12}; // expected-note 2{{declared here}}
+ F2 = &F;
+ } // Ends lifetime of F.
+
+ return F2->a; // expected-note 2{{read of variable whose lifetime has ended}} \
+ // ref-note {{read of object outside its lifetime is not allowed in a constant expression}}
+}
+static_assert(dead1() == 1, ""); // expected-error {{not an integral constant expression}} \
+ // expected-note {{in call to}} \
+ // ref-error {{not an integral constant expression}} \
+ // ref-note {{in call to}} \
+
+
Index: clang/lib/AST/Interp/InterpState.cpp
===================================================================
--- clang/lib/AST/Interp/InterpState.cpp
+++ clang/lib/AST/Interp/InterpState.cpp
@@ -58,9 +58,13 @@
reinterpret_cast<char *>(std::malloc(sizeof(DeadBlock) + Size));
auto *D = new (Memory) DeadBlock(DeadBlocks, B);
- // Move data from one block to another.
- if (Desc->MoveFn)
+ // Move data and metadata from the old block to the new (dead)block.
+ if (Desc->MoveFn) {
Desc->MoveFn(B, B->data(), D->data(), Desc);
+ if (Desc->getMetadataSize() > 0)
+ std::memcpy(D->rawData(), B->rawData(), Desc->getMetadataSize());
+ }
+
} else {
// Free storage, if necessary.
if (Desc->DtorFn)
Index: clang/lib/AST/Interp/InterpBlock.h
===================================================================
--- clang/lib/AST/Interp/InterpBlock.h
+++ clang/lib/AST/Interp/InterpBlock.h
@@ -156,6 +156,7 @@
/// Returns a pointer to the stored data.
std::byte *data() { return B.data(); }
+ std::byte *rawData() { return B.rawData(); }
private:
friend class Block;
Index: clang/lib/AST/Interp/Descriptor.cpp
===================================================================
--- clang/lib/AST/Interp/Descriptor.cpp
+++ clang/lib/AST/Interp/Descriptor.cpp
@@ -170,9 +170,8 @@
const Descriptor *D) {
for (const auto &F : D->ElemRecord->fields()) {
auto FieldOff = F.Offset;
- auto FieldDesc = F.Desc;
+ auto *FieldDesc = F.Desc;
- *(reinterpret_cast<Descriptor **>(Dst + FieldOff) - 1) = FieldDesc;
if (auto Fn = FieldDesc->MoveFn)
Fn(B, Src + FieldOff, Dst + FieldOff, FieldDesc);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D152132.551810.patch
Type: text/x-patch
Size: 2755 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230820/c20e6c0a/attachment.bin>
More information about the cfe-commits
mailing list