-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathDerivedConformances.h
479 lines (411 loc) · 20 KB
/
DerivedConformances.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
//===--- DerivedConformances.h - Derived protocol conformance ---*- C++ -*-===//
//
// 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 defines entry points to synthesize compiler-derived conformances
// to certain known protocols.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SEMA_DERIVEDCONFORMANCES_H
#define SWIFT_SEMA_DERIVEDCONFORMANCES_H
#include "swift/Basic/LLVM.h"
#include "swift/AST/Builtins.h"
#include <utility>
namespace swift {
class AbstractFunctionDecl;
class AccessorDecl;
class AssociatedTypeDecl;
class ASTContext;
struct ASTNode;
class CallExpr;
class CaseStmt;
class Decl;
class DeclContext;
class DeclRefExpr;
class EnumDecl;
class EnumElementDecl;
class Expr;
class GuardStmt;
class Identifier;
class NominalTypeDecl;
class ParamDecl;
class Pattern;
class PatternBindingDecl;
class ProtocolDecl;
class StructDecl;
class Type;
class TypeDecl;
class ValueDecl;
class VarDecl;
class DerivedConformance {
public:
enum class SynthesizedIntroducer : bool { Let, Var };
public:
ASTContext &Context;
const NormalProtocolConformance *Conformance;
Decl *ConformanceDecl;
NominalTypeDecl *Nominal;
ProtocolDecl *Protocol;
DerivedConformance(const NormalProtocolConformance *conformance,
NominalTypeDecl *nominal, ProtocolDecl *protocol);
/// Retrieve the context in which the conformance is declared (either the
/// nominal type, or an extension of it) as a \c DeclContext.
DeclContext *getConformanceContext() const;
/// Retrieve the module in which the conformance is declared.
ModuleDecl *getParentModule() const;
/// Add \c children as members of the context that declares the conformance.
void addMembersToConformanceContext(ArrayRef<Decl *> children);
/// Add \c member right after the \c hint member which may be the tail
void addMemberToConformanceContext(Decl *member, Decl* hint);
/// Add \c member in front of any other existing members
void addMemberToConformanceContext(Decl *member, bool insertAtHead);
/// Get the declared type of the protocol that this is conformance is for.
Type getProtocolType() const;
/// Returns the VarDecl of each stored property in the given struct whose type
/// does not conform to a protocol.
/// \p theStruct The struct whose stored properties should be checked.
/// \p protocol The protocol being requested.
/// \return The VarDecl of each stored property whose type does not conform.
static SmallVector<VarDecl *, 3> storedPropertiesNotConformingToProtocol(
DeclContext *DC, StructDecl *theStruct, ProtocolDecl *protocol);
/// True if the type can implicitly derive a conformance for the given
/// protocol.
///
/// If true, explicit conformance checking will synthesize implicit
/// declarations for requirements of the protocol that are not satisfied by
/// the type's explicit members.
///
/// \param nominal The nominal type for which we are determining whether to
/// derive a witness.
///
/// \param protocol The protocol whose requirements are being derived.
///
/// \return True if the type can implicitly derive a conformance for the
/// given protocol.
static bool derivesProtocolConformance(DeclContext *DC,
NominalTypeDecl *nominal,
ProtocolDecl *protocol);
/// Diagnose problems, if any, preventing automatic derivation of protocol
/// requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
///
/// \param protocol The protocol with requirements we would like to diagnose
/// derivation failures for
static void tryDiagnoseFailedDerivation(DeclContext *DC,
NominalTypeDecl *nominal,
ProtocolDecl *protocol);
/// Diagnose any members which do not conform to the protocol for which
/// we were trying to synthesize the conformance to.
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
///
/// \param protocol The protocol with requirements we would like to diagnose
/// derivation failures for
static void diagnoseAnyNonConformingMemberTypes(DeclContext *DC,
NominalTypeDecl *nominal,
ProtocolDecl *protocol);
/// Diagnose the declaration for which we were trying to synthesize
/// the conformance for, if the synthesis is not supported for that
/// declaration.
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
///
/// \param protocol The protocol with requirements we would like to diagnose
/// derivation failures for
static void diagnoseIfSynthesisUnsupportedForDecl(NominalTypeDecl *nominal,
ProtocolDecl *protocol);
/// Determine the derivable requirement that would satisfy the given
/// requirement, if there is one.
///
/// \param nominal The nominal type for which we are determining whether to
/// derive a witness.
///
/// \param requirement The requirement for which we are checking for a
/// derivation. This requirement need not be within a derivable protocol,
/// because derivable requirements can get restated in inherited unrelated
/// or unrelated protocols.
///
/// \returns The requirement whose witness could be derived to potentially
/// satisfy this given requirement, or NULL if there is no such requirement.
static ValueDecl *getDerivableRequirement(NominalTypeDecl *nominal,
ValueDecl *requirement);
/// Determine if an AdditiveArithmetic requirement can be derived for a type.
///
/// \returns True if the requirement can be derived.
static bool canDeriveAdditiveArithmetic(NominalTypeDecl *type,
DeclContext *DC);
/// Derive an AdditiveArithmetic requirement for a nominal type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveAdditiveArithmetic(ValueDecl *requirement);
/// Determine if a Differentiable requirement can be derived for a nominal
/// type.
///
/// \returns True if the requirement can be derived.
static bool canDeriveDifferentiable(NominalTypeDecl *type, DeclContext *DC,
ValueDecl *requirement);
/// Derive a Differentiable requirement for a nominal type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveDifferentiable(ValueDecl *requirement);
/// Derive a Differentiable type witness for a nominal type.
///
/// \returns the derived member, which will also be added to the type.
std::pair<Type, TypeDecl *>
deriveDifferentiable(AssociatedTypeDecl *assocType);
/// Derive a CaseIterable requirement for an enum if it has no associated
/// values for any of its cases.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveCaseIterable(ValueDecl *requirement);
/// Derive a CaseIterable type witness for an enum if it has no associated
/// values for any of its cases.
///
/// \returns the derived member, which will also be added to the type.
Type deriveCaseIterable(AssociatedTypeDecl *assocType);
/// Determine if a RawRepresentable requirement can be derived for a type.
///
/// This is implemented for non-empty enums without associated values,
/// that declare a raw type in the inheritance clause.
static bool canDeriveRawRepresentable(DeclContext *DC, NominalTypeDecl *type);
/// Derive a RawRepresentable requirement for an enum, if it has a valid
/// raw type and raw values for all of its cases.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveRawRepresentable(ValueDecl *requirement);
/// Derive a RawRepresentable type witness for an enum, if it has a valid
/// raw type and raw values for all of its cases.
///
/// \returns the derived member, which will also be added to the type.
Type deriveRawRepresentable(AssociatedTypeDecl *assocType);
/// Determine if a Comparable requirement can be derived for a type.
///
/// This is implemented for enums without associated or raw values.
///
/// \returns True if the requirement can be derived.
static bool canDeriveComparable(DeclContext *DC, EnumDecl *enumeration);
/// Derive an Equatable requirement for a type.
///
/// This is implemented for enums without associated or raw values.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveComparable(ValueDecl *requirement);
/// Diagnose problems, if any, preventing automatic derivation of Comparable
/// requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
static void tryDiagnoseFailedComparableDerivation(DeclContext *DC,
NominalTypeDecl *nominal);
/// Diagnose problems, if any, preventing automatic derivation of
/// DistributedActor requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
static void tryDiagnoseFailedDistributedActorDerivation(DeclContext *DC,
NominalTypeDecl *nominal);
/// Diagnose problems, if any, preventing automatic derivation of
/// DistributedActor requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
static void
tryDiagnoseFailedDistributedActorSystemDerivation(DeclContext *DC,
NominalTypeDecl *nominal);
/// Determine if an Equatable requirement can be derived for a type.
///
/// This is implemented for enums without associated values or all-Equatable
/// associated values, and for structs with all-Equatable stored properties.
///
/// \returns True if the requirement can be derived.
static bool canDeriveEquatable(DeclContext *DC, NominalTypeDecl *type);
/// Derive an Equatable requirement for a type.
///
/// This is implemented for enums without associated values or all-Equatable
/// associated values, and for structs with all-Equatable stored properties.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveEquatable(ValueDecl *requirement);
/// Diagnose problems, if any, preventing automatic derivation of Equatable
/// requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
static void tryDiagnoseFailedEquatableDerivation(DeclContext *DC,
NominalTypeDecl *nominal);
/// Determine if a Hashable requirement can be derived for a type.
///
/// This is implemented for enums without associated values or all-Hashable
/// associated values, and for structs with all-Hashable stored properties.
///
/// \returns True if the requirement can be derived.
static bool canDeriveHashable(NominalTypeDecl *type);
/// Derive a Hashable requirement for a type.
///
/// This is implemented for enums without associated values or all-Hashable
/// associated values, and for structs with all-Hashable stored properties.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveHashable(ValueDecl *requirement);
/// Diagnose problems, if any, preventing automatic derivation of Hashable
/// requirements
///
/// \param nominal The nominal type for which we would like to diagnose
/// derivation failures
static void tryDiagnoseFailedHashableDerivation(DeclContext *DC,
NominalTypeDecl *nominal);
/// Derive a _BridgedNSError requirement for an @objc enum type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveBridgedNSError(ValueDecl *requirement);
/// Determine if \c Encodable can be derived for the given type.
static bool canDeriveEncodable(NominalTypeDecl *NTD);
/// Determine if \c Decodable can be derived for the given type.
static bool canDeriveDecodable(NominalTypeDecl *NTD);
/// Derive a CodingKey requirement for an enum type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveCodingKey(ValueDecl *requirement);
/// Derive an Encodable requirement for a struct type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveEncodable(ValueDecl *requirement);
/// Derive a Decodable requirement for a struct type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveDecodable(ValueDecl *requirement);
/// Identifiable may need to have the `ID` type witness synthesized explicitly
static bool canDeriveIdentifiable(NominalTypeDecl *nominal,
DeclContext *dc);
/// Whether we can derive the given DistributedActor requirement in the given context.
static bool canDeriveDistributedActor(NominalTypeDecl *nominal,
DeclContext *dc);
/// Whether we can derive the given DistributedActorSystem requirements.
static bool canDeriveDistributedActorSystem(NominalTypeDecl *nominal,
DeclContext *dc);
/// Derive a 'DistributedActor' requirement for an distributed actor.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveDistributedActor(ValueDecl *requirement);
/// Derive a 'DistributedActorSystem' requirement..
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveDistributedActorSystem(ValueDecl *requirement);
/// Derive a DistributedActor associated type for a distributed actor.
///
/// \returns the derived type member, which will also be added to the type.
std::pair<Type, TypeDecl *> deriveDistributedActor(
AssociatedTypeDecl *assocType);
/// Determine if \c Actor can be derived for the given type.
static bool canDeriveActor(DeclContext *DC, NominalTypeDecl *NTD);
/// Derive an Actor witness for an actor type.
///
/// \returns the derived member, which will also be added to the type.
ValueDecl *deriveActor(ValueDecl *requirement);
/// Declare a read-only property.
std::pair<VarDecl *, PatternBindingDecl *>
declareDerivedProperty(SynthesizedIntroducer intro, Identifier name,
Type propertyContextType, bool isStatic, bool isFinal);
/// Add a getter to a derived property. The property becomes read-only.
static AccessorDecl *addGetterToReadOnlyDerivedProperty(VarDecl *property);
/// Declare a getter for a derived property.
/// The getter will not be added to the property yet.
static AccessorDecl *declareDerivedPropertyGetter(VarDecl *property);
/// Build a reference to the 'self' decl of a derived function.
static DeclRefExpr *createSelfDeclRef(AbstractFunctionDecl *fn);
/// Build a builtin call. By default, the call is assumed not to throw.
static CallExpr *createBuiltinCall(ASTContext &ctx,
BuiltinValueKind builtin,
ArrayRef<Type> typeArgs,
ArrayRef<Expr *> args);
/// Build a call to the stdlib function that should be called when unavailable
/// code is reached unexpectedly.
static CallExpr *
createDiagnoseUnavailableCodeReachedCallExpr(ASTContext &ctx);
/// Returns true if this derivation is trying to use a context that isn't
/// appropriate for deriving.
///
/// \param synthesizing The decl that is being synthesized.
bool checkAndDiagnoseDisallowedContext(ValueDecl *synthesizing) const;
/// Returns a generated guard statement that checks whether the given lhs and
/// rhs expressions are equal. If not equal, the else block for the guard
/// returns `guardReturnValue`.
/// \p C The AST context.
/// \p lhsExpr The first expression to compare for equality.
/// \p rhsExpr The second expression to compare for equality.
/// \p guardReturnValue The expression to return if the two sides are not
/// equal
static GuardStmt *returnIfNotEqualGuard(ASTContext &C, Expr *lhsExpr,
Expr *rhsExpr,
Expr *guardReturnValue);
// return false
static GuardStmt *returnFalseIfNotEqualGuard(ASTContext &C, Expr *lhsExpr,
Expr *rhsExpr);
// Return `nil` is the `testExp` is `false`.
static GuardStmt *returnNilIfFalseGuardTypeChecked(ASTContext &C,
Expr *testExpr,
Type optionalWrappedType);
// return lhs < rhs
static GuardStmt *
returnComparisonIfNotEqualGuard(ASTContext &C, Expr *lhsExpr, Expr *rhsExpr);
/// Returns the ParamDecl for each associated value of the given enum whose
/// type does not conform to a protocol \p theEnum The enum whose elements and
/// associated values should be checked. \p protocol The protocol being
/// requested. \return The ParamDecl of each associated value whose type does
/// not conform.
static SmallVector<ParamDecl *, 4>
associatedValuesNotConformingToProtocol(DeclContext *DC, EnumDecl *theEnum,
ProtocolDecl *protocol);
/// Returns true if, for every element of the given enum, it either has no
/// associated values or all of them conform to a protocol.
/// \p theEnum The enum whose elements and associated values should be
/// checked. \p protocol The protocol being requested. \return True if all
/// associated values of all elements of the enum conform.
static bool allAssociatedValuesConformToProtocol(DeclContext *DC,
EnumDecl *theEnum,
ProtocolDecl *protocol);
/// Create AST statements which convert from an enum to an Int with a switch.
/// \p stmts The generated statements are appended to this vector.
/// \p parentDC Either an extension or the enum itself.
/// \p enumDecl The enum declaration.
/// \p enumVarDecl The enum input variable.
/// \p funcDecl The parent function.
/// \p indexName The name of the output variable.
/// \return A DeclRefExpr of the output variable (of type Int).
static DeclRefExpr *
convertEnumToIndex(SmallVectorImpl<ASTNode> &stmts, DeclContext *parentDC,
EnumDecl *enumDecl, VarDecl *enumVarDecl,
AbstractFunctionDecl *funcDecl, const char *indexName);
static Pattern *enumElementPayloadSubpattern(
EnumElementDecl *enumElementDecl, char varPrefix, DeclContext *varContext,
SmallVectorImpl<VarDecl *> &boundVars, bool useLabels = false);
/// Creates a synthesized case statement that has the following structure:
///
/// case .<elt>, ..., .<elt>:
/// _diagnoseUnavailableCodeReached()
///
/// The number of \c .<elt> matches is equal to \p subPatternCount.
static CaseStmt *unavailableEnumElementCaseStmt(
Type enumType, EnumElementDecl *enumElementDecl, DeclContext *parentDC,
unsigned subPatternCount = 1);
static VarDecl *indexedVarDecl(char prefixChar, int index, Type type,
DeclContext *varContext);
};
/// Determine whether any "memberwise" accessors, which walk through the
/// stored properties of the given nominal type, require actor isolation
/// because they involve mutable state.
bool memberwiseAccessorsRequireActorIsolation(NominalTypeDecl *nominal);
} // namespace swift
#endif