forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFineGrainedDependencyFormat.cpp
618 lines (506 loc) · 18.2 KB
/
FineGrainedDependencyFormat.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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
//===---- FineGrainedDependencyFormat.cpp - reading and writing swiftdeps -===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 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/FileSystem.h"
#include "swift/AST/FineGrainedDependencies.h"
#include "swift/AST/FineGrainedDependencyFormat.h"
#include "swift/Basic/PrettyStackTrace.h"
#include "swift/Basic/Version.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/Bitstream/BitstreamReader.h"
#include "llvm/Bitstream/BitstreamWriter.h"
#include "llvm/Support/Allocator.h"
#include "llvm/Support/MemoryBuffer.h"
using namespace swift;
using namespace fine_grained_dependencies;
namespace {
class Deserializer {
std::vector<std::string> Identifiers;
llvm::BitstreamCursor Cursor;
SmallVector<uint64_t, 64> Scratch;
StringRef BlobData;
// These all return true if there was an error.
bool readSignature();
bool enterTopLevelBlock();
bool readMetadata();
llvm::Optional<std::string> getIdentifier(unsigned n);
public:
Deserializer(llvm::MemoryBufferRef Data) : Cursor(Data) {}
bool readFineGrainedDependencyGraph(SourceFileDepGraph &g, Purpose purpose);
bool readFineGrainedDependencyGraphFromSwiftModule(SourceFileDepGraph &g);
};
} // end namespace
bool Deserializer::readSignature() {
for (unsigned char byte : FINE_GRAINED_DEPDENENCY_FORMAT_SIGNATURE) {
if (Cursor.AtEndOfStream())
return true;
if (auto maybeRead = Cursor.Read(8)) {
if (maybeRead.get() != byte)
return true;
} else {
return true;
}
}
return false;
}
bool Deserializer::enterTopLevelBlock() {
// Read the BLOCKINFO_BLOCK, which contains metadata used when dumping
// the binary data with llvm-bcanalyzer.
{
auto next = Cursor.advance();
if (!next) {
consumeError(next.takeError());
return true;
}
if (next->Kind != llvm::BitstreamEntry::SubBlock)
return true;
if (next->ID != llvm::bitc::BLOCKINFO_BLOCK_ID)
return true;
if (!Cursor.ReadBlockInfoBlock())
return true;
}
// Enters our subblock, which contains the actual dependency information.
{
auto next = Cursor.advance();
if (!next) {
consumeError(next.takeError());
return true;
}
if (next->Kind != llvm::BitstreamEntry::SubBlock)
return true;
if (next->ID != RECORD_BLOCK_ID)
return true;
if (auto err = Cursor.EnterSubBlock(RECORD_BLOCK_ID)) {
consumeError(std::move(err));
return true;
}
}
return false;
}
bool Deserializer::readMetadata() {
using namespace record_block;
auto entry = Cursor.advance();
if (!entry) {
consumeError(entry.takeError());
return true;
}
if (entry->Kind != llvm::BitstreamEntry::Record)
return true;
auto recordID = Cursor.readRecord(entry->ID, Scratch, &BlobData);
if (!recordID) {
consumeError(recordID.takeError());
return true;
}
if (*recordID != METADATA)
return true;
unsigned majorVersion, minorVersion;
MetadataLayout::readRecord(Scratch, majorVersion, minorVersion);
if (majorVersion != FINE_GRAINED_DEPENDENCY_FORMAT_VERSION_MAJOR ||
minorVersion != FINE_GRAINED_DEPENDENCY_FORMAT_VERSION_MINOR) {
return true;
}
return false;
}
static llvm::Optional<NodeKind> getNodeKind(unsigned nodeKind) {
if (nodeKind < unsigned(NodeKind::kindCount))
return NodeKind(nodeKind);
return None;
}
static llvm::Optional<DeclAspect> getDeclAspect(unsigned declAspect) {
if (declAspect < unsigned(DeclAspect::aspectCount))
return DeclAspect(declAspect);
return None;
}
bool Deserializer::readFineGrainedDependencyGraph(SourceFileDepGraph &g,
Purpose purpose) {
using namespace record_block;
switch (purpose) {
case Purpose::ForSwiftDeps:
if (readSignature())
return true;
if (enterTopLevelBlock())
return true;
LLVM_FALLTHROUGH;
case Purpose::ForSwiftModule:
// N.B. Incremental metadata embedded in swiftmodule files does not have
// a leading signature, and its top-level block has already been
// consumed by the time we get here.
break;
}
if (readMetadata())
return true;
SourceFileDepGraphNode *node = nullptr;
size_t sequenceNumber = 0;
while (!Cursor.AtEndOfStream()) {
auto entry = cantFail(Cursor.advance(), "Advance bitstream cursor");
if (entry.Kind == llvm::BitstreamEntry::EndBlock) {
Cursor.ReadBlockEnd();
assert(Cursor.GetCurrentBitNo() % CHAR_BIT == 0);
break;
}
if (entry.Kind != llvm::BitstreamEntry::Record)
llvm::report_fatal_error("Bad bitstream entry kind");
Scratch.clear();
unsigned recordID = cantFail(
Cursor.readRecord(entry.ID, Scratch, &BlobData),
"Read bitstream record");
switch (recordID) {
case METADATA: {
// METADATA must appear at the beginning and is handled by readMetadata().
llvm::report_fatal_error("Unexpected METADATA record");
break;
}
case SOURCE_FILE_DEP_GRAPH_NODE: {
unsigned nodeKindID, declAspectID, contextID, nameID, isProvides;
SourceFileDepGraphNodeLayout::readRecord(Scratch, nodeKindID, declAspectID,
contextID, nameID, isProvides);
node = new SourceFileDepGraphNode();
node->setSequenceNumber(sequenceNumber++);
g.addNode(node);
auto nodeKind = getNodeKind(nodeKindID);
if (!nodeKind)
llvm::report_fatal_error("Bad node kind");
auto declAspect = getDeclAspect(declAspectID);
if (!declAspect)
llvm::report_fatal_error("Bad decl aspect");
auto context = getIdentifier(contextID);
if (!context)
llvm::report_fatal_error("Bad context");
auto name = getIdentifier(nameID);
if (!name)
llvm::report_fatal_error("Bad identifier");
node->setKey(DependencyKey(*nodeKind, *declAspect, *context, *name));
if (isProvides)
node->setIsProvides();
break;
}
case FINGERPRINT_NODE: {
// FINGERPRINT_NODE must follow a SOURCE_FILE_DEP_GRAPH_NODE.
if (node == nullptr)
llvm::report_fatal_error("Unexpected FINGERPRINT_NODE record");
if (auto fingerprint = Fingerprint::fromString(BlobData))
node->setFingerprint(fingerprint.getValue());
else
llvm::report_fatal_error(Twine("Unconvertable FINGERPRINT_NODE record: '") + BlobData + "'" );
break;
}
case DEPENDS_ON_DEFINITION_NODE: {
// DEPENDS_ON_DEFINITION_NODE must follow a SOURCE_FILE_DEP_GRAPH_NODE.
if (node == nullptr)
llvm::report_fatal_error("Unexpected DEPENDS_ON_DEFINITION_NODE record");
unsigned dependsOnDefID;
DependsOnDefNodeLayout::readRecord(Scratch, dependsOnDefID);
node->addDefIDependUpon(dependsOnDefID);
break;
}
case IDENTIFIER_NODE: {
// IDENTIFIER_NODE must come before SOURCE_FILE_DEP_GRAPH_NODE.
if (node != nullptr)
llvm::report_fatal_error("Unexpected IDENTIFIER_NODE record");
IdentifierNodeLayout::readRecord(Scratch);
Identifiers.push_back(BlobData.str());
break;
}
default: {
llvm::report_fatal_error("Unknown record ID");
}
}
}
return false;
}
bool swift::fine_grained_dependencies::readFineGrainedDependencyGraph(
llvm::MemoryBuffer &buffer, SourceFileDepGraph &g) {
Deserializer deserializer(buffer.getMemBufferRef());
return deserializer.readFineGrainedDependencyGraph(g, Purpose::ForSwiftDeps);
}
bool swift::fine_grained_dependencies::readFineGrainedDependencyGraph(
StringRef path, SourceFileDepGraph &g) {
auto buffer = llvm::MemoryBuffer::getFile(path);
if (!buffer)
return false;
return readFineGrainedDependencyGraph(*buffer.get(), g);
}
llvm::Optional<std::string> Deserializer::getIdentifier(unsigned n) {
if (n == 0)
return std::string();
--n;
if (n >= Identifiers.size())
return None;
return Identifiers[n];
}
namespace {
class Serializer {
llvm::StringMap<unsigned, llvm::BumpPtrAllocator> IdentifierIDs;
unsigned LastIdentifierID = 0;
std::vector<StringRef> IdentifiersToWrite;
llvm::BitstreamWriter &Out;
/// A reusable buffer for emitting records.
SmallVector<uint64_t, 64> ScratchRecord;
std::array<unsigned, 256> AbbrCodes;
void addIdentifier(StringRef str);
unsigned getIdentifier(StringRef str);
template <typename Layout>
void registerRecordAbbr() {
using AbbrArrayTy = decltype(AbbrCodes);
static_assert(Layout::Code <= std::tuple_size<AbbrArrayTy>::value,
"layout has invalid record code");
AbbrCodes[Layout::Code] = Layout::emitAbbrev(Out);
}
void emitBlockID(unsigned ID, StringRef name,
SmallVectorImpl<unsigned char> &nameBuffer);
void emitRecordID(unsigned ID, StringRef name,
SmallVectorImpl<unsigned char> &nameBuffer);
void writeSignature();
void writeBlockInfoBlock();
void writeMetadata();
public:
Serializer(llvm::BitstreamWriter &ExistingOut) : Out(ExistingOut) {}
public:
void writeFineGrainedDependencyGraph(const SourceFileDepGraph &g,
Purpose purpose);
};
} // end namespace
/// Record the name of a block.
void Serializer::emitBlockID(unsigned ID, StringRef name,
SmallVectorImpl<unsigned char> &nameBuffer) {
SmallVector<unsigned, 1> idBuffer;
idBuffer.push_back(ID);
Out.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, idBuffer);
// Emit the block name if present.
if (name.empty())
return;
nameBuffer.resize(name.size());
memcpy(nameBuffer.data(), name.data(), name.size());
Out.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, nameBuffer);
}
void Serializer::emitRecordID(unsigned ID, StringRef name,
SmallVectorImpl<unsigned char> &nameBuffer) {
assert(ID < 256 && "can't fit record ID in next to name");
nameBuffer.resize(name.size()+1);
nameBuffer[0] = ID;
memcpy(nameBuffer.data()+1, name.data(), name.size());
Out.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, nameBuffer);
}
void Serializer::writeSignature() {
for (auto c : FINE_GRAINED_DEPDENENCY_FORMAT_SIGNATURE)
Out.Emit((unsigned) c, 8);
}
void Serializer::writeBlockInfoBlock() {
llvm::BCBlockRAII restoreBlock(Out, llvm::bitc::BLOCKINFO_BLOCK_ID, 2);
SmallVector<unsigned char, 64> nameBuffer;
#define BLOCK(X) emitBlockID(X ## _ID, #X, nameBuffer)
#define BLOCK_RECORD(K, X) emitRecordID(K::X, #X, nameBuffer)
BLOCK(RECORD_BLOCK);
BLOCK_RECORD(record_block, METADATA);
BLOCK_RECORD(record_block, SOURCE_FILE_DEP_GRAPH_NODE);
BLOCK_RECORD(record_block, FINGERPRINT_NODE);
BLOCK_RECORD(record_block, DEPENDS_ON_DEFINITION_NODE);
BLOCK_RECORD(record_block, IDENTIFIER_NODE);
}
void Serializer::writeMetadata() {
using namespace record_block;
MetadataLayout::emitRecord(Out, ScratchRecord,
AbbrCodes[MetadataLayout::Code],
FINE_GRAINED_DEPENDENCY_FORMAT_VERSION_MAJOR,
FINE_GRAINED_DEPENDENCY_FORMAT_VERSION_MINOR,
version::getSwiftFullVersion());
}
void
Serializer::writeFineGrainedDependencyGraph(const SourceFileDepGraph &g,
Purpose purpose) {
unsigned blockID = 0;
switch (purpose) {
case Purpose::ForSwiftDeps:
writeSignature();
writeBlockInfoBlock();
blockID = RECORD_BLOCK_ID;
break;
case Purpose::ForSwiftModule:
blockID = INCREMENTAL_INFORMATION_BLOCK_ID;
break;
}
llvm::BCBlockRAII restoreBlock(Out, blockID, 8);
using namespace record_block;
registerRecordAbbr<MetadataLayout>();
registerRecordAbbr<SourceFileDepGraphNodeLayout>();
registerRecordAbbr<FingerprintNodeLayout>();
registerRecordAbbr<DependsOnDefNodeLayout>();
registerRecordAbbr<IdentifierNodeLayout>();
writeMetadata();
// Make a pass to collect all unique strings
g.forEachNode([&](SourceFileDepGraphNode *node) {
addIdentifier(node->getKey().getContext());
addIdentifier(node->getKey().getName());
});
// Write the strings
for (auto str : IdentifiersToWrite) {
IdentifierNodeLayout::emitRecord(Out, ScratchRecord,
AbbrCodes[IdentifierNodeLayout::Code],
str);
}
size_t sequenceNumber = 0;
// Now write each graph node
g.forEachNode([&](SourceFileDepGraphNode *node) {
SourceFileDepGraphNodeLayout::emitRecord(Out, ScratchRecord,
AbbrCodes[SourceFileDepGraphNodeLayout::Code],
unsigned(node->getKey().getKind()),
unsigned(node->getKey().getAspect()),
getIdentifier(node->getKey().getContext()),
getIdentifier(node->getKey().getName()),
node->getIsProvides() ? 1 : 0);
assert(sequenceNumber == node->getSequenceNumber());
sequenceNumber++;
(void) sequenceNumber;
if (auto fingerprint = node->getFingerprint()) {
FingerprintNodeLayout::emitRecord(Out, ScratchRecord,
AbbrCodes[FingerprintNodeLayout::Code],
fingerprint->getRawValue());
}
node->forEachDefIDependUpon([&](size_t defIDependOn) {
DependsOnDefNodeLayout::emitRecord(Out, ScratchRecord,
AbbrCodes[DependsOnDefNodeLayout::Code],
defIDependOn);
});
});
}
void Serializer::addIdentifier(StringRef str) {
if (str.empty())
return;
decltype(IdentifierIDs)::iterator iter;
bool isNew;
std::tie(iter, isNew) =
IdentifierIDs.insert({str, LastIdentifierID + 1});
if (!isNew)
return;
++LastIdentifierID;
// Note that we use the string data stored in the StringMap.
IdentifiersToWrite.push_back(iter->getKey());
}
unsigned Serializer::getIdentifier(StringRef str) {
if (str.empty())
return 0;
auto iter = IdentifierIDs.find(str);
assert(iter != IdentifierIDs.end());
assert(iter->second != 0);
return iter->second;
}
void swift::fine_grained_dependencies::writeFineGrainedDependencyGraph(
llvm::BitstreamWriter &Out, const SourceFileDepGraph &g,
Purpose purpose) {
Serializer serializer{Out};
serializer.writeFineGrainedDependencyGraph(g, purpose);
}
bool swift::fine_grained_dependencies::writeFineGrainedDependencyGraphToPath(
DiagnosticEngine &diags, StringRef path,
const SourceFileDepGraph &g) {
PrettyStackTraceStringAction stackTrace("saving fine-grained dependency graph", path);
return withOutputFile(diags, path, [&](llvm::raw_ostream &out) {
SmallVector<char, 0> Buffer;
llvm::BitstreamWriter Writer{Buffer};
writeFineGrainedDependencyGraph(Writer, g, Purpose::ForSwiftDeps);
out.write(Buffer.data(), Buffer.size());
out.flush();
return false;
});
}
static bool checkModuleSignature(llvm::BitstreamCursor &cursor,
ArrayRef<unsigned char> signature) {
for (unsigned char byte : signature) {
if (cursor.AtEndOfStream())
return false;
if (llvm::Expected<llvm::SimpleBitstreamCursor::word_t> maybeRead =
cursor.Read(8)) {
if (maybeRead.get() != byte)
return false;
} else {
consumeError(maybeRead.takeError());
return false;
}
}
return true;
}
static bool enterTopLevelModuleBlock(llvm::BitstreamCursor &cursor, unsigned ID,
bool shouldReadBlockInfo = true) {
llvm::Expected<llvm::BitstreamEntry> maybeNext = cursor.advance();
if (!maybeNext) {
consumeError(maybeNext.takeError());
return false;
}
llvm::BitstreamEntry next = maybeNext.get();
if (next.Kind != llvm::BitstreamEntry::SubBlock)
return false;
if (next.ID == llvm::bitc::BLOCKINFO_BLOCK_ID) {
if (shouldReadBlockInfo) {
if (!cursor.ReadBlockInfoBlock())
return false;
} else {
if (cursor.SkipBlock())
return false;
}
return enterTopLevelModuleBlock(cursor, ID, false);
}
if (next.ID != ID)
return false;
if (llvm::Error Err = cursor.EnterSubBlock(ID)) {
consumeError(std::move(Err));
return false;
}
return true;
}
bool swift::fine_grained_dependencies::
readFineGrainedDependencyGraphFromSwiftModule(llvm::MemoryBuffer &buffer,
SourceFileDepGraph &g) {
Deserializer deserializer(buffer.getMemBufferRef());
return deserializer.readFineGrainedDependencyGraphFromSwiftModule(g);
}
bool Deserializer::readFineGrainedDependencyGraphFromSwiftModule(
SourceFileDepGraph &g) {
if (!checkModuleSignature(Cursor, {0xE2, 0x9C, 0xA8, 0x0E}) ||
!enterTopLevelModuleBlock(Cursor, llvm::bitc::FIRST_APPLICATION_BLOCKID, false)) {
return true;
}
llvm::BitstreamEntry topLevelEntry;
bool DidNotReadFineGrainedDependencies = true;
while (!Cursor.AtEndOfStream()) {
llvm::Expected<llvm::BitstreamEntry> maybeEntry =
Cursor.advance(llvm::BitstreamCursor::AF_DontPopBlockAtEnd);
if (!maybeEntry) {
consumeError(maybeEntry.takeError());
return true;
}
topLevelEntry = maybeEntry.get();
if (topLevelEntry.Kind != llvm::BitstreamEntry::SubBlock)
break;
switch (topLevelEntry.ID) {
case INCREMENTAL_INFORMATION_BLOCK_ID: {
if (llvm::Error Err =
Cursor.EnterSubBlock(INCREMENTAL_INFORMATION_BLOCK_ID)) {
consumeError(std::move(Err));
return true;
}
if (readFineGrainedDependencyGraph(g, Purpose::ForSwiftModule)) {
break;
}
DidNotReadFineGrainedDependencies = false;
break;
}
default:
// Unknown top-level block, possibly for use by a future version of the
// module format.
if (Cursor.SkipBlock()) {
return true;
}
break;
}
}
return DidNotReadFineGrainedDependencies;
}