forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerializedSILLoader.cpp
249 lines (220 loc) · 7.86 KB
/
SerializedSILLoader.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
//===--- SerializedSILLoader.cpp - A loader for SIL sections --------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "serialized-sil-loader"
#include "swift/Serialization/SerializedSILLoader.h"
#include "DeserializeSIL.h"
#include "ModuleFile.h"
#include "swift/Serialization/SerializedModuleLoader.h"
#include "swift/SIL/SILModule.h"
#include "swift/AST/ASTMangler.h"
#include "llvm/Support/Debug.h"
using namespace swift;
SerializedSILLoader::SerializedSILLoader(
ASTContext &Ctx, SILModule *SILMod,
DeserializationNotificationHandlerSet *callbacks) {
// Get a list of SerializedModules from ASTContext.
// FIXME: Iterating over LoadedModules is not a good way to do this.
for (const auto &Entry : Ctx.getLoadedModules()) {
for (auto File : Entry.second->getFiles()) {
if (auto LoadedAST = dyn_cast<SerializedASTFile>(File)) {
auto Des = new SILDeserializer(&LoadedAST->File, *SILMod, callbacks);
#ifndef NDEBUG
SILMod->verify();
#endif
LoadedSILSections.emplace_back(Des);
}
}
}
}
SerializedSILLoader::~SerializedSILLoader() {}
SILFunction *SerializedSILLoader::lookupSILFunction(SILFunction *Callee,
bool onlyUpdateLinkage) {
// It is possible that one module has a declaration of a SILFunction, while
// another has the full definition.
SILFunction *retVal = nullptr;
for (auto &Des : LoadedSILSections) {
if (auto Func = Des->lookupSILFunction(Callee, onlyUpdateLinkage)) {
LLVM_DEBUG(llvm::dbgs() << "Deserialized " << Func->getName() << " from "
<< Des->getModuleIdentifier().str() << "\n");
if (!Func->empty())
return Func;
retVal = Func;
}
}
return retVal;
}
SILFunction *SerializedSILLoader::lookupSILFunction(StringRef Name,
bool declarationOnly,
Optional<SILLinkage> Linkage) {
// It is possible that one module has a declaration of a SILFunction, while
// another has the full definition.
SILFunction *retVal = nullptr;
for (auto &Des : LoadedSILSections) {
if (auto Func = Des->lookupSILFunction(Name, declarationOnly)) {
LLVM_DEBUG(llvm::dbgs() << "Deserialized " << Func->getName() << " from "
<< Des->getModuleIdentifier().str() << "\n");
if (Linkage) {
// This is not the linkage we are looking for.
if (Func->getLinkage() != *Linkage) {
LLVM_DEBUG(llvm::dbgs()
<< "Wrong linkage for Function: "
<< Func->getName() << " : "
<< (int)Func->getLinkage() << "\n");
Des->invalidateFunction(Func);
Func->getModule().eraseFunction(Func);
continue;
}
}
if (!Func->empty() || declarationOnly)
return Func;
retVal = Func;
}
}
return retVal;
}
bool SerializedSILLoader::hasSILFunction(StringRef Name,
Optional<SILLinkage> Linkage) {
// It is possible that one module has a declaration of a SILFunction, while
// another has the full definition.
SILFunction *retVal = nullptr;
for (auto &Des : LoadedSILSections) {
if (Des->hasSILFunction(Name, Linkage))
return true;
}
return retVal;
}
SILVTable *SerializedSILLoader::lookupVTable(const ClassDecl *C) {
Mangle::ASTMangler mangler;
std::string mangledClassName = mangler.mangleNominalType(C);
for (auto &Des : LoadedSILSections) {
if (auto VT = Des->lookupVTable(mangledClassName))
return VT;
}
return nullptr;
}
SILWitnessTable *SerializedSILLoader::lookupWitnessTable(SILWitnessTable *WT) {
for (auto &Des : LoadedSILSections)
if (auto wT = Des->lookupWitnessTable(WT))
return wT;
return nullptr;
}
SILDefaultWitnessTable *SerializedSILLoader::
lookupDefaultWitnessTable(SILDefaultWitnessTable *WT) {
for (auto &Des : LoadedSILSections)
if (auto wT = Des->lookupDefaultWitnessTable(WT))
return wT;
return nullptr;
}
SILDifferentiabilityWitness *
SerializedSILLoader::lookupDifferentiabilityWitness(
SILDifferentiabilityWitnessKey key) {
Mangle::ASTMangler mangler;
auto mangledKey = mangler.mangleSILDifferentiabilityWitness(
key.originalFunctionName, key.kind, key.config);
// It is possible that one module has a declaration of a
// SILDifferentiabilityWitness, while another has the full definition.
SILDifferentiabilityWitness *dw = nullptr;
for (auto &Des : LoadedSILSections) {
dw = Des->lookupDifferentiabilityWitness(mangledKey);
if (dw && dw->isDefinition())
return dw;
}
return dw;
}
void SerializedSILLoader::invalidateAllCaches() {
for (auto &des : LoadedSILSections)
des->invalidateAllCaches();
}
bool SerializedSILLoader::invalidateFunction(SILFunction *fn) {
for (auto &des : LoadedSILSections)
if (des->invalidateFunction(fn))
return true;
return false;
}
bool SerializedSILLoader::invalidateGlobalVariable(SILGlobalVariable *gv) {
for (auto &des : LoadedSILSections)
if (des->invalidateGlobalVariable(gv))
return true;
return false;
}
bool SerializedSILLoader::invalidateVTable(SILVTable *vt) {
for (auto &des : LoadedSILSections)
if (des->invalidateVTable(vt))
return true;
return false;
}
bool SerializedSILLoader::invalidateWitnessTable(SILWitnessTable *wt) {
for (auto &des : LoadedSILSections)
if (des->invalidateWitnessTable(wt))
return true;
return false;
}
bool SerializedSILLoader::invalidateDefaultWitnessTable(
SILDefaultWitnessTable *wt) {
for (auto &des : LoadedSILSections)
if (des->invalidateDefaultWitnessTable(wt))
return true;
return false;
}
bool SerializedSILLoader::invalidateProperty(SILProperty *p) {
for (auto &des : LoadedSILSections)
if (des->invalidateProperty(p))
return true;
return false;
}
bool SerializedSILLoader::invalidateDifferentiabilityWitness(
SILDifferentiabilityWitness *w) {
for (auto &des : LoadedSILSections)
if (des->invalidateDifferentiabilityWitness(w))
return true;
return false;
}
// FIXME: Not the best interface. We know exactly which FileUnits may have SIL
// those in the main module.
void SerializedSILLoader::getAllForModule(Identifier Mod,
FileUnit *PrimaryFile) {
for (auto &Des : LoadedSILSections) {
if (Des->getModuleIdentifier() == Mod) {
Des->getAll(PrimaryFile ?
Des->getFile() != PrimaryFile : false);
}
}
}
void SerializedSILLoader::getAllSILFunctions() {
for (auto &Des : LoadedSILSections)
Des->getAllSILFunctions();
}
/// Deserialize all VTables in all SILModules.
void SerializedSILLoader::getAllVTables() {
for (auto &Des : LoadedSILSections)
Des->getAllVTables();
}
/// Deserialize all WitnessTables in all SILModules.
void SerializedSILLoader::getAllWitnessTables() {
for (auto &Des : LoadedSILSections)
Des->getAllWitnessTables();
}
/// Deserialize all DefaultWitnessTables in all SILModules.
void SerializedSILLoader::getAllDefaultWitnessTables() {
for (auto &Des : LoadedSILSections)
Des->getAllDefaultWitnessTables();
}
/// Deserialize all Properties in all SILModules.
void SerializedSILLoader::getAllProperties() {
for (auto &Des : LoadedSILSections)
Des->getAllProperties();
}
/// Deserialize all DifferentiabilityWitnesses in all SILModules.
void SerializedSILLoader::getAllDifferentiabilityWitnesses() {
for (auto &Des : LoadedSILSections)
Des->getAllDifferentiabilityWitnesses();
}