-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathDiagnoseInvalidEscapingCaptures.cpp
594 lines (509 loc) · 19.6 KB
/
DiagnoseInvalidEscapingCaptures.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
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
//===--- DiagnoseInvalidEscapingCaptures.cpp ------------------------------===//
//
// 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 implements a diagnostic pass to diagnose escaping closures that
// capture mutable storage locations or noescape function values.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-diagnose-invalid-escaping-captures"
#include "swift/AST/ASTContext.h"
#include "swift/AST/DiagnosticsSIL.h"
#include "swift/AST/Expr.h"
#include "swift/AST/SemanticAttrs.h"
#include "swift/AST/Types.h"
#include "swift/SIL/ApplySite.h"
#include "swift/SIL/InstructionUtils.h"
#include "swift/SIL/SILArgument.h"
#include "swift/SIL/SILBasicBlock.h"
#include "swift/SIL/SILInstruction.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
#include "llvm/Support/Debug.h"
using namespace swift;
template <typename... T, typename... U>
static InFlightDiagnostic diagnose(ASTContext &Context, SILLocation loc,
Diag<T...> diag, U &&... args) {
return Context.Diags.diagnose(loc.getSourceLoc(), diag,
std::forward<U>(args)...);
}
template <typename... T, typename... U>
static InFlightDiagnostic diagnose(ASTContext &Context, SourceLoc loc,
Diag<T...> diag, U &&... args) {
return Context.Diags.diagnose(loc, diag,
std::forward<U>(args)...);
}
// Check if a use of a value derived from a partial_apply can cause the
// closure to escape. For "pass-through" uses that build a new value from
// the partial_apply, followUses() is called to evaluate the uses of the
// derived value.
template <typename FollowUse>
static bool checkNoEscapePartialApplyUse(Operand *oper, FollowUse followUses) {
SILInstruction *user = oper->getUser();
if (isa<ConvertEscapeToNoEscapeInst>(user) ||
isa<CopyBlockWithoutEscapingInst>(user))
return false;
// Look through copies, borrows, and conversions.
// getSingleValueCopyOrCast handles all result producing instructions for
// which onlyAffectsRefCount returns true.
if (SingleValueInstruction *copy = getSingleValueCopyOrCast(user)) {
// Only follow the copied operand. Other operands are incidental,
// as in the second operand of mark_dependence.
if (oper->getOperandNumber() == 0)
followUses(copy);
return false;
}
// Ignore uses that are totally uninteresting. partial_apply [stack] is
// terminated by a dealloc_stack instruction.
if (isIncidentalUse(user) || onlyAffectsRefCount(user) ||
isa<DeallocStackInst>(user)) {
assert(user->getNumResults() == 0);
return false;
}
// Before checking conversions in general below (getSingleValueCopyOrCast),
// check for convert_function to [without_actually_escaping]. Assume such
// conversion are not actually escaping without following their uses.
if (auto *CFI = dyn_cast<ConvertFunctionInst>(user)) {
if (CFI->withoutActuallyEscaping())
return false;
}
// Look through `differentiable_function`.
if (auto *DFI = dyn_cast<DifferentiableFunctionInst>(user)) {
followUses(DFI);
return false;
}
// @noescape block storage can be passed as an Optional (Nullable).
if (auto *EI = dyn_cast<EnumInst>(user)) {
followUses(EI);
return false;
}
// Look through Phis.
if (auto *BI = dyn_cast<BranchInst>(user)) {
const SILPhiArgument *arg = BI->getArgForOperand(oper);
followUses(arg);
return false;
}
if (auto *CBI = dyn_cast<CondBranchInst>(user)) {
const SILPhiArgument *arg = CBI->getArgForOperand(oper);
if (arg) // If the use isn't the branch condition, follow it.
followUses(arg);
return false;
}
// Look through ObjC closures.
if (auto *SI = dyn_cast<StoreInst>(user)) {
if (oper->getOperandNumber() == StoreInst::Src) {
if (auto *PBSI = dyn_cast<ProjectBlockStorageInst>(
SI->getDest())) {
SILValue storageAddr = PBSI->getOperand();
// The closure is stored to block storage. Recursively visit all
// uses of any initialized block storage values derived from this
// storage address..
for (Operand *oper : storageAddr->getUses()) {
if (auto *IBS = dyn_cast<InitBlockStorageHeaderInst>(oper->getUser()))
followUses(IBS);
}
return false;
}
}
}
if (auto *PAI = dyn_cast<PartialApplyInst>(user)) {
// Recurse through partial_apply chains.
if (oper->get() == PAI->getCallee()) {
followUses(PAI);
return false;
}
// Look through re-abstraction thunks.
if (isPartialApplyOfReabstractionThunk(PAI)) {
// However, first check for withoutActuallyEscaping, which is always
// a valid non-escaping use.
SILFunction *thunkDef = PAI->getReferencedFunctionOrNull();
if (!thunkDef)
return true;
if (!thunkDef->isWithoutActuallyEscapingThunk())
followUses(PAI);
return false;
}
}
// Anything else is flagged as an escaping use.
return true;
}
const ParamDecl *getParamDeclFromOperand(SILValue value) {
while (true) {
// Look through mark must check.
if (auto *mmci = dyn_cast<MarkUnresolvedNonCopyableValueInst>(value)) {
value = mmci->getOperand();
// Look through copies.
} else if (auto *ci = dyn_cast<CopyValueInst>(value)) {
value = ci->getOperand();
} else {
break;
}
}
if (auto *arg = dyn_cast<SILArgument>(value))
if (auto *decl = dyn_cast_or_null<ParamDecl>(arg->getDecl()))
return decl;
return nullptr;
}
bool isUseOfSelfInInitializer(Operand *oper) {
if (auto *PBI = dyn_cast<ProjectBoxInst>(oper->get())) {
SILValue value = PBI->getOperand();
if (auto *bbi = dyn_cast<BeginBorrowInst>(value)) {
value = bbi->getOperand();
}
if (auto *MUI = dyn_cast<MarkUninitializedInst>(value)) {
switch (MUI->getMarkUninitializedKind()) {
case MarkUninitializedInst::Kind::Var:
case MarkUninitializedInst::Kind::Out:
return false;
case MarkUninitializedInst::Kind::RootSelf:
case MarkUninitializedInst::Kind::CrossModuleRootSelf:
case MarkUninitializedInst::Kind::DerivedSelf:
case MarkUninitializedInst::Kind::DerivedSelfOnly:
case MarkUninitializedInst::Kind::DelegatingSelf:
case MarkUninitializedInst::Kind::DelegatingSelfAllocated:
return true;
}
llvm_unreachable("Bad MarkUninitializedInst::Kind");
}
}
return false;
}
static bool checkForEscapingPartialApplyUses(PartialApplyInst *PAI) {
LLVM_DEBUG(llvm::dbgs() << "Checking for escaping partial apply uses.\n");
// Avoid exponential path exploration.
SmallVector<Operand *, 8> uses;
llvm::SmallDenseSet<Operand *, 8> visited;
auto uselistInsert = [&](Operand *operand) {
if (visited.insert(operand).second)
uses.push_back(operand);
};
for (Operand *use : PAI->getUses())
uselistInsert(use);
// Search for any uses of the closure that might potentially escape.
bool foundEscapingUse = false;
while (!uses.empty()) {
Operand *oper = uses.pop_back_val();
LLVM_DEBUG(llvm::dbgs() << "Visiting user: " << *oper->getUser());
bool localFoundEscapingUse = checkNoEscapePartialApplyUse(oper, [&](SILValue V) {
for (Operand *use : V->getUses())
uselistInsert(use);
});
LLVM_DEBUG(
if (localFoundEscapingUse)
llvm::dbgs() << " Escapes!\n";
);
foundEscapingUse |= localFoundEscapingUse;
}
// If there aren't any, we're fine.
return foundEscapingUse;
}
// Given a partial_apply forming a closure, together with one of its operands,
// find a usage of the corresponding argument inside the closure body, and
// diagnose it as a capture use.
//
// This makes a best-effort attempt at finding a "good" capture usage; it may
// not emit anything.
//
// The \c DC parameter is the DeclContext of the original function being
// analyzed by this diagnostic pass. We use it to distinguish calls of closures
// from calls of other unrelated functions, by checking the DeclContext of the
// called closure.
static void diagnoseCaptureLoc(ASTContext &Context, DeclContext *DC,
PartialApplyInst *PAI, Operand *oper) {
assert(DC != nullptr &&
"Invalid capture in function with no source location information");
SmallVector<Operand *, 8> uses;
llvm::SmallDenseSet<Operand *, 8> visited;
auto uselistInsert = [&](Operand *operand) {
if (visited.insert(operand).second)
uses.push_back(operand);
};
auto lookInsideClosure = [&](ApplySite site, Operand *oper) -> bool {
auto *F = site.getCalleeFunction();
if (F == nullptr || F->empty())
return false;
auto *otherDC = F->getDeclContext();
if (otherDC == nullptr || DC == nullptr ||
!otherDC->isChildContextOf(DC))
return false;
// Map an operand of an apply instruction to an argument inside
// the callee.
auto args = F->getArguments();
auto argIndex = site.getCalleeArgIndex(*oper);
auto arg = args[argIndex];
// Look for a usage of the callee argument.
for (Operand *use : arg->getUses())
uselistInsert(use);
return true;
};
lookInsideClosure(PAI, oper);
while (!uses.empty()) {
Operand *oper = uses.pop_back_val();
SILInstruction *user = oper->getUser();
// Look through copy_value.
if (auto *ci = dyn_cast<CopyValueInst>(user)) {
for (auto *use : ci->getUses()) {
uselistInsert(use);
}
continue;
}
if (isIncidentalUse(user) || onlyAffectsRefCount(user))
continue;
// Look through mark must check inst.
if (auto *mmci = dyn_cast<MarkUnresolvedNonCopyableValueInst>(user)) {
for (auto *use : mmci->getUses())
uselistInsert(use);
continue;
}
// Look through copies, borrows, and conversions.
if (SingleValueInstruction *copy = getSingleValueCopyOrCast(user)) {
// Only follow the copied operand. Other operands are incidental,
// as in the second operand of mark_dependence.
if (oper->getOperandNumber() == 0) {
for (auto *use : copy->getUses())
uselistInsert(use);
continue;
}
}
// If the usage is a capture of the value by another closure, look inside
// the body of that closure.
if (auto site = ApplySite::isa(user)) {
if (lookInsideClosure(site, oper)) {
diagnose(Context, site.getLoc(), diag::value_captured_transitively);
continue;
}
}
// Otherwise, we might have found one of the "real" usages of the capture.
// Diagnose it here.
SILValue val = oper->get();
SILLocation loc = val.getLoc();
if (loc.isASTNode<VarDecl>())
loc = user->getLoc();
diagnose(Context, loc, diag::value_captured_here);
}
}
// Diagnose this partial_apply if it captures a non-escaping value and has
// an escaping use.
static void checkPartialApply(ASTContext &Context, DeclContext *DC,
PartialApplyInst *PAI) {
// Re-abstraction thunks are not useful to look at. We'll diagnose the
// original closure instead.
if (isPartialApplyOfReabstractionThunk(PAI))
return;
LLVM_DEBUG(llvm::dbgs() << "Checking Partial Apply: " << *PAI);
ApplySite apply(PAI);
// Collect any non-escaping captures.
SmallVector<Operand *, 2> inoutCaptures;
SmallVector<Operand *, 2> noEscapeCaptures;
for (auto &oper : apply.getArgumentOperands()) {
SILValue value = oper.get();
// Captures of inout parameters cannot escape.
if (apply.getArgumentConvention(oper)
== SILArgumentConvention::Indirect_InoutAliasable)
inoutCaptures.push_back(&oper);
// Captures of noescape function types or tuples containing noescape
// function types cannot escape.
if (value->getType().containsNoEscapeFunction())
noEscapeCaptures.push_back(&oper);
}
// A partial_apply without non-escaping captures is always valid.
if (inoutCaptures.empty() && noEscapeCaptures.empty())
return;
// A partial_apply without escaping uses is always valid.
if (!checkForEscapingPartialApplyUses(PAI))
return;
// Otherwise, we have at least one escaping use of a partial_apply
// capturing a non-escaping value. We need to emit diagnostics.
// Should match SELECT_ESCAPING_CLOSURE_KIND in DiagnosticsSIL.def.
enum {
EscapingLocalFunction,
EscapingClosure,
EscapingAutoClosure,
} functionKind = EscapingClosure;
if (auto *F = PAI->getReferencedFunctionOrNull()) {
if (auto loc = F->getLocation()) {
if (loc.isASTNode<FuncDecl>()) {
functionKind = EscapingLocalFunction;
} else if (loc.isASTNode<AutoClosureExpr>()) {
functionKind = EscapingAutoClosure;
}
}
}
bool emittedError = false;
// First, diagnose the inout captures, if any.
for (auto inoutCapture : inoutCaptures) {
std::optional<Identifier> paramName = std::nullopt;
if (isUseOfSelfInInitializer(inoutCapture)) {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::escaping_mutable_self_capture,
functionKind);
} else {
auto *param = getParamDeclFromOperand(inoutCapture->get());
if (param->isSelfParameter()) {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::escaping_mutable_self_capture,
functionKind);
} else {
emittedError = true;
paramName = param->getName();
diagnose(Context, PAI->getLoc(), diag::escaping_inout_capture,
functionKind, param->getName());
diagnose(Context, param->getLoc(), diag::inout_param_defined_here,
param->getName());
}
}
if (functionKind != EscapingAutoClosure) {
emittedError = true;
diagnoseCaptureLoc(Context, DC, PAI, inoutCapture);
continue;
}
// For an autoclosure capture, present a way to fix the problem.
if (paramName) {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::copy_inout_captured_by_autoclosure,
paramName.value());
} else {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::copy_self_captured_by_autoclosure);
}
}
// Finally, diagnose captures of values with noescape type.
for (auto noEscapeCapture : noEscapeCaptures) {
if (auto *param = getParamDeclFromOperand(noEscapeCapture->get())) {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::escaping_noescape_param_capture,
functionKind, param->getName());
diagnose(Context, param->getLoc(), diag::noescape_param_defined_here,
param->getName());
} else {
emittedError = true;
diagnose(Context, PAI->getLoc(), diag::escaping_noescape_var_capture,
functionKind);
}
diagnoseCaptureLoc(Context, DC, PAI, noEscapeCapture);
}
// If we emitted an error, mark the closure function as not being suitable for
// noncopyable diagnostics. The user can fix the issue and then recompile.
if (emittedError) {
if (auto *f = apply.getCalleeFunction()) {
auto s = semantics::NO_MOVEONLY_DIAGNOSTICS;
f->addSemanticsAttr(s);
}
}
}
// Enforce exclusivity restrictions on recursive uses of non-escaping closures.
// Exclusivity requires a Non-Escaping Recursion Restriction rule (SE-0176):
// A non-escaping closure A may not be recursively invoked during the
// execution of a non-escaping closure B which captures the same local
// variable or inout parameter unless:
// - A is defined within B or
// - A is a local function declaration which is referenced directly by B.
//
// This is conservatively approximated with a Non-Escaping Parameter Call
// Restriction rule (NPCR), as implemented below:
// A function may not call a non-escaping function parameter passing a
// non-escaping function parameter as an argument.
// For the purposes of this rule, a closure which captures a non-escaping
// function parameter is treated the same as the parameter.
//
// Note: The compiler does not enforce recursion via
// withoutActuallyEscaping. This undefined behavior is exposed to programmers.
//
// TODO: Verify that all uses of noescaping function arguments are SIL patterns
// that are recognized below to prove that this diagnostic is complete.
static void checkApply(ASTContext &Context, FullApplySite site) {
auto isNoEscapeParam = [&](SILValue value) -> const ParamDecl * {
// If the value is an escaping, do not enforce any restrictions.
if (!value->getType().containsNoEscapeFunction())
return nullptr;
// If the value is not a function parameter, do not enforce any restrictions.
return getParamDeclFromOperand(value);
};
// If the callee is not a no-escape parameter, there is nothing to check.
auto callee = site.getCalleeOrigin();
if (!isNoEscapeParam(callee))
return;
// See if any of our arguments are noescape parameters, or closures capturing
// noescape parameters.
SmallVector<std::pair<SILValue, bool>, 4> args;
llvm::SmallDenseSet<SILValue, 4> visited;
auto arglistInsert = [&](SILValue arg, bool capture) {
if (visited.insert(arg).second)
args.emplace_back(arg, capture);
};
for (auto arg : site.getArguments())
arglistInsert(arg, /*capture=*/false);
while (!args.empty()) {
auto pair = args.pop_back_val();
auto arg = pair.first;
bool capture = pair.second;
if (auto CI = ConversionOperation(arg)) {
arglistInsert(CI.getConverted(), /*capture=*/false);
continue;
}
if (auto *Copy = dyn_cast<CopyValueInst>(arg)) {
arglistInsert(Copy->getOperand(), capture);
}
// If one of our call arguments is a noescape parameter, diagnose the
// violation.
if (auto *param = isNoEscapeParam(arg)) {
diagnose(Context, site.getLoc(), diag::err_noescape_param_call,
param->getName(), capture);
return;
}
// If one of our call arguments is a closure, recursively visit all of
// the closure's captures.
if (auto *PAI = dyn_cast<PartialApplyInst>(arg)) {
ApplySite site(PAI);
for (auto arg : site.getArguments())
arglistInsert(arg, /*capture=*/true);
continue;
}
}
}
static void checkForViolationsAtInstruction(ASTContext &Context,
DeclContext *DC,
SILInstruction *I) {
if (auto *PAI = dyn_cast<PartialApplyInst>(I))
checkPartialApply(Context, DC, PAI);
if (isa<ApplyInst>(I) || isa<TryApplyInst>(I)) {
FullApplySite site(I);
checkApply(Context, site);
}
}
static void checkEscapingCaptures(SILFunction *F) {
if (F->empty())
return;
auto &Context = F->getASTContext();
auto *DC = F->getDeclContext();
for (auto &BB : *F) {
for (auto &I : BB)
checkForViolationsAtInstruction(Context, DC, &I);
}
}
namespace {
class DiagnoseInvalidEscapingCaptures : public SILFunctionTransform {
public:
DiagnoseInvalidEscapingCaptures() {}
private:
void run() override {
SILFunction *F = getFunction();
// Don't rerun diagnostics on deserialized functions.
if (F->wasDeserializedCanonical())
return;
LLVM_DEBUG(llvm::dbgs() << "*** Diagnosing escaping captures in function: "
<< F->getName() << '\n');
checkEscapingCaptures(F);
}
};
} // end anonymous namespace
SILTransform *swift::createDiagnoseInvalidEscapingCaptures() {
return new DiagnoseInvalidEscapingCaptures();
}