-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTypeCheckRequestFunctions.cpp
245 lines (208 loc) · 7.84 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
//===--- 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/NameLookupRequests.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<TypeDecl *, ExtensionDecl *> decl,
unsigned index,
TypeResolutionStage stage) const {
// Figure out how to resolve types.
TypeResolutionOptions options = None;
DeclContext *dc;
if (auto typeDecl = decl.dyn_cast<TypeDecl *>()) {
if (auto nominal = dyn_cast<NominalTypeDecl>(typeDecl)) {
dc = nominal;
options |= TypeResolutionFlags::AllowUnavailableProtocol;
} else {
dc = typeDecl->getDeclContext();
}
} else {
auto ext = decl.get<ExtensionDecl *>();
dc = ext;
options |= TypeResolutionFlags::AllowUnavailableProtocol;
}
Optional<TypeResolution> resolution;
switch (stage) {
case TypeResolutionStage::Structural:
resolution = TypeResolution::forStructural(dc);
break;
case TypeResolutionStage::Interface:
resolution = TypeResolution::forInterface(dc);
break;
case TypeResolutionStage::Contextual: {
// Compute the contextual type by mapping the interface type into context.
auto result =
evaluator(InheritedTypeRequest{decl, index,
TypeResolutionStage::Interface});
if (!result)
return Type();
return dc->mapTypeIntoContext(*result);
}
}
TypeLoc &typeLoc = getInheritedTypeLocAtIndex(decl, index);
Type inheritedType;
if (typeLoc.getTypeRepr())
inheritedType = resolution->resolveType(typeLoc.getTypeRepr(), options);
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());
}
}
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,
TypeResolutionStage stage) const {
for (unsigned int idx : indices(enumDecl->getInherited())) {
auto inheritedTypeResult =
evaluator(InheritedTypeRequest{enumDecl, idx, stage});
if (auto err = inheritedTypeResult.takeError()) {
llvm::handleAllErrors(std::move(err),
[](const CyclicalRequestError<InheritedTypeRequest> &E) {
// cycle detected
});
continue;
}
auto &inheritedType = *inheritedTypeResult;
if (!inheritedType) continue;
// Skip existential types.
if (inheritedType->isExistentialType()) continue;
// We found a raw type; return it.
return inheritedType;
}
// No raw type.
return Type();
}
CustomAttr *
AttachedFunctionBuilderRequest::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 nominal = evaluateOrDefault(ctx.evaluator,
CustomAttrNominalRequest{mutableAttr, dc},
nullptr);
// Ignore unresolvable custom attributes.
if (!nominal)
continue;
// Return the first custom attribute that is a function builder type.
if (nominal->getAttrs().hasAttribute<FunctionBuilderAttr>())
return mutableAttr;
}
return nullptr;
}
Type FunctionBuilderTypeRequest::evaluate(Evaluator &evaluator,
ValueDecl *decl) const {
// Look for a function-builder custom attribute.
auto attr = decl->getAttachedFunctionBuilder();
if (!attr) return Type();
// Resolve a type for the attribute.
auto mutableAttr = const_cast<CustomAttr*>(attr);
auto dc = decl->getDeclContext();
auto &ctx = dc->getASTContext();
Type type = resolveCustomAttrType(mutableAttr, dc,
CustomAttrTypeKind::NonGeneric);
if (!type) 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::function_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::function_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);
}