@@ -3661,12 +3661,6 @@ namespace {
3661
3661
{decl->param_begin (), decl->param_size ()},
3662
3662
decl->isVariadic (), redundant);
3663
3663
3664
- if (auto rawDecl = Impl.importDecl (decl, ImportNameVersion::Raw)) {
3665
- // We expect the raw decl to always be a method.
3666
- assert (isa<FuncDecl>(rawDecl));
3667
- Impl.addAlternateDecl (result, cast<ValueDecl>(rawDecl));
3668
- }
3669
-
3670
3664
return result;
3671
3665
}
3672
3666
@@ -3935,13 +3929,6 @@ namespace {
3935
3929
importObjCGenericParams (const clang::ObjCInterfaceDecl *decl,
3936
3930
DeclContext *dc);
3937
3931
3938
- // / Import members of the given Objective-C container and add them to the
3939
- // / list of corresponding Swift members.
3940
- void importObjCMembers (const clang::ObjCContainerDecl *decl,
3941
- DeclContext *swiftContext,
3942
- llvm::SmallPtrSet<Decl *, 4 > &knownMembers,
3943
- SmallVectorImpl<Decl *> &members);
3944
-
3945
3932
// / \brief Import the members of all of the protocols to which the given
3946
3933
// / Objective-C class, category, or extension explicitly conforms into
3947
3934
// / the given list of members, so long as the method was not already
@@ -6421,37 +6408,6 @@ Optional<GenericParamList *> SwiftDeclConverter::importObjCGenericParams(
6421
6408
genericParams, Impl.importSourceLoc (typeParamList->getRAngleLoc ()));
6422
6409
}
6423
6410
6424
- void SwiftDeclConverter::importObjCMembers (
6425
- const clang::ObjCContainerDecl *decl, DeclContext *swiftContext,
6426
- llvm::SmallPtrSet<Decl *, 4 > &knownMembers,
6427
- SmallVectorImpl<Decl *> &members) {
6428
- for (auto m = decl->decls_begin (), mEnd = decl->decls_end (); m != mEnd ; ++m) {
6429
- auto nd = dyn_cast<clang::NamedDecl>(*m);
6430
- if (!nd || nd != nd->getCanonicalDecl ())
6431
- continue ;
6432
-
6433
- auto member = Impl.importDecl (nd, getVersion ());
6434
- if (!member)
6435
- continue ;
6436
-
6437
- if (auto objcMethod = dyn_cast<clang::ObjCMethodDecl>(nd)) {
6438
- // If there is are alternate declarations for this member, add it.
6439
- for (auto alternate : Impl.getAlternateDecls (member)) {
6440
- if (alternate->getDeclContext () == member->getDeclContext () &&
6441
- knownMembers.insert (alternate).second )
6442
- members.push_back (alternate);
6443
- }
6444
-
6445
- // If this declaration shouldn't be visible, don't add it to
6446
- // the list.
6447
- if (shouldSuppressDeclImport (objcMethod))
6448
- continue ;
6449
- }
6450
-
6451
- members.push_back (member);
6452
- }
6453
- }
6454
-
6455
6411
void SwiftDeclConverter::importMirroredProtocolMembers (
6456
6412
const clang::ObjCContainerDecl *decl, DeclContext *dc,
6457
6413
ArrayRef<ProtocolDecl *> protocols, SmallVectorImpl<Decl *> &members,
@@ -7810,10 +7766,6 @@ ClangImporter::Implementation::loadAllMembers(Decl *D, uint64_t extra) {
7810
7766
Instance->getSourceManager (),
7811
7767
" loading members for" );
7812
7768
7813
- // TODO: accommodate deprecated versions as well
7814
- SwiftDeclConverter converter (*this , CurrentVersion);
7815
- SwiftDeclConverter swift2Converter (*this , ImportNameVersion::Swift2);
7816
-
7817
7769
DeclContext *DC;
7818
7770
IterableDeclContext *IDC;
7819
7771
SmallVector<ProtocolDecl *, 4 > protos;
@@ -7848,9 +7800,36 @@ ClangImporter::Implementation::loadAllMembers(Decl *D, uint64_t extra) {
7848
7800
ImportingEntityRAII Importing (*this );
7849
7801
7850
7802
SmallVector<Decl *, 16 > members;
7851
- llvm::SmallPtrSet<Decl *, 4 > knownMembers;
7852
- converter.importObjCMembers (objcContainer, DC, knownMembers, members);
7853
- swift2Converter.importObjCMembers (objcContainer, DC, knownMembers, members);
7803
+ llvm::SmallPtrSet<Decl *, 4 > knownAlternateMembers;
7804
+ for (const clang::Decl *m : objcContainer->decls ()) {
7805
+ auto nd = dyn_cast<clang::NamedDecl>(m);
7806
+ if (!nd || nd != nd->getCanonicalDecl ())
7807
+ continue ;
7808
+
7809
+ forEachDistinctName (*this , nd,
7810
+ [&](ImportedName name, ImportNameVersion nameVersion) {
7811
+ auto member = importDecl (nd, nameVersion);
7812
+ if (!member)
7813
+ return ;
7814
+
7815
+ // If there are alternate declarations for this member, add them.
7816
+ for (auto alternate : getAlternateDecls (member)) {
7817
+ if (alternate->getDeclContext () == member->getDeclContext () &&
7818
+ knownAlternateMembers.insert (alternate).second ) {
7819
+ members.push_back (alternate);
7820
+ }
7821
+ }
7822
+
7823
+ // If this declaration shouldn't be visible, don't add it to
7824
+ // the list.
7825
+ if (shouldSuppressDeclImport (nd))
7826
+ return ;
7827
+
7828
+ members.push_back (member);
7829
+ });
7830
+ }
7831
+
7832
+ SwiftDeclConverter converter (*this , CurrentVersion);
7854
7833
7855
7834
protos = takeImportedProtocols (D);
7856
7835
if (auto clangClass = dyn_cast<clang::ObjCInterfaceDecl>(objcContainer)) {
@@ -7879,7 +7858,6 @@ ClangImporter::Implementation::loadAllMembers(Decl *D, uint64_t extra) {
7879
7858
for (auto member : members) {
7880
7859
IDC->addMember (member);
7881
7860
}
7882
-
7883
7861
}
7884
7862
7885
7863
void ClangImporter::Implementation::loadAllConformances (
0 commit comments