-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathImportResolution.cpp
1651 lines (1382 loc) · 61.7 KB
/
ImportResolution.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
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//===--- ImportResolution.cpp - Import Resolution -------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 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 performs import resolution.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "swift-import-resolution"
#include "swift/AST/ASTWalker.h"
#include "swift/AST/DiagnosticsSema.h"
#include "swift/AST/ModuleDependencies.h"
#include "swift/AST/ModuleLoader.h"
#include "swift/AST/ModuleNameLookup.h"
#include "swift/AST/NameLookup.h"
#include "swift/AST/SourceFile.h"
#include "swift/AST/SubstitutionMap.h"
#include "swift/AST/TypeCheckRequests.h"
#include "swift/Basic/Assertions.h"
#include "swift/Basic/Defer.h"
#include "swift/Basic/Statistic.h"
#include "swift/ClangImporter/ClangModule.h"
#include "swift/Subsystems.h"
#include "swift/SymbolGraphGen/DocumentationCategory.h"
#include "clang/Basic/Module.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/TinyPtrVector.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/SaveAndRestore.h"
#include "llvm/TargetParser/Host.h"
#include <algorithm>
#include <system_error>
using namespace swift;
//===----------------------------------------------------------------------===//
// MARK: ImportResolver and supporting types
//===----------------------------------------------------------------------===//
namespace {
/// Represents an import which the ImportResolver knows exists, but which has
/// not yet had its options checked, module loaded, or cross-imports found.
///
/// An UnboundImport may represent a physical ImportDecl written in the
/// source, or it may represent a cross-import overlay that has been found and
/// needs to be loaded.
struct UnboundImport {
/// Information about the import. Use this field, not \c getImportDecl(), to
/// determine the behavior expected for this import.
AttributedImport<UnloadedImportedModule> import;
/// The source location to use when diagnosing errors for this import.
SourceLoc importLoc;
/// If this UnboundImport directly represents an ImportDecl, contains the
/// ImportDecl it represents. This should only be used for diagnostics and
/// for updating the AST; if you want to read information about the import,
/// get it from the \c import field rather than from the \c ImportDecl.
///
/// If this UnboundImport represents a cross-import, contains the declaring
/// module's \c ModuleDecl.
PointerUnion<NullablePtr<ImportDecl>, ModuleDecl *>
importOrUnderlyingModuleDecl;
NullablePtr<ImportDecl> getImportDecl() const {
return importOrUnderlyingModuleDecl.is<NullablePtr<ImportDecl>>() ?
importOrUnderlyingModuleDecl.get<NullablePtr<ImportDecl>>() : nullptr;
}
NullablePtr<ModuleDecl> getUnderlyingModule() const {
return importOrUnderlyingModuleDecl.is<ModuleDecl *>() ?
importOrUnderlyingModuleDecl.get<ModuleDecl *>() : nullptr;
}
/// Create an UnboundImport for a user-written import declaration.
explicit UnboundImport(ImportDecl *ID);
/// Create an UnboundImport for an unloaded implicit import.
explicit UnboundImport(AttributedImport<UnloadedImportedModule> implicit);
/// Create an UnboundImport for a cross-import overlay.
explicit UnboundImport(ASTContext &ctx,
const UnboundImport &base, Identifier overlayName,
const AttributedImport<ImportedModule> &declaringImport,
const AttributedImport<ImportedModule> &bystandingImport);
/// Diagnoses if the import would simply load the module \p SF already
/// belongs to, with no actual effect.
///
/// Some apparent self-imports do actually load a different module; this
/// method allows them.
bool checkNotTautological(const SourceFile &SF);
/// Make sure the module actually loaded, and diagnose if it didn't.
bool checkModuleLoaded(ModuleDecl *M, SourceFile &SF);
/// Find the top-level module for this module; that is, if \p M is the
/// module \c Foo.Bar.Baz, this finds \c Foo.
///
/// Specifically, this method returns:
///
/// \li \p M if \p M is a top-level module.
/// \li \c nullptr if \p M is a submodule of \c SF's parent module. (This
/// corner case can occur in mixed-source frameworks, where Swift code
/// can import a Clang submodule of itself.)
/// \li The top-level parent (i.e. ancestor with no parent) module above
/// \p M otherwise.
NullablePtr<ModuleDecl> getTopLevelModule(ModuleDecl *M, SourceFile &SF);
/// Diagnose any errors concerning the \c @_exported, \c @_implementationOnly,
/// \c \@testable, or \c @_private attributes, including a
/// non-implementation-only import of a fragile library from a resilient one.
void validateOptions(NullablePtr<ModuleDecl> topLevelModule, SourceFile &SF);
/// Create an \c AttributedImport<ImportedModule> from the information in this
/// UnboundImport.
AttributedImport<ImportedModule>
makeAttributedImport(ModuleDecl *module) const {
return import.getLoaded(module);
}
private:
void validatePrivate(ModuleDecl *topLevelModule);
/// Check that no import has more than one of the following modifiers:
/// @_exported, @_implementationOnly, and @_spiOnly.
void validateRestrictedImport(ASTContext &ctx);
void validateTestable(ModuleDecl *topLevelModule);
void validateResilience(NullablePtr<ModuleDecl> topLevelModule,
SourceFile &SF);
void validateAllowableClient(ModuleDecl *topLevelModule, SourceFile &SF);
void validateInterfaceWithPackageName(ModuleDecl *topLevelModule, SourceFile &SF);
/// Diagnoses an inability to import \p modulePath in this situation and, if
/// \p attrs is provided and has an \p attrKind, invalidates the attribute and
/// offers a fix-it to remove it.
void diagnoseInvalidAttr(DeclAttrKind attrKind, DiagnosticEngine &diags,
Diag<Identifier> diagID);
};
class ImportResolver final : public DeclVisitor<ImportResolver> {
friend DeclVisitor<ImportResolver>;
SourceFile &SF;
ASTContext &ctx;
/// Imports which still need their options checked, modules loaded, and
/// cross-imports found.
SmallVector<UnboundImport, 4> unboundImports;
/// The list of fully bound imports.
SmallVector<AttributedImport<ImportedModule>, 16> boundImports;
/// All imported modules which should be considered when cross-importing.
/// This is basically the transitive import graph, but with only top-level
/// modules and without reexports from Objective-C modules.
///
/// We use a \c SmallSetVector here because this doubles as the worklist for
/// cross-importing, so we want to keep it in order; this is feasible
/// because this set is usually fairly small.
llvm::SmallSetVector<AttributedImport<ImportedModule>, 32> crossImportableModules;
/// The subset of \c crossImportableModules which may declare cross-imports.
///
/// This is a performance optimization. Since most modules do not register
/// any cross-imports, we can usually compare against this list, which is
/// much, much smaller than \c crossImportableModules.
SmallVector<AttributedImport<ImportedModule>, 16> crossImportDeclaringModules;
/// The underlying clang module of the source file's parent module, if
/// imported.
ModuleDecl *underlyingClangModule = nullptr;
/// The index of the next module in \c visibleModules that should be
/// cross-imported.
size_t nextModuleToCrossImport = 0;
public:
ImportResolver(SourceFile &SF) : SF(SF), ctx(SF.getASTContext()) {
addImplicitImports();
}
void addImplicitImports();
void addImplicitImport(ModuleDecl *module) {
boundImports.push_back(ImportedModule(module));
bindPendingImports();
}
/// Retrieve the finalized imports.
ArrayRef<AttributedImport<ImportedModule>> getFinishedImports() const {
return boundImports;
}
/// Retrieve the underlying clang module which will be cached if it was loaded
/// when resolving imports.
ModuleDecl *getUnderlyingClangModule() const { return underlyingClangModule; }
private:
// We only need to visit import decls.
void visitImportDecl(ImportDecl *ID);
// Ignore other decls.
void visitDecl(Decl *D) {}
template<typename ...ArgTypes>
InFlightDiagnostic diagnose(ArgTypes &&...Args) {
return ctx.Diags.diagnose(std::forward<ArgTypes>(Args)...);
}
/// Calls \c bindImport() on unbound imports until \c boundImports is drained.
void bindPendingImports();
/// Check a single unbound import, bind it, add it to \c boundImports,
/// and add its cross-import overlays to \c unboundImports.
void bindImport(UnboundImport &&I);
/// Adds \p I and \p M to \c boundImports and \c visibleModules.
void addImport(const UnboundImport &I, ModuleDecl *M);
/// Adds \p desc and everything it re-exports to \c visibleModules using
/// the settings from \c desc.
void addCrossImportableModules(AttributedImport<ImportedModule> desc);
/// * If \p I is a cross-import overlay, registers \p M as overlaying
/// \p I.underlyingModule in \c SF.
/// * Discovers any cross-imports between \p I and previously bound imports,
/// then adds them to \c unboundImports using source locations from \p I.
void crossImport(ModuleDecl *M, UnboundImport &I);
/// Discovers any cross-imports between \p newImport and
/// \p oldImports and adds them to \c unboundImports, using source
/// locations from \p I.
void findCrossImportsInLists(
UnboundImport &I,
ArrayRef<AttributedImport<ImportedModule>> declaring,
ArrayRef<AttributedImport<ImportedModule>> bystanding,
bool shouldDiagnoseRedundantCrossImports);
/// Discovers any cross-imports between \p declaringImport and
/// \p bystandingImport and adds them to \c unboundImports, using source
/// locations from \p I.
void findCrossImports(UnboundImport &I,
const AttributedImport<ImportedModule> &declaringImport,
const AttributedImport<ImportedModule> &bystandingImport,
bool shouldDiagnoseRedundantCrossImports);
/// Load a module referenced by an import statement.
///
/// Returns null if no module can be loaded.
ModuleDecl *getModule(ImportPath::Module ModuleID);
};
} // end anonymous namespace
//===----------------------------------------------------------------------===//
// MARK: performImportResolution
//===----------------------------------------------------------------------===//
void swift::performImportResolution(ModuleDecl *M) {
for (auto *file : M->getFiles()) {
auto *SF = dyn_cast<SourceFile>(file);
if (!SF)
continue;
performImportResolution(*SF);
assert(SF->ASTStage >= SourceFile::ImportsResolved &&
"file has not had its imports resolved");
}
M->setHasResolvedImports();
}
/// performImportResolution - This walks the AST to resolve imports.
///
/// Before we can type-check a source file, we need to make declarations
/// imported from other modules available. This is done by processing top-level
/// \c ImportDecl nodes, along with related validation.
///
/// Import resolution operates on a parsed but otherwise unvalidated AST.
void swift::performImportResolution(SourceFile &SF) {
// If we've already performed import resolution, bail.
if (SF.ASTStage == SourceFile::ImportsResolved)
return;
FrontendStatsTracer tracer(SF.getASTContext().Stats,
"Import resolution");
// If we're silencing parsing warnings, then also silence import warnings.
// This is necessary for secondary files as they can be parsed and have their
// imports resolved multiple times.
auto &diags = SF.getASTContext().Diags;
auto didSuppressWarnings = diags.getSuppressWarnings();
auto shouldSuppress = SF.getParsingOptions().contains(
SourceFile::ParsingFlags::SuppressWarnings);
diags.setSuppressWarnings(didSuppressWarnings || shouldSuppress);
SWIFT_DEFER { diags.setSuppressWarnings(didSuppressWarnings); };
ImportResolver resolver(SF);
// Resolve each import declaration.
for (auto D : SF.getTopLevelDecls())
resolver.visit(D);
for (auto D : SF.getHoistedDecls())
resolver.visit(D);
SF.setImports(resolver.getFinishedImports());
SF.setImportedUnderlyingModule(resolver.getUnderlyingClangModule());
SF.ASTStage = SourceFile::ImportsResolved;
verify(SF);
}
void swift::performImportResolutionForClangMacroBuffer(
SourceFile &SF, ModuleDecl *clangModule
) {
// If we've already performed import resolution, bail.
if (SF.ASTStage == SourceFile::ImportsResolved)
return;
ImportResolver resolver(SF);
resolver.addImplicitImport(clangModule);
SF.setImports(resolver.getFinishedImports());
SF.setImportedUnderlyingModule(resolver.getUnderlyingClangModule());
SF.ASTStage = SourceFile::ImportsResolved;
}
//===----------------------------------------------------------------------===//
// MARK: Import handling generally
//===----------------------------------------------------------------------===//
void ImportResolver::visitImportDecl(ImportDecl *ID) {
assert(unboundImports.empty());
unboundImports.emplace_back(ID);
bindPendingImports();
}
void ImportResolver::bindPendingImports() {
while(!unboundImports.empty())
bindImport(unboundImports.pop_back_val());
}
void ImportResolver::bindImport(UnboundImport &&I) {
auto ID = I.getImportDecl();
if (!I.checkNotTautological(SF)) {
// No need to process this import further.
if (ID)
ID.get()->setModule(SF.getParentModule());
return;
}
ModuleDecl *M = getModule(I.import.module.getModulePath());
if (!I.checkModuleLoaded(M, SF)) {
// Can't process further. checkModuleLoaded() will have diagnosed this.
if (ID)
ID.get()->setModule(nullptr);
return;
}
// Load more dependencies for testable imports.
if (I.import.options.contains(ImportFlags::Testable)) {
SourceLoc diagLoc;
if (ID) diagLoc = ID.get()->getStartLoc();
for (auto file: M->getFiles())
file->loadDependenciesForTestable(diagLoc);
}
auto topLevelModule = I.getTopLevelModule(M, SF);
I.validateOptions(topLevelModule, SF);
if (topLevelModule && topLevelModule != M) {
// If we have distinct submodule and top-level module, add both.
addImport(I, M);
addImport(I, topLevelModule.get());
}
else {
// Add only the import itself.
addImport(I, M);
}
crossImport(M, I);
if (ID)
ID.get()->setModule(M);
}
void ImportResolver::addImport(const UnboundImport &I, ModuleDecl *M) {
auto importDesc = I.makeAttributedImport(M);
addCrossImportableModules(importDesc);
boundImports.push_back(importDesc);
}
//===----------------------------------------------------------------------===//
// MARK: Import module loading
//===----------------------------------------------------------------------===//
ModuleDecl *
ImportResolver::getModule(ImportPath::Module modulePath) {
auto loadingModule = SF.getParentModule();
ASTContext &ctx = loadingModule->getASTContext();
assert(!modulePath.empty());
auto moduleID = modulePath[0];
// The Builtin module cannot be explicitly imported unless:
// 1. We're in a .sil file
// 2. '-enable-builtin-module'/'-enable-experimental-feature BuiltinModule'
// was passed.
//
// FIXME: Eventually, it would be nice to separate '-parse-stdlib' from
// implicitly importing Builtin, but we're not there yet.
if (SF.Kind == SourceFileKind::SIL ||
ctx.LangOpts.hasFeature(Feature::BuiltinModule)) {
if (moduleID.Item == ctx.TheBuiltinModule->getName()) {
return ctx.TheBuiltinModule;
}
}
// Only allow importing "Volatile" with Feature::Volatile or Feature::Embedded
if (!ctx.LangOpts.hasFeature(Feature::Volatile) &&
!ctx.LangOpts.hasFeature(Feature::Embedded)) {
if (ctx.getRealModuleName(moduleID.Item).str() == "_Volatile") {
ctx.Diags.diagnose(SourceLoc(), diag::volatile_is_experimental);
return nullptr;
}
}
// If the imported module name is the same as the current module,
// skip the Swift module loader and use the Clang module loader instead.
// This allows a Swift module to extend a Clang module of the same name.
//
// FIXME: We'd like to only use this in SIL mode, but unfortunately we use it
// for clang overlays as well.
if (ctx.getRealModuleName(moduleID.Item) == loadingModule->getName() &&
modulePath.size() == 1) {
if (auto importer = ctx.getClangModuleLoader()) {
underlyingClangModule = importer->loadModule(moduleID.Loc, modulePath);
return underlyingClangModule;
}
return nullptr;
}
return ctx.getModule(modulePath);
}
NullablePtr<ModuleDecl>
UnboundImport::getTopLevelModule(ModuleDecl *M, SourceFile &SF) {
if (import.module.getModulePath().size() == 1)
return M;
// If we imported a submodule, import the top-level module as well.
Identifier topLevelName = import.module.getModulePath().front().Item;
ModuleDecl *topLevelModule = SF.getASTContext().getLoadedModule(topLevelName);
if (!topLevelModule) {
// Clang can sometimes import top-level modules as if they were
// submodules.
assert(!M->getFiles().empty() &&
isa<ClangModuleUnit>(M->getFiles().front()));
return M;
}
if (topLevelModule == SF.getParentModule())
// This can happen when compiling a mixed-source framework (or overlay)
// that imports a submodule of its C part.
return nullptr;
return topLevelModule;
}
//===----------------------------------------------------------------------===//
// MARK: Implicit imports
//===----------------------------------------------------------------------===//
static void tryStdlibFixit(ASTContext &ctx,
StringRef moduleName,
SourceLoc loc) {
if (moduleName.starts_with("std")) {
ctx.Diags.diagnose(loc, diag::did_you_mean_cxxstdlib)
.fixItReplaceChars(loc, loc.getAdvancedLoc(3), "CxxStdlib");
}
}
static void diagnoseNoSuchModule(ModuleDecl *importingModule,
SourceLoc importLoc,
ImportPath::Module modulePath,
bool nonfatalInREPL) {
ASTContext &ctx = importingModule->getASTContext();
if (modulePath.size() == 1 &&
importingModule->getName() == modulePath.front().Item) {
ctx.Diags.diagnose(importLoc, diag::error_underlying_module_not_found,
importingModule->getName());
} else {
SmallString<64> modulePathStr;
modulePath.getString(modulePathStr);
auto diagKind = diag::sema_no_import;
if (nonfatalInREPL && ctx.LangOpts.DebuggerSupport)
diagKind = diag::sema_no_import_repl;
ctx.Diags.diagnose(importLoc, diagKind, modulePathStr);
tryStdlibFixit(ctx, modulePathStr, importLoc);
}
if (ctx.SearchPathOpts.getSDKPath().empty() &&
llvm::Triple(llvm::sys::getProcessTriple()).isMacOSX()) {
ctx.Diags.diagnose(SourceLoc(), diag::sema_no_import_no_sdk);
ctx.Diags.diagnose(SourceLoc(), diag::sema_no_import_no_sdk_xcrun);
}
}
ImplicitImportList
ModuleImplicitImportsRequest::evaluate(Evaluator &evaluator,
ModuleDecl *module) const {
SmallVector<AttributedImport<ImportedModule>, 4> imports;
SmallVector<AttributedImport<UnloadedImportedModule>, 4> unloadedImports;
auto &ctx = module->getASTContext();
auto &importInfo = module->getImplicitImportInfo();
// Add an implicit stdlib if needed.
ModuleDecl *stdlib;
switch (importInfo.StdlibKind) {
case ImplicitStdlibKind::None:
stdlib = nullptr;
break;
case ImplicitStdlibKind::Builtin:
stdlib = ctx.TheBuiltinModule;
break;
case ImplicitStdlibKind::Stdlib:
stdlib = ctx.getStdlibModule(/*loadIfAbsent*/ true);
assert(stdlib && "Missing stdlib?");
break;
}
if (stdlib)
imports.emplace_back(ImportedModule(stdlib));
// Add any modules we were asked to implicitly import.
llvm::copy(importInfo.AdditionalUnloadedImports,
std::back_inserter(unloadedImports));
// Add any pre-loaded modules.
llvm::copy(importInfo.AdditionalImports, std::back_inserter(imports));
auto *clangImporter =
static_cast<ClangImporter *>(ctx.getClangModuleLoader());
// Implicitly import the bridging header module if needed.
auto bridgingHeaderPath = importInfo.BridgingHeaderPath;
if (!bridgingHeaderPath.empty() &&
!clangImporter->importBridgingHeader(bridgingHeaderPath, module)) {
auto *headerModule = clangImporter->getImportedHeaderModule();
assert(headerModule && "Didn't load bridging header?");
imports.emplace_back(
ImportedModule(headerModule), SourceLoc(), ImportFlags::Exported);
}
// Implicitly import the underlying Clang half of this module if needed.
if (importInfo.ShouldImportUnderlyingModule) {
// An @_exported self-import is loaded from ClangImporter instead of being
// rejected; see the special case in getModuleImpl() for details.
ImportPath::Builder importPath(module->getName());
unloadedImports.emplace_back(UnloadedImportedModule(importPath.copyTo(ctx),
/*isScoped=*/false),
SourceLoc(), ImportFlags::Exported);
}
return { ctx.AllocateCopy(imports), ctx.AllocateCopy(unloadedImports) };
}
void ImportResolver::addImplicitImports() {
auto implicitImports = SF.getParentModule()->getImplicitImports();
// TODO: Support cross-module imports.
for (auto &import : implicitImports.imports) {
assert(!(SF.Kind == SourceFileKind::SIL &&
import.module.importedModule->isStdlibModule()));
boundImports.push_back(import);
}
for (auto &unloadedImport : implicitImports.unloadedImports)
unboundImports.emplace_back(unloadedImport);
bindPendingImports();
}
UnboundImport::UnboundImport(AttributedImport<UnloadedImportedModule> implicit)
: import(implicit), importLoc(),
importOrUnderlyingModuleDecl(static_cast<ImportDecl *>(nullptr)) {}
//===----------------------------------------------------------------------===//
// MARK: Import validation (except for scoped imports)
//===----------------------------------------------------------------------===//
ImportOptions getImportOptions(ImportDecl *ID) {
return ImportOptions();
}
/// Create an UnboundImport for a user-written import declaration.
UnboundImport::UnboundImport(ImportDecl *ID)
: import(UnloadedImportedModule(ID->getImportPath(), ID->getImportKind()),
ID->getStartLoc(), {}),
importLoc(ID->getLoc()), importOrUnderlyingModuleDecl(ID)
{
if (ID->isExported())
import.options |= ImportFlags::Exported;
if (ID->getAttrs().hasAttribute<TestableAttr>())
import.options |= ImportFlags::Testable;
if (auto attr = ID->getAttrs().getAttribute<ImplementationOnlyAttr>()) {
import.options |= ImportFlags::ImplementationOnly;
import.implementationOnlyRange = attr->Range;
}
import.accessLevel = ID->getAccessLevel();
if (auto attr = ID->getAttrs().getAttribute<AccessControlAttr>()) {
import.accessLevelRange = attr->getLocation();
}
if (ID->getAttrs().hasAttribute<SPIOnlyAttr>())
import.options |= ImportFlags::SPIOnly;
if (auto *privateImportAttr =
ID->getAttrs().getAttribute<PrivateImportAttr>()) {
import.options |= ImportFlags::PrivateImport;
import.sourceFileArg = privateImportAttr->getSourceFile();
}
SmallVector<Identifier, 4> spiGroups;
for (auto attr : ID->getAttrs().getAttributes<SPIAccessControlAttr>()) {
import.options |= ImportFlags::SPIAccessControl;
auto attrSPIs = attr->getSPIGroups();
spiGroups.append(attrSPIs.begin(), attrSPIs.end());
}
import.spiGroups = ID->getASTContext().AllocateCopy(spiGroups);
if (auto attr = ID->getAttrs().getAttribute<PreconcurrencyAttr>()) {
import.options |= ImportFlags::Preconcurrency;
import.preconcurrencyRange = attr->getRangeWithAt();
}
if (ID->getAttrs().hasAttribute<WeakLinkedAttr>())
import.options |= ImportFlags::WeakLinked;
import.docVisibility = swift::symbolgraphgen::documentationVisibilityForDecl(ID);
}
bool UnboundImport::checkNotTautological(const SourceFile &SF) {
return swift::dependencies::checkImportNotTautological(
import.module.getModulePath(), importLoc, SF,
import.options.contains(ImportFlags::Exported));
}
bool UnboundImport::checkModuleLoaded(ModuleDecl *M, SourceFile &SF) {
if (M)
return true;
diagnoseNoSuchModule(SF.getParentModule(), importLoc,
import.module.getModulePath(), /*nonfatalInREPL=*/true);
return false;
}
void UnboundImport::validateOptions(NullablePtr<ModuleDecl> topLevelModule,
SourceFile &SF) {
validateRestrictedImport(SF.getASTContext());
if (auto *top = topLevelModule.getPtrOrNull()) {
// FIXME: Having these two calls in this if condition seems dubious.
//
// Here's the deal: Per getTopLevelModule(), we will only skip this block
// if you are in a mixed-source module and trying to import a submodule from
// your clang half. But that means you're trying to @testable import or
// @_private import part of yourself--and, moreover, a clang part of
// yourself--which doesn't make any sense to do. Shouldn't we diagnose that?
//
// I'm leaving this alone for now because I'm trying to refactor without
// changing behavior, but it smells funny.
validateTestable(top);
validatePrivate(top);
validateAllowableClient(top, SF);
validateInterfaceWithPackageName(top, SF);
}
validateResilience(topLevelModule, SF);
}
void UnboundImport::validatePrivate(ModuleDecl *topLevelModule) {
assert(topLevelModule);
ASTContext &ctx = topLevelModule->getASTContext();
if (!import.options.contains(ImportFlags::PrivateImport))
return;
if (topLevelModule->arePrivateImportsEnabled())
return;
diagnoseInvalidAttr(DeclAttrKind::PrivateImport, ctx.Diags,
diag::module_not_compiled_for_private_import);
import.sourceFileArg = StringRef();
}
void UnboundImport::validateRestrictedImport(ASTContext &ctx) {
static llvm::SmallVector<ImportFlags, 2> flags = {ImportFlags::Exported,
ImportFlags::ImplementationOnly,
ImportFlags::SPIOnly};
llvm::SmallVector<ImportFlags, 2> conflicts;
for (auto flag : flags) {
if (import.options.contains(flag))
conflicts.push_back(flag);
}
// Quit if there's no conflicting attributes.
if (conflicts.size() < 2)
return;
// Remove all but one flag to maintain the invariant.
for (auto iter = conflicts.begin(); iter != std::prev(conflicts.end()); iter ++)
import.options -= *iter;
DeclAttrKind attrToRemove = conflicts[0] == ImportFlags::ImplementationOnly
? DeclAttrKind::Exported
: DeclAttrKind::ImplementationOnly;
// More dense enum with some cases of ImportFlags,
// used by import_restriction_conflict.
enum class ImportFlagForDiag : uint8_t {
ImplementationOnly,
SPIOnly,
Exported
};
auto flagToDiag = [](ImportFlags flag) {
switch (flag) {
case ImportFlags::ImplementationOnly:
return ImportFlagForDiag::ImplementationOnly;
case ImportFlags::SPIOnly:
return ImportFlagForDiag::SPIOnly;
case ImportFlags::Exported:
return ImportFlagForDiag::Exported;
default:
llvm_unreachable("Unexpected ImportFlag");
}
};
// Report the conflict, only the first two conflicts should be enough.
auto diag = ctx.Diags.diagnose(import.module.getModulePath().front().Loc,
diag::import_restriction_conflict,
import.module.getModulePath().front().Item,
(uint8_t)flagToDiag(conflicts[0]),
(uint8_t)flagToDiag(conflicts[1]));
auto *ID = getImportDecl().getPtrOrNull();
if (!ID) return;
auto *attr = ID->getAttrs().getAttribute(attrToRemove);
if (!attr) return;
diag.fixItRemove(attr->getRangeWithAt());
attr->setInvalid();
}
void UnboundImport::validateTestable(ModuleDecl *topLevelModule) {
assert(topLevelModule);
ASTContext &ctx = topLevelModule->getASTContext();
if (!import.options.contains(ImportFlags::Testable) ||
topLevelModule->isTestingEnabled() ||
topLevelModule->isNonSwiftModule() ||
!ctx.LangOpts.EnableTestableAttrRequiresTestableModule)
return;
diagnoseInvalidAttr(DeclAttrKind::Testable, ctx.Diags,
diag::module_not_testable);
}
void UnboundImport::validateAllowableClient(ModuleDecl *importee,
SourceFile &SF) {
assert(importee);
auto *importer = SF.getParentModule();
if (!importee->allowImportedBy(importer)) {
ASTContext &ctx = SF.getASTContext();
ctx.Diags.diagnose(import.module.getModulePath().front().Loc,
diag::module_allowable_client_violation,
importee->getName(),
importer->getName());
}
}
void UnboundImport::validateInterfaceWithPackageName(ModuleDecl *topLevelModule,
SourceFile &SF) {
assert(topLevelModule);
// If current source file is interface, don't throw an error
if (SF.Kind == SourceFileKind::Interface)
return;
// If source file is .swift or non-interface, show diags when importing an interface file
ASTContext &ctx = topLevelModule->getASTContext();
if (topLevelModule->inSamePackage(ctx.MainModule) &&
topLevelModule->isBuiltFromInterface() &&
!topLevelModule->getModuleSourceFilename().ends_with(".package.swiftinterface")) {
ctx.Diags.diagnose(import.module.getModulePath().front().Loc,
diag::in_package_module_not_compiled_from_source_or_package_interface,
topLevelModule->getBaseIdentifier(),
ctx.LangOpts.PackageName,
topLevelModule->getModuleSourceFilename()
);
}
}
/// Returns true if the importer and importee tuple are on an allow list for
/// use of `@_implementationOnly import`, which is deprecated. Some existing
/// uses of `@_implementationOnly import` cannot be safely replaced by
/// `internal import` because the existence of the imported module must always
/// be hidden from clients.
static bool shouldSuppressNonResilientImplementationOnlyImportDiagnostic(
StringRef targetName, StringRef importerName) {
if (targetName == "SwiftConcurrencyInternalShims")
return importerName == "_Concurrency";
if (targetName == "CCryptoBoringSSL" || targetName == "CCryptoBoringSSLShims")
return importerName == "Crypto" || importerName == "_CryptoExtras" ||
importerName == "CryptoBoringWrapper";
if (targetName == "CNIOBoringSSL" || targetName == "CNIOBoringSSLShims")
return importerName != "NIOSSL";
return false;
}
void UnboundImport::validateResilience(NullablePtr<ModuleDecl> topLevelModule,
SourceFile &SF) {
if (!topLevelModule)
return;
// If the module we're validating is the builtin one, then just return because
// this module is essentially a header only import and does not concern
// itself with resiliency. This can occur when one has passed
// '-enable-builtin-module' and is explicitly importing the Builtin module in
// their sources.
ASTContext &ctx = SF.getASTContext();
if (topLevelModule.get() == ctx.TheBuiltinModule)
return;
Identifier importerName = SF.getParentModule()->getName(),
targetName = topLevelModule.get()->getName();
// @_implementationOnly is only supported when used from modules built with
// library-evolution. Otherwise it can lead to runtime crashes from a lack
// of memory layout information when building clients unaware of the
// dependency. The missing information is provided at run time by resilient
// modules.
// We exempt some imports using @_implementationOnly in a safe way from
// packages that cannot be resilient.
if (import.options.contains(ImportFlags::ImplementationOnly) &&
import.implementationOnlyRange.isValid()) {
if (SF.getParentModule()->isResilient()) {
// Encourage replacing `@_implementationOnly` with `internal import`.
if (!topLevelModule.get()->isNonSwiftModule()) {
auto inFlight =
ctx.Diags.diagnose(import.importLoc,
diag::implementation_only_deprecated);
inFlight.fixItReplace(import.implementationOnlyRange, "internal");
}
} else if ( // Non-resilient client
!shouldSuppressNonResilientImplementationOnlyImportDiagnostic(
targetName.str(), importerName.str())) {
ctx.Diags.diagnose(import.importLoc,
diag::implementation_only_requires_library_evolution,
importerName);
}
}
// Report public imports of non-resilient modules from a resilient module.
if (topLevelModule.get()->isNonSwiftModule() ||
import.options.contains(ImportFlags::ImplementationOnly) ||
import.accessLevel < AccessLevel::Public)
return;
if (!SF.getParentModule()->isResilient() ||
topLevelModule.get()->isResilient())
return;
auto inFlight = ctx.Diags.diagnose(import.module.getModulePath().front().Loc,
diag::module_not_compiled_with_library_evolution,
targetName, importerName);
if (ctx.LangOpts.hasFeature(Feature::InternalImportsByDefault)) {
// This will catch Swift 6 language mode as well where
// it will be reported as an error.
inFlight.fixItRemove(import.accessLevelRange);
} else {
SourceRange attrRange = import.accessLevelRange;
if (attrRange.isValid())
inFlight.fixItReplace(attrRange, "internal");
else
inFlight.fixItInsert(import.importLoc, "internal ");
// Downgrade to warning only in pre-Swift 6 mode and
// when not using the experimental flag.
if (!ctx.LangOpts.hasFeature(Feature::AccessLevelOnImport))
inFlight.limitBehavior(DiagnosticBehavior::Warning);
}
}
void UnboundImport::diagnoseInvalidAttr(DeclAttrKind attrKind,
DiagnosticEngine &diags,
Diag<Identifier> diagID) {
auto diag = diags.diagnose(import.module.getModulePath().front().Loc, diagID,
import.module.getModulePath().front().Item);
auto *ID = getImportDecl().getPtrOrNull();
if (!ID) return;
auto *attr = ID->getAttrs().getAttribute(attrKind);
if (!attr) return;
diag.fixItRemove(attr->getRangeWithAt());
attr->setInvalid();
}
/// Returns true if any file in the module contains an import with \c flag.
static bool moduleHasAnyImportsMatchingFlag(ModuleDecl *mod, ImportFlags flag) {
for (const FileUnit *F : mod->getFiles()) {
auto *SF = dyn_cast<SourceFile>(F);
if (SF && SF->hasImportsWithFlag(flag))
return true;
}
return false;
}
/// Finds all import declarations for a single file that inconsistently match
/// \c predicate and passes each pair of inconsistent imports to \c diagnose.
template <typename Pred, typename Diag>
static void findInconsistentImportsAcrossFile(
const SourceFile *SF, Pred predicate, Diag diagnose,
llvm::DenseMap<ModuleDecl *, const ImportDecl *> &matchingImports,
llvm::DenseMap<ModuleDecl *, std::vector<const ImportDecl *>> &otherImports) {
for (auto *topLevelDecl : SF->getTopLevelDecls()) {
auto *nextImport = dyn_cast<ImportDecl>(topLevelDecl);
if (!nextImport)
continue;
ModuleDecl *module = nextImport->getModule();
if (!module)
continue;
if (predicate(nextImport)) {
// We found a matching import.
bool isNew = matchingImports.insert({module, nextImport}).second;
if (!isNew)
continue;
auto seenOtherImportPosition = otherImports.find(module);
if (seenOtherImportPosition != otherImports.end()) {
for (auto *seenOtherImport : seenOtherImportPosition->getSecond())
diagnose(seenOtherImport, nextImport);
// We're done with these; keep the map small if possible.
otherImports.erase(seenOtherImportPosition);
}
continue;
}
// We saw a non-matching import. Is that in conflict with what we've seen?
if (auto *seenMatchingImport = matchingImports.lookup(module)) {
diagnose(nextImport, seenMatchingImport);
continue;
}
// Otherwise, record it for later.
otherImports[module].push_back(nextImport);
}
}
/// Finds all import declarations for a single module that inconsistently match
/// \c predicate and passes each pair of inconsistent imports to \c diagnose.
template <typename Pred, typename Diag>
static void findInconsistentImportsAcrossModule(ModuleDecl *mod, Pred predicate,
Diag diagnose) {
llvm::DenseMap<ModuleDecl *, const ImportDecl *> matchingImports;
llvm::DenseMap<ModuleDecl *, std::vector<const ImportDecl *>> otherImports;
for (const FileUnit *file : mod->getFiles()) {
auto *SF = dyn_cast<SourceFile>(file);