forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenType.h
310 lines (261 loc) · 10.9 KB
/
GenType.h
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
//===--- GenType.h - Auxiliary Interface for Type IR Generation -*- C++ -*-===//
//
// 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 defines the private interface used for turning AST types
// into LLVM IR types.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_GENTYPE_H
#define SWIFT_IRGEN_GENTYPE_H
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/ilist.h"
#include "llvm/ADT/ilist_node.h"
#include "llvm/ADT/StringMap.h"
#include "IRGenModule.h"
#include "IRGenFunction.h"
#include "LegacyLayoutFormat.h"
namespace swift {
class GenericSignatureBuilder;
class ArchetypeType;
class CanType;
class ClassDecl;
class AnyFunctionType;
class InOutType;
class MetatypeType;
class ModuleType;
class NominalTypeDecl;
class EnumDecl;
class ProtocolCompositionType;
class ProtocolDecl;
class ProtocolType;
class SILFunctionType;
class StructDecl;
class TupleType;
class TypeBase;
class Type;
class EnumDecl;
class UnownedStorageType;
class WeakStorageType;
enum IsTake_t : bool;
namespace irgen {
class Alignment;
class ProtocolInfo;
class Size;
class FixedTypeInfo;
class LoadableTypeInfo;
class TypeInfo;
/// The helper class for generating types.
class TypeConverter {
public:
enum class Mode : unsigned {
/// Normal type lowering mode where resilient types are opaque.
Normal,
/// Used for computing backward deployment class layouts, where we emit a
/// static class metadata layout using known sizes and alignments of any
/// resiliently-typed fields from a previous Swift version. On newer Swift
/// versions we use a runtime mechanism to re-initialize the class metadata
/// in-place with the current known layout.
Legacy,
/// A temporary hack for lldb where all resilient types are transparent and
/// treated like fixed-size (but still lowered in a way that matches the
/// runtime layout produced for resilient types, which is important for some
/// types like enums where enabling resilience changes the layout).
CompletelyFragile
/// When adding or removing fields, remember to update NumLoweringModes below.
};
static unsigned const NumLoweringModes = 3;
IRGenModule &IGM;
private:
Mode LoweringMode = Mode::Normal;
llvm::DenseMap<ProtocolDecl*, std::unique_ptr<const ProtocolInfo>> Protocols;
const TypeInfo *FirstType;
const LoadableTypeInfo *NativeObjectTI = nullptr;
const LoadableTypeInfo *UnknownObjectTI = nullptr;
const LoadableTypeInfo *BridgeObjectTI = nullptr;
const LoadableTypeInfo *RawPointerTI = nullptr;
const LoadableTypeInfo *WitnessTablePtrTI = nullptr;
const TypeInfo *TypeMetadataPtrTI = nullptr;
const TypeInfo *ObjCClassPtrTI = nullptr;
const LoadableTypeInfo *EmptyTI = nullptr;
const LoadableTypeInfo *IntegerLiteralTI = nullptr;
const TypeInfo *AccessibleResilientStructTI = nullptr;
const TypeInfo *InaccessibleResilientStructTI = nullptr;
llvm::DenseMap<std::pair<unsigned, unsigned>, const LoadableTypeInfo *>
OpaqueStorageTypes;
const LoadableTypeInfo *NonFixedBoxTI = nullptr;
const LoadableTypeInfo *EmptyBoxTI = nullptr;
llvm::DenseMap<std::pair<unsigned, unsigned>, const LoadableTypeInfo *>
PODBoxTI;
const LoadableTypeInfo *SwiftRetainablePointerBoxTI = nullptr,
*UnknownObjectRetainablePointerBoxTI = nullptr;
llvm::StringMap<YAMLTypeInfoNode> LegacyTypeInfos;
llvm::DenseMap<NominalTypeDecl *, std::string> DeclMangledNames;
const LoadableTypeInfo *createPrimitive(llvm::Type *T,
Size size, Alignment align);
const LoadableTypeInfo *createPrimitiveForAlignedPointer(llvm::PointerType *T,
Size size, Alignment align,
Alignment pointerAlignment);
const FixedTypeInfo *createImmovable(llvm::Type *T,
Size size, Alignment align);
void addForwardDecl(TypeBase *key);
const TypeInfo *convertType(CanType T);
const TypeInfo *convertAnyNominalType(CanType T, NominalTypeDecl *D);
const TypeInfo *convertTupleType(TupleType *T);
const TypeInfo *convertClassType(CanType type, ClassDecl *D);
const TypeInfo *convertEnumType(TypeBase *key, CanType type, EnumDecl *D);
const TypeInfo *convertStructType(TypeBase *key, CanType type, StructDecl *D);
const TypeInfo *convertFunctionType(SILFunctionType *T);
const TypeInfo *convertBlockStorageType(SILBlockStorageType *T);
const TypeInfo *convertBoxType(SILBoxType *T);
const TypeInfo *convertArchetypeType(ArchetypeType *T);
const TypeInfo *convertInOutType(InOutType *T);
const TypeInfo *convertExistentialMetatypeType(ExistentialMetatypeType *T);
const TypeInfo *convertMetatypeType(MetatypeType *T);
const TypeInfo *convertModuleType(ModuleType *T);
const TypeInfo *convertProtocolType(ProtocolType *T);
const TypeInfo *convertProtocolCompositionType(ProtocolCompositionType *T);
const LoadableTypeInfo *convertBuiltinNativeObject();
const LoadableTypeInfo *convertBuiltinUnknownObject();
const LoadableTypeInfo *convertBuiltinBridgeObject();
const TypeInfo *convertResilientStruct(IsABIAccessible_t abiAccessible);
#define REF_STORAGE(Name, ...) \
const TypeInfo *convert##Name##StorageType(Name##StorageType *T);
#include "swift/AST/ReferenceStorage.def"
public:
TypeConverter(IRGenModule &IGM);
~TypeConverter();
Mode getLoweringMode() const {
return LoweringMode;
}
const TypeInfo *getTypeEntry(CanType type);
const TypeInfo &getCompleteTypeInfo(CanType type);
const LoadableTypeInfo &getNativeObjectTypeInfo();
const LoadableTypeInfo &getUnknownObjectTypeInfo();
const LoadableTypeInfo &getBridgeObjectTypeInfo();
const LoadableTypeInfo &getRawPointerTypeInfo();
const TypeInfo &getTypeMetadataPtrTypeInfo();
const TypeInfo &getObjCClassPtrTypeInfo();
const LoadableTypeInfo &getWitnessTablePtrTypeInfo();
const LoadableTypeInfo &getEmptyTypeInfo();
const LoadableTypeInfo &getIntegerLiteralTypeInfo();
const TypeInfo &getResilientStructTypeInfo(IsABIAccessible_t abiAccessible);
const ProtocolInfo &getProtocolInfo(ProtocolDecl *P, ProtocolInfoKind kind);
const LoadableTypeInfo &getOpaqueStorageTypeInfo(Size storageSize,
Alignment storageAlign);
const TypeInfo &getMetatypeTypeInfo(MetatypeRepresentation representation);
#define REF_STORAGE(Name, ...) \
const TypeInfo *create##Name##StorageType(llvm::Type *valueType, \
ReferenceCounting style, \
bool isOptional);
#include "swift/AST/ReferenceStorage.def"
/// Enter a generic context for lowering the parameters of a generic function
/// type.
void pushGenericContext(CanGenericSignature signature);
/// Exit a generic context.
void popGenericContext(CanGenericSignature signature);
/// Retrieve the generic environment for the current generic context.
///
/// Fails if there is no generic context.
GenericEnvironment *getGenericEnvironment();
private:
friend class LoweringModeScope;
void setLoweringMode(Mode mode) {
LoweringMode = mode;
}
/// Read a YAML legacy type layout dump. Returns false on success, true on
/// error.
bool readLegacyTypeInfo(StringRef path);
Optional<YAMLTypeInfoNode> getLegacyTypeInfo(NominalTypeDecl *decl) const;
// Debugging aids.
#ifndef NDEBUG
bool isExemplarArchetype(ArchetypeType *arch) const;
#endif
ArchetypeType *getExemplarArchetype(ArchetypeType *t);
CanType getExemplarType(CanType t);
class Types_t {
llvm::DenseMap<TypeBase *, const TypeInfo *> IndependentCache[NumLoweringModes];
llvm::DenseMap<TypeBase *, const TypeInfo *> DependentCache[NumLoweringModes];
public:
llvm::DenseMap<TypeBase *, const TypeInfo *> &getCacheFor(bool isDependent,
Mode mode);
};
Types_t Types;
};
/// An RAII interface for entering a generic context for type conversion in
/// a scope.
class GenericContextScope {
TypeConverter &TC;
CanGenericSignature sig;
public:
GenericContextScope(TypeConverter &TC, CanGenericSignature sig)
: TC(TC), sig(sig)
{
TC.pushGenericContext(sig);
}
GenericContextScope(IRGenModule &IGM, CanGenericSignature sig)
: GenericContextScope(IGM.Types, sig)
{}
~GenericContextScope() {
TC.popGenericContext(sig);
}
};
/// An RAII interface for forcing types to be lowered bypassing resilience.
class LoweringModeScope {
TypeConverter::Mode OldLoweringMode;
TypeConverter &TC;
public:
LoweringModeScope(TypeConverter &TC, TypeConverter::Mode LoweringMode)
: TC(TC) {
OldLoweringMode = TC.getLoweringMode();
TC.setLoweringMode(LoweringMode);
}
LoweringModeScope(IRGenModule &IGM, TypeConverter::Mode LoweringMode)
: LoweringModeScope(IGM.Types, LoweringMode) {}
~LoweringModeScope() {
TC.setLoweringMode(OldLoweringMode);
}
};
/// If a type is visibly a singleton aggregate (a tuple with one element, a
/// struct with one field, or an enum with a single payload case), return the
/// type of its field, which it is guaranteed to have identical layout to.
SILType getSingletonAggregateFieldType(IRGenModule &IGM,
SILType t,
ResilienceExpansion expansion);
/// An IRGenFunction interface for generating type layout verifiers.
class IRGenTypeVerifierFunction : public IRGenFunction {
private:
llvm::Constant *VerifierFn;
struct VerifierArgumentBuffers {
Address runtimeBuf, staticBuf;
};
llvm::DenseMap<llvm::Type *, VerifierArgumentBuffers> VerifierArgBufs;
public:
IRGenTypeVerifierFunction(IRGenModule &IGM, llvm::Function *f);
void emit(ArrayRef<CanType> typesToVerify);
/// Call a runtime function that verifies that the two LLVM values are
/// equivalent, logging a detailed error if they differ.
void verifyValues(llvm::Value *typeMetadata,
llvm::Value *runtimeValue,
llvm::Value *compilerValue,
const llvm::Twine &description);
/// Call a runtime function that verifies that the contents of the two
/// memory buffers are equivalent, logging a detailed error if they differ.
void verifyBuffers(llvm::Value *typeMetadata,
Address runtimeValue,
Address compilerValue,
Size size,
const llvm::Twine &description);
};
} // end namespace irgen
} // end namespace swift
#endif