-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathSILSymbolVisitor.cpp
940 lines (790 loc) · 32.8 KB
/
SILSymbolVisitor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
//===--- SILSymbolVisitor.cpp ---------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements liker symbol enumeration for SILSymbolVisitor.
//
//===----------------------------------------------------------------------===//
#include "swift/SIL/SILSymbolVisitor.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTMangler.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/FileUnit.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/PropertyWrappers.h"
#include "swift/AST/SynthesizedFileUnit.h"
#include "swift/Basic/Assertions.h"
#include "swift/Basic/Defer.h"
#include "swift/ClangImporter/ClangModule.h"
#include "swift/SIL/FormalLinkage.h"
#include "swift/SIL/SILLinkage.h"
#include "swift/SIL/SILModule.h"
#include "swift/SIL/SILVTableVisitor.h"
#include "swift/SIL/SILWitnessTable.h"
#include "swift/SIL/SILWitnessVisitor.h"
using namespace swift;
static bool requiresLinkerDirective(Decl *D) {
for (auto *attr : D->getAttrs()) {
if (auto *ODA = dyn_cast<OriginallyDefinedInAttr>(attr)) {
auto Active = ODA->isActivePlatform(D->getASTContext());
if (Active.has_value())
return true;
}
}
return false;
}
static bool isGlobalOrStaticVar(VarDecl *VD) {
return VD->isStatic() || VD->getDeclContext()->isModuleScopeContext();
}
using DynamicKind = SILSymbolVisitor::DynamicKind;
static std::optional<DynamicKind> getDynamicKind(ValueDecl *VD) {
if (VD->shouldUseNativeMethodReplacement())
return DynamicKind::Replaceable;
if (VD->getDynamicallyReplacedDecl())
return DynamicKind::Replacement;
return std::nullopt;
}
class SILSymbolVisitorImpl : public ASTVisitor<SILSymbolVisitorImpl> {
SILSymbolVisitor &Visitor;
const SILSymbolVisitorContext &Ctx;
llvm::SmallVector<Decl *, 4> DeclStack;
/// A set of original function and derivative configuration pairs for which
/// derivative symbols have been emitted.
///
/// Used to deduplicate derivative symbol emission for `@differentiable` and
/// `@derivative` attributes.
llvm::DenseSet<std::pair<AbstractFunctionDecl *, AutoDiffConfig>>
AddedDerivatives;
void addMainIfNecessary(FileUnit *file) {
// Make sure to only add the main symbol for the module that we're emitting
// TBD for, and not for any statically linked libraries.
if (!file->hasEntryPoint() || file->getParentModule() != Ctx.getModule())
return;
auto entryPointSymbol =
file->getParentModule()->getASTContext().getEntryPointFunctionName();
if (auto *decl = file->getMainDecl()) {
addFunction(SILDeclRef::getMainDeclEntryPoint(decl),
/*ignoreLinkage=*/true);
return;
}
auto declRef = SILDeclRef::getMainFileEntryPoint(file);
Visitor.addFunction(entryPointSymbol, declRef);
}
/// Emits the given `SILDeclRef` to the downstream visitor as long as the
/// entity has the required linkage.
///
/// FIXME: The need for an ignoreLinkage flag here possibly indicates that
/// there is something broken about the linkage computation below.
void addFunction(SILDeclRef declRef, bool ignoreLinkage = false) {
if (!ignoreLinkage) {
auto linkage = effectiveLinkageForClassMember(
declRef.getLinkage(ForDefinition), declRef.getSubclassScope());
if (shouldSkipVisit(linkage))
return;
}
Visitor.addFunction(declRef);
}
bool shouldSkipVisit(SILLinkage linkage) {
return Ctx.getOpts().PublicOrPackageSymbolsOnly &&
!(linkage == SILLinkage::Public || linkage == SILLinkage::Package);
}
bool shouldSkipVisit(SILDeclRef declRef) {
return Ctx.getOpts().PublicOrPackageSymbolsOnly && !declRef.isSerialized();
}
bool shouldSkipVisit(FormalLinkage formalLinkage) {
return Ctx.getOpts().PublicOrPackageSymbolsOnly &&
!(formalLinkage == FormalLinkage::PublicUnique || formalLinkage == FormalLinkage::PackageUnique);
}
void addAsyncFunctionPointer(SILDeclRef declRef) {
auto silLinkage = effectiveLinkageForClassMember(
declRef.getLinkage(ForDefinition), declRef.getSubclassScope());
if (shouldSkipVisit(silLinkage))
return;
Visitor.addAsyncFunctionPointer(declRef);
}
void addCoroFunctionPointer(SILDeclRef declRef) {
auto silLinkage = effectiveLinkageForClassMember(
declRef.getLinkage(ForDefinition), declRef.getSubclassScope());
if (shouldSkipVisit(silLinkage))
return;
Visitor.addCoroFunctionPointer(declRef);
}
void addAutoDiffLinearMapFunction(AbstractFunctionDecl *original,
const AutoDiffConfig &config,
AutoDiffLinearMapKind kind) {
auto &ctx = original->getASTContext();
auto declRef =
SILDeclRef(original).asForeign(requiresForeignEntryPoint(original));
// Linear maps are public only when the original function is serialized. So
// if we're only including public symbols and it's not serialized, bail.
if (shouldSkipVisit(declRef))
return;
// Differential functions are emitted only when forward-mode is enabled.
if (kind == AutoDiffLinearMapKind::Differential &&
!ctx.LangOpts.hasFeature(Feature::ForwardModeDifferentiation))
return;
auto *loweredParamIndices = autodiff::getLoweredParameterIndices(
config.parameterIndices,
original->getInterfaceType()->castTo<AnyFunctionType>());
Mangle::ASTMangler mangler(original->getASTContext());
AutoDiffConfig silConfig{
loweredParamIndices, config.resultIndices,
autodiff::getDifferentiabilityWitnessGenericSignature(
original->getGenericSignature(),
config.derivativeGenericSignature)};
std::string linearMapName =
mangler.mangleAutoDiffLinearMap(original, kind, silConfig);
// TODO: Can we encode a linear map function in a SILDeclRef instead of
// doing a bespoke mangling here?
Visitor.addFunction(linearMapName, declRef);
}
void
addAutoDiffDerivativeFunction(AbstractFunctionDecl *original,
IndexSubset *parameterIndices,
GenericSignature derivativeGenericSignature,
AutoDiffDerivativeFunctionKind kind) {
auto *assocFnId = AutoDiffDerivativeFunctionIdentifier::get(
kind, parameterIndices,
autodiff::getDifferentiabilityWitnessGenericSignature(
original->getGenericSignature(), derivativeGenericSignature),
original->getASTContext());
auto declRef =
SILDeclRef(original).asForeign(requiresForeignEntryPoint(original));
addFunction(declRef.asAutoDiffDerivativeFunction(assocFnId));
}
void addDifferentiabilityWitness(
AbstractFunctionDecl *original, DifferentiabilityKind kind,
IndexSubset *astParameterIndices, IndexSubset *resultIndices,
GenericSignature derivativeGenericSignature) {
bool foreign = requiresForeignEntryPoint(original);
auto declRef = SILDeclRef(original).asForeign(foreign);
// Skip symbol emission for original functions that do not have public
// linkage. Exclude original functions that require a foreign entry point
// with `public_external` linkage.
auto originalLinkage = declRef.getLinkage(ForDefinition);
if (foreign)
originalLinkage = stripExternalFromLinkage(originalLinkage);
if (shouldSkipVisit(originalLinkage))
return;
auto *silParamIndices = autodiff::getLoweredParameterIndices(
astParameterIndices,
original->getInterfaceType()->castTo<AnyFunctionType>());
auto originalMangledName = declRef.mangle();
AutoDiffConfig config{
silParamIndices, resultIndices,
autodiff::getDifferentiabilityWitnessGenericSignature(
original->getGenericSignature(), derivativeGenericSignature)};
Mangle::ASTMangler mangler(original->getASTContext());
auto mangledName = mangler.mangleSILDifferentiabilityWitness(
originalMangledName, kind, config);
// TODO: Can we encode a differentiability witness function in a SILDeclRef
// instead of doing a bespoke mangling here?
Visitor.addFunction(mangledName, declRef);
}
void addDerivativeConfiguration(DifferentiabilityKind diffKind,
AbstractFunctionDecl *original,
const AutoDiffConfig &config) {
auto inserted = AddedDerivatives.insert({original, config});
if (!inserted.second)
return;
addAutoDiffLinearMapFunction(original, config,
AutoDiffLinearMapKind::Differential);
addAutoDiffLinearMapFunction(original, config,
AutoDiffLinearMapKind::Pullback);
addAutoDiffDerivativeFunction(original, config.parameterIndices,
config.derivativeGenericSignature,
AutoDiffDerivativeFunctionKind::JVP);
addAutoDiffDerivativeFunction(original, config.parameterIndices,
config.derivativeGenericSignature,
AutoDiffDerivativeFunctionKind::VJP);
addDifferentiabilityWitness(original, diffKind, config.parameterIndices,
config.resultIndices,
config.derivativeGenericSignature);
}
void addOpaqueResultIfNecessary(ValueDecl *VD) {
if (auto opaqueResult = VD->getOpaqueResultTypeDecl()) {
Visitor.addOpaqueTypeDescriptor(opaqueResult);
assert(opaqueResult->getNamingDecl() == VD);
if (auto dynKind = getDynamicKind(VD)) {
Visitor.addOpaqueTypeDescriptorAccessor(opaqueResult, *dynKind);
}
}
}
void addConformances(const IterableDeclContext *IDC) {
for (auto conformance :
IDC->getLocalConformances(ConformanceLookupKind::NonInherited)) {
auto protocol = conformance->getProtocol();
if (canSkipNominal(protocol))
continue;
auto needsWTable =
Lowering::TypeConverter::protocolRequiresWitnessTable(protocol);
if (!needsWTable)
continue;
// Only root conformances get symbols; the others get any public symbols
// from their parent conformances.
auto rootConformance = dyn_cast<RootProtocolConformance>(conformance);
if (!rootConformance) {
continue;
}
// We cannot emit the witness table symbol if the protocol is imported
// from another module and it's resilient, because initialization of that
// protocol is necessary in this case
if (Ctx.getOpts().FragileResilientProtocols ||
!rootConformance->getProtocol()->isResilient(
IDC->getAsGenericContext()->getParentModule(),
ResilienceExpansion::Maximal))
Visitor.addProtocolWitnessTable(rootConformance);
Visitor.addProtocolConformanceDescriptor(rootConformance);
// FIXME: the logic around visibility in extensions is confusing, and
// sometimes witness thunks need to be manually made public.
auto conformanceSeializedKind =
SILWitnessTable::conformanceSerializedKind(rootConformance);
auto addSymbolIfNecessary = [&](ValueDecl *requirementDecl,
ValueDecl *witnessDecl) {
auto witnessRef = SILDeclRef(witnessDecl);
if (Ctx.getOpts().PublicOrPackageSymbolsOnly) {
if (conformanceSeializedKind == IsNotSerialized)
return;
if (!isa<SelfProtocolConformance>(rootConformance) &&
!fixmeWitnessHasLinkageThatNeedsToBePublic(
witnessRef,
witnessRef.getASTContext().SILOpts.EnableSerializePackage)) {
return;
}
}
Visitor.addProtocolWitnessThunk(rootConformance, requirementDecl);
};
rootConformance->forEachValueWitness([&](ValueDecl *valueReq,
Witness witness) {
auto witnessDecl = witness.getDecl();
if (!witnessDecl)
return;
if (isa<AbstractFunctionDecl>(valueReq)) {
addSymbolIfNecessary(valueReq, witnessDecl);
} else if (auto *storage = dyn_cast<AbstractStorageDecl>(valueReq)) {
if (auto witnessStorage =
dyn_cast<AbstractStorageDecl>(witnessDecl)) {
storage->visitOpaqueAccessors([&](AccessorDecl *reqtAccessor) {
auto witnessAccessor = witnessStorage->getSynthesizedAccessor(
reqtAccessor->getAccessorKind());
addSymbolIfNecessary(reqtAccessor, witnessAccessor);
});
} else if (isa<EnumElementDecl>(witnessDecl)) {
auto getter = storage->getSynthesizedAccessor(AccessorKind::Get);
addSymbolIfNecessary(getter, witnessDecl);
}
}
}, /*useResolver=*/true);
}
}
bool addClassMetadata(ClassDecl *CD) {
if (canSkipNominal(CD))
return false;
auto &ctxt = CD->getASTContext();
auto isGeneric = CD->isGenericContext();
auto objCCompatible = ctxt.LangOpts.EnableObjCInterop && !isGeneric;
auto isObjC = objCCompatible && CD->isObjC();
// Metaclasses and ObjC classes (duh) are an ObjC thing, and so are not
// needed in build artifacts/for classes which can't touch ObjC.
if (objCCompatible) {
if (isObjC)
Visitor.addObjCInterface(CD);
else if (CD->getMetaclassKind() == ClassDecl::MetaclassKind::ObjC)
// If an ObjCInterface was not added, an external ObjC Metaclass can
// still be needed for subclassing.
Visitor.addObjCMetaclass(CD);
else
Visitor.addSwiftMetaclassStub(CD);
}
// Some members of classes get extra handling, beyond members of
// struct/enums, so let's walk over them manually.
if (Ctx.getOpts().VisitMembers)
for (auto *var : CD->getStoredProperties())
Visitor.addFieldOffset(var);
visitNominalTypeDecl(CD);
bool resilientAncestry = CD->checkAncestry(AncestryFlags::ResilientOther);
// Types with resilient superclasses have some extra symbols.
if (resilientAncestry || CD->hasResilientMetadata())
Visitor.addClassMetadataBaseOffset(CD);
auto &Ctx = CD->getASTContext();
if (Ctx.LangOpts.EnableObjCInterop && resilientAncestry)
Visitor.addObjCResilientClassStub(CD);
return true;
}
void addMethodIfNecessary(FuncDecl *FD) {
auto CD = dyn_cast<ClassDecl>(FD->getDeclContext());
if (!CD)
return;
// If we're already visiting the parent ClassDecl then this was handled by
// its vtable visitor.
if (llvm::find(DeclStack, CD) != DeclStack.end())
return;
SILDeclRef method = SILDeclRef(FD);
if (Ctx.getOpts().VirtualFunctionElimination ||
CD->hasResilientMetadata()) {
Visitor.addDispatchThunk(method);
}
Visitor.addMethodDescriptor(method);
}
/// Returns `true` if the neither the nominal nor its members have any symbols
/// that need to be visited because it has non-public linkage.
bool canSkipNominal(const NominalTypeDecl *NTD) {
if (!Ctx.getOpts().PublicOrPackageSymbolsOnly)
return false;
// Don't skip nominals from clang modules; they have PublicNonUnique
// linkage.
if (isa<ClangModuleUnit>(NTD->getDeclContext()->getModuleScopeContext()))
return false;
return !(getDeclLinkage(NTD) == FormalLinkage::PublicUnique ||
getDeclLinkage(NTD) == FormalLinkage::PackageUnique);
}
public:
SILSymbolVisitorImpl(SILSymbolVisitor &Visitor,
const SILSymbolVisitorContext &Ctx)
: Visitor{Visitor}, Ctx{Ctx} {}
void visit(Decl *D) {
DeclStack.push_back(D);
SWIFT_DEFER { DeclStack.pop_back(); };
if (!Visitor.willVisitDecl(D))
return;
ASTVisitor::visit(D);
Visitor.didVisitDecl(D);
}
void visit(FileUnit *file) {
auto visitFile = [this](FileUnit *file) {
SmallVector<Decl *, 16> decls;
file->getTopLevelDeclsWithAuxiliaryDecls(decls);
addMainIfNecessary(file);
for (auto D : decls) {
if (Ctx.getOpts().LinkerDirectivesOnly && !requiresLinkerDirective(D))
continue;
visit(D);
}
};
visitFile(file);
// Visit synthesized file, if it exists.
if (auto *synthesizedFile = file->getSynthesizedFile())
visitFile(synthesizedFile);
}
void visitDefaultArguments(ValueDecl *VD, ParameterList *PL) {
auto moduleDecl = VD->getModuleContext();
// Check if symbols should be more visible than their declared access level.
// In case of `package` access level, the symbol should be visible by an
// external module in the same package, thus the default argument should be
// generated and its linkage emitted.
auto shouldGenerateDefaultArgs = moduleDecl->isTestingEnabled() ||
moduleDecl->arePrivateImportsEnabled() ||
VD->getFormalAccess() >= AccessLevel::Package;
if (Ctx.getOpts().PublicOrPackageSymbolsOnly && !shouldGenerateDefaultArgs)
return;
// In Swift 3 (or under -enable-testing), default arguments (of public
// functions) are public symbols, as the default values are computed at the
// call site.
auto index = 0;
for (auto *param : *PL) {
if (param->isDefaultArgument())
addFunction(SILDeclRef::getDefaultArgGenerator(VD, index));
++index;
}
}
void visitAbstractFunctionDecl(AbstractFunctionDecl *AFD) {
// Add exported prespecialized symbols.
for (auto *attr : AFD->getAttrs().getAttributes<SpecializeAttr>()) {
if (!attr->isExported())
continue;
auto specializedSignature = attr->getSpecializedSignature(AFD);
auto erasedSignature =
SILSpecializeAttr::buildTypeErasedSignature(specializedSignature,
attr->getTypeErasedParams());
if (auto *targetFun = attr->getTargetFunctionDecl(AFD)) {
addFunction(SILDeclRef(targetFun, erasedSignature),
/*ignoreLinkage=*/true);
} else {
addFunction(SILDeclRef(AFD, erasedSignature), /*ignoreLinkage=*/true);
}
}
addFunction(SILDeclRef(AFD));
ASSERT(ABIRoleInfo(AFD).providesAPI()
&& "SILSymbolVisitorImpl visiting ABI-only decl?");
if (auto dynKind = getDynamicKind(AFD)) {
// Add the global function pointer for a dynamically replaceable function.
Visitor.addDynamicFunction(AFD, *dynKind);
}
if (AFD->getAttrs().hasAttribute<CDeclAttr>()) {
// A @_cdecl("...") function has an extra symbol, with the name from the
// attribute.
addFunction(SILDeclRef(AFD).asForeign());
}
if (auto distributedThunk = AFD->getDistributedThunk()) {
auto thunk = SILDeclRef(distributedThunk).asDistributed();
addFunction(thunk);
addAsyncFunctionPointer(thunk);
}
// Add derivative function symbols.
for (const auto *differentiableAttr :
AFD->getAttrs().getAttributes<DifferentiableAttr>()) {
auto *resultIndices = autodiff::getFunctionSemanticResultIndices(
AFD,
differentiableAttr->getParameterIndices());
addDerivativeConfiguration(
differentiableAttr->getDifferentiabilityKind(), AFD,
AutoDiffConfig(differentiableAttr->getParameterIndices(),
resultIndices,
differentiableAttr->getDerivativeGenericSignature()));
}
for (const auto *derivativeAttr :
AFD->getAttrs().getAttributes<DerivativeAttr>()) {
auto *resultIndices = autodiff::getFunctionSemanticResultIndices(
derivativeAttr->getOriginalFunction(AFD->getASTContext()),
derivativeAttr->getParameterIndices());
addDerivativeConfiguration(
DifferentiabilityKind::Reverse,
derivativeAttr->getOriginalFunction(AFD->getASTContext()),
AutoDiffConfig(derivativeAttr->getParameterIndices(),
resultIndices,
AFD->getGenericSignature()));
}
visitDefaultArguments(AFD, AFD->getParameters());
if (AFD->hasAsync()) {
addAsyncFunctionPointer(SILDeclRef(AFD));
}
auto *accessor = dyn_cast<AccessorDecl>(AFD);
if (accessor &&
requiresFeatureCoroutineAccessors(accessor->getAccessorKind())) {
addCoroFunctionPointer(SILDeclRef(accessor));
}
// Skip non objc compatible methods or non-public methods.
if (isa<DestructorDecl>(AFD) || !AFD->isObjC() ||
AFD->getFormalAccess() != AccessLevel::Public)
return;
Visitor.addObjCMethod(AFD);
}
void visitFuncDecl(FuncDecl *FD) {
// If there's an opaque return type, its descriptor is exported.
addOpaqueResultIfNecessary(FD);
visitAbstractFunctionDecl(FD);
addMethodIfNecessary(FD);
}
void visitAccessorDecl(AccessorDecl *AD) {
llvm_unreachable("should not see an accessor here");
}
void visitAbstractStorageDecl(AbstractStorageDecl *ASD) {
// Add the property descriptor if the decl needs it.
if (ASD->exportsPropertyDescriptor()) {
Visitor.addPropertyDescriptor(ASD);
}
// ...and the opaque result decl if it has one.
addOpaqueResultIfNecessary(ASD);
// Explicitly look at each accessor here: see visitAccessorDecl.
ASD->visitEmittedAccessors([&](AccessorDecl *accessor) {
visitFuncDecl(accessor);
});
// Add derivative function symbols.
for (const auto *differentiableAttr :
ASD->getAttrs().getAttributes<DifferentiableAttr>()) {
// FIXME: handle other accessors
auto accessorDecl = ASD->getOpaqueAccessor(AccessorKind::Get);
addDerivativeConfiguration(
differentiableAttr->getDifferentiabilityKind(),
accessorDecl,
AutoDiffConfig(differentiableAttr->getParameterIndices(),
autodiff::getFunctionSemanticResultIndices(accessorDecl,
differentiableAttr->getParameterIndices()),
differentiableAttr->getDerivativeGenericSignature()));
}
}
void visitVarDecl(VarDecl *VD) {
// Variables inside non-resilient modules have some additional symbols.
if (!VD->isStrictlyResilient()) {
// Non-global variables might have an explicit initializer symbol in
// non-resilient modules.
if (VD->getAttrs().hasAttribute<HasInitialValueAttr>() &&
!isGlobalOrStaticVar(VD)) {
auto declRef =
SILDeclRef(VD, SILDeclRef::Kind::StoredPropertyInitializer);
// Stored property initializers for public properties are public.
addFunction(declRef);
}
// Statically/globally stored variables have some special handling.
if (VD->hasStorage() && isGlobalOrStaticVar(VD)) {
if (!shouldSkipVisit(getDeclLinkage(VD))) {
Visitor.addGlobalVar(VD);
}
if (VD->isLazilyInitializedGlobal())
addFunction(SILDeclRef(VD, SILDeclRef::Kind::GlobalAccessor));
}
// Wrapped non-static member properties may have a backing initializer.
auto initInfo = VD->getPropertyWrapperInitializerInfo();
if (initInfo.hasInitFromWrappedValue() && !VD->isStatic()) {
addFunction(SILDeclRef(
VD, SILDeclRef::Kind::PropertyWrapperBackingInitializer));
}
}
visitAbstractStorageDecl(VD);
}
void visitSubscriptDecl(SubscriptDecl *SD) {
visitDefaultArguments(SD, SD->getIndices());
visitAbstractStorageDecl(SD);
}
template<typename NominalOrExtension>
void visitMembers(NominalOrExtension *D) {
if (!Ctx.getOpts().VisitMembers)
return;
for (auto member : D->getABIMembers())
visit(member);
}
void visitNominalTypeDecl(NominalTypeDecl *NTD) {
if (canSkipNominal(NTD))
return;
if (NTD->getASTContext().LangOpts.hasFeature(Feature::Embedded))
return;
auto declaredType = NTD->getDeclaredType()->getCanonicalType();
if (!NTD->getObjCImplementationDecl()) {
Visitor.addNominalTypeDescriptor(NTD);
// Generic types do not get metadata directly, only through the function.
if (!NTD->isGenericContext()) {
Visitor.addTypeMetadataAddress(declaredType);
}
}
Visitor.addTypeMetadataAccessFunction(declaredType);
// There are symbols associated with any protocols this type conforms to.
addConformances(NTD);
visitMembers(NTD);
}
void visitClassDecl(ClassDecl *CD) {
if (!addClassMetadata(CD))
return;
// Emit dispatch thunks for every new vtable entry.
struct VTableVisitor : public SILVTableVisitor<VTableVisitor> {
SILSymbolVisitor &Visitor;
ClassDecl *CD;
bool FirstTime = true;
bool VirtualFunctionElimination;
public:
VTableVisitor(SILSymbolVisitorImpl &V, ClassDecl *CD)
: Visitor{V.Visitor}, CD{CD},
VirtualFunctionElimination{
V.Ctx.getOpts().VirtualFunctionElimination} {}
void addMethod(SILDeclRef method) {
assert(method.getDecl()->getDeclContext() == CD);
// If the class is itself resilient and has at least one vtable
// entry, it has a method lookup function.
bool hasLookupFunc =
VirtualFunctionElimination || CD->hasResilientMetadata();
if (FirstTime) {
FirstTime = false;
if (hasLookupFunc)
Visitor.addMethodLookupFunction(CD);
}
if (!Visitor.willVisitDecl(method.getDecl()))
return;
if (hasLookupFunc)
Visitor.addDispatchThunk(method);
Visitor.addMethodDescriptor(method);
Visitor.didVisitDecl(method.getDecl());
}
void addMethodOverride(SILDeclRef baseRef, SILDeclRef derivedRef) {}
void addPlaceholder(MissingMemberDecl *) {}
void doIt() {
addVTableEntries(CD);
}
};
if (Ctx.getOpts().VisitMembers)
VTableVisitor(*this, CD).doIt();
}
void visitConstructorDecl(ConstructorDecl *CD) {
if (CD->getParent()->getSelfClassDecl()) {
// Class constructors come in two forms, allocating and non-allocating.
// The default ValueDecl handling gives the allocating one, so we have to
// manually include the non-allocating one.
addFunction(SILDeclRef(CD, SILDeclRef::Kind::Initializer));
if (CD->hasAsync()) {
addAsyncFunctionPointer(SILDeclRef(CD, SILDeclRef::Kind::Initializer));
}
}
visitAbstractFunctionDecl(CD);
}
void visitDestructorDecl(DestructorDecl *DD) {
// Destructors come in three forms (non-deallocating, deallocating, isolated
// deallocating) Classes use all three but move only non-class nominal types
// only use the deallocating one. This is the deallocating one:
visitAbstractFunctionDecl(DD);
if (auto parentClass = DD->getParent()->getSelfClassDecl()) {
// But the non-deallocating one doesn't apply to some @objc classes.
if (!Lowering::usesObjCAllocator(parentClass)) {
addFunction(SILDeclRef(DD, SILDeclRef::Kind::Destroyer));
}
}
// And isolated also does not always exist
if (Lowering::needsIsolatingDestructor(DD)) {
addFunction(SILDeclRef(DD, SILDeclRef::Kind::IsolatedDeallocator));
}
}
void visitExtensionDecl(ExtensionDecl *ED) {
auto nominal = ED->getExtendedNominal();
if (!nominal)
return;
if (canSkipNominal(nominal))
return;
if (auto CD = dyn_cast_or_null<ClassDecl>(ED->getImplementedObjCDecl())) {
// @_objcImplementation extensions generate the class metadata symbols.
(void)addClassMetadata(CD);
}
if (!isa<ProtocolDecl>(nominal)) {
addConformances(ED);
}
visitMembers(ED);
}
#ifndef NDEBUG
static bool isExpectedProtocolMember(const Decl *D) {
switch (D->getKind()) {
case DeclKind::TypeAlias:
case DeclKind::AssociatedType:
case DeclKind::Var:
case DeclKind::Subscript:
case DeclKind::PatternBinding:
case DeclKind::Func:
case DeclKind::Accessor:
case DeclKind::Constructor:
case DeclKind::Destructor:
return true;
case DeclKind::OpaqueType:
case DeclKind::Enum:
case DeclKind::Struct:
case DeclKind::Class:
case DeclKind::Protocol:
case DeclKind::GenericTypeParam:
case DeclKind::Module:
case DeclKind::Param:
case DeclKind::EnumElement:
case DeclKind::Extension:
case DeclKind::TopLevelCode:
case DeclKind::Import:
case DeclKind::PrecedenceGroup:
case DeclKind::MissingMember:
case DeclKind::EnumCase:
case DeclKind::InfixOperator:
case DeclKind::PrefixOperator:
case DeclKind::PostfixOperator:
case DeclKind::Macro:
case DeclKind::MacroExpansion:
return false;
case DeclKind::Missing:
llvm_unreachable("missing decl should not show up here");
case DeclKind::BuiltinTuple:
llvm_unreachable("BuiltinTupleDecl should not show up here");
}
llvm_unreachable("covered switch");
}
#endif
void visitProtocolDecl(ProtocolDecl *PD) {
if (canSkipNominal(PD))
return;
if (!PD->isObjC() && !PD->isMarkerProtocol()) {
Visitor.addProtocolDescriptor(PD);
struct WitnessVisitor : public SILWitnessVisitor<WitnessVisitor> {
SILSymbolVisitor &Visitor;
ProtocolDecl *PD;
bool Resilient;
bool WitnessMethodElimination;
public:
WitnessVisitor(SILSymbolVisitorImpl &V, ProtocolDecl *PD)
: Visitor{V.Visitor}, PD{PD},
Resilient{PD->getParentModule()->isResilient()},
WitnessMethodElimination{
V.Ctx.getOpts().WitnessMethodElimination} {}
void addMethod(SILDeclRef declRef) {
if (Resilient || WitnessMethodElimination) {
Visitor.addDispatchThunk(declRef);
Visitor.addMethodDescriptor(declRef);
}
auto *decl =
llvm::dyn_cast_or_null<AbstractFunctionDecl>(declRef.getDecl());
if (decl && decl->hasBody()) {
Visitor.addFunction(declRef);
auto *accessor = dyn_cast<AccessorDecl>(decl);
if (accessor && requiresFeatureCoroutineAccessors(
accessor->getAccessorKind())) {
Visitor.addCoroFunctionPointer(SILDeclRef(accessor));
}
}
}
void addAssociatedType(AssociatedTypeDecl *assocType) {
Visitor.addAssociatedTypeDescriptor(assocType);
}
void addProtocolConformanceDescriptor() {
Visitor.addProtocolRequirementsBaseDescriptor(PD);
}
void addOutOfLineBaseProtocol(ProtocolDecl *proto) {
Visitor.addBaseConformanceDescriptor(BaseConformance(PD, proto));
}
void addAssociatedConformance(AssociatedConformance associatedConf) {
Visitor.addAssociatedConformanceDescriptor(associatedConf);
}
void addPlaceholder(MissingMemberDecl *decl) {}
void doIt() {
visitProtocolDecl(PD);
}
};
WitnessVisitor(*this, PD).doIt();
// Include the self-conformance.
addConformances(PD);
}
#ifndef NDEBUG
// There are currently no symbols associated with the members of a protocol;
// each conforming type has to handle them individually.
// Let's assert this fact:
for (auto *member : PD->getMembers()) {
assert(isExpectedProtocolMember(member) &&
"unexpected member of protocol during TBD generation");
}
#endif
}
void visitEnumDecl(EnumDecl *ED) {
visitNominalTypeDecl(ED);
}
void visitEnumElementDecl(EnumElementDecl *EED) {
if (EED->getParentEnum()->isResilient())
Visitor.addEnumCase(EED);
if (auto *PL = EED->getParameterList())
visitDefaultArguments(EED, PL);
}
#define UNINTERESTING_DECL(CLASS) \
void visit##CLASS##Decl(CLASS##Decl *) {}
UNINTERESTING_DECL(EnumCase)
UNINTERESTING_DECL(Import)
UNINTERESTING_DECL(MacroExpansion)
UNINTERESTING_DECL(Missing)
UNINTERESTING_DECL(MissingMember)
UNINTERESTING_DECL(Operator)
UNINTERESTING_DECL(PatternBinding)
UNINTERESTING_DECL(PrecedenceGroup)
UNINTERESTING_DECL(TopLevelCode)
UNINTERESTING_DECL(Value)
#undef UNINTERESTING_DECL
};
void SILSymbolVisitor::visitDecl(Decl *D, const SILSymbolVisitorContext &ctx) {
SILSymbolVisitorImpl(*this, ctx).visit(D);
}
void SILSymbolVisitor::visitFile(FileUnit *file,
const SILSymbolVisitorContext &ctx) {
SILSymbolVisitorImpl(*this, ctx).visit(file);
}
void SILSymbolVisitor::visitModules(llvm::SmallVector<ModuleDecl *, 4> &modules,
const SILSymbolVisitorContext &ctx) {
auto impl = SILSymbolVisitorImpl(*this, ctx);
for (auto *M : modules) {
for (auto *file : M->getFiles()) {
impl.visit(file);
}
}
}