Skip to content

Commit 305e529

Browse files
author
Gabor Horvath
committed
[cxx-interop] Do not create mutating properties for classes
In Swift, only value types can have mutating instance member functions or computed properties. The importer logic was violating this invariant when generating setters for bit fields of shared references. Fixes #80182
1 parent a8111e4 commit 305e529

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

lib/ClangImporter/SwiftDeclSynthesizer.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ static AccessorDecl *makeFieldSetterDecl(ClangImporter::Implementation &Impl,
129129
params, voidTy, importedDecl, clangNode);
130130
setterDecl->setIsObjC(false);
131131
setterDecl->setIsDynamic(false);
132-
setterDecl->setSelfAccessKind(SelfAccessKind::Mutating);
132+
if (isa<ClassDecl>(importedDecl))
133+
setterDecl->setSelfAccessKind(SelfAccessKind::NonMutating);
134+
else
135+
setterDecl->setSelfAccessKind(SelfAccessKind::Mutating);
133136
setterDecl->setAccess(importedFieldDecl->getFormalAccess());
134137

135138
return setterDecl;

test/Interop/Cxx/class/inline-function-codegen/Inputs/method-calls-function.h

+14
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,18 @@ struct Incrementor {
99

1010
inline int callMethod(int value) { return Incrementor().callIncrement(value); }
1111

12+
class __attribute__((swift_attr("import_reference")))
13+
__attribute__((swift_attr("retain:immortal")))
14+
__attribute__((swift_attr("release:immortal")))
15+
__attribute__((swift_attr("unsafe"))) Cell {
16+
public:
17+
bool is_marked() const { return m_marked; }
18+
void set_marked(bool b) { m_marked = b; }
19+
20+
private:
21+
bool m_marked : 1 {false};
22+
};
23+
24+
inline Cell *_Nonnull createCell() { return new Cell{}; }
25+
1226
#endif // TEST_INTEROP_CXX_CLASS_INLINE_FUNCTION_THROUGH_MEMBER_INPUTS_METHOD_CALLS_FUNCTION_H

test/Interop/Cxx/class/inline-function-codegen/method-calls-function-execution.swift

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-experimental-cxx-interop)
1+
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-experimental-cxx-interop -Xcc -std=c++20 -Xfrontend -disable-availability-checking)
22
//
33
// REQUIRES: executable_test
44

@@ -11,4 +11,11 @@ MembersTestSuite.test("method calls function") {
1111
expectEqual(42, callMethod(41))
1212
}
1313

14+
func doSomethingWith(_ s: Cell) { s.set_marked(true) }
15+
16+
MembersTestSuite.test("method sets bitfield") {
17+
let s = createCell()
18+
doSomethingWith(s)
19+
}
20+
1421
runAllTests()

0 commit comments

Comments
 (0)