-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathTypeCheckRuntimeMetadataAttr.cpp
413 lines (335 loc) · 14.2 KB
/
TypeCheckRuntimeMetadataAttr.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
//===--- TypeCheckRuntimeMetadataAttr.cpp - type wrappers -----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2022 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 @runtimeMetadata attributes.
//
//===----------------------------------------------------------------------===//
#include "TypeCheckConcurrency.h"
#include "TypeChecker.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/ASTMangler.h"
#include "swift/AST/ActorIsolation.h"
#include "swift/AST/Attr.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Initializer.h"
#include "swift/AST/NameLookupRequests.h"
#include "swift/AST/TypeCheckRequests.h"
#include "swift/Basic/LLVM.h"
#include "swift/Basic/SourceLoc.h"
#include "llvm/ADT/SmallString.h"
using namespace swift;
using namespace constraints;
std::pair<BraceStmt *, Type>
ValueDecl::getRuntimeDiscoverableAttributeGenerator(CustomAttr *attr) const {
auto *mutableSelf = const_cast<ValueDecl *>(this);
auto *body = evaluateOrDefault(
getASTContext().evaluator,
SynthesizeRuntimeMetadataAttrGeneratorBody{attr, mutableSelf}, nullptr);
if (!body)
return std::make_pair(nullptr, Type());
auto *init = evaluateOrDefault(
getASTContext().evaluator,
SynthesizeRuntimeMetadataAttrGenerator{attr, mutableSelf}, nullptr);
assert(init);
return std::make_pair(body, init->getType()->mapTypeOutOfContext());
}
static TypeRepr *buildTypeRepr(DeclContext *typeContext,
bool forMetatype = false) {
assert(typeContext->isTypeContext());
SmallVector<IdentTypeRepr *, 2> components;
auto &ctx = typeContext->getASTContext();
DeclContext *DC = typeContext;
while (!DC->isModuleContext()) {
auto *NTD = DC->getSelfNominalTypeDecl();
// Only contiguous chains of nominals and extensions thereof.
if (!NTD)
break;
auto *component = new (ctx) SimpleIdentTypeRepr(
/*Loc=*/DeclNameLoc(), NTD->createNameRef());
// Resolve the component right away, instead of
// involving name lookup. This plays well with
// the fact that initializer is anchored on a
// source file.
component->setValue(NTD, NTD->getDeclContext());
components.push_back(component);
DC = NTD->getDeclContext();
}
// Reverse the components to form a valid outer-to-inner name sequence.
std::reverse(components.begin(), components.end());
TypeRepr *typeRepr = nullptr;
if (components.size() == 1) {
typeRepr = components.front();
} else {
typeRepr = MemberTypeRepr::create(ctx, components);
}
if (forMetatype)
return new (ctx) MetatypeTypeRepr(typeRepr, /*MetaLoc=*/SourceLoc());
return typeRepr;
}
/// Synthesizes a closure thunk that forwards all of the arguments
/// to the underlying method. This is required to support mutating
/// methods and create uniform signatures where for instance methods
/// first parameter is always `self` (with or without `inout`).
static ClosureExpr *synthesizeMethodThunk(DeclContext *thunkDC,
NominalTypeDecl *nominal,
FuncDecl *method) {
auto &ctx = method->getASTContext();
// If this is a method, let's form a thunk so that attribute initializer
// gets `([inout] T, Argument, ...) -> Result` signature.
auto *funcParams = method->getParameters();
SmallVector<ParamDecl *, 4> closureParams;
ParamDecl *selfParam = ParamDecl::createImplicit(
ctx,
/*argumentName=*/Identifier(),
/*parameterName=*/ctx.Id_self,
/*type=*/
method->isStatic() ? nominal->getInterfaceType()
: nominal->getDeclaredInterfaceType(),
thunkDC,
method->isMutating() ? ParamSpecifier::InOut : ParamSpecifier::Default);
{
// This is very important for the solver, without a type repr
// it would create a type variable and attempt infer the type
// from the body.
selfParam->setTypeRepr(buildTypeRepr(nominal, method->isStatic()));
closureParams.push_back(selfParam);
}
if (funcParams) {
unsigned anonIdx = 0;
for (auto *param : *funcParams) {
auto name = param->getParameterName();
// Cannot leave parameter anonymous because it would be
// referenced in the body.
if (name.empty())
name = ctx.getIdentifier((Twine("$anon") + Twine(anonIdx++)).str());
auto *closureParam = ParamDecl::createImplicit(
ctx,
/*argumentName=*/Identifier(),
/*parameterName=*/name, param->getInterfaceType(), thunkDC,
param->getSpecifier());
closureParam->setTypeRepr(param->getTypeRepr());
closureParams.push_back(closureParam);
}
}
// return self.<func>(<arguments>)
SmallVector<ASTNode, 2> body;
{
NullablePtr<Expr> baseExpr =
new (ctx) DeclRefExpr({selfParam}, /*Loc=*/DeclNameLoc(),
/*implicit=*/true);
auto *memberRef = new (ctx) MemberRefExpr(
baseExpr.get(), /*dotLoc=*/SourceLoc(), {method}, /*loc=*/DeclNameLoc(),
/*Implicit=*/true);
SmallVector<Argument, 4> arguments;
if (funcParams) {
for (unsigned i = 0, n = funcParams->size(); i != n; ++i) {
const auto *param = funcParams->get(i);
Expr *argExpr = new (ctx) DeclRefExpr({closureParams[i + 1]},
/*Loc=*/DeclNameLoc(),
/*implicit=*/true);
if (param->isInOut()) {
argExpr = new (ctx) InOutExpr(/*operLoc=*/SourceLoc(), argExpr,
Type(), /*implicit=*/true);
}
arguments.push_back(
{/*labelLoc=*/SourceLoc(), param->getArgumentName(), argExpr});
}
}
Expr *call = CallExpr::createImplicit(
ctx, memberRef, ArgumentList::createImplicit(ctx, arguments));
bool isAsync = false;
bool isThrows = method->hasThrows();
switch (getActorIsolation(method)) {
case ActorIsolation::Unspecified:
case ActorIsolation::Independent: {
isAsync = method->hasAsync();
break;
}
case ActorIsolation::ActorInstance: {
isAsync = true;
isThrows |= nominal->isDistributedActor();
break;
}
case ActorIsolation::GlobalActor:
isAsync = true;
LLVM_FALLTHROUGH;
case ActorIsolation::GlobalActorUnsafe: {
break;
}
}
if (isAsync)
call = AwaitExpr::createImplicit(ctx, /*awaitLoc=*/SourceLoc(), call);
if (isThrows)
call = TryExpr::createImplicit(ctx, /*tryLoc=*/SourceLoc(), call);
body.push_back(new (ctx) ReturnStmt(/*ReturnLoc=*/SourceLoc(), call,
/*implicit=*/true));
}
DeclAttributes attrs;
auto *closure = new (ctx) ClosureExpr(
attrs, /*bracketRange=*/SourceRange(),
/*capturedSelf=*/nullptr, ParameterList::create(ctx, closureParams),
/*asyncLoc=*/SourceLoc(),
/*throwsLoc=*/SourceLoc(),
/*arrowLoc=*/SourceLoc(),
/*inLoc=*/SourceLoc(),
/*explicitResultType=*/nullptr, thunkDC);
closure->setBody(BraceStmt::createImplicit(ctx, body),
/*isSingleExpr=*/true);
closure->setImplicit();
return closure;
}
Expr *SynthesizeRuntimeMetadataAttrGenerator::evaluate(
Evaluator &evaluator, CustomAttr *attr, ValueDecl *attachedTo) const {
auto &ctx = attachedTo->getASTContext();
auto attrType = evaluateOrDefault(
ctx.evaluator,
CustomAttrTypeRequest{attr, attachedTo->getDeclContext(),
CustomAttrTypeKind::RuntimeMetadata},
nullptr);
if (!attrType)
return nullptr;
auto *attrTypeDecl = attrType->getAnyNominal();
assert(attrTypeDecl->getAttrs().hasAttribute<RuntimeMetadataAttr>());
auto *initContext = new (ctx) RuntimeAttributeInitializer(attr, attachedTo);
Expr *initArgument = nullptr;
if (auto *nominal = dyn_cast<NominalTypeDecl>(attachedTo)) {
// Registry attributes on protocols are only used for
// inference on conforming types.
if (isa<ProtocolDecl>(nominal))
return nullptr;
// Form an initializer call passing in the metatype
auto *metatype = TypeExpr::createImplicit(nominal->getDeclaredType(), ctx);
initArgument = new (ctx)
DotSelfExpr(metatype, /*dot=*/SourceLoc(), /*self=*/SourceLoc());
} else if (auto *func = dyn_cast<FuncDecl>(attachedTo)) {
if (auto *nominal = func->getDeclContext()->getSelfNominalTypeDecl()) {
initArgument = synthesizeMethodThunk(initContext, nominal, func);
} else {
initArgument = new (ctx)
DeclRefExpr({func}, /*Loc=*/DeclNameLoc(), /*implicit=*/true);
}
} else {
auto *var = cast<VarDecl>(attachedTo);
assert(!var->isStatic());
auto *keyPath =
KeyPathExpr::createImplicit(ctx, /*backslashLoc=*/SourceLoc(),
{KeyPathExpr::Component::forProperty(
{var}, var->getValueInterfaceType(),
/*Loc=*/SourceLoc())},
/*endLoc=*/SourceLoc());
// Build a type repr for base of the key path, since attribute
// could be attached to an inner type, we need to go up decl
// contexts and add every parent type.
keyPath->setRootType(buildTypeRepr(var->getDeclContext()));
initArgument = keyPath;
}
SourceRange sourceRange;
if (auto *repr = attr->getTypeRepr()) {
sourceRange = repr->getSourceRange();
} else {
sourceRange = SourceRange(
attachedTo->getAttributeInsertionLoc(/*forModifier=*/false));
}
auto typeExpr =
TypeExpr::createImplicitHack(sourceRange.Start, attrType, ctx);
// Add the initializer argument at the front of the argument list
SmallVector<Argument, 4> newArgs;
newArgs.push_back({/*loc=*/SourceLoc(), ctx.Id_attachedTo, initArgument});
if (auto *attrArgs = attr->getArgs())
newArgs.append(attrArgs->begin(), attrArgs->end());
ArgumentList *argList = ArgumentList::createImplicit(
ctx, sourceRange.Start, newArgs, sourceRange.End);
Expr *init = CallExpr::createImplicit(ctx, typeExpr, argList);
// result of generator is an optional always.
Expr *result = CallExpr::createImplicit(
ctx,
new (ctx) DeclRefExpr({ctx.getOptionalDecl()}, /*Loc=*/DeclNameLoc(),
/*implicit=*/true),
ArgumentList::forImplicitSingle(ctx, /*label=*/Identifier(), init));
// Note that the availability checking is disabled for generator expression
// because availability checker cannot handle synthesized code without any
// source information (and no declaration for context).
auto resultTy = TypeChecker::typeCheckExpression(
result, initContext, ContextualTypeInfo(),
TypeCheckExprFlags::DisableExprAvailabilityChecking);
if (!resultTy)
return nullptr;
TypeChecker::contextualizeInitializer(initContext, result);
checkInitializerActorIsolation(initContext, result);
TypeChecker::checkInitializerEffects(initContext, result);
return result;
}
BraceStmt *SynthesizeRuntimeMetadataAttrGeneratorBody::evaluate(
Evaluator &evaluator, CustomAttr *attr, ValueDecl *attachedTo) const {
auto &ctx = attachedTo->getASTContext();
Expr *init = evaluateOrDefault(
ctx.evaluator, SynthesizeRuntimeMetadataAttrGenerator{attr, attachedTo},
nullptr);
if (!init)
return nullptr;
SmallVector<ASTNode, 4> body;
auto declAvailability = attachedTo->getAvailabilityForLinkage();
auto attrAvailability = attachedTo->getRuntimeDiscoverableAttrTypeDecl(attr)
->getAvailabilityForLinkage();
declAvailability.intersectWith(attrAvailability);
if (!declAvailability.isAlwaysAvailable()) {
// if #available(...) {
// return <#initializer call#>
// }
// return nil
auto availableOn = declAvailability.getOSVersion().getLowerEndpoint();
auto *platformSpec = new (ctx) PlatformVersionConstraintAvailabilitySpec(
targetPlatform(ctx.LangOpts), /*PlatformLoc=*/SourceLoc(), availableOn,
availableOn, /*VersionSrcRange=*/SourceRange());
auto *wildcardSpec =
new (ctx) OtherPlatformAvailabilitySpec(/*StarLoc=*/SourceLoc());
auto *availabilityInfo = PoundAvailableInfo::create(
ctx, /*PoundLoc=*/SourceLoc(),
/*LParenLoc=*/SourceLoc(), {platformSpec, wildcardSpec},
/*RParenLoc=*/SourceLoc(),
/*isUnavailability=*/false);
{ availabilityInfo->setAvailableRange(declAvailability.getOSVersion()); }
NullablePtr<Stmt> thenStmt;
{
SmallVector<ASTNode, 4> thenBody;
thenBody.push_back(new (ctx) ReturnStmt(/*loc=*/SourceLoc(), init,
/*isImplicit=*/true));
thenStmt = BraceStmt::create(ctx, /*lbloc=*/SourceLoc(), thenBody,
/*rbloc=*/SourceLoc(), /*implicit=*/true);
}
NullablePtr<Stmt> elseStmt;
{
// return nil
auto *nil =
new (ctx) NilLiteralExpr(/*Loc=*/SourceLoc(), /*implicit=*/true);
nil->setType(init->getType());
auto *returnNil = new (ctx) ReturnStmt(/*loc=*/SourceLoc(), nil,
/*isImplicit=*/true);
elseStmt = BraceStmt::create(ctx, /*lbloc=*/SourceLoc(), {returnNil},
/*rbloc=*/SourceLoc(), /*implicit=*/true);
}
auto *ifStmt = new (ctx) IfStmt(
LabeledStmtInfo(), /*ifLoc=*/SourceLoc(),
ctx.AllocateCopy(ArrayRef<StmtConditionElement>({availabilityInfo})),
thenStmt.get(),
/*ElseLoc=*/SourceLoc(), elseStmt.get(), /*Implicit=*/true);
body.push_back(ifStmt);
} else {
// just `return <#initializer value#>`
body.push_back(new (ctx) ReturnStmt(/*loc=*/SourceLoc(), init,
/*isImplicit=*/true));
}
ASTNode braceStmt =
BraceStmt::create(ctx, /*lbloc=*/attr->getLocation(), body,
/*rbloc=*/attr->getLocation(), /*implicit=*/true);
return cast<BraceStmt>(braceStmt.get<Stmt *>());
}