forked from OSchip/llvm-project
444 lines
15 KiB
C++
444 lines
15 KiB
C++
//===- OpDocGen.cpp - MLIR operation documentation generator --------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// OpDocGen uses the description of operations to generate documentation for the
|
|
// operations.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "DialectGenUtilities.h"
|
|
#include "DocGenUtilities.h"
|
|
#include "OpGenHelpers.h"
|
|
#include "mlir/Support/IndentedOstream.h"
|
|
#include "mlir/TableGen/AttrOrTypeDef.h"
|
|
#include "mlir/TableGen/GenInfo.h"
|
|
#include "mlir/TableGen/Operator.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/SetVector.h"
|
|
#include "llvm/ADT/StringExtras.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/FormatVariadic.h"
|
|
#include "llvm/Support/Regex.h"
|
|
#include "llvm/Support/Signals.h"
|
|
#include "llvm/TableGen/Error.h"
|
|
#include "llvm/TableGen/Record.h"
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
|
|
|
#include <set>
|
|
|
|
using namespace llvm;
|
|
using namespace mlir;
|
|
using namespace mlir::tblgen;
|
|
|
|
using mlir::tblgen::Operator;
|
|
|
|
// Emit the description by aligning the text to the left per line (e.g.,
|
|
// removing the minimum indentation across the block).
|
|
//
|
|
// This expects that the description in the tablegen file is already formatted
|
|
// in a way the user wanted but has some additional indenting due to being
|
|
// nested in the op definition.
|
|
void mlir::tblgen::emitDescription(StringRef description, raw_ostream &os) {
|
|
raw_indented_ostream ros(os);
|
|
ros.printReindented(description.rtrim(" \t"));
|
|
}
|
|
|
|
// Emits `str` with trailing newline if not empty.
|
|
static void emitIfNotEmpty(StringRef str, raw_ostream &os) {
|
|
if (!str.empty()) {
|
|
emitDescription(str, os);
|
|
os << "\n";
|
|
}
|
|
}
|
|
|
|
/// Emit the given named constraint.
|
|
template <typename T>
|
|
static void emitNamedConstraint(const T &it, raw_ostream &os) {
|
|
if (!it.name.empty())
|
|
os << "| `" << it.name << "`";
|
|
else
|
|
os << "«unnamed»";
|
|
os << " | " << it.constraint.getSummary() << "\n";
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Operation Documentation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// Emit the assembly format of an operation.
|
|
static void emitAssemblyFormat(StringRef opName, StringRef format,
|
|
raw_ostream &os) {
|
|
os << "\nSyntax:\n\n```\noperation ::= `" << opName << "` ";
|
|
|
|
// Print the assembly format aligned.
|
|
unsigned indent = strlen("operation ::= ");
|
|
std::pair<StringRef, StringRef> split = format.split('\n');
|
|
os << split.first.trim() << "\n";
|
|
do {
|
|
split = split.second.split('\n');
|
|
StringRef formatChunk = split.first.trim();
|
|
if (!formatChunk.empty())
|
|
os.indent(indent) << formatChunk << "\n";
|
|
} while (!split.second.empty());
|
|
os << "```\n\n";
|
|
}
|
|
|
|
static void emitOpTraitsDoc(const Operator &op, raw_ostream &os) {
|
|
// TODO: We should link to the trait/documentation of it. That also means we
|
|
// should add descriptions to traits that can be queried.
|
|
// Collect using set to sort effects, interfaces & traits.
|
|
std::set<std::string> effects, interfaces, traits;
|
|
for (auto &trait : op.getTraits()) {
|
|
if (isa<PredTrait>(&trait))
|
|
continue;
|
|
|
|
std::string name = trait.getDef().getName().str();
|
|
StringRef ref = name;
|
|
StringRef traitName = trait.getDef().getValueAsString("trait");
|
|
traitName.consume_back("::Trait");
|
|
traitName.consume_back("::Impl");
|
|
if (ref.startswith("anonymous_"))
|
|
name = traitName.str();
|
|
if (isa<InterfaceTrait>(&trait)) {
|
|
if (trait.getDef().isSubClassOf("SideEffectsTraitBase")) {
|
|
auto effectName = trait.getDef().getValueAsString("baseEffectName");
|
|
effectName.consume_front("::");
|
|
effectName.consume_front("mlir::");
|
|
std::string effectStr;
|
|
llvm::raw_string_ostream os(effectStr);
|
|
os << effectName << "{";
|
|
auto list = trait.getDef().getValueAsListOfDefs("effects");
|
|
llvm::interleaveComma(list, os, [&](Record *rec) {
|
|
StringRef effect = rec->getValueAsString("effect");
|
|
effect.consume_front("::");
|
|
effect.consume_front("mlir::");
|
|
os << effect << " on " << rec->getValueAsString("resource");
|
|
});
|
|
os << "}";
|
|
effects.insert(os.str());
|
|
name.append(llvm::formatv(" ({0})", traitName).str());
|
|
}
|
|
interfaces.insert(name);
|
|
continue;
|
|
}
|
|
|
|
traits.insert(name);
|
|
}
|
|
if (!traits.empty()) {
|
|
llvm::interleaveComma(traits, os << "\nTraits: ");
|
|
os << "\n";
|
|
}
|
|
if (!interfaces.empty()) {
|
|
llvm::interleaveComma(interfaces, os << "\nInterfaces: ");
|
|
os << "\n";
|
|
}
|
|
if (!effects.empty()) {
|
|
llvm::interleaveComma(effects, os << "\nEffects: ");
|
|
os << "\n";
|
|
}
|
|
}
|
|
|
|
static void emitOpDoc(const Operator &op, raw_ostream &os) {
|
|
os << llvm::formatv("### `{0}` ({1})\n", op.getOperationName(),
|
|
op.getQualCppClassName());
|
|
|
|
// Emit the summary, syntax, and description if present.
|
|
if (op.hasSummary())
|
|
os << "\n" << op.getSummary() << "\n\n";
|
|
if (op.hasAssemblyFormat())
|
|
emitAssemblyFormat(op.getOperationName(), op.getAssemblyFormat().trim(),
|
|
os);
|
|
if (op.hasDescription())
|
|
mlir::tblgen::emitDescription(op.getDescription(), os);
|
|
|
|
emitOpTraitsDoc(op, os);
|
|
|
|
// Emit attributes.
|
|
if (op.getNumAttributes() != 0) {
|
|
// TODO: Attributes are only documented by TableGen name, with no further
|
|
// info. This should be improved.
|
|
os << "\n#### Attributes:\n\n";
|
|
os << "| Attribute | MLIR Type | Description |\n"
|
|
<< "| :-------: | :-------: | ----------- |\n";
|
|
for (const auto &it : op.getAttributes()) {
|
|
StringRef storageType = it.attr.getStorageType();
|
|
os << "| `" << it.name << "` | " << storageType << " | "
|
|
<< it.attr.getSummary() << "\n";
|
|
}
|
|
}
|
|
|
|
// Emit each of the operands.
|
|
if (op.getNumOperands() != 0) {
|
|
os << "\n#### Operands:\n\n";
|
|
os << "| Operand | Description |\n"
|
|
<< "| :-----: | ----------- |\n";
|
|
for (const auto &it : op.getOperands())
|
|
emitNamedConstraint(it, os);
|
|
}
|
|
|
|
// Emit results.
|
|
if (op.getNumResults() != 0) {
|
|
os << "\n#### Results:\n\n";
|
|
os << "| Result | Description |\n"
|
|
<< "| :----: | ----------- |\n";
|
|
for (const auto &it : op.getResults())
|
|
emitNamedConstraint(it, os);
|
|
}
|
|
|
|
// Emit successors.
|
|
if (op.getNumSuccessors() != 0) {
|
|
os << "\n#### Successors:\n\n";
|
|
os << "| Successor | Description |\n"
|
|
<< "| :-------: | ----------- |\n";
|
|
for (const auto &it : op.getSuccessors())
|
|
emitNamedConstraint(it, os);
|
|
}
|
|
|
|
os << "\n";
|
|
}
|
|
|
|
static void emitOpDoc(const RecordKeeper &recordKeeper, raw_ostream &os) {
|
|
auto opDefs = getRequestedOpDefinitions(recordKeeper);
|
|
|
|
os << "<!-- Autogenerated by mlir-tblgen; don't manually edit -->\n";
|
|
for (const llvm::Record *opDef : opDefs)
|
|
emitOpDoc(Operator(opDef), os);
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Attribute Documentation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static void emitAttrDoc(const Attribute &attr, raw_ostream &os) {
|
|
os << "### " << attr.getSummary() << "\n\n";
|
|
emitDescription(attr.getDescription(), os);
|
|
os << "\n\n";
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Type Documentation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static void emitTypeDoc(const Type &type, raw_ostream &os) {
|
|
os << "### " << type.getSummary() << "\n\n";
|
|
emitDescription(type.getDescription(), os);
|
|
os << "\n\n";
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// TypeDef Documentation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static void emitAttrOrTypeDefAssemblyFormat(const AttrOrTypeDef &def,
|
|
raw_ostream &os) {
|
|
ArrayRef<AttrOrTypeParameter> parameters = def.getParameters();
|
|
if (parameters.empty()) {
|
|
os << "\nSyntax: `!" << def.getDialect().getName() << "."
|
|
<< def.getMnemonic() << "`\n";
|
|
return;
|
|
}
|
|
|
|
os << "\nSyntax:\n\n```\n!" << def.getDialect().getName() << "."
|
|
<< def.getMnemonic() << "<\n";
|
|
for (const auto &it : llvm::enumerate(parameters)) {
|
|
const AttrOrTypeParameter ¶m = it.value();
|
|
os << " " << param.getSyntax();
|
|
if (it.index() < (parameters.size() - 1))
|
|
os << ",";
|
|
os << " # " << param.getName() << "\n";
|
|
}
|
|
os << ">\n```\n";
|
|
}
|
|
|
|
static void emitAttrOrTypeDefDoc(const AttrOrTypeDef &def, raw_ostream &os) {
|
|
os << llvm::formatv("### {0}\n", def.getCppClassName());
|
|
|
|
// Emit the summary if present.
|
|
if (def.hasSummary())
|
|
os << "\n" << def.getSummary() << "\n";
|
|
|
|
// Emit the syntax if present.
|
|
if (def.getMnemonic() && !def.hasCustomAssemblyFormat())
|
|
emitAttrOrTypeDefAssemblyFormat(def, os);
|
|
|
|
// Emit the description if present.
|
|
if (def.hasDescription()) {
|
|
os << "\n";
|
|
mlir::tblgen::emitDescription(def.getDescription(), os);
|
|
}
|
|
|
|
// Emit parameter documentation.
|
|
ArrayRef<AttrOrTypeParameter> parameters = def.getParameters();
|
|
if (!parameters.empty()) {
|
|
os << "\n#### Parameters:\n\n";
|
|
os << "| Parameter | C++ type | Description |\n"
|
|
<< "| :-------: | :-------: | ----------- |\n";
|
|
for (const auto &it : parameters) {
|
|
auto desc = it.getSummary();
|
|
os << "| " << it.getName() << " | `" << it.getCppType() << "` | "
|
|
<< (desc ? *desc : "") << " |\n";
|
|
}
|
|
}
|
|
|
|
os << "\n";
|
|
}
|
|
|
|
static void emitAttrOrTypeDefDoc(const RecordKeeper &recordKeeper,
|
|
raw_ostream &os, StringRef recordTypeName) {
|
|
std::vector<llvm::Record *> defs =
|
|
recordKeeper.getAllDerivedDefinitions(recordTypeName);
|
|
|
|
os << "<!-- Autogenerated by mlir-tblgen; don't manually edit -->\n";
|
|
for (const llvm::Record *def : defs)
|
|
emitAttrOrTypeDefDoc(AttrOrTypeDef(def), os);
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Dialect Documentation
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static void emitDialectDoc(const Dialect &dialect,
|
|
ArrayRef<Attribute> attributes,
|
|
ArrayRef<AttrDef> attrDefs, ArrayRef<Operator> ops,
|
|
ArrayRef<Type> types, ArrayRef<TypeDef> typeDefs,
|
|
raw_ostream &os) {
|
|
os << "# '" << dialect.getName() << "' Dialect\n\n";
|
|
emitIfNotEmpty(dialect.getSummary(), os);
|
|
emitIfNotEmpty(dialect.getDescription(), os);
|
|
|
|
// Generate a TOC marker except if description already contains one.
|
|
llvm::Regex r("^[[:space:]]*\\[TOC\\]$", llvm::Regex::RegexFlags::Newline);
|
|
if (!r.match(dialect.getDescription()))
|
|
os << "[TOC]\n\n";
|
|
|
|
if (!attributes.empty()) {
|
|
os << "## Attribute constraint definition\n\n";
|
|
for (const Attribute &attr : attributes)
|
|
emitAttrDoc(attr, os);
|
|
}
|
|
|
|
if (!attrDefs.empty()) {
|
|
os << "## Attribute definition\n\n";
|
|
for (const AttrDef &def : attrDefs)
|
|
emitAttrOrTypeDefDoc(def, os);
|
|
}
|
|
|
|
// TODO: Add link between use and def for types
|
|
if (!types.empty()) {
|
|
os << "## Type constraint definition\n\n";
|
|
for (const Type &type : types)
|
|
emitTypeDoc(type, os);
|
|
}
|
|
|
|
if (!ops.empty()) {
|
|
os << "## Operation definition\n\n";
|
|
for (const Operator &op : ops)
|
|
emitOpDoc(op, os);
|
|
}
|
|
|
|
if (!typeDefs.empty()) {
|
|
os << "## Type definition\n\n";
|
|
for (const TypeDef &def : typeDefs)
|
|
emitAttrOrTypeDefDoc(def, os);
|
|
}
|
|
}
|
|
|
|
static bool emitDialectDoc(const RecordKeeper &recordKeeper, raw_ostream &os) {
|
|
std::vector<Record *> opDefs = getRequestedOpDefinitions(recordKeeper);
|
|
std::vector<Record *> attrDefs =
|
|
recordKeeper.getAllDerivedDefinitionsIfDefined("DialectAttr");
|
|
std::vector<Record *> typeDefs =
|
|
recordKeeper.getAllDerivedDefinitionsIfDefined("DialectType");
|
|
std::vector<Record *> typeDefDefs =
|
|
recordKeeper.getAllDerivedDefinitionsIfDefined("TypeDef");
|
|
std::vector<Record *> attrDefDefs =
|
|
recordKeeper.getAllDerivedDefinitionsIfDefined("AttrDef");
|
|
|
|
llvm::SetVector<Dialect, SmallVector<Dialect>, std::set<Dialect>>
|
|
dialectsWithDocs;
|
|
|
|
llvm::StringMap<std::vector<Attribute>> dialectAttrs;
|
|
llvm::StringMap<std::vector<AttrDef>> dialectAttrDefs;
|
|
llvm::StringMap<std::vector<Operator>> dialectOps;
|
|
llvm::StringMap<std::vector<Type>> dialectTypes;
|
|
llvm::StringMap<std::vector<TypeDef>> dialectTypeDefs;
|
|
for (Record *attrDef : attrDefs) {
|
|
Attribute attr(attrDef);
|
|
if (const Dialect &dialect = attr.getDialect()) {
|
|
dialectAttrs[dialect.getName()].push_back(attr);
|
|
dialectsWithDocs.insert(dialect);
|
|
}
|
|
}
|
|
for (Record *attrDef : attrDefDefs) {
|
|
AttrDef attr(attrDef);
|
|
dialectAttrDefs[attr.getDialect().getName()].push_back(attr);
|
|
dialectsWithDocs.insert(attr.getDialect());
|
|
}
|
|
for (Record *opDef : opDefs) {
|
|
Operator op(opDef);
|
|
dialectOps[op.getDialect().getName()].push_back(op);
|
|
dialectsWithDocs.insert(op.getDialect());
|
|
}
|
|
for (Record *typeDef : typeDefs) {
|
|
Type type(typeDef);
|
|
if (const Dialect &dialect = type.getDialect()) {
|
|
dialectTypes[dialect.getName()].push_back(type);
|
|
dialectsWithDocs.insert(dialect);
|
|
}
|
|
}
|
|
for (Record *typeDef : typeDefDefs) {
|
|
TypeDef type(typeDef);
|
|
dialectTypeDefs[type.getDialect().getName()].push_back(type);
|
|
dialectsWithDocs.insert(type.getDialect());
|
|
}
|
|
|
|
Optional<Dialect> dialect =
|
|
findDialectToGenerate(dialectsWithDocs.getArrayRef());
|
|
if (!dialect)
|
|
return true;
|
|
|
|
os << "<!-- Autogenerated by mlir-tblgen; don't manually edit -->\n";
|
|
StringRef dialectName = dialect->getName();
|
|
emitDialectDoc(*dialect, dialectAttrs[dialectName],
|
|
dialectAttrDefs[dialectName], dialectOps[dialectName],
|
|
dialectTypes[dialectName], dialectTypeDefs[dialectName], os);
|
|
return false;
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Gen Registration
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
static mlir::GenRegistration
|
|
genAttrRegister("gen-attrdef-doc",
|
|
"Generate dialect attribute documentation",
|
|
[](const RecordKeeper &records, raw_ostream &os) {
|
|
emitAttrOrTypeDefDoc(records, os, "AttrDef");
|
|
return false;
|
|
});
|
|
|
|
static mlir::GenRegistration
|
|
genOpRegister("gen-op-doc", "Generate dialect documentation",
|
|
[](const RecordKeeper &records, raw_ostream &os) {
|
|
emitOpDoc(records, os);
|
|
return false;
|
|
});
|
|
|
|
static mlir::GenRegistration
|
|
genTypeRegister("gen-typedef-doc", "Generate dialect type documentation",
|
|
[](const RecordKeeper &records, raw_ostream &os) {
|
|
emitAttrOrTypeDefDoc(records, os, "TypeDef");
|
|
return false;
|
|
});
|
|
|
|
static mlir::GenRegistration
|
|
genRegister("gen-dialect-doc", "Generate dialect documentation",
|
|
[](const RecordKeeper &records, raw_ostream &os) {
|
|
return emitDialectDoc(records, os);
|
|
});
|