-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathswift-syntax-test.cpp
966 lines (851 loc) · 35.8 KB
/
swift-syntax-test.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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
//===--- swift-syntax-test.cpp - Reflection Syntax testing application ----===//
//
// 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 is a host-side tool to perform round-trip testing of "full-fidelity"
// lexing and parsing. That is, when this application ingests a .swift file,
// it should be able to create a list of full tokens, or a full-fidelity AST,
// print them, and get the same file back out. This ensures that we aren't
// losing any source information in these structures.
//
//===----------------------------------------------------------------------===//
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/DiagnosticsFrontend.h"
#include "swift/Basic/Defer.h"
#include "swift/Basic/LLVMInitialize.h"
#include "swift/Basic/LangOptions.h"
#include "swift/Basic/SourceManager.h"
#include "swift/Frontend/Frontend.h"
#include "swift/Frontend/PrintingDiagnosticConsumer.h"
#include "swift/Parse/Lexer.h"
#include "swift/Parse/Parser.h"
#include "swift/Subsystems.h"
#include "swift/Syntax/Serialization/SyntaxDeserialization.h"
#include "swift/Syntax/Serialization/SyntaxSerialization.h"
#include "swift/Syntax/SyntaxData.h"
#include "swift/Syntax/SyntaxNodes.h"
#include "llvm/Support/BinaryByteStream.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileOutputBuffer.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Regex.h"
#include "llvm/Support/raw_ostream.h"
using namespace swift;
using namespace swift::syntax;
using llvm::StringRef;
enum class ActionType {
DumpRawTokenSyntax,
FullLexRoundTrip,
FullParseRoundTrip,
SerializeRawTree,
DeserializeRawTree,
ParseOnly,
ParserGen,
EOFPos,
None
};
namespace options {
static llvm::cl::OptionCategory Category("swift-syntax-test Options");
static llvm::cl::opt<ActionType>
Action(llvm::cl::desc("Action (required):"),
llvm::cl::init(ActionType::None),
llvm::cl::values(
clEnumValN(ActionType::DumpRawTokenSyntax,
"dump-full-tokens",
"Lex the source file and dump the tokens "
"and their absolute line/column locations"),
clEnumValN(ActionType::FullLexRoundTrip,
"round-trip-lex",
"Lex the source file and print it back out for "
"comparing against the original"),
clEnumValN(ActionType::FullParseRoundTrip,
"round-trip-parse",
"Parse the source file and print it back out for "
"comparing against the input"),
clEnumValN(ActionType::ParseOnly,
"parse-only",
"Parse the source file with syntax nodes and exit"),
clEnumValN(ActionType::ParserGen,
"parse-gen",
"Parse the source file and print it back out for "
"comparing against the input"),
clEnumValN(ActionType::SerializeRawTree,
"serialize-raw-tree",
"Parse the source file and serialize the raw tree "
"to JSON"),
clEnumValN(ActionType::DeserializeRawTree,
"deserialize-raw-tree",
"Parse the JSON file from the serialized raw tree "
"to the original"),
clEnumValN(ActionType::EOFPos,
"eof",
"Parse the source file, calculate the absolute position"
"of the EOF token, and dump the buffer from the start of the"
"file to the EOF token")));
static llvm::cl::opt<std::string>
InputSourceFilename("input-source-filename",
llvm::cl::desc("Path to the input .swift file"));
static llvm::cl::opt<std::string>
InputSourceDirectory("input-source-directory",
llvm::cl::desc("Directory to be scanned recursively and "
"run the selected action on every .swift "
"file"));
static llvm::cl::opt<std::string>
OldSyntaxTreeFilename("old-syntax-tree-filename",
llvm::cl::desc("Path to the serialized syntax tree of "
"the pre-edit file"));
static llvm::cl::opt<std::string>
OldSourceFilename("old-source-filename",
llvm::cl::desc("Path to the pre-edit source file to "
"translate line:column edits into the "
"file's byte offsets"));
static llvm::cl::list<std::string>
IncrementalEdits("incremental-edit",
llvm::cl::desc("An edit that was applied to reach the input "
"file from the source file that generated the "
"old syntax tree in the format <start-line>:"
"<start-column>-<end-line>:<end-column>="
"<replacement> where start and end are defined "
"in terms of the pre-edit file and "
"<replacement> is the string that shall "
"replace the selected range. "
"Can be passed multiple times."));
static llvm::cl::list<std::string>
ReparseRegions("reparse-region",
llvm::cl::desc("If specified, an error will be emitted if any "
"part of the file outside of the reparse region "
"gets parsed again. "
"Can be passed multiple times to specify "
"multiple reparse regions. "
"Reparse regions are specified in the form "
"<start-column>-<end-line>:<end-column> in terms "
"of the post-edit file"));
static llvm::cl::opt<std::string>
IncrementalReuseLog("incremental-reuse-log",
llvm::cl::desc("Path to which a log should be written that "
"describes all the nodes reused during "
"incremental parsing."));
static llvm::cl::opt<bool>
OmitNodeIds("omit-node-ids",
llvm::cl::desc("If specified, the serialized syntax tree will not "
"include the IDs of the serialized nodes."));
static llvm::cl::opt<bool>
SerializeAsByteTree("serialize-byte-tree",
llvm::cl::desc("If specified the syntax tree will be "
"serialized in the ByteTree format instead "
"of JSON."));
static llvm::cl::opt<bool>
AddByteTreeFields("add-bytetree-fields",
llvm::cl::desc("If specified, further fields will be added "
"to the syntax tree if it is serialized as a "
"ByteTree. This is to test forward "
"compatibility with future versions of "
"SwiftSyntax that might add more fields to "
"syntax nodes."));
static llvm::cl::opt<bool>
IncrementalSerialization("incremental-serialization",
llvm::cl::desc("If specified, the serialized syntax "
"tree will omit nodes that have not "
"changed since the last parse."));
static llvm::cl::opt<std::string>
OutputFilename("output-filename",
llvm::cl::desc("Path to the output file"));
static llvm::cl::opt<std::string>
DiagsOutputFilename("diags-output-filename",
llvm::cl::desc("Path to the output file for parser diagnostics text"));
static llvm::cl::opt<bool>
PrintVisualReuseInfo("print-visual-reuse-info",
llvm::cl::desc("Print a coloured output of which parts of "
"the source file have been reused from the "
"old syntax tree."),
llvm::cl::cat(Category),
llvm::cl::init(false));
static llvm::cl::opt<bool>
ForceColoredOutput("force-colored-output",
llvm::cl::desc("Print colored output even if the shell "
"does not support it."),
llvm::cl::cat(Category),
llvm::cl::init(false));
static llvm::cl::opt<bool>
PrintNodeKind("print-node-kind",
llvm::cl::desc("To print syntax node kind"),
llvm::cl::cat(Category),
llvm::cl::init(false));
static llvm::cl::opt<bool>
PrintTrivialNodeKind("print-trivial-node-kind",
llvm::cl::desc("To print trivial syntax node kind"),
llvm::cl::cat(Category),
llvm::cl::init(false));
static llvm::cl::opt<bool>
VerifySyntaxTree("verify-syntax-tree",
llvm::cl::desc("Emit warnings for unknown nodes"),
llvm::cl::cat(Category),
llvm::cl::init(true));
static llvm::cl::opt<bool>
Visual("v",
llvm::cl::desc("Print visually"),
llvm::cl::cat(Category),
llvm::cl::init(false));
static llvm::cl::opt<std::string>
GraphVisPath("output-request-graphviz",
llvm::cl::desc("Emit GraphViz output visualizing the request graph."),
llvm::cl::cat(Category));
} // end namespace options
namespace {
// A utility class to wrap a source range consisting of a byte start and end
// offset
struct ByteBasedSourceRange {
uintptr_t Start;
uintptr_t End;
ByteBasedSourceRange(uintptr_t Start, uintptr_t End)
: Start(Start), End(End) {
assert(Start <= End);
}
ByteBasedSourceRange() : ByteBasedSourceRange(0, 0) {}
ByteBasedSourceRange intersect(const ByteBasedSourceRange &Other) {
auto Start = std::max(this->Start, Other.Start);
auto End = std::min(this->End, Other.End);
if (Start > End) {
return {0, 0};
} else {
return {Start, End};
}
}
bool empty() { return Start == End; }
CharSourceRange toCharSourceRange(SourceManager &SourceMgr, unsigned BufferID) {
auto StartLoc = SourceMgr.getLocForOffset(BufferID, Start);
auto EndLoc = SourceMgr.getLocForOffset(BufferID, End);
return CharSourceRange(SourceMgr, StartLoc, EndLoc);
}
};
// The union of multiple offset-based source ranges
struct ByteBasedSourceRangeSet {
std::vector<ByteBasedSourceRange> Ranges;
ByteBasedSourceRangeSet() {}
ByteBasedSourceRangeSet(std::vector<SyntaxReuseRegion> Ranges) {
for (auto Range : Ranges) {
addRange({Range.Start.getOffset(), Range.End.getOffset()});
}
}
void addRange(ByteBasedSourceRange Range) { Ranges.push_back(Range); }
ByteBasedSourceRangeSet invert(unsigned FileLength) {
ByteBasedSourceRangeSet Result;
unsigned CurrentOffset = 0;
for (auto Range : Ranges) {
assert(CurrentOffset <= Range.Start &&
"Ranges must be sorted in ascending order and not be overlapping");
if (CurrentOffset < Range.Start) {
Result.addRange({CurrentOffset, Range.Start});
}
CurrentOffset = Range.End;
}
if (CurrentOffset < FileLength) {
Result.addRange({CurrentOffset, FileLength});
}
return Result;
}
ByteBasedSourceRangeSet intersect(ByteBasedSourceRangeSet Other) {
ByteBasedSourceRangeSet Intersection;
for (auto A : Ranges) {
for (auto B : Other.Ranges) {
auto PartialIntersection = A.intersect(B);
if (!PartialIntersection.empty()) {
Intersection.addRange(PartialIntersection);
}
}
}
return Intersection;
}
};
int getTokensFromFile(unsigned BufferID,
LangOptions &LangOpts,
SourceManager &SourceMgr,
swift::DiagnosticEngine &Diags,
std::vector<std::pair<RC<syntax::RawSyntax>,
syntax::AbsolutePosition>> &Tokens) {
Tokens = tokenizeWithTrivia(LangOpts, SourceMgr, BufferID,
/*Offset=*/0, /*EndOffset=*/0,
&Diags);
return EXIT_SUCCESS;
}
int
getTokensFromFile(const StringRef InputFilename,
LangOptions &LangOpts,
SourceManager &SourceMgr,
DiagnosticEngine &Diags,
std::vector<std::pair<RC<syntax::RawSyntax>,
syntax::AbsolutePosition>> &Tokens) {
auto Buffer = llvm::MemoryBuffer::getFile(InputFilename);
if (!Buffer) {
Diags.diagnose(SourceLoc(), diag::cannot_open_file,
InputFilename, Buffer.getError().message());
return EXIT_FAILURE;
}
auto BufferID = SourceMgr.addNewSourceBuffer(std::move(Buffer.get()));
return getTokensFromFile(BufferID, LangOpts, SourceMgr, Diags, Tokens);
}
void anchorForGetMainExecutable() {}
/// Populates the \c ParsedRegions parameter with the regions that are expected
/// to get reparsed
bool parseReparseRegionArguments(ByteBasedSourceRangeSet &ParsedRegions,
SourceManager &SourceMgr, unsigned BufferID) {
llvm::Regex MatchRegex("([0-9]+):([0-9]+)-([0-9]+):([0-9]+)");
// Parse the source edits
for (auto ReparsePattern : options::ReparseRegions) {
SmallVector<StringRef, 4> Matches;
if (!MatchRegex.match(ReparsePattern, &Matches)) {
llvm::errs() << "Invalid reparse region pattern: " << ReparsePattern
<< '\n';
return false;
}
int ReparseStartLine, ReparseStartColumn, ReparseEndLine, ReparseEndColumn;
if (Matches[1].getAsInteger(10, ReparseStartLine)) {
llvm::errs() << "Could not parse reparse region start line as integer: "
<< ReparseStartLine << '\n';
return false;
}
if (Matches[2].getAsInteger(10, ReparseStartColumn)) {
llvm::errs() << "Could not parse reparse region start column as integer: "
<< ReparseStartColumn << '\n';
return false;
}
if (Matches[3].getAsInteger(10, ReparseEndLine)) {
llvm::errs() << "Could not parse reparse region end line as integer: "
<< ReparseEndLine << '\n';
return false;
}
if (Matches[4].getAsInteger(10, ReparseEndColumn)) {
llvm::errs() << "Could not parse reparse region end column as integer: "
<< ReparseEndColumn << '\n';
return false;
}
auto ReparseStartLoc = SourceMgr.getLocForLineCol(
BufferID, ReparseStartLine, ReparseStartColumn);
auto ReparseEndLoc =
SourceMgr.getLocForLineCol(BufferID, ReparseEndLine, ReparseEndColumn);
auto ReparseStartOffset =
SourceMgr.getLocOffsetInBuffer(ReparseStartLoc, BufferID);
auto ReparseEndOffset =
SourceMgr.getLocOffsetInBuffer(ReparseEndLoc, BufferID);
ParsedRegions.addRange({ReparseStartOffset, ReparseEndOffset});
}
return true;
}
bool parseIncrementalEditArguments(SyntaxParsingCache *Cache,
StringRef OldFileName) {
// Get a source manager for the old file
InputFile OldFile = InputFile(OldFileName, true);
auto OldFileBufferOrErrror = llvm::MemoryBuffer::getFileOrSTDIN(OldFileName);
if (!OldFileBufferOrErrror) {
llvm::errs() << "Unable to open old source file";
return false;
}
SourceManager SourceMgr;
unsigned BufferID = SourceMgr.addNewSourceBuffer(std::move(OldFileBufferOrErrror.get()));
llvm::Regex MatchRegex("([0-9]+):([0-9]+)-([0-9]+):([0-9]+)=(.*)");
// Parse the source edits
for (auto EditPattern : options::IncrementalEdits) {
SmallVector<StringRef, 4> Matches;
if (!MatchRegex.match(EditPattern, &Matches)) {
llvm::errs() << "Invalid edit pattern: " << EditPattern << '\n';
return false;
}
int EditStartLine, EditStartColumn, EditEndLine, EditEndColumn;
if (Matches[1].getAsInteger(10, EditStartLine)) {
llvm::errs() << "Could not parse edit start line as integer: "
<< EditStartLine << '\n';
return false;
}
if (Matches[2].getAsInteger(10, EditStartColumn)) {
llvm::errs() << "Could not parse edit start column as integer: "
<< EditStartColumn << '\n';
return false;
}
if (Matches[3].getAsInteger(10, EditEndLine)) {
llvm::errs() << "Could not parse edit end line as integer: "
<< EditEndLine << '\n';
return false;
}
if (Matches[4].getAsInteger(10, EditEndColumn)) {
llvm::errs() << "Could not parse edit end column as integer: "
<< EditEndColumn << '\n';
return false;
}
auto EditStartLoc =
SourceMgr.getLocForLineCol(BufferID, EditStartLine, EditStartColumn);
auto EditEndLoc =
SourceMgr.getLocForLineCol(BufferID, EditEndLine, EditEndColumn);
auto EditStartOffset =
SourceMgr.getLocOffsetInBuffer(EditStartLoc, BufferID);
auto EditEndOffset = SourceMgr.getLocOffsetInBuffer(EditEndLoc, BufferID);
Cache->addEdit(EditStartOffset, EditEndOffset,
/*ReplacmentLength=*/Matches[5].size());
}
return true;
}
bool useColoredOutput() {
return llvm::outs().has_colors() || options::ForceColoredOutput;
}
void printVisualNodeReuseInformation(SourceManager &SourceMgr,
unsigned BufferID,
SyntaxParsingCache *Cache,
const SourceFileSyntax &NewSyntaxTree) {
unsigned CurrentOffset = 0;
auto SourceText = SourceMgr.getEntireTextForBuffer(BufferID);
if (useColoredOutput()) {
llvm::outs().changeColor(llvm::buffer_ostream::Colors::GREEN);
}
auto PrintReparsedRegion = [](StringRef SourceText, unsigned ReparseStart,
unsigned ReparseEnd) {
if (ReparseEnd != ReparseStart) {
if (useColoredOutput()) {
llvm::outs().changeColor(llvm::buffer_ostream::Colors::RED);
} else {
llvm::outs() << "<reparse>";
}
llvm::outs() << SourceText.substr(ReparseStart,
ReparseEnd - ReparseStart);
if (useColoredOutput()) {
llvm::outs().changeColor(llvm::buffer_ostream::Colors::GREEN);
} else {
llvm::outs() << "</reparse>";
}
}
};
for (auto ReuseRange : Cache->getReusedRegions(NewSyntaxTree)) {
auto StartOffset = ReuseRange.Start.getOffset();
auto EndOffset = ReuseRange.End.getOffset();
// Print region that was not reused
PrintReparsedRegion(SourceText, CurrentOffset, StartOffset);
llvm::outs() << SourceText.substr(StartOffset, EndOffset - StartOffset);
CurrentOffset = EndOffset;
}
PrintReparsedRegion(SourceText, CurrentOffset, SourceText.size());
if (useColoredOutput())
llvm::outs().resetColor();
llvm::outs() << '\n';
}
void saveReuseLog(SyntaxParsingCache *Cache,
const SourceFileSyntax &NewSyntaxTree) {
std::error_code ErrorCode;
llvm::raw_fd_ostream ReuseLog(options::IncrementalReuseLog, ErrorCode,
llvm::sys::fs::FA_Read |
llvm::sys::fs::FA_Write);
assert(!ErrorCode && "Unable to open incremental usage log");
for (auto ReuseRange : Cache->getReusedRegions(NewSyntaxTree)) {
ReuseLog << "Reused " << ReuseRange.Start << " to " << ReuseRange.End
<< '\n';
ReuseLog << '\n';
}
}
bool verifyReusedRegions(ByteBasedSourceRangeSet ExpectedReparseRegions,
SyntaxParsingCache *SyntaxCache,
SourceManager &SourceMgr, unsigned BufferID,
SourceFile *SF) {
// We always expect the EOF token to be reparsed. Don't complain about it.
auto Eof = SF->getSyntaxRoot().getChild(SourceFileSyntax::Cursor::EOFToken);
auto EofNodeStart = Eof->getAbsolutePositionBeforeLeadingTrivia().getOffset();
if (ExpectedReparseRegions.Ranges.back().End >= EofNodeStart) {
// If the last expected reparse region already covers part of the eof
// leading trivia, extended it
auto LastRange = ExpectedReparseRegions.Ranges.back();
ExpectedReparseRegions.Ranges.pop_back();
ByteBasedSourceRange ExtendedRange(LastRange.Start,
EofNodeStart + Eof->getTextLength());
ExpectedReparseRegions.addRange(ExtendedRange);
} else {
ByteBasedSourceRange EofRange(EofNodeStart,
EofNodeStart + Eof->getTextLength());
ExpectedReparseRegions.addRange(EofRange);
}
auto FileLength = SourceMgr.getRangeForBuffer(BufferID).getByteLength();
// Compute the repared regions by inverting the reused regions
auto ReusedRanges = ByteBasedSourceRangeSet(
SyntaxCache->getReusedRegions(SF->getSyntaxRoot()));
auto ReparsedRegions = ReusedRanges.invert(FileLength);
// Same for expected reuse regions
auto ExpectedReuseRegions = ExpectedReparseRegions.invert(FileLength);
// Intersect the reparsed regions with the expected reuse regions to get
// regions that should not have been reparsed
auto UnexpectedReparseRegions =
ReparsedRegions.intersect(ExpectedReuseRegions);
bool NoUnexpectedParse = true;
for (auto ReparseRegion : UnexpectedReparseRegions.Ranges) {
auto ReparseRange = ReparseRegion.toCharSourceRange(SourceMgr, BufferID);
// To improve the ergonomics when writing tests we do not want to complain
// about reparsed whitespaces.
auto RangeStr = ReparseRange.str();
llvm::Regex WhitespaceOnlyRegex("^[ \t\r\n]*$");
if (WhitespaceOnlyRegex.match(RangeStr)) {
continue;
}
NoUnexpectedParse = false;
llvm::errs() << "\nERROR: Unexpectedly reparsed following region:\n";
ReparseRange.print(llvm::errs(), SourceMgr);
}
return NoUnexpectedParse;
}
struct ParseInfo {
SourceFile *SF;
SyntaxParsingCache *SyntaxCache;
std::string Diags;
};
/// Parse the given input file (incrementally if an old syntax tree was
/// provided) and call the action specific callback with the new syntax tree
int parseFile(
const char *MainExecutablePath, const StringRef InputFileName,
llvm::function_ref<int(ParseInfo)> ActionSpecificCallback) {
// The cache needs to be a heap allocated pointer since we construct it inside
// an if block but need to keep it alive until the end of the function.
SyntaxParsingCache *SyntaxCache = nullptr;
SWIFT_DEFER { delete SyntaxCache; };
// We also need to hold on to the Deserializer and buffer since they keep
// ownership of strings that are referenced from the old syntax tree
swift::json::SyntaxDeserializer *Deserializer = nullptr;
SWIFT_DEFER { delete Deserializer; };
auto Buffer = llvm::MemoryBuffer::getFile(options::OldSyntaxTreeFilename);
// Deserialise the old syntax tree
if (!options::OldSyntaxTreeFilename.empty()) {
Deserializer = new swift::json::SyntaxDeserializer(
llvm::MemoryBufferRef(*(Buffer.get())));
auto OldSyntaxTree = Deserializer->getSourceFileSyntax();
if (!OldSyntaxTree.hasValue()) {
llvm::errs() << "Could not deserialise old syntax tree.";
return EXIT_FAILURE;
}
SyntaxCache = new SyntaxParsingCache(OldSyntaxTree.getValue());
if (options::OldSourceFilename.empty()) {
llvm::errs() << "The old syntax file must be provided to translate "
"line:column edits to byte offsets";
return EXIT_FAILURE;
}
if (!parseIncrementalEditArguments(SyntaxCache,
options::OldSourceFilename)) {
return EXIT_FAILURE;
}
}
// Set up the compiler invocation
CompilerInvocation Invocation;
Invocation.getLangOptions().BuildSyntaxTree = true;
Invocation.getLangOptions().ParseForSyntaxTreeOnly = true;
Invocation.getLangOptions().VerifySyntaxTree = options::VerifySyntaxTree;
Invocation.getLangOptions().RequestEvaluatorGraphVizPath = options::GraphVisPath;
Invocation.getLangOptions().DisablePoundIfEvaluation = true;
Invocation.getFrontendOptions().InputsAndOutputs.addInputFile(InputFileName);
Invocation.setMainExecutablePath(
llvm::sys::fs::getMainExecutable(MainExecutablePath,
reinterpret_cast<void *>(&anchorForGetMainExecutable)));
Invocation.setMainFileSyntaxParsingCache(SyntaxCache);
Invocation.setModuleName("Test");
std::string DiagsString;
llvm::raw_string_ostream DiagOS(DiagsString);
PrintingDiagnosticConsumer DiagConsumer(DiagOS);
CompilerInstance Instance;
Instance.addDiagnosticConsumer(&DiagConsumer);
if (Instance.setup(Invocation)) {
llvm::errs() << "Unable to set up compiler instance";
return EXIT_FAILURE;
}
// Parse incremental edit arguments
auto BufferIDs = Instance.getInputBufferIDs();
assert(BufferIDs.size() == 1 && "Only expecting to process one source file");
unsigned BufferID = BufferIDs.front();
SourceFile *SF = nullptr;
for (auto Unit : Instance.getMainModule()->getFiles()) {
SF = dyn_cast<SourceFile>(Unit);
if (SF != nullptr) {
break;
}
}
assert(SF && "No source file");
// Force parsing to populate the syntax cache.
(void)SF->getSyntaxRoot();
// In case the action specific callback succeeds, we output this error code
int InternalExitCode = EXIT_SUCCESS;
// If we have a syntax cache, output reuse information if requested
if (SyntaxCache) {
if (options::PrintVisualReuseInfo) {
printVisualNodeReuseInformation(Instance.getSourceMgr(), BufferID,
SyntaxCache, SF->getSyntaxRoot());
}
if (!options::IncrementalReuseLog.empty()) {
saveReuseLog(SyntaxCache, SF->getSyntaxRoot());
}
ByteBasedSourceRangeSet ExpectedReparseRegions;
if (parseReparseRegionArguments(ExpectedReparseRegions,
Instance.getSourceMgr(), BufferID)) {
if (!ExpectedReparseRegions.Ranges.empty()) {
if (!verifyReusedRegions(ExpectedReparseRegions, SyntaxCache,
Instance.getSourceMgr(), BufferID, SF)) {
InternalExitCode = EXIT_FAILURE;
}
}
}
}
int ActionSpecificExitCode =
ActionSpecificCallback({SF, SyntaxCache, DiagOS.str()});
if (ActionSpecificExitCode != EXIT_SUCCESS) {
return ActionSpecificExitCode;
} else {
return InternalExitCode;
}
}
int doFullLexRoundTrip(const StringRef InputFilename) {
LangOptions LangOpts;
SourceManager SourceMgr;
DiagnosticEngine Diags(SourceMgr);
PrintingDiagnosticConsumer DiagPrinter;
Diags.addConsumer(DiagPrinter);
std::vector<std::pair<RC<syntax::RawSyntax>,
syntax::AbsolutePosition>> Tokens;
if (getTokensFromFile(InputFilename, LangOpts, SourceMgr,
Diags, Tokens) == EXIT_FAILURE) {
return EXIT_FAILURE;
}
for (auto TokAndPos : Tokens) {
TokAndPos.first->print(llvm::outs(), {});
}
return EXIT_SUCCESS;
}
int doDumpRawTokenSyntax(const StringRef InputFile) {
LangOptions LangOpts;
SourceManager SourceMgr;
DiagnosticEngine Diags(SourceMgr);
PrintingDiagnosticConsumer DiagPrinter;
Diags.addConsumer(DiagPrinter);
std::vector<std::pair<RC<syntax::RawSyntax>,
syntax::AbsolutePosition>> Tokens;
if (getTokensFromFile(InputFile, LangOpts, SourceMgr, Diags, Tokens) ==
EXIT_FAILURE) {
return EXIT_FAILURE;
}
for (auto TokAndPos : Tokens) {
llvm::outs() << TokAndPos.second << "\n";
TokAndPos.first->dump(llvm::outs());
llvm::outs() << "\n";
}
return EXIT_SUCCESS;
}
int doFullParseRoundTrip(const char *MainExecutablePath,
const StringRef InputFile) {
return parseFile(MainExecutablePath, InputFile,
[](ParseInfo info) -> int {
info.SF->getSyntaxRoot().print(llvm::outs(), {});
return EXIT_SUCCESS;
});
}
int doSerializeRawTree(const char *MainExecutablePath,
const StringRef InputFile) {
return parseFile(MainExecutablePath, InputFile,
[](ParseInfo info) -> int {
auto SF = info.SF;
auto SyntaxCache = info.SyntaxCache;
auto Root = SF->getSyntaxRoot().getRaw();
std::unordered_set<unsigned> ReusedNodeIds;
if (options::IncrementalSerialization && SyntaxCache) {
ReusedNodeIds = SyntaxCache->getReusedNodeIds();
}
if (options::SerializeAsByteTree) {
if (options::OutputFilename.empty()) {
llvm::errs() << "Cannot serialize syntax tree as ByteTree to stdout\n";
return EXIT_FAILURE;
}
auto Stream = ExponentialGrowthAppendingBinaryByteStream();
Stream.reserve(32 * 1024);
std::map<void *, void *> UserInfo;
UserInfo[swift::byteTree::UserInfoKeyReusedNodeIds] = &ReusedNodeIds;
if (options::AddByteTreeFields) {
UserInfo[swift::byteTree::UserInfoKeyAddInvalidFields] = (void *)true;
}
swift::byteTree::ByteTreeWriter::write(Stream,
byteTree::SYNTAX_TREE_VERSION,
*Root, UserInfo);
auto OutputBufferOrError = llvm::FileOutputBuffer::create(
options::OutputFilename, Stream.data().size());
assert(OutputBufferOrError && "Couldn't open output file");
auto &OutputBuffer = OutputBufferOrError.get();
memcpy(OutputBuffer->getBufferStart(), Stream.data().data(),
Stream.data().size());
auto Error = OutputBuffer->commit();
(void)Error;
assert(!Error && "Unable to write output file");
} else {
// Serialize as JSON
auto SerializeTree = [&ReusedNodeIds](llvm::raw_ostream &os,
RC<RawSyntax> Root,
SyntaxParsingCache *SyntaxCache) {
swift::json::Output::UserInfoMap JsonUserInfo;
JsonUserInfo[swift::json::OmitNodesUserInfoKey] = &ReusedNodeIds;
if (options::OmitNodeIds) {
JsonUserInfo[swift::json::DontSerializeNodeIdsUserInfoKey] =
(void *)true;
}
swift::json::Output out(os, JsonUserInfo);
out << *Root;
os << "\n";
};
if (!options::OutputFilename.empty()) {
std::error_code errorCode;
llvm::raw_fd_ostream os(options::OutputFilename, errorCode,
llvm::sys::fs::F_None);
assert(!errorCode && "Couldn't open output file");
SerializeTree(os, Root, SyntaxCache);
} else {
SerializeTree(llvm::outs(), Root, SyntaxCache);
}
}
if (!options::DiagsOutputFilename.empty()) {
std::error_code errorCode;
llvm::raw_fd_ostream os(options::DiagsOutputFilename, errorCode,
llvm::sys::fs::F_None);
if (errorCode) {
llvm::errs() << "error opening file '" << options::DiagsOutputFilename
<< "': " << errorCode.message() << '\n';
return EXIT_FAILURE;
}
if (!info.Diags.empty())
os << info.Diags << '\n';
} else {
if (!info.Diags.empty())
llvm::errs() << info.Diags << '\n';
}
return EXIT_SUCCESS;
});
}
int doDeserializeRawTree(const char *MainExecutablePath,
const StringRef InputFile,
const StringRef OutputFileName) {
auto Buffer = llvm::MemoryBuffer::getFile(InputFile);
std::error_code errorCode;
auto os = std::make_unique<llvm::raw_fd_ostream>(
OutputFileName, errorCode, llvm::sys::fs::F_None);
swift::json::SyntaxDeserializer deserializer(llvm::MemoryBufferRef(*(Buffer.get())));
deserializer.getSourceFileSyntax()->print(*os);
return EXIT_SUCCESS;
}
int doParseOnly(const char *MainExecutablePath, const StringRef InputFile) {
return parseFile(MainExecutablePath, InputFile,
[](ParseInfo info) {
return info.SF ? EXIT_SUCCESS : EXIT_FAILURE;
});
}
int dumpParserGen(const char *MainExecutablePath, const StringRef InputFile) {
return parseFile(MainExecutablePath, InputFile,
[](ParseInfo info) {
SyntaxPrintOptions Opts;
Opts.PrintSyntaxKind = options::PrintNodeKind;
Opts.Visual = options::Visual;
Opts.PrintTrivialNodeKind = options::PrintTrivialNodeKind;
info.SF->getSyntaxRoot().print(llvm::outs(), Opts);
return EXIT_SUCCESS;
});
}
int dumpEOFSourceLoc(const char *MainExecutablePath,
const StringRef InputFile) {
return parseFile(MainExecutablePath, InputFile,
[](ParseInfo info) -> int {
auto SF = info.SF;
auto BufferId = *SF->getBufferID();
auto Root = SF->getSyntaxRoot();
auto AbPos = Root.getEOFToken().getAbsolutePosition();
SourceManager &SourceMgr = SF->getASTContext().SourceMgr;
auto StartLoc = SourceMgr.getLocForBufferStart(BufferId);
auto EndLoc = SourceMgr.getLocForOffset(BufferId, AbPos.getOffset());
// To ensure the correctness of position when translated to line & column
// pair.
if (SourceMgr.getPresumedLineAndColumnForLoc(EndLoc) !=
AbPos.getLineAndColumn()) {
llvm::outs() << "locations should be identical";
return EXIT_FAILURE;
}
llvm::outs() << CharSourceRange(SourceMgr, StartLoc, EndLoc).str();
return EXIT_SUCCESS;
});
}
}// end of anonymous namespace
static int invokeCommand(const char *MainExecutablePath,
const StringRef InputSourceFilename) {
int ExitCode = EXIT_SUCCESS;
switch (options::Action) {
case ActionType::DumpRawTokenSyntax:
ExitCode = doDumpRawTokenSyntax(InputSourceFilename);
break;
case ActionType::FullLexRoundTrip:
ExitCode = doFullLexRoundTrip(InputSourceFilename);
break;
case ActionType::FullParseRoundTrip:
ExitCode = doFullParseRoundTrip(MainExecutablePath, InputSourceFilename);
break;
case ActionType::SerializeRawTree:
ExitCode = doSerializeRawTree(MainExecutablePath, InputSourceFilename);
break;
case ActionType::DeserializeRawTree:
ExitCode = doDeserializeRawTree(MainExecutablePath, InputSourceFilename,
options::OutputFilename);
break;
case ActionType::ParseOnly:
ExitCode = doParseOnly(MainExecutablePath, InputSourceFilename);
break;
case ActionType::ParserGen:
ExitCode = dumpParserGen(MainExecutablePath, InputSourceFilename);
break;
case ActionType::EOFPos:
ExitCode = dumpEOFSourceLoc(MainExecutablePath, InputSourceFilename);
break;
case ActionType::None:
llvm::errs() << "an action is required\n";
llvm::cl::PrintHelpMessage();
ExitCode = EXIT_FAILURE;
break;
}
return ExitCode;
}
int main(int argc, char *argv[]) {
PROGRAM_START(argc, argv);
llvm::cl::ParseCommandLineOptions(argc, argv, "Swift Syntax Test\n");
int ExitCode = EXIT_SUCCESS;
if (options::InputSourceFilename.empty() &&
options::InputSourceDirectory.empty()) {
llvm::errs() << "input source file is required\n";
ExitCode = EXIT_FAILURE;
}
if (!options::InputSourceFilename.empty() &&
!options::InputSourceDirectory.empty()) {
llvm::errs() << "input-source-filename and input-source-directory cannot "
"be used together\n\n";
ExitCode = EXIT_FAILURE;
}
if (options::Action == ActionType::None) {
llvm::errs() << "an action is required\n";
ExitCode = EXIT_FAILURE;
}
if (ExitCode == EXIT_FAILURE) {
llvm::cl::PrintHelpMessage();
return ExitCode;
}
if (!options::InputSourceFilename.empty()) {
ExitCode = invokeCommand(argv[0], options::InputSourceFilename);
} else {
assert(!options::InputSourceDirectory.empty());
std::error_code errorCode;
llvm::sys::fs::recursive_directory_iterator DI(options::InputSourceDirectory, errorCode);
llvm::sys::fs::recursive_directory_iterator endIterator;
for (; DI != endIterator; DI.increment(errorCode)) {
auto entry = *DI;
auto path = entry.path();
if (!llvm::sys::fs::is_directory(path) &&
StringRef(path).endswith(".swift")) {
ExitCode = invokeCommand(argv[0], path);
}
}
}
return ExitCode;
}