-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTypeCheckProtocol.h
1312 lines (1063 loc) · 46.5 KB
/
TypeCheckProtocol.h
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.h - Constraint-based Type Checking ----*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 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 provides the constraint-based type checker, anchored by the
// \c ConstraintSystem class, which provides type checking and type
// inference for expressions.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SEMA_PROTOCOL_H
#define SWIFT_SEMA_PROTOCOL_H
#include "TypeChecker.h"
#include "swift/AST/AccessScope.h"
#include "swift/AST/RequirementEnvironment.h"
#include "swift/AST/Type.h"
#include "swift/AST/Types.h"
#include "swift/AST/Witness.h"
#include "swift/Basic/Debug.h"
#include "swift/Sema/ConstraintSystem.h"
#include "llvm/ADT/ScopedHashTable.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallVector.h"
namespace swift {
class AccessScope;
class AssociatedTypeDecl;
class AvailabilityContext;
class DeclContext;
class FuncDecl;
class NormalProtocolConformance;
class ProtocolDecl;
class TypeRepr;
class ValueDecl;
/// A conflict between two inferred type witnesses for the same
/// associated type.
struct TypeWitnessConflict {
/// The associated type.
AssociatedTypeDecl *AssocType;
/// The first type.
Type FirstType;
/// The requirement to which the first witness was matched.
ValueDecl *FirstRequirement;
/// The witness from which the first type witness was inferred.
ValueDecl *FirstWitness;
/// The second type.
Type SecondType;
/// The requirement to which the second witness was matched.
ValueDecl *SecondRequirement;
/// The witness from which the second type witness was inferred.
ValueDecl *SecondWitness;
};
/// Describes the result of checking a type witness.
///
/// This class evaluates true if an error occurred.
class CheckTypeWitnessResult {
Type Requirement;
public:
CheckTypeWitnessResult() { }
CheckTypeWitnessResult(Type reqt) : Requirement(reqt) {}
Type getRequirement() const { return Requirement; }
bool isConformanceRequirement() const {
return Requirement->isExistentialType();
}
bool isSuperclassRequirement() const {
return !isConformanceRequirement();
}
bool isError() const {
return Requirement->is<ErrorType>();
}
explicit operator bool() const { return !Requirement.isNull(); }
};
/// Check whether the given type witness can be used for the given
/// associated type in the given conformance.
///
/// \returns an empty result on success, or a description of the error.
CheckTypeWitnessResult checkTypeWitness(Type type,
AssociatedTypeDecl *assocType,
const NormalProtocolConformance *Conf,
SubstOptions options = None);
/// A type witness inferred without the aid of a specific potential
/// value witness.
class AbstractTypeWitness {
AssociatedTypeDecl *AssocType;
Type TheType;
/// The defaulted associated type that was used to infer this type witness.
/// Need not necessarily match \c AssocType, but their names must.
AssociatedTypeDecl *DefaultedAssocType;
public:
AbstractTypeWitness(AssociatedTypeDecl *AssocType, Type TheType,
AssociatedTypeDecl *DefaultedAssocType = nullptr)
: AssocType(AssocType), TheType(TheType),
DefaultedAssocType(DefaultedAssocType) {
assert(AssocType && TheType);
assert(!DefaultedAssocType ||
(AssocType->getName() == DefaultedAssocType->getName()));
}
AssociatedTypeDecl *getAssocType() const { return AssocType; }
Type getType() const { return TheType; }
AssociatedTypeDecl *getDefaultedAssocType() const {
return DefaultedAssocType;
}
};
/// The set of associated types that have been inferred by matching
/// the given value witness to its corresponding requirement.
struct InferredAssociatedTypesByWitness {
/// The witness we matched.
ValueDecl *Witness = nullptr;
/// The associated types inferred from matching this witness.
SmallVector<std::pair<AssociatedTypeDecl *, Type>, 4> Inferred;
/// Inferred associated types that don't meet the associated type
/// requirements.
SmallVector<std::tuple<AssociatedTypeDecl *, Type, CheckTypeWitnessResult>,
2> NonViable;
void dump(llvm::raw_ostream &out, unsigned indent) const;
SWIFT_DEBUG_DUMP;
};
/// The set of witnesses that were considered when attempting to
/// infer associated types.
using InferredAssociatedTypesByWitnesses =
SmallVector<InferredAssociatedTypesByWitness, 2>;
/// A mapping from requirements to the set of matches with witnesses.
using InferredAssociatedTypes =
SmallVector<std::pair<ValueDecl *, InferredAssociatedTypesByWitnesses>, 4>;
/// A potential solution to the set of inferred type witnesses.
struct InferredTypeWitnessesSolution {
/// The set of type witnesses inferred by this solution, along
/// with the index into the value witnesses where the type was
/// inferred.
llvm::SmallDenseMap<AssociatedTypeDecl *, std::pair<Type, unsigned>, 4>
TypeWitnesses;
/// The value witnesses selected by this step of the solution.
SmallVector<std::pair<ValueDecl *, ValueDecl *>, 4> ValueWitnesses;
/// The number of value witnesses that occur in protocol
/// extensions.
unsigned NumValueWitnessesInProtocolExtensions;
#ifndef NDEBUG
LLVM_ATTRIBUTE_USED
#endif
void dump() const;
};
class RequirementEnvironment;
/// The result of matching a particular declaration to a given
/// requirement.
enum class MatchKind : uint8_t {
/// The witness matched the requirement exactly.
ExactMatch,
/// The witness has fewer effects than the requirement, which is okay.
FewerEffects,
/// The witness is @Sendable and the requirement is not. Okay in certain
/// language modes.
RequiresNonSendable,
/// There is a difference in optionality.
OptionalityConflict,
/// The witness matched the requirement with some renaming.
RenamedMatch,
/// The witness is invalid or has an invalid type.
WitnessInvalid,
/// The witness is currently being type checked and this type checking in turn
/// triggered conformance checking, so the witness cannot be considered as a
/// candidate.
Circularity,
/// The kind of the witness and requirement differ, e.g., one
/// is a function and the other is a variable.
KindConflict,
/// The types conflict.
TypeConflict,
/// The witness would match if an additional requirement were met.
MissingRequirement,
/// The witness and requirement disagree on 'async'.
AsyncConflict,
/// The witness throws, but the requirement does not.
ThrowsConflict,
/// The witness did not match due to static/non-static differences.
StaticNonStaticConflict,
/// The witness is not settable, but the requirement is.
SettableConflict,
/// The witness did not match due to prefix/non-prefix differences.
PrefixNonPrefixConflict,
/// The witness did not match due to postfix/non-postfix differences.
PostfixNonPostfixConflict,
/// The witness did not match because of mutating conflicts.
MutatingConflict,
/// The witness did not match because of nonmutating conflicts.
NonMutatingConflict,
/// The witness did not match because of __consuming conflicts.
ConsumingConflict,
/// The witness throws unconditionally, but the requirement rethrows.
RethrowsConflict,
/// The witness rethrows via conformance, but the requirement rethrows
/// via closure and is not in a '@rethrows' protocol.
RethrowsByConformanceConflict,
/// The witness is explicitly @nonobjc but the requirement is @objc.
NonObjC,
/// The witness is missing a `@differentiable` attribute from the requirement.
MissingDifferentiableAttr,
/// The witness did not match because it is an enum case with
/// associated values.
EnumCaseWithAssociatedValues,
/// The witness did not match due to _const/non-_const differences.
CompileTimeConstConflict,
};
/// Describes the kind of optional adjustment performed when
/// comparing two types.
enum class OptionalAdjustmentKind {
// No adjustment required.
None,
/// The witness can produce a 'nil' that won't be handled by
/// callers of the requirement. This is a type-safety problem.
ProducesUnhandledNil,
/// Callers of the requirement can provide 'nil', but the witness
/// does not handle it. This is a type-safety problem.
ConsumesUnhandledNil,
/// The witness handles 'nil', but won't ever be given a 'nil'.
/// This is not a type-safety problem.
WillNeverConsumeNil,
/// Callers of the requirement can expect to receive 'nil', but
/// the witness will never produce one. This is not a type-safety
/// problem.
WillNeverProduceNil,
/// The witness has an IUO that can be removed, because the
/// protocol doesn't need it. This is not a type-safety problem.
RemoveIUO,
/// The witness has an IUO that should be translated into a true
/// optional. This is not a type-safety problem.
IUOToOptional,
};
/// Once a witness has been found, there are several reasons it may
/// not be usable.
enum class CheckKind : unsigned {
/// The witness is OK.
Success,
/// The witness is less accessible than the requirement.
Access,
/// The witness is storage whose setter is less accessible than the
/// requirement.
AccessOfSetter,
/// The witness needs to be @usableFromInline.
UsableFromInline,
/// The witness is less available than the requirement.
Availability,
/// The requirement was marked explicitly unavailable.
Unavailable,
/// The witness requires optional adjustments.
OptionalityConflict,
/// The witness is a constructor which is more failable than the
/// requirement.
ConstructorFailability,
/// The witness itself is inaccessible.
WitnessUnavailable,
};
/// Describes an optional adjustment made to a witness.
class OptionalAdjustment {
/// The kind of adjustment.
unsigned Kind : 16;
/// Whether this is a parameter adjustment (with an index) vs. a
/// result or value type adjustment (no index needed).
unsigned IsParameterAdjustment : 1;
/// The adjustment index, for parameter adjustments.
unsigned ParameterAdjustmentIndex : 15;
public:
/// Create a non-parameter optional adjustment.
explicit OptionalAdjustment(OptionalAdjustmentKind kind)
: Kind(static_cast<unsigned>(kind)), IsParameterAdjustment(false),
ParameterAdjustmentIndex(0) { }
/// Create an optional adjustment to a parameter.
OptionalAdjustment(OptionalAdjustmentKind kind,
unsigned parameterIndex)
: Kind(static_cast<unsigned>(kind)), IsParameterAdjustment(true),
ParameterAdjustmentIndex(parameterIndex) { }
/// Determine the kind of optional adjustment.
OptionalAdjustmentKind getKind() const {
return static_cast<OptionalAdjustmentKind>(Kind);
}
/// Determine whether this is a parameter adjustment.
bool isParameterAdjustment() const {
return IsParameterAdjustment;
}
/// Return the index of a parameter adjustment.
unsigned getParameterIndex() const {
assert(isParameterAdjustment() && "Not a parameter adjustment");
return ParameterAdjustmentIndex;
}
/// Determines whether the optional adjustment is an error.
bool isError() const {
switch (getKind()) {
case OptionalAdjustmentKind::None:
return false;
case OptionalAdjustmentKind::ProducesUnhandledNil:
case OptionalAdjustmentKind::ConsumesUnhandledNil:
return true;
case OptionalAdjustmentKind::WillNeverConsumeNil:
case OptionalAdjustmentKind::WillNeverProduceNil:
case OptionalAdjustmentKind::RemoveIUO:
case OptionalAdjustmentKind::IUOToOptional:
// Warnings at most.
return false;
}
llvm_unreachable("Unhandled OptionalAdjustmentKind in switch.");
}
/// Retrieve the source location at which the optional is
/// specified or would be inserted.
SourceLoc getOptionalityLoc(ValueDecl *witness) const;
/// Retrieve the optionality location for the given type
/// representation.
SourceLoc getOptionalityLoc(TypeRepr *tyR) const;
};
/// Describes a match between a requirement and a witness.
struct RequirementMatch {
RequirementMatch(ValueDecl *witness, MatchKind kind,
Optional<RequirementEnvironment> env = None)
: Witness(witness), Kind(kind), WitnessType(), ReqEnv(std::move(env)) {
assert(!hasWitnessType() && "Should have witness type");
}
RequirementMatch(ValueDecl *witness, MatchKind kind,
const DeclAttribute *attr)
: Witness(witness), Kind(kind), WitnessType(), UnmetAttribute(attr),
ReqEnv(None) {
assert(!hasWitnessType() && "Should have witness type");
assert(hasUnmetAttribute() && "Should have unmet attribute");
}
RequirementMatch(ValueDecl *witness, MatchKind kind,
Type witnessType,
Optional<RequirementEnvironment> env = None,
ArrayRef<OptionalAdjustment> optionalAdjustments = {},
GenericSignature derivativeGenSig = GenericSignature())
: Witness(witness), Kind(kind), WitnessType(witnessType),
ReqEnv(std::move(env)),
OptionalAdjustments(optionalAdjustments.begin(),
optionalAdjustments.end()),
DerivativeGenSig(derivativeGenSig)
{
assert(hasWitnessType() == !witnessType.isNull() &&
"Should (or should not) have witness type");
}
RequirementMatch(ValueDecl *witness, MatchKind kind, Requirement requirement,
Optional<RequirementEnvironment> env = None,
ArrayRef<OptionalAdjustment> optionalAdjustments = {},
GenericSignature derivativeGenSig = GenericSignature())
: Witness(witness), Kind(kind), WitnessType(requirement.getFirstType()),
MissingRequirement(requirement), ReqEnv(std::move(env)),
OptionalAdjustments(optionalAdjustments.begin(),
optionalAdjustments.end()),
DerivativeGenSig(derivativeGenSig) {
assert(hasWitnessType() && hasRequirement() &&
"Should have witness type and requirement");
}
/// The witness that matches the (implied) requirement.
ValueDecl *Witness;
/// The kind of match.
MatchKind Kind;
/// The type of the witness when it is referenced.
Type WitnessType;
/// Requirement not met.
Optional<Requirement> MissingRequirement;
/// Unmet attribute from the requirement.
const DeclAttribute *UnmetAttribute = nullptr;
/// The requirement environment to use for the witness thunk.
Optional<RequirementEnvironment> ReqEnv;
/// The set of optional adjustments performed on the witness.
SmallVector<OptionalAdjustment, 2> OptionalAdjustments;
/// Substitutions mapping the type of the witness to the requirement
/// environment.
SubstitutionMap WitnessSubstitutions;
/// The matched derivative generic signature.
GenericSignature DerivativeGenSig;
/// Determine whether this match is well-formed, meaning that it is any
/// difference determined by requirement matching is acceptable.
bool isWellFormed() const {
switch(Kind) {
case MatchKind::ExactMatch:
case MatchKind::FewerEffects:
case MatchKind::RequiresNonSendable:
return true;
case MatchKind::OptionalityConflict:
case MatchKind::RenamedMatch:
case MatchKind::WitnessInvalid:
case MatchKind::Circularity:
case MatchKind::KindConflict:
case MatchKind::TypeConflict:
case MatchKind::MissingRequirement:
case MatchKind::StaticNonStaticConflict:
case MatchKind::CompileTimeConstConflict:
case MatchKind::SettableConflict:
case MatchKind::PrefixNonPrefixConflict:
case MatchKind::PostfixNonPostfixConflict:
case MatchKind::MutatingConflict:
case MatchKind::NonMutatingConflict:
case MatchKind::ConsumingConflict:
case MatchKind::RethrowsConflict:
case MatchKind::RethrowsByConformanceConflict:
case MatchKind::AsyncConflict:
case MatchKind::ThrowsConflict:
case MatchKind::NonObjC:
case MatchKind::MissingDifferentiableAttr:
case MatchKind::EnumCaseWithAssociatedValues:
return false;
}
llvm_unreachable("Unhandled MatchKind in switch.");
}
/// Determine whether this match is viable, meaning that we could generate
/// a witness for it, even though there might be semantic errors.
bool isViable() const {
switch(Kind) {
case MatchKind::ExactMatch:
case MatchKind::FewerEffects:
case MatchKind::RequiresNonSendable:
case MatchKind::OptionalityConflict:
case MatchKind::RenamedMatch:
return true;
case MatchKind::WitnessInvalid:
case MatchKind::Circularity:
case MatchKind::KindConflict:
case MatchKind::TypeConflict:
case MatchKind::MissingRequirement:
case MatchKind::StaticNonStaticConflict:
case MatchKind::CompileTimeConstConflict:
case MatchKind::SettableConflict:
case MatchKind::PrefixNonPrefixConflict:
case MatchKind::PostfixNonPostfixConflict:
case MatchKind::MutatingConflict:
case MatchKind::NonMutatingConflict:
case MatchKind::ConsumingConflict:
case MatchKind::RethrowsConflict:
case MatchKind::RethrowsByConformanceConflict:
case MatchKind::AsyncConflict:
case MatchKind::ThrowsConflict:
case MatchKind::NonObjC:
case MatchKind::MissingDifferentiableAttr:
case MatchKind::EnumCaseWithAssociatedValues:
return false;
}
llvm_unreachable("Unhandled MatchKind in switch.");
}
/// Determine whether this requirement match has a witness type.
bool hasWitnessType() const {
switch(Kind) {
case MatchKind::ExactMatch:
case MatchKind::FewerEffects:
case MatchKind::RequiresNonSendable:
case MatchKind::RenamedMatch:
case MatchKind::TypeConflict:
case MatchKind::MissingRequirement:
case MatchKind::OptionalityConflict:
return true;
case MatchKind::WitnessInvalid:
case MatchKind::Circularity:
case MatchKind::KindConflict:
case MatchKind::StaticNonStaticConflict:
case MatchKind::CompileTimeConstConflict:
case MatchKind::SettableConflict:
case MatchKind::PrefixNonPrefixConflict:
case MatchKind::PostfixNonPostfixConflict:
case MatchKind::MutatingConflict:
case MatchKind::NonMutatingConflict:
case MatchKind::ConsumingConflict:
case MatchKind::RethrowsConflict:
case MatchKind::RethrowsByConformanceConflict:
case MatchKind::AsyncConflict:
case MatchKind::ThrowsConflict:
case MatchKind::NonObjC:
case MatchKind::MissingDifferentiableAttr:
case MatchKind::EnumCaseWithAssociatedValues:
return false;
}
llvm_unreachable("Unhandled MatchKind in switch.");
}
/// Determine whether this requirement match has a requirement.
bool hasRequirement() { return Kind == MatchKind::MissingRequirement; }
/// Determine whether this requirement match has an unmet attribute.
bool hasUnmetAttribute() {
return Kind == MatchKind::MissingDifferentiableAttr;
}
swift::Witness getWitness(ASTContext &ctx) const;
};
struct RequirementCheck;
class WitnessChecker {
public:
using RequirementEnvironmentCacheKey =
std::pair<const GenericSignatureImpl *, const ClassDecl *>;
using RequirementEnvironmentCache =
llvm::DenseMap<RequirementEnvironmentCacheKey, RequirementEnvironment>;
protected:
ASTContext &Context;
ProtocolDecl *Proto;
Type Adoptee;
// The conforming context, either a nominal type or extension.
DeclContext *DC;
ASTContext &getASTContext() const { return Context; }
// An auxiliary lookup table to be used for witnesses remapped via
// @_implements(Protocol, DeclName)
llvm::DenseMap<DeclName, llvm::TinyPtrVector<ValueDecl *>> ImplementsTable;
RequirementEnvironmentCache ReqEnvironmentCache;
Optional<std::pair<AccessScope, bool>> RequiredAccessScopeAndUsableFromInline;
WitnessChecker(ASTContext &ctx, ProtocolDecl *proto, Type adoptee,
DeclContext *dc);
bool isMemberOperator(FuncDecl *decl, Type type);
AccessScope getRequiredAccessScope();
bool isUsableFromInlineRequired() {
assert(RequiredAccessScopeAndUsableFromInline.has_value() &&
"must check access first using getRequiredAccessScope");
return RequiredAccessScopeAndUsableFromInline.value().second;
}
/// Gather the value witnesses for the given requirement.
///
/// \param ignoringNames If non-null and there are no value
/// witnesses with the correct full name, the results will reflect
/// lookup for just the base name and the pointee will be set to
/// \c true.
SmallVector<ValueDecl *, 4> lookupValueWitnesses(ValueDecl *req,
bool *ignoringNames);
void lookupValueWitnessesViaImplementsAttr(ValueDecl *req,
SmallVector<ValueDecl *, 4>
&witnesses);
bool findBestWitness(ValueDecl *requirement,
bool *ignoringNames,
NormalProtocolConformance *conformance,
SmallVectorImpl<RequirementMatch> &matches,
unsigned &numViable,
unsigned &bestIdx,
bool &doNotDiagnoseMatches);
bool checkWitnessAccess(ValueDecl *requirement,
ValueDecl *witness,
bool *isSetter);
bool checkWitnessAvailability(ValueDecl *requirement,
ValueDecl *witness,
AvailabilityContext *requirementInfo);
RequirementCheck checkWitness(ValueDecl *requirement,
const RequirementMatch &match);
};
/// The result of attempting to resolve a witness.
enum class ResolveWitnessResult {
/// The resolution succeeded.
Success,
/// There was an explicit witness available, but it failed some
/// criteria.
ExplicitFailed,
/// There was no witness available.
Missing
};
enum class MissingWitnessDiagnosisKind {
FixItOnly,
ErrorOnly,
ErrorFixIt,
};
class AssociatedTypeInference;
class MultiConformanceChecker;
/// Describes a missing witness during conformance checking.
class MissingWitness {
public:
/// The requirement that is missing a witness.
ValueDecl *requirement;
/// The set of potential matching witnesses.
std::vector<RequirementMatch> matches;
MissingWitness(ValueDecl *requirement,
ArrayRef<RequirementMatch> matches)
: requirement(requirement),
matches(matches.begin(), matches.end()) { }
};
/// Capture missing witnesses that have been delayed and will be stored
/// in the ASTContext for later.
class DelayedMissingWitnesses : public MissingWitnessesBase {
public:
std::vector<MissingWitness> missingWitnesses;
DelayedMissingWitnesses(ArrayRef<MissingWitness> missingWitnesses)
: missingWitnesses(missingWitnesses.begin(), missingWitnesses.end()) { }
};
/// The protocol conformance checker.
///
/// This helper class handles most of the details of checking whether a
/// given type (\c Adoptee) conforms to a protocol (\c Proto).
class ConformanceChecker : public WitnessChecker {
public:
/// Key that can be used to uniquely identify a particular Objective-C
/// method.
using ObjCMethodKey = std::pair<ObjCSelector, char>;
private:
friend class MultiConformanceChecker;
friend class AssociatedTypeInference;
NormalProtocolConformance *Conformance;
SourceLoc Loc;
/// Witnesses that are currently being resolved.
llvm::SmallPtrSet<ValueDecl *, 4> ResolvingWitnesses;
/// Caches the set of associated types that are referenced in each
/// requirement.
llvm::DenseMap<ValueDecl *, llvm::SmallVector<AssociatedTypeDecl *, 2>>
ReferencedAssociatedTypes;
/// Keep track of missing witnesses, either type or value, for later
/// diagnosis emits. This may contain witnesses that are external to the
/// protocol under checking.
llvm::SetVector<MissingWitness> &GlobalMissingWitnesses;
/// Keep track of the slice in GlobalMissingWitnesses that is local to
/// this protocol under checking.
unsigned LocalMissingWitnessesStartIndex;
/// True if we shouldn't complain about problems with this conformance
/// right now, i.e. if methods are being called outside
/// checkConformance().
bool SuppressDiagnostics;
/// Whether we've already complained about problems with this conformance.
bool AlreadyComplained = false;
/// Mapping from Objective-C methods to the set of requirements within this
/// protocol that have the same selector and instance/class designation.
llvm::SmallDenseMap<ObjCMethodKey, TinyPtrVector<AbstractFunctionDecl *>, 4>
objcMethodRequirements;
/// Whether objcMethodRequirements has been computed.
bool computedObjCMethodRequirements = false;
/// Retrieve the associated types that are referenced by the given
/// requirement with a base of 'Self'.
ArrayRef<AssociatedTypeDecl *> getReferencedAssociatedTypes(ValueDecl *req);
/// Record a (non-type) witness for the given requirement.
void recordWitness(ValueDecl *requirement, const RequirementMatch &match);
/// Record that the given optional requirement has no witness.
void recordOptionalWitness(ValueDecl *requirement);
/// Record that the given requirement has no valid witness.
void recordInvalidWitness(ValueDecl *requirement);
/// Check for ill-formed uses of Objective-C generics in a type witness.
bool checkObjCTypeErasedGenerics(AssociatedTypeDecl *assocType,
Type type,
TypeDecl *typeDecl);
/// Check that the witness and requirement have compatible actor contexts.
///
/// \returns the isolation that needs to be enforced to invoke the witness
/// from the requirement, used when entering an actor-isolated synchronous
/// witness from an asynchronous requirement.
Optional<ActorIsolation>
checkActorIsolation(ValueDecl *requirement, ValueDecl *witness);
/// Record a type witness.
///
/// \param assocType The associated type whose witness is being recorded.
///
/// \param type The witness type.
///
/// \param typeDecl The decl the witness type came from; can be null.
void recordTypeWitness(AssociatedTypeDecl *assocType, Type type,
TypeDecl *typeDecl);
/// Enforce restrictions on non-final classes witnessing requirements
/// involving the protocol 'Self' type.
void checkNonFinalClassWitness(ValueDecl *requirement,
ValueDecl *witness);
/// Resolve a (non-type) witness via name lookup.
ResolveWitnessResult resolveWitnessViaLookup(ValueDecl *requirement);
/// Resolve a (non-type) witness via derivation.
ResolveWitnessResult resolveWitnessViaDerivation(ValueDecl *requirement);
/// Resolve a (non-type) witness via default definition or optional.
ResolveWitnessResult resolveWitnessViaDefault(ValueDecl *requirement);
/// Resolve a (non-type) witness by trying each standard strategy until one
/// of them produces a result.
ResolveWitnessResult
resolveWitnessTryingAllStrategies(ValueDecl *requirement);
/// Attempt to resolve a type witness via member name lookup.
ResolveWitnessResult resolveTypeWitnessViaLookup(
AssociatedTypeDecl *assocType);
/// Check whether all of the protocol's generic requirements are satisfied by
/// the chosen type witnesses.
void ensureRequirementsAreSatisfied();
/// Diagnose or defer a diagnostic, as appropriate.
///
/// \param requirement The requirement with which this diagnostic is
/// associated, if any.
///
/// \param isError Whether this diagnostic is an error.
///
/// \param fn A function to call to emit the actual diagnostic. If
/// diagnostics are being deferred,
void diagnoseOrDefer(const ValueDecl *requirement, bool isError,
std::function<void(NormalProtocolConformance *)> fn);
ArrayRef<MissingWitness> getLocalMissingWitness() {
return GlobalMissingWitnesses.getArrayRef().
slice(LocalMissingWitnessesStartIndex,
GlobalMissingWitnesses.size() - LocalMissingWitnessesStartIndex);
}
void clearGlobalMissingWitnesses() {
GlobalMissingWitnesses.clear();
LocalMissingWitnessesStartIndex = GlobalMissingWitnesses.size();
}
public:
/// Call this to diagnose currently known missing witnesses.
///
/// \returns true if any witnesses were diagnosed.
bool diagnoseMissingWitnesses(MissingWitnessDiagnosisKind Kind);
/// Emit any diagnostics that have been delayed.
void emitDelayedDiags();
ConformanceChecker(ASTContext &ctx, NormalProtocolConformance *conformance,
llvm::SetVector<MissingWitness> &GlobalMissingWitnesses,
bool suppressDiagnostics = true);
~ConformanceChecker();
/// Resolve all of the type witnesses.
void resolveTypeWitnesses();
/// Resolve all of the non-type witnesses.
void resolveValueWitnesses();
/// Resolve the witness for the given non-type requirement as
/// directly as possible, only resolving other witnesses if
/// needed, e.g., to determine type witnesses used within the
/// requirement.
///
/// This entry point is designed to be used when the witness for a
/// particular requirement and adoptee is required, before the
/// conformance has been completed checked.
void resolveSingleWitness(ValueDecl *requirement);
/// Resolve the type witness for the given associated type as
/// directly as possible.
void resolveSingleTypeWitness(AssociatedTypeDecl *assocType);
/// Check the entire protocol conformance, ensuring that all
/// witnesses are resolved and emitting any diagnostics.
void checkConformance(MissingWitnessDiagnosisKind Kind);
/// Retrieve the Objective-C method key from the given function.
ObjCMethodKey getObjCMethodKey(AbstractFunctionDecl *func);
/// Retrieve the Objective-C requirements in this protocol that have the
/// given Objective-C method key.
ArrayRef<AbstractFunctionDecl *> getObjCRequirements(ObjCMethodKey key);
/// @returns a non-null requirement if the given requirement is part of a
/// group of ObjC requirements that share the same ObjC method key.
/// The first such requirement that the predicate function returns true for
/// is the requirement required by this function. Otherwise, nullptr is
/// returned.
ValueDecl *getObjCRequirementSibling(ValueDecl *requirement,
llvm::function_ref<bool(AbstractFunctionDecl *)>predicate);
};
/// A system for recording and probing the integrity of a type witness solution
/// for a set of unresolved associated type declarations.
///
/// Right now can reason only about abstract type witnesses, i.e., same-type
/// constraints, default type definitions, and bindings to generic parameters.
class TypeWitnessSystem final {
/// Equivalence classes are used on demand to express equivalences between
/// witness candidates and reflect changes to resolved types across their
/// members.
class EquivalenceClass final {
/// The pointer:
/// - The resolved type for witness candidates belonging to this equivalence
/// class. The resolved type may be a type parameter, but cannot directly
/// pertain to a name variable in the owning system; instead, witness
/// candidates that should resolve to the same type share an equivalence
/// class.
/// The int:
/// - A flag indicating whether the resolved type is ambiguous. When set,
/// the resolved type is null.
llvm::PointerIntPair<Type, 1, bool> ResolvedTyAndIsAmbiguous;
public:
EquivalenceClass(Type ty) : ResolvedTyAndIsAmbiguous(ty, false) {}
EquivalenceClass(const EquivalenceClass &) = delete;
EquivalenceClass(EquivalenceClass &&) = delete;
EquivalenceClass &operator=(const EquivalenceClass &) = delete;
EquivalenceClass &operator=(EquivalenceClass &&) = delete;
Type getResolvedType() const {
return ResolvedTyAndIsAmbiguous.getPointer();
}
void setResolvedType(Type ty);
bool isAmbiguous() const {
return ResolvedTyAndIsAmbiguous.getInt();
}
void setAmbiguous() {
ResolvedTyAndIsAmbiguous = {nullptr, true};
}
};
/// A type witness candidate for a name variable.
struct TypeWitnessCandidate final {
/// The defaulted associated type declaration correlating with this
/// candidate, if present.
AssociatedTypeDecl *DefaultedAssocType;
/// The equivalence class of this candidate.
EquivalenceClass *EquivClass;
};
/// The set of equivalence classes in the system.
llvm::SmallPtrSet<EquivalenceClass *, 4> EquivalenceClasses;
/// The mapping from name variables (the names of unresolved associated
/// type declarations) to their corresponding type witness candidates.
llvm::SmallDenseMap<Identifier, TypeWitnessCandidate, 4> TypeWitnesses;
public:
TypeWitnessSystem(ArrayRef<AssociatedTypeDecl *> assocTypes);
~TypeWitnessSystem();
TypeWitnessSystem(const TypeWitnessSystem &) = delete;
TypeWitnessSystem(TypeWitnessSystem &&) = delete;
TypeWitnessSystem &operator=(const TypeWitnessSystem &) = delete;
TypeWitnessSystem &operator=(TypeWitnessSystem &&) = delete;
/// Get the resolved type witness for the associated type with the given name.
Type getResolvedTypeWitness(Identifier name) const;
bool hasResolvedTypeWitness(Identifier name) const;
/// Get the defaulted associated type relating to the resolved type witness
/// for the associated type with the given name, if present.
AssociatedTypeDecl *getDefaultedAssocType(Identifier name) const;
/// Record a type witness for the given associated type name.
///
/// \note This need not lead to the resolution of a type witness, e.g.
/// an associated type may be defaulted to another.
void addTypeWitness(Identifier name, Type type);
/// Record a default type witness.
///
/// \param defaultedAssocType The specific associated type declaration that
/// defines the given default type.
///
/// \note This need not lead to the resolution of a type witness.
void addDefaultTypeWitness(Type type, AssociatedTypeDecl *defaultedAssocType);
/// Record the given same-type requirement, if regarded of interest to
/// the system.
///
/// \note This need not lead to the resolution of a type witness.
void addSameTypeRequirement(const Requirement &req);
void dump(llvm::raw_ostream &out,