[PATCH] D131202: [Clang] Fix capture of values initialized by bitfields
Corentin Jabot via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 4 14:52:02 PDT 2022
cor3ntin updated this revision to Diff 450138.
cor3ntin added a comment.
Herald added a reviewer: jdoerfert.
Herald added a subscriber: sstefan1.
Better approach: revert the whole thing.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131202/new/
https://reviews.llvm.org/D131202
Files:
clang/include/clang/Basic/DiagnosticSemaKinds.td
clang/lib/Sema/SemaExpr.cpp
clang/test/SemaCXX/cxx1z-decomposition.cpp
Index: clang/test/SemaCXX/cxx1z-decomposition.cpp
===================================================================
--- clang/test/SemaCXX/cxx1z-decomposition.cpp
+++ clang/test/SemaCXX/cxx1z-decomposition.cpp
@@ -84,9 +84,9 @@
(void)[outerbit1]{}; // expected-error {{'outerbit1' cannot be captured because it does not have automatic storage duration}}
- auto [bit, var] = S2{1, 1}; // expected-note 4{{'bit' declared here}}
+ auto [bit, var] = S2{1, 1}; // expected-note 2{{'bit' declared here}}
- (void)[&bit] { // expected-error {{cannot capture a bit-field by reference}} \
+ (void)[&bit] { // expected-error {{non-const reference cannot bind to bit-field 'a'}} \
// expected-warning {{C++20}}
return bit;
};
@@ -96,7 +96,7 @@
};
(void)[&] { return bit + u; } // expected-error {{unnamed variable cannot be implicitly captured in a lambda expression}} \
- // expected-error {{cannot capture a bit-field by reference}} \
+ // expected-error {{non-const reference cannot bind to bit-field 'a'}} \
// expected-warning {{C++20}}
();
}
Index: clang/lib/Sema/SemaExpr.cpp
===================================================================
--- clang/lib/Sema/SemaExpr.cpp
+++ clang/lib/Sema/SemaExpr.cpp
@@ -18533,32 +18533,8 @@
} else {
ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
}
- // C++20 : [expr.prim.lambda.capture]p12
- // A bit-field or a member of an anonymous union shall
- // not be captured by reference.
- MemberExpr *ME = nullptr;
- BindingDecl *BD = nullptr;
- if (auto *V = dyn_cast<VarDecl>(Var)) {
- if (V->getInit())
- ME = dyn_cast<MemberExpr>(V->getInit()->IgnoreImplicit());
- } else if ((BD = dyn_cast<BindingDecl>(Var))) {
- ME = dyn_cast_or_null<MemberExpr>(BD->getBinding());
- }
-
- // Capturing a bitfield by reference is not allowed except in OpenMP.
- if (ByRef && ME &&
- (isa<BindingDecl>(Var) || !S.LangOpts.OpenMP ||
- !S.isOpenMPCapturedDecl(Var))) {
- const auto *FD = dyn_cast_or_null<FieldDecl>(ME->getMemberDecl());
- if (FD && FD->isBitField()) {
- if (BuildAndDiagnose) {
- S.Diag(Loc, diag::err_bitfield_capture_by_ref) << Var;
- S.Diag(Var->getLocation(), diag::note_entity_declared_at) << Var;
- S.Diag(FD->getLocation(), diag::note_bitfield_decl) << FD;
- }
- Invalid = true;
- }
- }
+
+ BindingDecl *BD = dyn_cast<BindingDecl>(Var);
// FIXME: We should support capturing structured bindings in OpenMP.
if (!Invalid && BD && S.LangOpts.OpenMP) {
if (BuildAndDiagnose) {
Index: clang/include/clang/Basic/DiagnosticSemaKinds.td
===================================================================
--- clang/include/clang/Basic/DiagnosticSemaKinds.td
+++ clang/include/clang/Basic/DiagnosticSemaKinds.td
@@ -9013,8 +9013,6 @@
def err_reference_to_local_in_enclosing_context : Error<
"reference to local %select{variable|binding}1 %0 declared in enclosing "
"%select{%3|block literal|lambda expression|context}2">;
-def err_bitfield_capture_by_ref : Error<
- "cannot capture a bit-field by reference">;
def err_capture_binding_openmp : Error<
"capturing a structured binding is not yet supported in OpenMP">;
def ext_capture_binding : ExtWarn<
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131202.450138.patch
Type: text/x-patch
Size: 3377 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220804/a20f2f69/attachment.bin>
More information about the cfe-commits
mailing list