forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSIL.cpp
291 lines (239 loc) · 9.83 KB
/
SIL.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
//===--- SIL.cpp - Implements random SIL functionality --------------------===//
//
// 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 "swift/SIL/FormalLinkage.h"
#include "swift/SIL/SILModule.h"
#include "swift/SIL/SILBuilder.h"
#include "swift/SIL/SILDeclRef.h"
#include "swift/SIL/SILType.h"
#include "swift/SIL/SILUndef.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/AnyFunctionRef.h"
#include "swift/AST/Decl.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/AST/Pattern.h"
#include "swift/AST/ParameterList.h"
#include "swift/AST/ProtocolConformance.h"
#include "swift/ClangImporter/ClangModule.h"
#include "clang/AST/Attr.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclObjC.h"
using namespace swift;
SILUndef *SILUndef::get(SILType Ty, SILModule *M) {
// Unique these.
SILUndef *&Entry = M->UndefValues[Ty];
if (Entry == nullptr)
Entry = new (*M) SILUndef(Ty);
return Entry;
}
FormalLinkage swift::getDeclLinkage(const ValueDecl *D) {
const DeclContext *fileContext = D->getDeclContext()->getModuleScopeContext();
// Clang declarations are public and can't be assured of having a
// unique defining location.
if (isa<ClangModuleUnit>(fileContext))
return FormalLinkage::PublicNonUnique;
switch (D->getEffectiveAccess()) {
case AccessLevel::Public:
case AccessLevel::Open:
return FormalLinkage::PublicUnique;
case AccessLevel::Internal:
return FormalLinkage::HiddenUnique;
case AccessLevel::FilePrivate:
case AccessLevel::Private:
return FormalLinkage::Private;
}
llvm_unreachable("Unhandled access level in switch.");
}
SILLinkage swift::getSILLinkage(FormalLinkage linkage,
ForDefinition_t forDefinition) {
switch (linkage) {
case FormalLinkage::PublicUnique:
return (forDefinition ? SILLinkage::Public : SILLinkage::PublicExternal);
case FormalLinkage::PublicNonUnique:
// FIXME: any place we have to do this that actually requires
// uniqueness is buggy.
return (forDefinition ? SILLinkage::Shared : SILLinkage::PublicExternal);
case FormalLinkage::HiddenUnique:
return (forDefinition ? SILLinkage::Hidden : SILLinkage::HiddenExternal);
case FormalLinkage::Private:
return SILLinkage::Private;
}
llvm_unreachable("bad formal linkage");
}
SILLinkage
swift::getLinkageForProtocolConformance(const NormalProtocolConformance *C,
ForDefinition_t definition) {
// Behavior conformances are always private.
if (C->isBehaviorConformance())
return (definition ? SILLinkage::Private : SILLinkage::PrivateExternal);
// If the conformance was synthesized by the ClangImporter, give it
// shared linkage.
if (isa<ClangModuleUnit>(C->getDeclContext()->getModuleScopeContext()))
return SILLinkage::Shared;
auto typeDecl = C->getType()->getNominalOrBoundGenericNominal();
AccessLevel access = std::min(C->getProtocol()->getEffectiveAccess(),
typeDecl->getEffectiveAccess());
switch (access) {
case AccessLevel::Private:
case AccessLevel::FilePrivate:
return (definition ? SILLinkage::Private : SILLinkage::PrivateExternal);
case AccessLevel::Internal:
return (definition ? SILLinkage::Hidden : SILLinkage::HiddenExternal);
default:
return (definition ? SILLinkage::Public : SILLinkage::PublicExternal);
}
}
bool SILModule::isTypeMetadataAccessible(CanType type) {
// SILModules built for the debugger have special powers to access metadata
// for types in other files/modules.
if (getASTContext().LangOpts.DebuggerSupport)
return true;
assert(type->isLegalFormalType());
return !type.findIf([&](CanType type) {
// Note that this function returns true if the type is *illegal* to use.
// Ignore non-nominal types.
auto decl = type.getNominalOrBoundGenericNominal();
if (!decl)
return false;
// Check whether the declaration is inaccessible from the current context.
switch (getDeclLinkage(decl)) {
// Public declarations are accessible from everywhere.
case FormalLinkage::PublicUnique:
case FormalLinkage::PublicNonUnique:
return false;
// Hidden declarations are inaccessible from different modules.
case FormalLinkage::HiddenUnique:
return (decl->getModuleContext() != getSwiftModule());
// Private declarations are inaccessible from different files unless
// this is WMO and we're in the same module.
case FormalLinkage::Private: {
// The only time we don't have an associated DC is in the
// integrated REPL, where we also don't have a concept of other
// source files within the current module.
if (!AssociatedDeclContext)
return (decl->getModuleContext() != getSwiftModule());
// The associated DC should be either a SourceFile or, in WMO mode,
// a ModuleDecl. In the WMO modes, IRGen will ensure that private
// declarations are usable throughout the module. Therefore, in
// either case we just need to make sure that the declaration comes
// from within the associated DC.
auto declDC = decl->getDeclContext();
return !(declDC == AssociatedDeclContext ||
declDC->isChildContextOf(AssociatedDeclContext));
}
}
llvm_unreachable("bad linkage");
});
}
/// Answer whether IRGen's emitTypeMetadataForLayout can fetch metadata for
/// a type, which is the necessary condition for being able to do value
/// operations on the type using dynamic metadata.
static bool isTypeMetadataForLayoutAccessible(SILModule &M, SILType type) {
// Look through types that aren't necessarily legal formal types:
// - tuples
if (auto tupleType = type.getAs<TupleType>()) {
for (auto index : indices(tupleType.getElementTypes())) {
if (!isTypeMetadataForLayoutAccessible(M, type.getTupleElementType(index)))
return false;
}
return true;
}
// - optionals
if (auto objType = type.getOptionalObjectType()) {
return isTypeMetadataForLayoutAccessible(M, objType);
}
// - function types
if (type.is<SILFunctionType>())
return true;
// - metatypes
if (type.is<AnyMetatypeType>())
return true;
// Otherwise, check that we can fetch the type metadata.
return M.isTypeMetadataAccessible(type.getASTType());
}
/// Can we perform value operations on the given type? We have no way
/// of doing value operations on resilient-layout types from other modules
/// that are ABI-private to their defining module. But if the type is not
/// ABI-private, we can always at least fetch its metadata and use the
/// value witness table stored there.
bool SILModule::isTypeABIAccessible(SILType type) {
// Fixed-ABI types can have value operations done without metadata.
if (Types.getTypeLowering(type).isFixedABI())
return true;
assert(!type.is<ReferenceStorageType>() &&
!type.is<SILFunctionType>() &&
!type.is<AnyMetatypeType>() &&
"unexpected SIL lowered-only type with non-fixed layout");
// Otherwise, we need to be able to fetch layout-metadata for the type.
return isTypeMetadataForLayoutAccessible(*this, type);
}
bool AbstractStorageDecl::exportsPropertyDescriptor() const {
// The storage needs a descriptor if it sits at a module's ABI boundary,
// meaning it has public linkage.
// TODO: Global and static properties ought to eventually be referenceable
// as key paths from () or T.Type too.
if (!getDeclContext()->isTypeContext() || isStatic())
return false;
// Protocol requirements do not need property descriptors.
if (isa<ProtocolDecl>(getDeclContext()))
return false;
// Any property that's potentially resilient should have accessors
// synthesized.
if (!getGetter())
return false;
// If the getter is mutating, we cannot form a keypath to it at all.
if (isGetterMutating())
return false;
// TODO: If previous versions of an ABI-stable binary needed the descriptor,
// then we still do.
// Check the linkage of the declaration.
auto getter = SILDeclRef(getGetter());
auto getterLinkage = getter.getLinkage(ForDefinition);
switch (getterLinkage) {
case SILLinkage::Public:
case SILLinkage::PublicNonABI:
// We may need a descriptor.
break;
case SILLinkage::Shared:
case SILLinkage::Private:
case SILLinkage::Hidden:
// Don't need a public descriptor.
return false;
case SILLinkage::HiddenExternal:
case SILLinkage::PrivateExternal:
case SILLinkage::PublicExternal:
case SILLinkage::SharedExternal:
llvm_unreachable("should be definition linkage?");
}
// Subscripts with inout arguments (FIXME)and reabstracted arguments(/FIXME)
// don't have descriptors either.
if (auto sub = dyn_cast<SubscriptDecl>(this)) {
for (auto *index : *sub->getIndices()) {
// Keypaths can't capture inout indices.
if (index->isInOut())
return false;
auto indexTy = index->getInterfaceType()
->getCanonicalType(sub->getGenericSignatureOfContext());
// TODO: Handle reabstraction and tuple explosion in thunk generation.
// This wasn't previously a concern because anything that was Hashable
// had only one abstraction level and no explosion.
if (isa<TupleType>(indexTy))
return false;
auto indexObjTy = indexTy;
if (auto objTy = indexObjTy.getOptionalObjectType())
indexObjTy = objTy;
if (isa<AnyFunctionType>(indexObjTy)
|| isa<AnyMetatypeType>(indexObjTy))
return false;
}
}
return true;
}