-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathFineGrainedDependencies.cpp
386 lines (343 loc) · 13.9 KB
/
FineGrainedDependencies.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
//===---- FineGrainedDependencies.cpp - Generates swiftdeps files ---------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 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/AST/FineGrainedDependencies.h"
// may not all be needed
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/DiagnosticsCommon.h"
#include "swift/AST/DiagnosticsFrontend.h"
#include "swift/AST/FileSystem.h"
#include "swift/AST/FineGrainedDependencyFormat.h"
#include "swift/Basic/Assertions.h"
#include "swift/Basic/FileSystem.h"
#include "swift/Basic/LLVM.h"
#include "swift/Demangling/Demangle.h"
#include "swift/Frontend/FrontendOptions.h"
#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
// This file holds the definitions for the fine-grained dependency system
// that are likely to be stable as it moves away from the status quo.
// These include the graph structures common to both programs and also
// the frontend graph, which must be read by the driver.
using namespace swift;
using namespace fine_grained_dependencies;
//==============================================================================
// MARK: Emitting and reading SourceFileDepGraph
//==============================================================================
std::optional<SourceFileDepGraph>
SourceFileDepGraph::loadFromPath(StringRef path, const bool allowSwiftModule) {
const bool treatAsModule =
allowSwiftModule &&
path.ends_with(file_types::getExtension(file_types::TY_SwiftModuleFile));
auto bufferOrError = llvm::MemoryBuffer::getFile(path);
if (!bufferOrError)
return std::nullopt;
return treatAsModule ? loadFromSwiftModuleBuffer(*bufferOrError.get())
: loadFromBuffer(*bufferOrError.get());
}
std::optional<SourceFileDepGraph>
SourceFileDepGraph::loadFromBuffer(llvm::MemoryBuffer &buffer) {
SourceFileDepGraph fg;
if (swift::fine_grained_dependencies::readFineGrainedDependencyGraph(
buffer, fg))
return std::nullopt;
return std::optional<SourceFileDepGraph>(std::move(fg));
}
std::optional<SourceFileDepGraph>
SourceFileDepGraph::loadFromSwiftModuleBuffer(llvm::MemoryBuffer &buffer) {
SourceFileDepGraph fg;
if (swift::fine_grained_dependencies::
readFineGrainedDependencyGraphFromSwiftModule(buffer, fg))
return std::nullopt;
return std::optional<SourceFileDepGraph>(std::move(fg));
}
//==============================================================================
// MARK: SourceFileDepGraph access
//==============================================================================
SourceFileDepGraphNode *
SourceFileDepGraph::getNode(size_t sequenceNumber) const {
assert(sequenceNumber < allNodes.size() && "Bad node index");
SourceFileDepGraphNode *n = allNodes[sequenceNumber];
assert(n->getSequenceNumber() == sequenceNumber &&
"Bad sequence number in node or bad entry in allNodes.");
return n;
}
InterfaceAndImplementationPair<SourceFileDepGraphNode>
SourceFileDepGraph::getSourceFileNodePair() const {
return InterfaceAndImplementationPair<SourceFileDepGraphNode>(
getNode(
SourceFileDepGraphNode::sourceFileProvidesInterfaceSequenceNumber),
getNode(SourceFileDepGraphNode::
sourceFileProvidesImplementationSequenceNumber));
}
StringRef SourceFileDepGraph::getSwiftDepsOfJobThatProducedThisGraph() const {
return getSourceFileNodePair()
.getInterface()
->getKey()
.getSwiftDepsFromASourceFileProvideNodeKey();
}
void SourceFileDepGraph::forEachArc(
function_ref<void(const SourceFileDepGraphNode *def,
const SourceFileDepGraphNode *use)>
fn) const {
forEachNode([&](const SourceFileDepGraphNode *useNode) {
forEachDefDependedUponBy(useNode, [&](SourceFileDepGraphNode *defNode) {
fn(defNode, useNode);
});
});
}
InterfaceAndImplementationPair<SourceFileDepGraphNode>
SourceFileDepGraph::findExistingNodePairOrCreateAndAddIfNew(
const DependencyKey &interfaceKey, std::optional<Fingerprint> fingerprint) {
// Optimization for whole-file users:
if (interfaceKey.getKind() == NodeKind::sourceFileProvide &&
!allNodes.empty())
return getSourceFileNodePair();
assert(interfaceKey.isInterface());
const DependencyKey implementationKey =
interfaceKey.correspondingImplementation();
auto *interfaceNode = findExistingNodeOrCreateIfNew(interfaceKey, fingerprint,
true /* = isProvides */);
auto *implementationNode = findExistingNodeOrCreateIfNew(
implementationKey, fingerprint, true /* = isProvides */);
InterfaceAndImplementationPair<SourceFileDepGraphNode> nodePair{
interfaceNode, implementationNode};
// if interface changes, have to rebuild implementation.
// This dependency used to be represented by
// addArc(nodePair.getInterface(), nodePair.getImplementation());
// However, recall that the dependency scheme as of 1/2020 chunks
// declarations together by base name.
// So if the arc were added, a dirtying of a same-based-named interface
// in a different file would dirty the implementation in this file,
// causing the needless recompilation of this file.
// But, if an arc is added for this, then *any* change that causes
// a same-named interface to be dirty will dirty this implementation,
// even if that interface is in another file.
// Therefore no such arc is added here, and any dirtying of either
// the interface or implementation of this declaration will cause
// the driver to recompile this source file.
return nodePair;
}
SourceFileDepGraphNode *SourceFileDepGraph::findExistingNodeOrCreateIfNew(
const DependencyKey &key, const std::optional<Fingerprint> fingerprint,
const bool isProvides) {
SourceFileDepGraphNode *result = memoizedNodes.findExistingOrCreateIfNew(
key, [&](DependencyKey key) -> SourceFileDepGraphNode * {
SourceFileDepGraphNode *n =
new SourceFileDepGraphNode(key, fingerprint, isProvides);
addNode(n);
return n;
});
assert(result->getKey() == key && "Keys must match.");
if (!isProvides)
return result;
// If have provides and depends with same key, result is one node that
// isProvides
if (!result->getIsProvides() && fingerprint) {
result->setIsProvides();
assert(!result->getFingerprint() && "Depends should not have fingerprints");
result->setFingerprint(fingerprint);
return result;
}
// If there are two Decls with same base name but differ only in fingerprint,
// since we won't be able to tell which Decl is depended-upon (is this right?)
// just use the one node, but erase its print:
if (fingerprint != result->getFingerprint())
result->setFingerprint(std::nullopt);
return result;
}
NullablePtr<SourceFileDepGraphNode>
SourceFileDepGraph::findExistingNode(const DependencyKey &key) {
auto existing = memoizedNodes.findExisting(key);
return existing ? existing.value() : NullablePtr<SourceFileDepGraphNode>();
}
std::string DependencyKey::demangleTypeAsContext(StringRef s) {
return swift::Demangle::demangleTypeAsString(s.str());
}
DependencyKey DependencyKey::createKeyForWholeSourceFile(DeclAspect aspect,
StringRef swiftDeps) {
assert(!swiftDeps.empty());
return DependencyKey::Builder(NodeKind::sourceFileProvide, aspect)
.withName(swiftDeps)
.build();
}
//==============================================================================
// MARK: Debugging
//==============================================================================
bool SourceFileDepGraph::verify() const {
DependencyKey::verifyNodeKindNames();
DependencyKey::verifyDeclAspectNames();
// Ensure Keys are unique
std::unordered_map<DependencyKey, SourceFileDepGraphNode *> nodesSeen;
// Ensure each node only appears once.
std::unordered_set<void *> nodes;
forEachNode([&](SourceFileDepGraphNode *n) {
n->verify();
assert(nodes.insert(n).second && "Frontend nodes are identified by "
"sequence number, therefore must be "
"unique.");
auto iterInserted = nodesSeen.insert(std::make_pair(n->getKey(), n));
if (!iterInserted.second) {
llvm::errs() << "Duplicate frontend keys: ";
iterInserted.first->second->dump(llvm::errs());
llvm::errs() << " and ";
n->dump(llvm::errs());
llvm::errs() << "\n";
llvm_unreachable("duplicate frontend keys");
}
forEachDefDependedUponBy(n, [&](SourceFileDepGraphNode *def) {
assert(def != n && "Uses should be irreflexive.");
});
});
return true;
}
bool SourceFileDepGraph::verifyReadsWhatIsWritten(StringRef path) const {
auto loadedGraph = SourceFileDepGraph::loadFromPath(path);
assert(loadedGraph.has_value() &&
"Should be able to read the exported graph.");
verifySame(loadedGraph.value());
return true;
}
std::string DependencyKey::humanReadableName() const {
switch (kind) {
case NodeKind::member:
return demangleTypeAsContext(context) + "." + name;
case NodeKind::externalDepend:
case NodeKind::sourceFileProvide:
return llvm::sys::path::filename(name).str();
case NodeKind::potentialMember:
return demangleTypeAsContext(context) + ".*";
case NodeKind::nominal:
return demangleTypeAsContext(context);
case NodeKind::topLevel:
case NodeKind::dynamicLookup:
return name;
default:
llvm_unreachable("bad kind");
}
}
std::string DependencyKey::asString() const {
return NodeKindNames[size_t(kind)] + " " + "aspect: " + aspectName().str() +
", " + humanReadableName();
}
/// Needed for TwoStageMap::verify:
raw_ostream &fine_grained_dependencies::operator<<(raw_ostream &out,
const DependencyKey &key) {
out << key.asString();
return out;
}
bool DependencyKey::verify() const {
assert((getKind() != NodeKind::externalDepend || isInterface()) &&
"All external dependencies must be interfaces.");
switch (getKind()) {
case NodeKind::topLevel:
case NodeKind::dynamicLookup:
case NodeKind::externalDepend:
case NodeKind::sourceFileProvide:
assert(context.empty() && !name.empty() && "Must only have a name");
break;
case NodeKind::nominal:
case NodeKind::potentialMember:
assert(!context.empty() && name.empty() && "Must only have a context");
break;
case NodeKind::member:
assert(!context.empty() && !name.empty() && "Must have both");
break;
case NodeKind::kindCount:
llvm_unreachable("impossible");
}
return true;
}
/// Since I don't have Swift enums, ensure name correspondence here.
void DependencyKey::verifyNodeKindNames() {
for (size_t i = 0; i < size_t(NodeKind::kindCount); ++i)
switch (NodeKind(i)) {
#define CHECK_NAME(n) \
case NodeKind::n: \
assert(#n == NodeKindNames[i]); \
break;
CHECK_NAME(topLevel)
CHECK_NAME(nominal)
CHECK_NAME(potentialMember)
CHECK_NAME(member)
CHECK_NAME(dynamicLookup)
CHECK_NAME(externalDepend)
CHECK_NAME(sourceFileProvide)
case NodeKind::kindCount:
llvm_unreachable("impossible");
}
#undef CHECK_NAME
}
/// Since I don't have Swift enums, ensure name correspondence here.
void DependencyKey::verifyDeclAspectNames() {
for (size_t i = 0; i < size_t(DeclAspect::aspectCount); ++i)
switch (DeclAspect(i)) {
#define CHECK_NAME(n) \
case DeclAspect::n: \
assert(#n == DeclAspectNames[i]); \
break;
CHECK_NAME(interface)
CHECK_NAME(implementation)
case DeclAspect::aspectCount:
llvm_unreachable("impossible");
}
#undef CHECK_NAME
}
void DepGraphNode::dump() const {
dump(llvm::errs());
}
void DepGraphNode::dump(raw_ostream &os) const {
key.dump(os);
if (fingerprint.has_value())
os << "fingerprint: " << fingerprint.value() << "";
else
os << "no fingerprint";
}
void SourceFileDepGraphNode::dump() const {
dump(llvm::errs());
}
void SourceFileDepGraphNode::dump(raw_ostream &os) const {
DepGraphNode::dump(os);
os << " sequence number: " << sequenceNumber;
os << " is provides: " << isProvides;
os << " depends on:";
for (auto def : defsIDependUpon)
os << " " << def;
}
std::string DepGraphNode::humanReadableName(StringRef where) const {
return getKey().humanReadableName() +
(getKey().getKind() == NodeKind::sourceFileProvide || where.empty()
? std::string()
: std::string(" in ") + where.str());
}
void SourceFileDepGraph::verifySame(const SourceFileDepGraph &other) const {
assert(allNodes.size() == other.allNodes.size() &&
"Both graphs must have same number of nodes.");
#ifndef NDEBUG
for (size_t i : indices(allNodes)) {
assert(*allNodes[i] == *other.allNodes[i] &&
"Both graphs must have corresponding nodes");
}
#endif
}
void SourceFileDepGraph::emitDotFile(llvm::vfs::OutputBackend &outputBackend,
StringRef outputPath,
DiagnosticEngine &diags) {
std::string dotFileName = outputPath.str() + ".dot";
withOutputPath(
diags, outputBackend, dotFileName, [&](llvm::raw_pwrite_stream &out) {
DotFileEmitter<SourceFileDepGraph>(out, *this, false, false).emit();
return false;
});
}