-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTypeCheckProtocol.cpp
6884 lines (5968 loc) · 258 KB
/
TypeCheckProtocol.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
//===--- TypeCheckProtocol.cpp - Protocol Checking ------------------------===//
//
// 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 semantic analysis for protocols, in particular, checking
// whether a given type conforms to a given protocol.
//===----------------------------------------------------------------------===//
#include "TypeCheckProtocol.h"
#include "DerivedConformances.h"
#include "MiscDiagnostics.h"
#include "TypeAccessScopeChecker.h"
#include "TypeCheckAccess.h"
#include "TypeCheckAvailability.h"
#include "TypeCheckConcurrency.h"
#include "TypeCheckObjC.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTMangler.h"
#include "swift/AST/ASTPrinter.h"
#include "swift/AST/AccessScope.h"
#include "swift/AST/ClangModuleLoader.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Effects.h"
#include "swift/AST/ExistentialLayout.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/AST/GenericSignature.h"
#include "swift/AST/NameLookup.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/PrettyStackTrace.h"
#include "swift/AST/ProtocolConformance.h"
#include "swift/AST/TypeCheckRequests.h"
#include "swift/AST/TypeDeclFinder.h"
#include "swift/AST/TypeMatcher.h"
#include "swift/AST/TypeWalker.h"
#include "swift/Basic/Defer.h"
#include "swift/Basic/SourceManager.h"
#include "swift/Basic/Statistic.h"
#include "swift/Basic/StringExtras.h"
#include "swift/ClangImporter/ClangModule.h"
#include "swift/Sema/IDETypeChecking.h"
#include "swift/Serialization/SerializedModuleLoader.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/SaveAndRestore.h"
#define DEBUG_TYPE "Protocol conformance checking"
#include "llvm/Support/Debug.h"
using namespace swift;
namespace {
/// Whether any of the given optional adjustments is an error (vs. a
/// warning).
bool hasAnyError(ArrayRef<OptionalAdjustment> adjustments) {
for (const auto &adjustment : adjustments)
if (adjustment.isError())
return true;
return false;
}
}
/// Describes the suitability of the chosen witness for
/// the requirement.
struct swift::RequirementCheck {
CheckKind Kind;
/// The required access scope, if the check failed due to the
/// witness being less accessible than the requirement.
AccessScope RequiredAccessScope;
/// The required availability, if the check failed due to the
/// witness being less available than the requirement.
AvailabilityContext RequiredAvailability;
RequirementCheck(CheckKind kind)
: Kind(kind), RequiredAccessScope(AccessScope::getPublic()),
RequiredAvailability(AvailabilityContext::alwaysAvailable()) { }
RequirementCheck(CheckKind kind, AccessScope requiredAccessScope)
: Kind(kind), RequiredAccessScope(requiredAccessScope),
RequiredAvailability(AvailabilityContext::alwaysAvailable()) { }
RequirementCheck(CheckKind kind, AvailabilityContext requiredAvailability)
: Kind(kind), RequiredAccessScope(AccessScope::getPublic()),
RequiredAvailability(requiredAvailability) { }
};
swift::Witness RequirementMatch::getWitness(ASTContext &ctx) const {
auto syntheticEnv = ReqEnv->getSyntheticEnvironment();
return swift::Witness(this->Witness, WitnessSubstitutions,
syntheticEnv, ReqEnv->getRequirementToSyntheticMap(),
DerivativeGenSig);
}
AssociatedTypeDecl *
swift::getReferencedAssocTypeOfProtocol(Type type, ProtocolDecl *proto) {
if (auto dependentMember = type->getAs<DependentMemberType>()) {
if (auto assocType = dependentMember->getAssocType()) {
if (dependentMember->getBase()->isEqual(proto->getSelfInterfaceType())) {
// Exact match: this is our associated type.
if (assocType->getProtocol() == proto)
return assocType;
// Check whether there is an associated type of the same name in
// this protocol.
if (auto *found = proto->getAssociatedType(assocType->getName()))
return found;
}
}
}
return nullptr;
}
namespace {
/// The kind of variance (none, covariance, contravariance) to apply
/// when comparing types from a witness to types in the requirement
/// we're matching it against.
enum class VarianceKind {
None,
Covariant,
Contravariant
};
} // end anonymous namespace
static std::tuple<Type, Type, OptionalAdjustmentKind>
getTypesToCompare(ValueDecl *reqt, Type reqtType, bool reqtTypeIsIUO,
Type witnessType, bool witnessTypeIsIUO,
VarianceKind variance) {
// If the witness type is noescape but the requirement type is not,
// adjust the witness type to be escaping. This permits a limited form of
// covariance.
bool reqNoescapeToEscaping = false;
(void)adjustInferredAssociatedType(reqtType, reqNoescapeToEscaping);
bool witnessNoescapeToEscaping = false;
Type adjustedWitnessType =
adjustInferredAssociatedType(witnessType, witnessNoescapeToEscaping);
if (witnessNoescapeToEscaping && !reqNoescapeToEscaping)
witnessType = adjustedWitnessType;
// For @objc protocols, deal with differences in the optionality.
// FIXME: It probably makes sense to extend this to non-@objc
// protocols as well, but this requires more testing.
OptionalAdjustmentKind optAdjustment = OptionalAdjustmentKind::None;
if (!reqt->isObjC())
return std::make_tuple(reqtType, witnessType, optAdjustment);
bool reqtIsOptional = false;
if (Type reqtValueType = reqtType->getOptionalObjectType()) {
reqtIsOptional = true;
reqtType = reqtValueType;
}
bool witnessIsOptional = false;
if (Type witnessValueType = witnessType->getOptionalObjectType()) {
witnessIsOptional = true;
witnessType = witnessValueType;
}
// When the requirement is an IUO, all is permitted, because we
// assume that the user knows more about the signature than we
// have information in the protocol.
if (reqtTypeIsIUO)
return std::make_tuple(reqtType, witnessType, optAdjustment);
if (reqtIsOptional) {
if (witnessIsOptional) {
if (witnessTypeIsIUO)
optAdjustment = OptionalAdjustmentKind::IUOToOptional;
} else {
switch (variance) {
case VarianceKind::None:
case VarianceKind::Contravariant:
optAdjustment = OptionalAdjustmentKind::ConsumesUnhandledNil;
break;
case VarianceKind::Covariant:
optAdjustment = OptionalAdjustmentKind::WillNeverProduceNil;
break;
}
}
} else if (witnessIsOptional) {
if (witnessTypeIsIUO) {
optAdjustment = OptionalAdjustmentKind::RemoveIUO;
} else {
switch (variance) {
case VarianceKind::None:
case VarianceKind::Covariant:
optAdjustment = OptionalAdjustmentKind::ProducesUnhandledNil;
break;
case VarianceKind::Contravariant:
optAdjustment = OptionalAdjustmentKind::WillNeverConsumeNil;
break;
}
}
}
return std::make_tuple(reqtType, witnessType, optAdjustment);
}
/// Check that the Objective-C method(s) provided by the witness have
/// the same selectors as those required by the requirement.
static bool checkObjCWitnessSelector(ValueDecl *req, ValueDecl *witness) {
// Simple case: for methods and initializers, check that the selectors match.
if (auto reqFunc = dyn_cast<AbstractFunctionDecl>(req)) {
auto witnessFunc = cast<AbstractFunctionDecl>(witness);
if (reqFunc->getObjCSelector() == witnessFunc->getObjCSelector())
return false;
auto diagInfo = getObjCMethodDiagInfo(witnessFunc);
auto diag = witness->diagnose(
diag::objc_witness_selector_mismatch, diagInfo.first, diagInfo.second,
witnessFunc->getObjCSelector(), reqFunc->getObjCSelector());
fixDeclarationObjCName(diag, witnessFunc,
witnessFunc->getObjCSelector(),
reqFunc->getObjCSelector());
return true;
}
// Otherwise, we have an abstract storage declaration.
auto reqStorage = cast<AbstractStorageDecl>(req);
auto witnessStorage = cast<AbstractStorageDecl>(witness);
// FIXME: Check property names!
// Check the getter.
if (auto reqGetter = reqStorage->getParsedAccessor(AccessorKind::Get)) {
auto *witnessGetter =
witnessStorage->getSynthesizedAccessor(AccessorKind::Get);
if (checkObjCWitnessSelector(reqGetter, witnessGetter))
return true;
}
// Check the setter.
if (auto reqSetter = reqStorage->getParsedAccessor(AccessorKind::Set)) {
auto *witnessSetter =
witnessStorage->getSynthesizedAccessor(AccessorKind::Set);
if (checkObjCWitnessSelector(reqSetter, witnessSetter))
return true;
}
return false;
}
// Find a standin declaration to place the diagnostic at for the
// given accessor kind.
static ValueDecl *getStandinForAccessor(AbstractStorageDecl *witness,
AccessorKind requirementKind) {
// If the storage actually explicitly provides that accessor, great.
if (auto accessor = witness->getParsedAccessor(requirementKind))
return accessor;
// If it didn't, check to see if it provides something else that corresponds
// to the requirement.
switch (requirementKind) {
case AccessorKind::Get:
if (auto read = witness->getParsedAccessor(AccessorKind::Read))
return read;
if (auto addressor = witness->getParsedAccessor(AccessorKind::Address))
return addressor;
break;
case AccessorKind::Read:
if (auto getter = witness->getParsedAccessor(AccessorKind::Get))
return getter;
if (auto addressor = witness->getParsedAccessor(AccessorKind::Address))
return addressor;
break;
case AccessorKind::Modify:
if (auto setter = witness->getParsedAccessor(AccessorKind::Set))
return setter;
if (auto addressor = witness->getParsedAccessor(AccessorKind::MutableAddress))
return addressor;
break;
case AccessorKind::Set:
if (auto modify = witness->getParsedAccessor(AccessorKind::Modify))
return modify;
if (auto addressor = witness->getParsedAccessor(AccessorKind::MutableAddress))
return addressor;
break;
#define OPAQUE_ACCESSOR(ID, KEYWORD)
#define ACCESSOR(ID) \
case AccessorKind::ID:
#include "swift/AST/AccessorKinds.def"
llvm_unreachable("unexpected accessor requirement");
}
// Otherwise, just diagnose starting at the storage declaration itself.
return witness;
}
/// Given a witness, a requirement, and an existing `RequirementMatch` result,
/// check if the requirement's `@differentiable` attributes are met by the
/// witness.
/// - If `result` is not viable, do nothing.
/// - If requirement's `@differentiable` attributes are met, update `result`
/// with the matched derivative generic signature.
/// - Otherwise, returns a "missing `@differentiable` attribute"
/// `RequirementMatch`.
static void
matchWitnessDifferentiableAttr(DeclContext *dc, ValueDecl *req,
ValueDecl *witness, RequirementMatch &result) {
if (!result.isViable())
return;
// Get the requirement and witness attributes.
const auto &reqAttrs = req->getAttrs();
const auto &witnessAttrs = witness->getAttrs();
// For all `@differentiable` attributes of the protocol requirement, check
// that the witness has a derivative configuration with exactly the same
// parameter indices, or one with "superset" parameter indices. If there
// exists a witness derivative configuration with "superset" parameter
// indices, create an implicit `@differentiable` attribute for the witness
// with the exact parameter indices from the requirement `@differentiable`
// attribute.
ASTContext &ctx = witness->getASTContext();
auto *witnessAFD = dyn_cast<AbstractFunctionDecl>(witness);
if (auto *witnessASD = dyn_cast<AbstractStorageDecl>(witness))
witnessAFD = witnessASD->getOpaqueAccessor(AccessorKind::Get);
// NOTE: Validate `@differentiable` attributes by calling
// `getParameterIndices`. This is important for type-checking
// `@differentiable` attributes in non-primary files to skip invalid
// attributes and to resolve derivative configurations, used below.
for (auto *witnessDiffAttr :
witnessAttrs.getAttributes<DifferentiableAttr>()) {
(void)witnessDiffAttr->getParameterIndices();
}
for (auto *reqDiffAttr : reqAttrs.getAttributes<DifferentiableAttr>()) {
(void)reqDiffAttr->getParameterIndices();
}
for (auto *reqDiffAttr : reqAttrs.getAttributes<DifferentiableAttr>()) {
bool foundExactConfig = false;
Optional<AutoDiffConfig> supersetConfig = None;
for (auto witnessConfig :
witnessAFD->getDerivativeFunctionConfigurations()) {
// All the witness's derivative generic requirements must be satisfied
// by the requirement's derivative generic requirements OR by the
// conditional conformance requirements.
if (witnessConfig.derivativeGenericSignature) {
bool genericRequirementsSatisfied = true;
auto reqDiffGenSig = reqDiffAttr->getDerivativeGenericSignature();
auto conformanceGenSig = dc->getGenericSignatureOfContext();
for (const auto &req :
witnessConfig.derivativeGenericSignature.getRequirements()) {
auto substReq = req.subst(result.WitnessSubstitutions);
bool reqDiffGenSigSatisfies =
reqDiffGenSig && substReq &&
reqDiffGenSig->isRequirementSatisfied(*substReq);
bool conformanceGenSigSatisfies =
conformanceGenSig &&
conformanceGenSig->isRequirementSatisfied(req);
if (!reqDiffGenSigSatisfies && !conformanceGenSigSatisfies) {
genericRequirementsSatisfied = false;
break;
}
}
if (!genericRequirementsSatisfied)
continue;
}
if (witnessConfig.parameterIndices ==
reqDiffAttr->getParameterIndices()) {
foundExactConfig = true;
// Store the matched witness derivative generic signature.
result.DerivativeGenSig = witnessConfig.derivativeGenericSignature;
break;
}
if (witnessConfig.parameterIndices->isSupersetOf(
reqDiffAttr->getParameterIndices()))
supersetConfig = witnessConfig;
}
// If no exact witness derivative configuration was found, check conditions
// for creating an implicit witness `@differentiable` attribute with the
// exact derivative configuration.
if (!foundExactConfig) {
auto witnessInDifferentFile =
dc->getParentSourceFile() !=
witness->getDeclContext()->getParentSourceFile();
auto witnessInDifferentTypeContext =
dc->getInnermostTypeContext() !=
witness->getDeclContext()->getInnermostTypeContext();
// Produce an error instead of creating an implicit `@differentiable`
// attribute if any of the following conditions are met:
// - The witness is in a different file than the conformance
// declaration.
// - The witness is in a different type context (i.e. extension) than
// the conformance declaration, and there is no existing
// `@differentiable` attribute that covers the required differentiation
// parameters.
if (witnessInDifferentFile ||
(witnessInDifferentTypeContext && !supersetConfig)) {
// FIXME(TF-1014): `@differentiable` attribute diagnostic does not
// appear if associated type inference is involved.
if (auto *vdWitness = dyn_cast<VarDecl>(witness)) {
result = RequirementMatch(
getStandinForAccessor(vdWitness, AccessorKind::Get),
MatchKind::MissingDifferentiableAttr, reqDiffAttr);
} else {
result = RequirementMatch(
witness, MatchKind::MissingDifferentiableAttr, reqDiffAttr);
}
}
// Otherwise, the witness must:
// - Have a "superset" derivative configuration.
// - Have less than public visibility.
// - `@differentiable` attributes are really only significant for
// public declarations: it improves usability to not require
// explicit `@differentiable` attributes for less-visible
// declarations.
//
// If these conditions are met, an implicit `@differentiable` attribute
// with the exact derivative configuration can be created.
bool success = false;
bool createImplicitWitnessAttribute =
supersetConfig || witness->getFormalAccess() < AccessLevel::Public;
if (createImplicitWitnessAttribute) {
auto derivativeGenSig = witnessAFD->getGenericSignature();
if (supersetConfig)
derivativeGenSig = supersetConfig->derivativeGenericSignature;
// Use source location of the witness declaration as the source location
// of the implicit `@differentiable` attribute.
auto *newAttr = DifferentiableAttr::create(
witnessAFD, /*implicit*/ true, witness->getLoc(), witness->getLoc(),
reqDiffAttr->getDifferentiabilityKind(),
reqDiffAttr->getParameterIndices(),
derivativeGenSig);
// If the implicit attribute is inherited from a protocol requirement's
// attribute, store the protocol requirement attribute's location for
// use in diagnostics.
if (witness->getFormalAccess() < AccessLevel::Public) {
newAttr->getImplicitlyInheritedDifferentiableAttrLocation(
reqDiffAttr->getLocation());
}
auto insertion = ctx.DifferentiableAttrs.try_emplace(
{witnessAFD, newAttr->getParameterIndices()}, newAttr);
// Valid `@differentiable` attributes are uniqued by original function
// and parameter indices. Reject duplicate attributes.
if (!insertion.second) {
newAttr->setInvalid();
} else {
witness->getAttrs().add(newAttr);
success = true;
// Register derivative function configuration.
auto *resultIndices = IndexSubset::get(ctx, 1, {0});
witnessAFD->addDerivativeFunctionConfiguration(
{newAttr->getParameterIndices(), resultIndices,
newAttr->getDerivativeGenericSignature()});
// Store the witness derivative generic signature.
result.DerivativeGenSig = newAttr->getDerivativeGenericSignature();
}
}
if (!success) {
LLVM_DEBUG({
llvm::dbgs() << "Protocol requirement match failure: missing "
"`@differentiable` attribute for witness ";
witnessAFD->dumpRef(llvm::dbgs());
llvm::dbgs() << " from requirement ";
req->dumpRef(llvm::dbgs());
llvm::dbgs() << '\n';
});
// FIXME(TF-1014): `@differentiable` attribute diagnostic does not
// appear if associated type inference is involved.
if (auto *vdWitness = dyn_cast<VarDecl>(witness)) {
result = RequirementMatch(
getStandinForAccessor(vdWitness, AccessorKind::Get),
MatchKind::MissingDifferentiableAttr, reqDiffAttr);
} else {
result = RequirementMatch(
witness, MatchKind::MissingDifferentiableAttr, reqDiffAttr);
}
}
}
}
}
/// A property or subscript witness must have the same or fewer
/// effects specifiers than the protocol requirement.
///
/// \returns None iff the witness satisfies the requirement's effects limit.
/// Otherwise, it returns the RequirementMatch that describes the
/// problem.
static Optional<RequirementMatch> checkEffects(AbstractStorageDecl *witness,
AbstractStorageDecl *req) {
if (!witness->isLessEffectfulThan(req, EffectKind::Async))
return RequirementMatch(getStandinForAccessor(witness, AccessorKind::Get),
MatchKind::AsyncConflict);
if (!witness->isLessEffectfulThan(req, EffectKind::Throws))
return RequirementMatch(getStandinForAccessor(witness, AccessorKind::Get),
MatchKind::ThrowsConflict);
return None; // OK
}
RequirementMatch
swift::matchWitness(
DeclContext *dc, ValueDecl *req, ValueDecl *witness,
llvm::function_ref<
std::tuple<Optional<RequirementMatch>, Type, Type>(void)>
setup,
llvm::function_ref<Optional<RequirementMatch>(Type, Type)>
matchTypes,
llvm::function_ref<
RequirementMatch(bool, ArrayRef<OptionalAdjustment>)
> finalize) {
assert(!req->isInvalid() && "Cannot have an invalid requirement here");
/// Make sure the witness is of the same kind as the requirement.
if (req->getKind() != witness->getKind()) {
// An enum case can witness:
// 1. A static get-only property requirement, as long as the property's
// type is `Self` or it matches the type of the enum explicitly.
// 2. A static function requirement, if the enum case has a payload
// and the payload types and labels match the function and the
// function returns `Self` or the type of the enum.
//
// If there are any discrepencies, we'll diagnose it later. For now,
// let's assume the match is valid.
if (!((isa<VarDecl>(req) || isa<FuncDecl>(req)) &&
isa<EnumElementDecl>(witness)))
return RequirementMatch(witness, MatchKind::KindConflict);
}
// If we're currently validating the witness, bail out.
if (witness->isRecursiveValidation()) {
return RequirementMatch(witness, MatchKind::Circularity);
}
// If the witness is invalid, record that and stop now.
if (witness->isInvalid()) {
return RequirementMatch(witness, MatchKind::WitnessInvalid);
}
// Get the requirement and witness attributes.
const auto &reqAttrs = req->getAttrs();
const auto &witnessAttrs = witness->getAttrs();
// Perform basic matching of the requirement and witness.
bool decomposeFunctionType = false;
bool ignoreReturnType = false;
if (isa<FuncDecl>(req) && isa<FuncDecl>(witness)) {
auto funcReq = cast<FuncDecl>(req);
auto funcWitness = cast<FuncDecl>(witness);
// Either both must be 'static' or neither.
if (funcReq->isStatic() != funcWitness->isStatic() &&
!(funcReq->isOperator() &&
!funcWitness->getDeclContext()->isTypeContext()))
return RequirementMatch(witness, MatchKind::StaticNonStaticConflict);
// If we require a prefix operator and the witness is not a prefix operator,
// these don't match.
if (reqAttrs.hasAttribute<PrefixAttr>() &&
!witnessAttrs.hasAttribute<PrefixAttr>())
return RequirementMatch(witness, MatchKind::PrefixNonPrefixConflict);
// If we require a postfix operator and the witness is not a postfix
// operator, these don't match.
if (reqAttrs.hasAttribute<PostfixAttr>() &&
!witnessAttrs.hasAttribute<PostfixAttr>())
return RequirementMatch(witness, MatchKind::PostfixNonPostfixConflict);
// Check that the mutating bit is ok.
if (!funcReq->isMutating() && funcWitness->isMutating())
return RequirementMatch(witness, MatchKind::MutatingConflict);
// If the requirement has an explicit 'rethrows' argument, the witness
// must be 'rethrows', too.
if (reqAttrs.hasAttribute<RethrowsAttr>()) {
auto reqRethrowingKind =
funcReq->getPolymorphicEffectKind(EffectKind::Throws);
auto witnessRethrowingKind =
funcWitness->getPolymorphicEffectKind(EffectKind::Throws);
assert(reqRethrowingKind != PolymorphicEffectKind::Always &&
reqRethrowingKind != PolymorphicEffectKind::None);
switch (witnessRethrowingKind) {
case PolymorphicEffectKind::None:
case PolymorphicEffectKind::Invalid:
case PolymorphicEffectKind::ByClosure:
break;
case PolymorphicEffectKind::ByConformance: {
// A by-conformance `rethrows` witness cannot witness a
// by-conformance `rethrows` requirement unless the protocol
// is @rethrows. Otherwise, we don't have enough information
// at the call site to assess if the conformance actually
// throws or not.
auto *proto = cast<ProtocolDecl>(req->getDeclContext());
if (reqRethrowingKind == PolymorphicEffectKind::ByConformance &&
proto->hasPolymorphicEffect(EffectKind::Throws))
break;
return RequirementMatch(witness,
MatchKind::RethrowsByConformanceConflict);
}
case PolymorphicEffectKind::Always:
return RequirementMatch(witness, MatchKind::RethrowsConflict);
}
}
// We want to decompose the parameters to handle them separately.
decomposeFunctionType = true;
} else if (auto *witnessASD = dyn_cast<AbstractStorageDecl>(witness)) {
auto *reqASD = cast<AbstractStorageDecl>(req);
// Check that the static-ness matches.
if (reqASD->isStatic() != witnessASD->isStatic())
return RequirementMatch(witness, MatchKind::StaticNonStaticConflict);
// Check that the compile-time constness matches.
if (reqASD->isCompileTimeConst() && !witnessASD->isCompileTimeConst()) {
return RequirementMatch(witness, MatchKind::CompileTimeConstConflict);
}
// If the requirement is settable and the witness is not, reject it.
if (reqASD->isSettable(req->getDeclContext()) &&
!witnessASD->isSettable(witness->getDeclContext()))
return RequirementMatch(witness, MatchKind::SettableConflict);
// Validate that the 'mutating' bit lines up for getters and setters.
if (!reqASD->isGetterMutating() && witnessASD->isGetterMutating())
return RequirementMatch(getStandinForAccessor(witnessASD, AccessorKind::Get),
MatchKind::MutatingConflict);
if (reqASD->isSettable(req->getDeclContext())) {
if (!reqASD->isSetterMutating() && witnessASD->isSetterMutating())
return RequirementMatch(getStandinForAccessor(witnessASD, AccessorKind::Set),
MatchKind::MutatingConflict);
}
// Check that the witness has no more effects than the requirement.
if (auto problem = checkEffects(witnessASD, reqASD))
return problem.getValue();
// Decompose the parameters for subscript declarations.
decomposeFunctionType = isa<SubscriptDecl>(req);
} else if (isa<ConstructorDecl>(witness)) {
decomposeFunctionType = true;
ignoreReturnType = true;
} else if (auto *enumCase = dyn_cast<EnumElementDecl>(witness)) {
// An enum case with associated values can satisfy only a
// method requirement.
if (enumCase->hasAssociatedValues() && isa<VarDecl>(req))
return RequirementMatch(witness, MatchKind::EnumCaseWithAssociatedValues);
// An enum case can satisfy only a method or property requirement.
if (!isa<VarDecl>(req) && !isa<FuncDecl>(req))
return RequirementMatch(witness, MatchKind::KindConflict);
// An enum case can satisfy only a static requirement.
if (!req->isStatic())
return RequirementMatch(witness, MatchKind::StaticNonStaticConflict);
// An enum case cannot satisfy a settable property requirement.
if (isa<VarDecl>(req) &&
cast<VarDecl>(req)->isSettable(req->getDeclContext()))
return RequirementMatch(witness, MatchKind::SettableConflict);
decomposeFunctionType = enumCase->hasAssociatedValues();
}
// If the requirement is @objc, the witness must not be marked with @nonobjc.
// @objc-ness will be inferred (separately) and the selector will be checked
// later.
if (req->isObjC() && witness->getAttrs().hasAttribute<NonObjCAttr>())
return RequirementMatch(witness, MatchKind::NonObjC);
// Set up the match, determining the requirement and witness types
// in the process.
Type reqType, witnessType;
{
Optional<RequirementMatch> result;
std::tie(result, reqType, witnessType) = setup();
if (result) {
return std::move(result.getValue());
}
}
SmallVector<OptionalAdjustment, 2> optionalAdjustments;
const bool anyRenaming = req->getName() != witness->getName();
if (decomposeFunctionType) {
// Decompose function types into parameters and result type.
auto reqFnType = reqType->castTo<AnyFunctionType>();
auto reqResultType = reqFnType->getResult()->getRValueType();
auto witnessFnType = witnessType->castTo<AnyFunctionType>();
auto witnessResultType = witnessFnType->getResult()->getRValueType();
// Result types must match.
// FIXME: Could allow (trivial?) subtyping here.
if (!ignoreReturnType) {
auto reqTypeIsIUO = req->isImplicitlyUnwrappedOptional();
auto witnessTypeIsIUO = witness->isImplicitlyUnwrappedOptional();
auto types =
getTypesToCompare(req, reqResultType, reqTypeIsIUO, witnessResultType,
witnessTypeIsIUO, VarianceKind::Covariant);
// Record optional adjustment, if any.
if (std::get<2>(types) != OptionalAdjustmentKind::None) {
optionalAdjustments.push_back(
OptionalAdjustment(std::get<2>(types)));
}
if (!req->isObjC() && reqTypeIsIUO != witnessTypeIsIUO)
return RequirementMatch(witness, MatchKind::TypeConflict, witnessType);
if (auto result = matchTypes(std::get<0>(types), std::get<1>(types))) {
return std::move(result.getValue());
}
}
// Parameter types and kinds must match. Start by decomposing the input
// types into sets of tuple elements.
// Decompose the input types into parameters.
auto reqParams = reqFnType->getParams();
auto witnessParams = witnessFnType->getParams();
// If the number of parameters doesn't match, we're done.
if (reqParams.size() != witnessParams.size())
return RequirementMatch(witness, MatchKind::TypeConflict,
witnessType);
ParameterList *witnessParamList = getParameterList(witness);
assert(witnessParamList->size() == witnessParams.size());
ParameterList *reqParamList = getParameterList(req);
assert(reqParamList->size() == reqParams.size());
// Match each of the parameters.
for (unsigned i = 0, n = reqParams.size(); i != n; ++i) {
// Variadic bits must match.
// FIXME: Specialize the match failure kind
if (reqParams[i].isVariadic() != witnessParams[i].isVariadic())
return RequirementMatch(witness, MatchKind::TypeConflict, witnessType);
if (reqParams[i].isInOut() != witnessParams[i].isInOut())
return RequirementMatch(witness, MatchKind::TypeConflict, witnessType);
auto reqParamDecl = reqParamList->get(i);
auto witnessParamDecl = witnessParamList->get(i);
auto reqParamTypeIsIUO = reqParamDecl->isImplicitlyUnwrappedOptional();
auto witnessParamTypeIsIUO =
witnessParamDecl->isImplicitlyUnwrappedOptional();
// Gross hack: strip a level of unchecked-optionality off both
// sides when matching against a protocol imported from Objective-C.
auto types =
getTypesToCompare(req, reqParams[i].getOldType(), reqParamTypeIsIUO,
witnessParams[i].getOldType(), witnessParamTypeIsIUO,
VarianceKind::Contravariant);
// Record any optional adjustment that occurred.
if (std::get<2>(types) != OptionalAdjustmentKind::None) {
optionalAdjustments.push_back(
OptionalAdjustment(std::get<2>(types), i));
}
if (!req->isObjC() && reqParamTypeIsIUO != witnessParamTypeIsIUO)
return RequirementMatch(witness, MatchKind::TypeConflict, witnessType);
if (auto result = matchTypes(std::get<0>(types), std::get<1>(types))) {
return std::move(result.getValue());
}
}
if (witnessFnType->hasExtInfo()) {
// If the witness is 'async', the requirement must be.
if (witnessFnType->getExtInfo().isAsync() &&
!reqFnType->getExtInfo().isAsync()) {
return RequirementMatch(witness, MatchKind::AsyncConflict);
}
// If witness is sync, the requirement cannot be @objc and 'async'
if (!witnessFnType->getExtInfo().isAsync() &&
(req->isObjC() && reqFnType->getExtInfo().isAsync())) {
return RequirementMatch(witness, MatchKind::AsyncConflict);
}
// If the witness is 'throws', the requirement must be.
if (witnessFnType->getExtInfo().isThrowing() &&
!reqFnType->getExtInfo().isThrowing()) {
return RequirementMatch(witness, MatchKind::ThrowsConflict);
}
}
} else {
auto reqTypeIsIUO = req->isImplicitlyUnwrappedOptional();
auto witnessTypeIsIUO = witness->isImplicitlyUnwrappedOptional();
auto types = getTypesToCompare(req, reqType, reqTypeIsIUO, witnessType,
witnessTypeIsIUO, VarianceKind::None);
// Record optional adjustment, if any.
if (std::get<2>(types) != OptionalAdjustmentKind::None) {
optionalAdjustments.push_back(
OptionalAdjustment(std::get<2>(types)));
}
if (!req->isObjC() && reqTypeIsIUO != witnessTypeIsIUO)
return RequirementMatch(witness, MatchKind::TypeConflict, witnessType);
if (auto result = matchTypes(std::get<0>(types), std::get<1>(types))) {
return std::move(result.getValue());
}
}
// Now finalize the match.
auto result = finalize(anyRenaming, optionalAdjustments);
// Check if the requirement's `@differentiable` attributes are satisfied by
// the witness.
matchWitnessDifferentiableAttr(dc, req, witness, result);
return result;
}
/// Checks \p reqEnvCache for a requirement environment appropriate for
/// \p reqSig and \p covariantSelf. If one isn't there, it gets created from
/// the rest of the parameters.
///
/// Note that this means RequirementEnvironmentCaches must not be shared across
/// multiple protocols or conformances.
static const RequirementEnvironment &getOrCreateRequirementEnvironment(
WitnessChecker::RequirementEnvironmentCache &reqEnvCache,
DeclContext *dc, GenericSignature reqSig, ProtocolDecl *proto,
ClassDecl *covariantSelf, ProtocolConformance *conformance) {
WitnessChecker::RequirementEnvironmentCacheKey cacheKey(reqSig.getPointer(),
covariantSelf);
auto cacheIter = reqEnvCache.find(cacheKey);
if (cacheIter == reqEnvCache.end()) {
RequirementEnvironment reqEnv(dc, reqSig, proto, covariantSelf,
conformance);
cacheIter = reqEnvCache.insert({cacheKey, std::move(reqEnv)}).first;
}
return cacheIter->getSecond();
}
static Optional<RequirementMatch> findMissingGenericRequirementForSolutionFix(
constraints::Solution &solution, constraints::ConstraintFix *fix,
ValueDecl *witness, ProtocolConformance *conformance,
const RequirementEnvironment &reqEnvironment) {
Type type, missingType;
RequirementKind requirementKind;
using namespace constraints;
switch (fix->getKind()) {
case FixKind::AddConformance: {
auto missingConform = (MissingConformance *)fix;
requirementKind = RequirementKind::Conformance;
type = missingConform->getNonConformingType();
missingType = missingConform->getProtocolType();
break;
}
case FixKind::SkipSameTypeRequirement: {
requirementKind = RequirementKind::SameType;
auto requirementFix = (SkipSameTypeRequirement *)fix;
type = requirementFix->lhsType();
missingType = requirementFix->rhsType();
break;
}
case FixKind::SkipSuperclassRequirement: {
requirementKind = RequirementKind::Superclass;
auto requirementFix = (SkipSuperclassRequirement *)fix;
type = requirementFix->subclassType();
missingType = requirementFix->superclassType();
break;
}
default:
return Optional<RequirementMatch>();
}
type = solution.simplifyType(type);
missingType = solution.simplifyType(missingType);
if (auto *env = conformance->getGenericEnvironment()) {
// We use subst() with LookUpConformanceInModule here, because
// associated type inference failures mean that we can end up
// here with a DependentMemberType with an ArchetypeType base.
missingType = missingType.subst(
[&](SubstitutableType *type) -> Type {
return env->mapTypeIntoContext(type->mapTypeOutOfContext());
},
LookUpConformanceInModule(conformance->getDeclContext()->getParentModule()));
}
auto missingRequirementMatch = [&](Type type) -> RequirementMatch {
Requirement requirement(requirementKind, type, missingType);
return RequirementMatch(witness, MatchKind::MissingRequirement,
requirement);
};
if (type->is<DependentMemberType>())
return missingRequirementMatch(type);
type = type->mapTypeOutOfContext();
if (type->hasTypeParameter())
if (auto env = conformance->getGenericEnvironment())
if (auto assocType = env->mapTypeIntoContext(type))
return missingRequirementMatch(assocType);
auto reqSubMap = reqEnvironment.getRequirementToSyntheticMap();
auto proto = conformance->getProtocol();
Type selfTy = proto->getSelfInterfaceType().subst(reqSubMap);
if (type->isEqual(selfTy)) {
type = conformance->getType();
// e.g. `extension P where Self == C { func foo() { ... } }`
// and `C` doesn't actually conform to `P`.
if (type->isEqual(missingType)) {
requirementKind = RequirementKind::Conformance;
missingType = proto->getDeclaredInterfaceType();
}
if (auto agt = type->getAs<AnyGenericType>())
type = agt->getDecl()->getDeclaredInterfaceType();
return missingRequirementMatch(type);
}
return Optional<RequirementMatch>();
}
/// Determine the set of effects on a given declaration.
static PossibleEffects getEffects(ValueDecl *value) {
if (auto func = dyn_cast<AbstractFunctionDecl>(value)) {
PossibleEffects result;
if (func->hasThrows())
result |= EffectKind::Throws;
if (func->hasAsync())
result |= EffectKind::Async;
return result;
}
if (auto storage = dyn_cast<AbstractStorageDecl>(value)) {
if (auto accessor = storage->getEffectfulGetAccessor())
return getEffects(accessor);
}
return PossibleEffects();
}
RequirementMatch
swift::matchWitness(WitnessChecker::RequirementEnvironmentCache &reqEnvCache,
ProtocolDecl *proto, ProtocolConformance *conformance,
DeclContext *dc, ValueDecl *req, ValueDecl *witness) {
using namespace constraints;
// Initialized by the setup operation.
Optional<ConstraintSystem> cs;
ConstraintLocator *locator = nullptr;
ConstraintLocator *reqLocator = nullptr;
ConstraintLocator *witnessLocator = nullptr;
Type witnessType, openWitnessType;
Type reqType;
GenericSignature reqSig = proto->getGenericSignature();
if (auto *funcDecl = dyn_cast<AbstractFunctionDecl>(req)) {
if (funcDecl->isGeneric())
reqSig = funcDecl->getGenericSignature();
} else if (auto *subscriptDecl = dyn_cast<SubscriptDecl>(req)) {
if (subscriptDecl->isGeneric())
reqSig = subscriptDecl->getGenericSignature();
}
ClassDecl *covariantSelf = nullptr;
if (witness->getDeclContext()->getExtendedProtocolDecl()) {
if (auto *classDecl = dc->getSelfClassDecl()) {
if (!classDecl->isSemanticallyFinal()) {
// If the requirement's type does not involve any associated types,
// we use a class-constrained generic parameter as the 'Self' type
// in the witness thunk.
//
// This allows the following code to type check:
//
// protocol P {
// func f() -> Self
// }
//
// extension P {
// func f() { return self }
// }