forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswift-syntax-parser-test.cpp
297 lines (263 loc) · 9.4 KB
/
swift-syntax-parser-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
//===--- swift-syntax-parser-test.cpp - Test util for C parser library ----===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 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
//
//===----------------------------------------------------------------------===//
//
// Testing utility for the C API of the parser library.
//
//===----------------------------------------------------------------------===//
#include "swift-c/SyntaxParser/SwiftSyntaxParser.h"
#include "swift/Basic/LLVM.h"
#include "swift/Basic/LLVMInitialize.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Timer.h"
#include "llvm/Support/SourceMgr.h"
using namespace swift;
using namespace llvm;
enum class ActionType {
DumpTree,
Time,
Diagnostics,
};
namespace options {
static cl::opt<ActionType>
Action(cl::desc("Action (required):"),
cl::init(ActionType::DumpTree),
cl::values(
clEnumValN(ActionType::DumpTree,
"dump-tree",
"Parse the source file and dump syntax tree"),
clEnumValN(ActionType::Diagnostics,
"dump-diags",
"Parse the source file and dump parser diagnostics"),
clEnumValN(ActionType::Time,
"time",
"Time parsing, use '-n' to specify number of invocations")));
static cl::list<std::string>
Filename(cl::Positional, cl::desc("source file"), cl::Required);
static cl::opt<unsigned>
NumParses("n", cl::desc("number of invocations"), cl::init(1));
}
namespace {
struct SPNode {
swiftparse_syntax_kind_t kind;
StringRef nodeText;
Optional<swiftparse_token_kind_t> tokKind;
StringRef leadingTriviaText;
StringRef tokenText;
StringRef trailingTriviaText;
std::vector<std::unique_ptr<SPNode>> members;
LLVM_DUMP_METHOD void dump() {
dump(errs());
}
void dump(raw_ostream &OS) {
// FIXME: Return the syntax/token kinds directly from the C API, instead
// of the serialization number, and print the kind identifier for each,
// instead of the number.
if (tokKind.hasValue()) {
OS << "<t" << (unsigned)tokKind.getValue() << '>';
OS << leadingTriviaText << '|' << tokenText << '|' << trailingTriviaText;
OS << "</t" << (unsigned)tokKind.getValue() << '>';
} else {
OS << "<s" << (unsigned)kind << '>';
for (const auto &mn : members) {
if (mn) {
mn->dump(OS);
} else {
OS << "<NULL/>";
}
}
OS << "</s" << (unsigned)kind << '>';
}
}
};
}
static std::unique_ptr<SPNode>
convertClientNode(swiftparse_client_node_t client_node) {
return std::unique_ptr<SPNode>((SPNode*)client_node);
}
static size_t trivialLen(ArrayRef<swiftparse_trivia_piece_t> trivia) {
size_t len = 0;
for (const auto &piece : trivia) {
len += piece.length;
}
return len;
}
static swiftparse_client_node_t
makeNode(const swiftparse_syntax_node_t *raw_node, StringRef source) {
SPNode *node = new SPNode();
node->kind = raw_node->kind;
auto range = raw_node->range;
node->nodeText = source.substr(range.offset, range.length);
if (raw_node->kind == 0) {
node->tokKind = raw_node->token_data.kind;
size_t leadingTriviaLen =
trivialLen(makeArrayRef(raw_node->token_data.leading_trivia,
raw_node->token_data.leading_trivia_count));
size_t trailingTriviaLen =
trivialLen(makeArrayRef(raw_node->token_data.trailing_trivia,
raw_node->token_data.trailing_trivia_count));
node->leadingTriviaText = node->nodeText.take_front(leadingTriviaLen);
node->tokenText =
node->nodeText.substr(leadingTriviaLen,
range.length-leadingTriviaLen-trailingTriviaLen);
node->trailingTriviaText = node->nodeText.take_back(trailingTriviaLen);
} else {
for (unsigned i = 0, e = raw_node->layout_data.nodes_count; i != e; ++i) {
auto subnode = convertClientNode(raw_node->layout_data.nodes[i]);
node->members.push_back(std::move(subnode));
}
}
return node;
}
static swiftparse_client_node_t
parse(const char *source, swiftparse_node_handler_t node_handler,
swiftparse_diagnostic_handler_t diag_handler = nullptr) {
swiftparse_parser_t parser = swiftparse_parser_create();
swiftparse_parser_set_node_handler(parser, node_handler);
swiftparse_parser_set_diagnostic_handler(parser, diag_handler);
swiftparse_client_node_t top = swiftparse_parse_string(parser, source);
swiftparse_parser_dispose(parser);
return top;
}
static int dumpTree(const char *source) {
swiftparse_node_handler_t nodeHandler =
^swiftparse_client_node_t(const swiftparse_syntax_node_t *raw_node) {
return makeNode(raw_node, source);
};
std::unique_ptr<SPNode> top = convertClientNode(parse(source, nodeHandler));
top->dump(outs());
return 0;
}
static void printLineColumn(SourceMgr &SM, unsigned BufferId, unsigned Offset,
llvm::raw_ostream &OS) {
auto Pair = SM.getLineAndColumn(SMLoc::getFromPointer(SM.getBufferInfo(BufferId).
Buffer->getBuffer().data() + Offset));
OS << Pair.first << ":" << Pair.second;
}
static void printRange(SourceMgr &SM, unsigned BufferId, swiftparse_range_t Range,
llvm::raw_ostream &OS) {
OS << "(";
printLineColumn(SM, BufferId, Range.offset, OS);
OS << ",";
printLineColumn(SM, BufferId, Range.offset + Range.length, OS);
OS << ")";
}
struct PrintDiagData {
unsigned Error = 0;
unsigned Warning = 0;
unsigned Note = 0;
~PrintDiagData() {
outs() << Error << " error(s) " << Warning << " warnings(s) "
<< Note << " note(s)\n";
}
};
static void printDiagInfo(const swiftparser_diagnostic_t diag,
llvm::SourceMgr &SM, unsigned BufferId,
PrintDiagData &Data) {
printLineColumn(SM, BufferId, swiftparse_diagnostic_get_source_loc(diag), outs());
switch(swiftparse_diagnostic_get_severity(diag)) {
case SWIFTPARSER_DIAGNOSTIC_SEVERITY_ERROR:
Data.Error ++;
outs() << " Error: ";
break;
case SWIFTPARSER_DIAGNOSTIC_SEVERITY_WARNING:
Data.Warning ++;
outs() << " Warning: ";
break;
case SWIFTPARSER_DIAGNOSTIC_SEVERITY_NOTE:
Data.Note ++;
outs() << " Note: ";
break;
}
outs() << swiftparse_diagnostic_get_message(diag) << "\n";
for(unsigned i = 0, n = swiftparse_diagnostic_get_range_count(diag); i < n; i ++) {
auto range = swiftparse_diagnostic_get_range(diag, i);
outs() << "Highlight range:";
printRange(SM, BufferId, range, outs());
outs() << "\n";
}
for(unsigned i = 0, n = swiftparse_diagnostic_get_fixit_count(diag); i < n; i ++) {
auto fixit = swiftparse_diagnostic_get_fixit(diag, i);
printRange(SM, BufferId, fixit.range, outs());
outs() << " Fixit: \"" << fixit.text << "\"\n";
}
}
static int dumpDiagnostics(const char* source, llvm::SourceMgr &SM,
unsigned BufferId) {
swiftparse_node_handler_t nodeHandler =
^swiftparse_client_node_t(const swiftparse_syntax_node_t *raw_node) {
return makeNode(raw_node, source);
};
std::shared_ptr<PrintDiagData> pData = std::make_shared<PrintDiagData>();
convertClientNode(parse(source, nodeHandler,
^(const swiftparser_diagnostic_t diag) {
printDiagInfo(diag, SM, BufferId, const_cast<PrintDiagData&>(*pData));
}));
return 0;
}
static void printTimeRecord(unsigned numInvoks, const TimeRecord &total,
raw_ostream &OS) {
if (total.getUserTime())
OS << " ---User Time---";
if (total.getSystemTime())
OS << " --System Time--";
if (total.getProcessTime())
OS << " --User+System--";
OS << " ---Wall Time---";
if (total.getMemUsed())
OS << " ---Mem---";
OS << '\n';
auto printVal = [&](double Val) {
OS << format(" %8.5f ", Val);
};
printVal(total.getUserTime()/numInvoks);
printVal(total.getSystemTime()/numInvoks);
printVal(total.getProcessTime()/numInvoks);
printVal(total.getWallTime()/numInvoks);
OS << '\n';
}
static int timeParsing(const char *source, unsigned numInvoks) {
swiftparse_node_handler_t nodeHandler =
^swiftparse_client_node_t(const swiftparse_syntax_node_t *raw_node) {
return nullptr;
};
Timer timer;
timer.startTimer();
for (unsigned i = 0; i != numInvoks; ++i) {
parse(source, nodeHandler);
}
timer.stopTimer();
printTimeRecord(numInvoks, timer.getTotalTime(), outs());
return 0;
}
int main(int argc, char *argv[]) {
PROGRAM_START(argc, argv);
cl::ParseCommandLineOptions(argc, argv, "Swift Syntax Parser Test\n");
StringRef fname = options::Filename[0];
llvm::SourceMgr SM;
auto fileBufOrErr = MemoryBuffer::getFile(fname);
if (!fileBufOrErr) {
errs() << "error opening file '" << fname << "': "
<< fileBufOrErr.getError().message();
return 1;
}
StringRef source = fileBufOrErr.get()->getBuffer();
auto BufferId = SM.AddNewSourceBuffer(std::move(*fileBufOrErr), SMLoc());
switch (options::Action) {
case ActionType::DumpTree:
return dumpTree(source.data());
case ActionType::Time:
return timeParsing(source.data(), options::NumParses);
case ActionType::Diagnostics:
return dumpDiagnostics(source.data(), SM, BufferId);
}
}