-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathAsyncCallerExecutionMigration.cpp
177 lines (153 loc) · 5.66 KB
/
AsyncCallerExecutionMigration.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
//===-- Sema/AsyncCallerExecutionMigration.cpp ------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2025 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file implements code migration support for the `AsyncCallerExecution`
/// feature.
///
//===----------------------------------------------------------------------===//
#include "AsyncCallerExecutionMigration.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/Decl.h"
#include "swift/AST/DiagnosticsSema.h"
#include "swift/AST/Expr.h"
#include "swift/AST/TypeRepr.h"
#include "swift/Basic/Assertions.h"
#include "swift/Basic/Feature.h"
#include "swift/Basic/TaggedUnion.h"
#include "llvm/ADT/PointerUnion.h"
using namespace swift;
namespace {
class AsyncCallerExecutionMigrationTarget {
ASTContext &ctx;
PointerUnion<ValueDecl *, AbstractClosureExpr *, FunctionTypeRepr *> node;
TaggedUnion<ActorIsolation, FunctionTypeIsolation> isolation;
public:
AsyncCallerExecutionMigrationTarget(ASTContext &ctx, ValueDecl *decl,
ActorIsolation isolation)
: ctx(ctx), node(decl), isolation(isolation) {}
AsyncCallerExecutionMigrationTarget(ASTContext &ctx,
AbstractClosureExpr *closure,
ActorIsolation isolation)
: ctx(ctx), node(closure), isolation(isolation) {}
AsyncCallerExecutionMigrationTarget(ASTContext &ctx, FunctionTypeRepr *repr,
FunctionTypeIsolation isolation)
: ctx(ctx), node(repr), isolation(isolation) {}
/// Warns that the behavior of nonisolated async functions will change under
/// `AsyncCallerExecution` and suggests `@execution(concurrent)` to preserve
/// the current behavior.
void diagnose() const;
};
} // end anonymous namespace
void AsyncCallerExecutionMigrationTarget::diagnose() const {
const auto feature = Feature::AsyncCallerExecution;
ASSERT(node);
ASSERT(ctx.LangOpts.getFeatureState(feature).isEnabledForAdoption());
AbstractFunctionDecl *functionDecl = nullptr;
ClosureExpr *closure = nullptr;
FunctionTypeRepr *functionRepr = nullptr;
if (auto *decl = node.dyn_cast<ValueDecl *>()) {
// Diagnose only explicit nodes.
if (decl->isImplicit()) {
return;
}
// Diagnose only functions.
functionDecl = dyn_cast<AbstractFunctionDecl>(decl);
if (!functionDecl) {
return;
}
} else if (auto *anyClosure = node.dyn_cast<AbstractClosureExpr *>()) {
// Diagnose only explicit nodes.
if (anyClosure->isImplicit()) {
return;
}
// The only subclass that can be explicit is this one.
closure = cast<ClosureExpr>(anyClosure);
} else {
functionRepr = node.get<FunctionTypeRepr *>();
}
// The execution behavior changes only for nonisolated functions.
{
bool isNonisolated;
if (functionRepr) {
isNonisolated = isolation.get<FunctionTypeIsolation>().isNonIsolated();
} else {
auto isolation = this->isolation.get<ActorIsolation>();
isNonisolated = isolation.isNonisolated() || isolation.isUnspecified();
}
if (!isNonisolated) {
return;
}
}
// If the intended behavior is specified explicitly, don't diagnose.
{
const DeclAttributes *attrs = nullptr;
if (functionDecl) {
attrs = &functionDecl->getAttrs();
} else if (closure) {
attrs = &closure->getAttrs();
}
if (attrs && attrs->hasAttribute<ExecutionAttr>()) {
return;
}
}
// The execution behavior changes only for async functions.
{
bool isAsync = false;
if (functionDecl) {
isAsync = functionDecl->hasAsync();
} else if (closure) {
isAsync = closure->isBodyAsync();
} else {
isAsync = functionRepr->isAsync();
}
if (!isAsync) {
return;
}
}
const ExecutionAttr attr(ExecutionKind::Concurrent, /*implicit=*/true);
const auto featureName = getFeatureName(feature);
if (functionDecl) {
ctx.Diags
.diagnose(functionDecl->getLoc(),
diag::attr_execution_nonisolated_behavior_will_change_decl,
featureName, functionDecl, &attr)
.fixItInsertAttribute(
functionDecl->getAttributeInsertionLoc(/*forModifier=*/false),
&attr);
} else if (closure) {
ctx.Diags
.diagnose(closure->getLoc(),
diag::attr_execution_nonisolated_behavior_will_change_closure,
featureName, &attr)
.fixItAddAttribute(&attr, closure);
} else {
ctx.Diags
.diagnose(
functionRepr->getStartLoc(),
diag::attr_execution_nonisolated_behavior_will_change_typerepr,
featureName, &attr)
.fixItInsertAttribute(functionRepr->getStartLoc(), &attr);
}
}
void swift::warnAboutNewNonisolatedAsyncExecutionBehavior(
ASTContext &ctx, FunctionTypeRepr *repr, FunctionTypeIsolation isolation) {
AsyncCallerExecutionMigrationTarget(ctx, repr, isolation).diagnose();
}
void swift::warnAboutNewNonisolatedAsyncExecutionBehavior(
ASTContext &ctx, ValueDecl *decl, ActorIsolation isolation) {
AsyncCallerExecutionMigrationTarget(ctx, decl, isolation).diagnose();
}
void swift::warnAboutNewNonisolatedAsyncExecutionBehavior(
ASTContext &ctx, AbstractClosureExpr *closure, ActorIsolation isolation) {
AsyncCallerExecutionMigrationTarget(ctx, closure, isolation).diagnose();
}