Skip to content

Commit

Permalink
[objc_direct] do not add direct properties to the serialization array
Browse files Browse the repository at this point in the history
If we do, then the property_list_t length is wrong
and class_getProperty gets very sad.

Signed-off-by: Pierre Habouzit <phabouzit@apple.com>
Radar-Id: rdar://problem/58804805
Differential Revision: https://reviews.llvm.org/D73219
(cherry picked from commit 52311d0)
  • Loading branch information
MadCoder committed Jan 24, 2020
1 parent a4b8abe commit 67831e6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
6 changes: 4 additions & 2 deletions clang/lib/CodeGen/CGObjCMac.cpp
Expand Up @@ -3291,6 +3291,8 @@ llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
for (auto *PD : ClassExt->properties()) {
if (IsClassProperty != PD->isClassProperty())
continue;
if (PD->isDirectProperty())
continue;
PropertySet.insert(PD->getIdentifier());
Properties.push_back(PD);
}
Expand All @@ -3302,6 +3304,8 @@ llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
// class extension.
if (!PropertySet.insert(PD->getIdentifier()).second)
continue;
if (PD->isDirectProperty())
continue;
Properties.push_back(PD);
}

Expand All @@ -3327,8 +3331,6 @@ llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name,
values.addInt(ObjCTypes.IntTy, Properties.size());
auto propertiesArray = values.beginArray(ObjCTypes.PropertyTy);
for (auto PD : Properties) {
if (PD->isDirectProperty())
continue;
auto property = propertiesArray.beginStruct(ObjCTypes.PropertyTy);
property.add(GetPropertyName(PD->getIdentifier()));
property.add(GetPropertyTypeString(PD, Container));
Expand Down
23 changes: 23 additions & 0 deletions clang/test/CodeGenObjC/direct-properties.m
@@ -0,0 +1,23 @@
// RUN: %clang_cc1 -emit-llvm -fobjc-arc -triple x86_64-apple-darwin10 %s -o - | FileCheck %s

__attribute__((objc_root_class))
@interface A
@property(direct, readonly) int i;
@end

__attribute__((objc_root_class))
@interface B
@property(direct, readonly) int i;
@property(readonly) int j;
@end

// CHECK-NOT: @"__OBJC_$_PROP_LIST_A"
@implementation A
@synthesize i = _i;
@end

// CHECK: @"_OBJC_$_PROP_LIST_B" = internal global { i32, i32, [1 x %struct._prop_t] } { i32 16, i32 1
@implementation B
@synthesize i = _i;
@synthesize j = _j;
@end

0 comments on commit 67831e6

Please sign in to comment.