forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBytecodeDialectGen.cpp
492 lines (433 loc) · 17 KB
/
BytecodeDialectGen.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
//===- BytecodeDialectGen.cpp - Dialect bytecode read/writer gen ---------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Support/IndentedOstream.h"
#include "mlir/TableGen/GenInfo.h"
#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVectorExtras.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/TableGen/Error.h"
#include "llvm/TableGen/Record.h"
#include <regex>
using namespace llvm;
static cl::OptionCategory dialectGenCat("Options for -gen-bytecode");
static cl::opt<std::string>
selectedBcDialect("bytecode-dialect", cl::desc("The dialect to gen for"),
cl::cat(dialectGenCat), cl::CommaSeparated);
namespace {
/// Helper class to generate C++ bytecode parser helpers.
class Generator {
public:
Generator(raw_ostream &output) : output(output) {}
/// Returns whether successfully emitted attribute/type parsers.
void emitParse(StringRef kind, const Record &x);
/// Returns whether successfully emitted attribute/type printers.
void emitPrint(StringRef kind, StringRef type,
ArrayRef<std::pair<int64_t, const Record *>> vec);
/// Emits parse dispatch table.
void emitParseDispatch(StringRef kind, ArrayRef<const Record *> vec);
/// Emits print dispatch table.
void emitPrintDispatch(StringRef kind, ArrayRef<std::string> vec);
private:
/// Emits parse calls to construct given kind.
void emitParseHelper(StringRef kind, StringRef returnType, StringRef builder,
ArrayRef<const Init *> args,
ArrayRef<std::string> argNames, StringRef failure,
mlir::raw_indented_ostream &ios);
/// Emits print instructions.
void emitPrintHelper(const Record *memberRec, StringRef kind,
StringRef parent, StringRef name,
mlir::raw_indented_ostream &ios);
raw_ostream &output;
};
} // namespace
/// Helper to replace set of from strings to target in `s`.
/// Assumed: non-overlapping replacements.
static std::string format(StringRef templ,
std::map<std::string, std::string> &&map) {
std::string s = templ.str();
for (const auto &[from, to] : map)
// All replacements start with $, don't treat as anchor.
s = std::regex_replace(s, std::regex("\\" + from), to);
return s;
}
/// Return string with first character capitalized.
static std::string capitalize(StringRef str) {
return ((Twine)toUpper(str[0]) + str.drop_front()).str();
}
/// Return the C++ type for the given record.
static std::string getCType(const Record *def) {
std::string format = "{0}";
if (def->isSubClassOf("Array")) {
def = def->getValueAsDef("elemT");
format = "SmallVector<{0}>";
}
StringRef cType = def->getValueAsString("cType");
if (cType.empty()) {
if (def->isAnonymous())
PrintFatalError(def->getLoc(), "Unable to determine cType");
return formatv(format.c_str(), def->getName().str());
}
return formatv(format.c_str(), cType.str());
}
void Generator::emitParseDispatch(StringRef kind,
ArrayRef<const Record *> vec) {
mlir::raw_indented_ostream os(output);
char const *head =
R"(static {0} read{0}(MLIRContext* context, DialectBytecodeReader &reader))";
os << formatv(head, capitalize(kind));
auto funScope = os.scope(" {\n", "}\n\n");
if (vec.empty()) {
os << "return reader.emitError() << \"unknown attribute\", "
<< capitalize(kind) << "();\n";
return;
}
os << "uint64_t kind;\n";
os << "if (failed(reader.readVarInt(kind)))\n"
<< " return " << capitalize(kind) << "();\n";
os << "switch (kind) ";
{
auto switchScope = os.scope("{\n", "}\n");
for (const auto &it : llvm::enumerate(vec)) {
if (it.value()->getName() == "ReservedOrDead")
continue;
os << formatv("case {1}:\n return read{0}(context, reader);\n",
it.value()->getName(), it.index());
}
os << "default:\n"
<< " reader.emitError() << \"unknown attribute code: \" "
<< "<< kind;\n"
<< " return " << capitalize(kind) << "();\n";
}
os << "return " << capitalize(kind) << "();\n";
}
void Generator::emitParse(StringRef kind, const Record &x) {
if (x.getNameInitAsString() == "ReservedOrDead")
return;
char const *head =
R"(static {0} read{1}(MLIRContext* context, DialectBytecodeReader &reader) )";
mlir::raw_indented_ostream os(output);
std::string returnType = getCType(&x);
os << formatv(head,
kind == "attribute" ? "::mlir::Attribute" : "::mlir::Type",
x.getName());
const DagInit *members = x.getValueAsDag("members");
SmallVector<std::string> argNames = llvm::to_vector(
map_range(members->getArgNames(), [](const StringInit *init) {
return init->getAsUnquotedString();
}));
StringRef builder = x.getValueAsString("cBuilder").trim();
emitParseHelper(kind, returnType, builder, members->getArgs(), argNames,
returnType + "()", os);
os << "\n\n";
}
void printParseConditional(mlir::raw_indented_ostream &ios,
ArrayRef<const Init *> args,
ArrayRef<std::string> argNames) {
ios << "if ";
auto parenScope = ios.scope("(", ") {");
ios.indent();
auto listHelperName = [](StringRef name) {
return formatv("read{0}", capitalize(name));
};
auto parsedArgs = llvm::filter_to_vector(args, [](const Init *const attr) {
const Record *def = cast<DefInit>(attr)->getDef();
if (def->isSubClassOf("Array"))
return true;
return !def->getValueAsString("cParser").empty();
});
interleave(
zip(parsedArgs, argNames),
[&](std::tuple<const Init *&, const std::string &> it) {
const Record *attr = cast<DefInit>(std::get<0>(it))->getDef();
std::string parser;
if (auto optParser = attr->getValueAsOptionalString("cParser")) {
parser = *optParser;
} else if (attr->isSubClassOf("Array")) {
const Record *def = attr->getValueAsDef("elemT");
bool composite = def->isSubClassOf("CompositeBytecode");
if (!composite && def->isSubClassOf("AttributeKind"))
parser = "succeeded($_reader.readAttributes($_var))";
else if (!composite && def->isSubClassOf("TypeKind"))
parser = "succeeded($_reader.readTypes($_var))";
else
parser = ("succeeded($_reader.readList($_var, " +
listHelperName(std::get<1>(it)) + "))")
.str();
} else {
PrintFatalError(attr->getLoc(), "No parser specified");
}
std::string type = getCType(attr);
ios << format(parser, {{"$_reader", "reader"},
{"$_resultType", type},
{"$_var", std::get<1>(it)}});
},
[&]() { ios << " &&\n"; });
}
void Generator::emitParseHelper(StringRef kind, StringRef returnType,
StringRef builder, ArrayRef<const Init *> args,
ArrayRef<std::string> argNames,
StringRef failure,
mlir::raw_indented_ostream &ios) {
auto funScope = ios.scope("{\n", "}");
if (args.empty()) {
ios << formatv("return get<{0}>(context);\n", returnType);
return;
}
// Print decls.
std::string lastCType = "";
for (auto [arg, name] : zip(args, argNames)) {
const DefInit *first = dyn_cast<DefInit>(arg);
if (!first)
PrintFatalError("Unexpected type for " + name);
const Record *def = first->getDef();
// Create variable decls, if there are a block of same type then create
// comma separated list of them.
std::string cType = getCType(def);
if (lastCType == cType) {
ios << ", ";
} else {
if (!lastCType.empty())
ios << ";\n";
ios << cType << " ";
}
ios << name;
lastCType = cType;
}
ios << ";\n";
// Returns the name of the helper used in list parsing. E.g., the name of the
// lambda passed to array parsing.
auto listHelperName = [](StringRef name) {
return formatv("read{0}", capitalize(name));
};
// Emit list helper functions.
for (auto [arg, name] : zip(args, argNames)) {
const Record *attr = cast<DefInit>(arg)->getDef();
if (!attr->isSubClassOf("Array"))
continue;
// TODO: Dedupe readers.
const Record *def = attr->getValueAsDef("elemT");
if (!def->isSubClassOf("CompositeBytecode") &&
(def->isSubClassOf("AttributeKind") || def->isSubClassOf("TypeKind")))
continue;
std::string returnType = getCType(def);
ios << "auto " << listHelperName(name) << " = [&]() -> FailureOr<"
<< returnType << "> ";
SmallVector<const Init *> args;
SmallVector<std::string> argNames;
if (def->isSubClassOf("CompositeBytecode")) {
const DagInit *members = def->getValueAsDag("members");
args = llvm::to_vector(members->getArgs());
argNames = llvm::to_vector(
map_range(members->getArgNames(), [](const StringInit *init) {
return init->getAsUnquotedString();
}));
} else {
args = {def->getDefInit()};
argNames = {"temp"};
}
StringRef builder = def->getValueAsString("cBuilder");
emitParseHelper(kind, returnType, builder, args, argNames, "failure()",
ios);
ios << ";\n";
}
// Print parse conditional.
printParseConditional(ios, args, argNames);
// Compute args to pass to create method.
auto passedArgs = llvm::filter_to_vector(
argNames, [](StringRef str) { return !str.starts_with("_"); });
std::string argStr;
raw_string_ostream argStream(argStr);
interleaveComma(passedArgs, argStream,
[&](const std::string &str) { argStream << str; });
// Return the invoked constructor.
ios << "\nreturn "
<< format(builder, {{"$_resultType", returnType.str()},
{"$_args", argStream.str()}})
<< ";\n";
ios.unindent();
// TODO: Emit error in debug.
// This assumes the result types in error case can always be empty
// constructed.
ios << "}\nreturn " << failure << ";\n";
}
void Generator::emitPrint(StringRef kind, StringRef type,
ArrayRef<std::pair<int64_t, const Record *>> vec) {
if (type == "ReservedOrDead")
return;
char const *head =
R"(static void write({0} {1}, DialectBytecodeWriter &writer) )";
mlir::raw_indented_ostream os(output);
os << formatv(head, type, kind);
auto funScope = os.scope("{\n", "}\n\n");
// Check that predicates specified if multiple bytecode instances.
for (const Record *rec : make_second_range(vec)) {
StringRef pred = rec->getValueAsString("printerPredicate");
if (vec.size() > 1 && pred.empty()) {
for (auto [index, rec] : vec) {
(void)index;
StringRef pred = rec->getValueAsString("printerPredicate");
if (vec.size() > 1 && pred.empty())
PrintError(rec->getLoc(),
"Requires parsing predicate given common cType");
}
PrintFatalError("Unspecified for shared cType " + type);
}
}
for (auto [index, rec] : vec) {
StringRef pred = rec->getValueAsString("printerPredicate");
if (!pred.empty()) {
os << "if (" << format(pred, {{"$_val", kind.str()}}) << ") {\n";
os.indent();
}
os << "writer.writeVarInt(/* " << rec->getName() << " */ " << index
<< ");\n";
auto *members = rec->getValueAsDag("members");
for (auto [arg, name] :
llvm::zip(members->getArgs(), members->getArgNames())) {
const DefInit *def = dyn_cast<DefInit>(arg);
assert(def);
const Record *memberRec = def->getDef();
emitPrintHelper(memberRec, kind, kind, name->getAsUnquotedString(), os);
}
if (!pred.empty()) {
os.unindent();
os << "}\n";
}
}
}
void Generator::emitPrintHelper(const Record *memberRec, StringRef kind,
StringRef parent, StringRef name,
mlir::raw_indented_ostream &ios) {
std::string getter;
if (auto cGetter = memberRec->getValueAsOptionalString("cGetter");
cGetter && !cGetter->empty()) {
getter = format(
*cGetter,
{{"$_attrType", parent.str()},
{"$_member", name.str()},
{"$_getMember", "get" + convertToCamelFromSnakeCase(name, true)}});
} else {
getter =
formatv("{0}.get{1}()", parent, convertToCamelFromSnakeCase(name, true))
.str();
}
if (memberRec->isSubClassOf("Array")) {
const Record *def = memberRec->getValueAsDef("elemT");
if (!def->isSubClassOf("CompositeBytecode")) {
if (def->isSubClassOf("AttributeKind")) {
ios << "writer.writeAttributes(" << getter << ");\n";
return;
}
if (def->isSubClassOf("TypeKind")) {
ios << "writer.writeTypes(" << getter << ");\n";
return;
}
}
std::string returnType = getCType(def);
std::string nestedName = kind.str();
ios << "writer.writeList(" << getter << ", [&](" << returnType << " "
<< nestedName << ") ";
auto lambdaScope = ios.scope("{\n", "});\n");
return emitPrintHelper(def, kind, nestedName, nestedName, ios);
}
if (memberRec->isSubClassOf("CompositeBytecode")) {
auto *members = memberRec->getValueAsDag("members");
for (auto [arg, argName] :
zip(members->getArgs(), members->getArgNames())) {
const DefInit *def = dyn_cast<DefInit>(arg);
assert(def);
emitPrintHelper(def->getDef(), kind, parent,
argName->getAsUnquotedString(), ios);
}
}
if (std::string printer = memberRec->getValueAsString("cPrinter").str();
!printer.empty())
ios << format(printer, {{"$_writer", "writer"},
{"$_name", kind.str()},
{"$_getter", getter}})
<< ";\n";
}
void Generator::emitPrintDispatch(StringRef kind, ArrayRef<std::string> vec) {
mlir::raw_indented_ostream os(output);
char const *head = R"(static LogicalResult write{0}({0} {1},
DialectBytecodeWriter &writer))";
os << formatv(head, capitalize(kind), kind);
auto funScope = os.scope(" {\n", "}\n\n");
os << "return TypeSwitch<" << capitalize(kind) << ", LogicalResult>(" << kind
<< ")";
auto switchScope = os.scope("", "");
for (StringRef type : vec) {
if (type == "ReservedOrDead")
continue;
os << "\n.Case([&](" << type << " t)";
auto caseScope = os.scope(" {\n", "})");
os << "return write(t, writer), success();\n";
}
os << "\n.Default([&](" << capitalize(kind) << ") { return failure(); });\n";
}
namespace {
/// Container of Attribute or Type for Dialect.
struct AttrOrType {
std::vector<const Record *> attr, type;
};
} // namespace
static bool emitBCRW(const RecordKeeper &records, raw_ostream &os) {
MapVector<StringRef, AttrOrType> dialectAttrOrType;
for (const Record *it :
records.getAllDerivedDefinitions("DialectAttributes")) {
if (!selectedBcDialect.empty() &&
it->getValueAsString("dialect") != selectedBcDialect)
continue;
dialectAttrOrType[it->getValueAsString("dialect")].attr =
it->getValueAsListOfDefs("elems");
}
for (const Record *it : records.getAllDerivedDefinitions("DialectTypes")) {
if (!selectedBcDialect.empty() &&
it->getValueAsString("dialect") != selectedBcDialect)
continue;
dialectAttrOrType[it->getValueAsString("dialect")].type =
it->getValueAsListOfDefs("elems");
}
if (dialectAttrOrType.size() != 1)
PrintFatalError("Single dialect per invocation required (either only "
"one in input file or specified via dialect option)");
auto it = dialectAttrOrType.front();
Generator gen(os);
SmallVector<std::vector<const Record *> *, 2> vecs;
SmallVector<std::string, 2> kinds;
vecs.push_back(&it.second.attr);
kinds.push_back("attribute");
vecs.push_back(&it.second.type);
kinds.push_back("type");
for (auto [vec, kind] : zip(vecs, kinds)) {
// Handle Attribute/Type emission.
std::map<std::string, std::vector<std::pair<int64_t, const Record *>>>
perType;
for (auto kt : llvm::enumerate(*vec))
perType[getCType(kt.value())].emplace_back(kt.index(), kt.value());
for (const auto &jt : perType) {
for (auto kt : jt.second)
gen.emitParse(kind, *std::get<1>(kt));
gen.emitPrint(kind, jt.first, jt.second);
}
gen.emitParseDispatch(kind, *vec);
SmallVector<std::string> types;
for (const auto &it : perType) {
types.push_back(it.first);
}
gen.emitPrintDispatch(kind, types);
}
return false;
}
static mlir::GenRegistration
genBCRW("gen-bytecode", "Generate dialect bytecode readers/writers",
[](const RecordKeeper &records, raw_ostream &os) {
return emitBCRW(records, os);
});