-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTypeCheckRequestFunctions.cpp
432 lines (367 loc) · 14.2 KB
/
TypeCheckRequestFunctions.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
//===--- TypeCheckRequests.cpp - Type Checking Requests ------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "TypeChecker.h"
#include "TypeCheckType.h"
#include "swift/AST/PropertyWrappers.h"
#include "swift/AST/Attr.h"
#include "swift/AST/TypeCheckRequests.h"
#include "swift/AST/Decl.h"
#include "swift/AST/ExistentialLayout.h"
#include "swift/AST/GenericSignature.h"
#include "swift/AST/MacroDefinition.h"
#include "swift/AST/NameLookupRequests.h"
#include "swift/AST/ProtocolConformance.h"
#include "swift/AST/TypeLoc.h"
#include "swift/AST/Types.h"
#include "swift/Subsystems.h"
using namespace swift;
Type InheritedTypeRequest::evaluate(
Evaluator &evaluator,
llvm::PointerUnion<const TypeDecl *, const ExtensionDecl *> decl,
unsigned index, TypeResolutionStage stage) const {
// Figure out how to resolve types.
DeclContext *dc;
TypeResolverContext context;
if (auto typeDecl = decl.dyn_cast<const TypeDecl *>()) {
if (auto nominal = dyn_cast<NominalTypeDecl>(typeDecl)) {
dc = (DeclContext *)nominal;
context = TypeResolverContext::Inherited;
} else {
dc = typeDecl->getDeclContext();
if (isa<GenericTypeParamDecl>(typeDecl))
context = TypeResolverContext::GenericParameterInherited;
else {
assert(isa<AssociatedTypeDecl>(typeDecl));
context = TypeResolverContext::AssociatedTypeInherited;
}
}
} else {
dc = (DeclContext *)decl.get<const ExtensionDecl *>();
context = TypeResolverContext::Inherited;
}
Optional<TypeResolution> resolution;
switch (stage) {
case TypeResolutionStage::Structural:
resolution =
TypeResolution::forStructural(dc, context,
/*unboundTyOpener*/ nullptr,
/*placeholderHandler*/ nullptr,
/*packElementOpener*/ nullptr);
break;
case TypeResolutionStage::Interface:
resolution =
TypeResolution::forInterface(dc, context,
/*unboundTyOpener*/ nullptr,
/*placeholderHandler*/ nullptr,
/*packElementOpener*/ nullptr);
break;
}
const TypeLoc &typeLoc = getInheritedTypeLocAtIndex(decl, index);
Type inheritedType;
if (typeLoc.getTypeRepr())
inheritedType = resolution->resolveType(typeLoc.getTypeRepr());
else
inheritedType = typeLoc.getType();
return inheritedType ? inheritedType : ErrorType::get(dc->getASTContext());
}
Type
SuperclassTypeRequest::evaluate(Evaluator &evaluator,
NominalTypeDecl *nominalDecl,
TypeResolutionStage stage) const {
assert(isa<ClassDecl>(nominalDecl) || isa<ProtocolDecl>(nominalDecl));
// If this is a protocol that came from a serialized module, compute the
// superclass via its generic signature.
if (auto *proto = dyn_cast<ProtocolDecl>(nominalDecl)) {
if (proto->wasDeserialized()) {
return proto->getGenericSignature()
->getSuperclassBound(proto->getSelfInterfaceType());
}
if (!proto->getSuperclassDecl())
return Type();
} else if (auto classDecl = dyn_cast<ClassDecl>(nominalDecl)) {
if (!classDecl->getSuperclassDecl())
return Type();
}
for (unsigned int idx : indices(nominalDecl->getInherited())) {
auto result = evaluator(InheritedTypeRequest{nominalDecl, idx, stage});
if (auto err = result.takeError()) {
// FIXME: Should this just return once a cycle is detected?
llvm::handleAllErrors(std::move(err),
[](const CyclicalRequestError<InheritedTypeRequest> &E) {
/* cycle detected */
});
continue;
}
Type inheritedType = *result;
if (!inheritedType) continue;
// If we found a class, return it.
if (inheritedType->getClassOrBoundGenericClass()) {
return inheritedType;
}
// If we found an existential with a superclass bound, return it.
if (inheritedType->isExistentialType()) {
if (auto superclassType =
inheritedType->getExistentialLayout().explicitSuperclass) {
if (superclassType->getClassOrBoundGenericClass()) {
return superclassType;
}
}
}
}
// No superclass.
return Type();
}
Type EnumRawTypeRequest::evaluate(Evaluator &evaluator,
EnumDecl *enumDecl) const {
for (unsigned int idx : indices(enumDecl->getInherited())) {
auto inheritedTypeResult = evaluator(
InheritedTypeRequest{enumDecl, idx, TypeResolutionStage::Interface});
if (auto err = inheritedTypeResult.takeError()) {
llvm::handleAllErrors(std::move(err),
[](const CyclicalRequestError<InheritedTypeRequest> &E) {
// cycle detected
});
continue;
}
auto &inheritedType = *inheritedTypeResult;
if (!inheritedType) continue;
// Skip protocol conformances.
if (inheritedType->isConstraintType()) continue;
// We found a raw type; return it.
return inheritedType;
}
// No raw type.
return Type();
}
CustomAttr *
AttachedResultBuilderRequest::evaluate(Evaluator &evaluator,
ValueDecl *decl) const {
ASTContext &ctx = decl->getASTContext();
auto dc = decl->getDeclContext();
for (auto attr : decl->getAttrs().getAttributes<CustomAttr>()) {
auto mutableAttr = const_cast<CustomAttr *>(attr);
// Figure out which nominal declaration this custom attribute refers to.
auto found = evaluateOrDefault(ctx.evaluator,
CustomAttrDeclRequest{mutableAttr, dc},
nullptr);
// Ignore unresolvable custom attributes.
if (!found)
continue;
auto nominal = found.dyn_cast<NominalTypeDecl *>();
if (!nominal)
continue;
// Return the first custom attribute that is a result builder type.
if (nominal->getAttrs().hasAttribute<ResultBuilderAttr>())
return mutableAttr;
}
return nullptr;
}
/// Attempt to infer the result builder type for a declaration.
static Type inferResultBuilderType(ValueDecl *decl) {
auto dc = decl->getDeclContext();
if (!dc->isTypeContext() || isa<ProtocolDecl>(dc))
return Type();
auto funcDecl = dyn_cast<FuncDecl>(decl);
if (!funcDecl || !funcDecl->hasBody() ||
!decl->getDeclContext()->getParentSourceFile())
return Type();
// Check whether there are any return statements in the function's body.
// If there are, the result builder transform will be disabled,
// so don't infer a result builder.
if (!TypeChecker::findReturnStatements(funcDecl).empty())
return Type();
// Only getters can have result builders. When we find one, look at
// the storage declaration for the purposes of witness matching.
auto lookupDecl = decl;
if (auto accessor = dyn_cast<AccessorDecl>(funcDecl)) {
if (accessor->getAccessorKind() != AccessorKind::Get)
return Type();
lookupDecl = accessor->getStorage();
}
// Find all of the potentially inferred result builder types.
struct Match {
enum Kind {
Conformance,
DynamicReplacement,
} kind;
union {
struct {
ProtocolConformance *conformance;
ValueDecl *requirement;
} conformanceMatch;
ValueDecl *dynamicReplacement;
};
Type resultBuilderType;
static Match forConformance(
ProtocolConformance *conformance,
ValueDecl *requirement,
Type resultBuilderType) {
Match match;
match.kind = Conformance;
match.conformanceMatch.conformance = conformance;
match.conformanceMatch.requirement = requirement;
match.resultBuilderType = resultBuilderType;
return match;
}
static Match forDynamicReplacement(
ValueDecl *dynamicReplacement, Type resultBuilderType) {
Match match;
match.kind = DynamicReplacement;
match.dynamicReplacement = dynamicReplacement;
match.resultBuilderType = resultBuilderType;
return match;
}
DeclName getSourceName() const {
switch (kind) {
case Conformance:
return conformanceMatch.conformance->getProtocol()->getName();
case DynamicReplacement:
return dynamicReplacement->getName();
}
llvm_unreachable("unhandled decl name kind!");
}
};
// The set of matches from which we can infer result builder types.
SmallVector<Match, 2> matches;
// Determine all of the conformances within the same context as
// this declaration. If this declaration is a witness to any
// requirement within one of those protocols that has a result builder
// attached, use that result builder type.
auto addConformanceMatches = [&matches](ValueDecl *lookupDecl) {
DeclContext *dc = lookupDecl->getDeclContext();
auto idc = cast<IterableDeclContext>(dc->getAsDecl());
auto conformances = idc->getLocalConformances(
ConformanceLookupKind::NonStructural);
for (auto conformance : conformances) {
auto protocol = conformance->getProtocol();
for (auto found : protocol->lookupDirect(lookupDecl->getName())) {
if (!isa<ProtocolDecl>(found->getDeclContext()))
continue;
auto requirement = dyn_cast<ValueDecl>(found);
if (!requirement)
continue;
Type resultBuilderType = requirement->getResultBuilderType();
if (!resultBuilderType)
continue;
auto witness = conformance->getWitnessDecl(requirement);
if (witness != lookupDecl)
continue;
// Substitute Self and associated type witnesses into the
// result builder type. Type parameters will be mapped
// into context when applying the result builder to the
// function body in the constraint system.
auto subs = SubstitutionMap::getProtocolSubstitutions(
protocol, dc->getSelfInterfaceType(),
ProtocolConformanceRef(conformance));
Type subResultBuilderType = resultBuilderType.subst(subs);
matches.push_back(
Match::forConformance(
conformance, requirement, subResultBuilderType));
}
}
};
addConformanceMatches(lookupDecl);
// Look for result builder types inferred through dynamic replacements.
if (auto replaced = lookupDecl->getDynamicallyReplacedDecl()) {
if (auto resultBuilderType = replaced->getResultBuilderType()) {
matches.push_back(
Match::forDynamicReplacement(replaced, resultBuilderType));
} else {
addConformanceMatches(replaced);
}
}
if (matches.size() == 0)
return Type();
// Determine whether there is more than one actual result builder type.
Type resultBuilderType = matches[0].resultBuilderType;
for (const auto &match : matches) {
// If the types were the same anyway, there's nothing to do.
Type otherResultBuilderType = match.resultBuilderType;
if (resultBuilderType->isEqual(otherResultBuilderType))
continue;
// We have at least two different result builder types.
// Diagnose the ambiguity and provide potential solutions.
decl->diagnose(
diag::result_builder_infer_ambig, lookupDecl->getName(),
resultBuilderType, otherResultBuilderType);
decl->diagnose(diag::result_builder_infer_add_return)
.fixItInsert(funcDecl->getBodySourceRange().End, "return <#expr#>\n");
for (const auto &match : matches) {
decl->diagnose(
diag::result_builder_infer_pick_specific,
match.resultBuilderType,
static_cast<unsigned>(match.kind),
match.getSourceName())
.fixItInsert(
lookupDecl->getAttributeInsertionLoc(false),
"@" + match.resultBuilderType.getString() + " ");
}
return Type();
}
return resultBuilderType;
}
Type ResultBuilderTypeRequest::evaluate(Evaluator &evaluator,
ValueDecl *decl) const {
// Look for a result-builder custom attribute.
auto attr = decl->getAttachedResultBuilder();
if (!attr)
return inferResultBuilderType(decl);
// Resolve a type for the attribute.
auto mutableAttr = const_cast<CustomAttr*>(attr);
auto dc = decl->getDeclContext();
auto &ctx = dc->getASTContext();
Type type = evaluateOrDefault(
evaluator,
CustomAttrTypeRequest{mutableAttr, dc, CustomAttrTypeKind::NonGeneric},
Type());
if (!type || type->hasError()) return Type();
auto nominal = type->getAnyNominal();
if (!nominal) {
assert(ctx.Diags.hadAnyError());
return Type();
}
// Do some additional checking on parameters.
if (auto param = dyn_cast<ParamDecl>(decl)) {
// The parameter had better already have an interface type.
Type paramType = param->getInterfaceType();
assert(paramType);
auto paramFnType = paramType->getAs<FunctionType>();
// Require the parameter to be an interface type.
if (!paramFnType) {
ctx.Diags.diagnose(attr->getLocation(),
diag::result_builder_parameter_not_of_function_type,
nominal->getName());
mutableAttr->setInvalid();
return Type();
}
// Forbid the parameter to be an autoclosure.
if (param->isAutoClosure()) {
ctx.Diags.diagnose(attr->getLocation(),
diag::result_builder_parameter_autoclosure,
nominal->getName());
mutableAttr->setInvalid();
return Type();
}
}
return type->mapTypeOutOfContext();
}
// Define request evaluation functions for each of the type checker requests.
static AbstractRequestFunction *typeCheckerRequestFunctions[] = {
#define SWIFT_REQUEST(Zone, Name, Sig, Caching, LocOptions) \
reinterpret_cast<AbstractRequestFunction *>(&Name::evaluateRequest),
#include "swift/AST/TypeCheckerTypeIDZone.def"
#undef SWIFT_REQUEST
};
void swift::registerTypeCheckerRequestFunctions(Evaluator &evaluator) {
evaluator.registerRequestFunctions(Zone::TypeChecker,
typeCheckerRequestFunctions);
}