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
|
//===- MLIRGen.cpp --------------------------------------------------------===//
//
// 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/Tools/PDLL/CodeGen/MLIRGen.h"
#include "mlir/AsmParser/AsmParser.h"
#include "mlir/Dialect/PDL/IR/PDL.h"
#include "mlir/Dialect/PDL/IR/PDLOps.h"
#include "mlir/Dialect/PDL/IR/PDLTypes.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/BuiltinOps.h"
#include "mlir/IR/Verifier.h"
#include "mlir/Tools/PDLL/AST/Context.h"
#include "mlir/Tools/PDLL/AST/Nodes.h"
#include "mlir/Tools/PDLL/AST/Types.h"
#include "mlir/Tools/PDLL/ODS/Context.h"
#include "mlir/Tools/PDLL/ODS/Operation.h"
#include "llvm/ADT/ScopedHashTable.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/TypeSwitch.h"
#include <optional>
using namespace mlir;
using namespace mlir::pdll;
//===----------------------------------------------------------------------===//
// CodeGen
//===----------------------------------------------------------------------===//
namespace {
class CodeGen {
public:
CodeGen(MLIRContext *mlirContext, const ast::Context &context,
const llvm::SourceMgr &sourceMgr)
: builder(mlirContext), odsContext(context.getODSContext()),
sourceMgr(sourceMgr) {
// Make sure that the PDL dialect is loaded.
mlirContext->loadDialect<pdl::PDLDialect>();
}
OwningOpRef<ModuleOp> generate(const ast::Module &module);
private:
/// Generate an MLIR location from the given source location.
Location genLoc(llvm::SMLoc loc);
Location genLoc(llvm::SMRange loc) { return genLoc(loc.Start); }
/// Generate an MLIR type from the given source type.
Type genType(ast::Type type);
/// Generate MLIR for the given AST node.
void gen(const ast::Node *node);
//===--------------------------------------------------------------------===//
// Statements
//===--------------------------------------------------------------------===//
void genImpl(const ast::CompoundStmt *stmt);
void genImpl(const ast::EraseStmt *stmt);
void genImpl(const ast::LetStmt *stmt);
void genImpl(const ast::ReplaceStmt *stmt);
void genImpl(const ast::RewriteStmt *stmt);
void genImpl(const ast::ReturnStmt *stmt);
//===--------------------------------------------------------------------===//
// Decls
//===--------------------------------------------------------------------===//
void genImpl(const ast::UserConstraintDecl *decl);
void genImpl(const ast::UserRewriteDecl *decl);
void genImpl(const ast::PatternDecl *decl);
/// Generate the set of MLIR values defined for the given variable decl, and
/// apply any attached constraints.
SmallVector<Value> genVar(const ast::VariableDecl *varDecl);
/// Generate the value for a variable that does not have an initializer
/// expression, i.e. create the PDL value based on the type/constraints of the
/// variable.
Value genNonInitializerVar(const ast::VariableDecl *varDecl, Location loc);
/// Apply the constraints of the given variable to `values`, which correspond
/// to the MLIR values of the variable.
void applyVarConstraints(const ast::VariableDecl *varDecl, ValueRange values);
//===--------------------------------------------------------------------===//
// Expressions
//===--------------------------------------------------------------------===//
Value genSingleExpr(const ast::Expr *expr);
SmallVector<Value> genExpr(const ast::Expr *expr);
Value genExprImpl(const ast::AttributeExpr *expr);
SmallVector<Value> genExprImpl(const ast::CallExpr *expr);
SmallVector<Value> genExprImpl(const ast::DeclRefExpr *expr);
Value genExprImpl(const ast::MemberAccessExpr *expr);
Value genExprImpl(const ast::OperationExpr *expr);
Value genExprImpl(const ast::RangeExpr *expr);
SmallVector<Value> genExprImpl(const ast::TupleExpr *expr);
Value genExprImpl(const ast::TypeExpr *expr);
SmallVector<Value> genConstraintCall(const ast::UserConstraintDecl *decl,
Location loc, ValueRange inputs);
SmallVector<Value> genRewriteCall(const ast::UserRewriteDecl *decl,
Location loc, ValueRange inputs);
template <typename PDLOpT, typename T>
SmallVector<Value> genConstraintOrRewriteCall(const T *decl, Location loc,
ValueRange inputs);
//===--------------------------------------------------------------------===//
// Fields
//===--------------------------------------------------------------------===//
/// The MLIR builder used for building the resultant IR.
OpBuilder builder;
/// A map from variable declarations to the MLIR equivalent.
using VariableMapTy =
llvm::ScopedHashTable<const ast::VariableDecl *, SmallVector<Value>>;
VariableMapTy variables;
/// A reference to the ODS context.
const ods::Context &odsContext;
/// The source manager of the PDLL ast.
const llvm::SourceMgr &sourceMgr;
};
} // namespace
OwningOpRef<ModuleOp> CodeGen::generate(const ast::Module &module) {
OwningOpRef<ModuleOp> mlirModule =
builder.create<ModuleOp>(genLoc(module.getLoc()));
builder.setInsertionPointToStart(mlirModule->getBody());
// Generate code for each of the decls within the module.
for (const ast::Decl *decl : module.getChildren())
gen(decl);
return mlirModule;
}
Location CodeGen::genLoc(llvm::SMLoc loc) {
unsigned fileID = sourceMgr.FindBufferContainingLoc(loc);
// TODO: Fix performance issues in SourceMgr::getLineAndColumn so that we can
// use it here.
auto &bufferInfo = sourceMgr.getBufferInfo(fileID);
unsigned lineNo = bufferInfo.getLineNumber(loc.getPointer());
unsigned column =
(loc.getPointer() - bufferInfo.getPointerForLineNumber(lineNo)) + 1;
auto *buffer = sourceMgr.getMemoryBuffer(fileID);
return FileLineColLoc::get(builder.getContext(),
buffer->getBufferIdentifier(), lineNo, column);
}
Type CodeGen::genType(ast::Type type) {
return TypeSwitch<ast::Type, Type>(type)
.Case([&](ast::AttributeType astType) -> Type {
return builder.getType<pdl::AttributeType>();
})
.Case([&](ast::OperationType astType) -> Type {
return builder.getType<pdl::OperationType>();
})
.Case([&](ast::TypeType astType) -> Type {
return builder.getType<pdl::TypeType>();
})
.Case([&](ast::ValueType astType) -> Type {
return builder.getType<pdl::ValueType>();
})
.Case([&](ast::RangeType astType) -> Type {
return pdl::RangeType::get(genType(astType.getElementType()));
});
}
void CodeGen::gen(const ast::Node *node) {
TypeSwitch<const ast::Node *>(node)
.Case<const ast::CompoundStmt, const ast::EraseStmt, const ast::LetStmt,
const ast::ReplaceStmt, const ast::RewriteStmt,
const ast::ReturnStmt, const ast::UserConstraintDecl,
const ast::UserRewriteDecl, const ast::PatternDecl>(
[&](auto derivedNode) { this->genImpl(derivedNode); })
.Case([&](const ast::Expr *expr) { genExpr(expr); });
}
//===----------------------------------------------------------------------===//
// CodeGen: Statements
//===----------------------------------------------------------------------===//
void CodeGen::genImpl(const ast::CompoundStmt *stmt) {
VariableMapTy::ScopeTy varScope(variables);
for (const ast::Stmt *childStmt : stmt->getChildren())
gen(childStmt);
}
/// If the given builder is nested under a PDL PatternOp, build a rewrite
/// operation and update the builder to nest under it. This is necessary for
/// PDLL operation rewrite statements that are directly nested within a Pattern.
static void checkAndNestUnderRewriteOp(OpBuilder &builder, Value rootExpr,
Location loc) {
if (isa<pdl::PatternOp>(builder.getInsertionBlock()->getParentOp())) {
pdl::RewriteOp rewrite =
builder.create<pdl::RewriteOp>(loc, rootExpr, /*name=*/StringAttr(),
/*externalArgs=*/ValueRange());
builder.createBlock(&rewrite.getBodyRegion());
}
}
void CodeGen::genImpl(const ast::EraseStmt *stmt) {
OpBuilder::InsertionGuard insertGuard(builder);
Value rootExpr = genSingleExpr(stmt->getRootOpExpr());
Location loc = genLoc(stmt->getLoc());
// Make sure we are nested in a RewriteOp.
OpBuilder::InsertionGuard guard(builder);
checkAndNestUnderRewriteOp(builder, rootExpr, loc);
builder.create<pdl::EraseOp>(loc, rootExpr);
}
void CodeGen::genImpl(const ast::LetStmt *stmt) { genVar(stmt->getVarDecl()); }
void CodeGen::genImpl(const ast::ReplaceStmt *stmt) {
OpBuilder::InsertionGuard insertGuard(builder);
Value rootExpr = genSingleExpr(stmt->getRootOpExpr());
Location loc = genLoc(stmt->getLoc());
// Make sure we are nested in a RewriteOp.
OpBuilder::InsertionGuard guard(builder);
checkAndNestUnderRewriteOp(builder, rootExpr, loc);
SmallVector<Value> replValues;
for (ast::Expr *replExpr : stmt->getReplExprs())
replValues.push_back(genSingleExpr(replExpr));
// Check to see if the statement has a replacement operation, or a range of
// replacement values.
bool usesReplOperation =
replValues.size() == 1 &&
isa<pdl::OperationType>(replValues.front().getType());
builder.create<pdl::ReplaceOp>(
loc, rootExpr, usesReplOperation ? replValues[0] : Value(),
usesReplOperation ? ValueRange() : ValueRange(replValues));
}
void CodeGen::genImpl(const ast::RewriteStmt *stmt) {
OpBuilder::InsertionGuard insertGuard(builder);
Value rootExpr = genSingleExpr(stmt->getRootOpExpr());
// Make sure we are nested in a RewriteOp.
OpBuilder::InsertionGuard guard(builder);
checkAndNestUnderRewriteOp(builder, rootExpr, genLoc(stmt->getLoc()));
gen(stmt->getRewriteBody());
}
void CodeGen::genImpl(const ast::ReturnStmt *stmt) {
// ReturnStmt generation is handled by the respective constraint or rewrite
// parent node.
}
//===----------------------------------------------------------------------===//
// CodeGen: Decls
//===----------------------------------------------------------------------===//
void CodeGen::genImpl(const ast::UserConstraintDecl *decl) {
// All PDLL constraints get inlined when called, and the main native
// constraint declarations doesn't require any MLIR to be generated, only uses
// of it do.
}
void CodeGen::genImpl(const ast::UserRewriteDecl *decl) {
// All PDLL rewrites get inlined when called, and the main native
// rewrite declarations doesn't require any MLIR to be generated, only uses
// of it do.
}
void CodeGen::genImpl(const ast::PatternDecl *decl) {
const ast::Name *name = decl->getName();
// FIXME: Properly model HasBoundedRecursion in PDL so that we don't drop it
// here.
pdl::PatternOp pattern = builder.create<pdl::PatternOp>(
genLoc(decl->getLoc()), decl->getBenefit(),
name ? std::optional<StringRef>(name->getName())
: std::optional<StringRef>());
OpBuilder::InsertionGuard savedInsertPoint(builder);
builder.setInsertionPointToStart(pattern.getBody());
gen(decl->getBody());
}
SmallVector<Value> CodeGen::genVar(const ast::VariableDecl *varDecl) {
auto it = variables.begin(varDecl);
if (it != variables.end())
return *it;
// If the variable has an initial value, use that as the base value.
// Otherwise, generate a value using the constraint list.
SmallVector<Value> values;
if (const ast::Expr *initExpr = varDecl->getInitExpr())
values = genExpr(initExpr);
else
values.push_back(genNonInitializerVar(varDecl, genLoc(varDecl->getLoc())));
// Apply the constraints of the values of the variable.
applyVarConstraints(varDecl, values);
variables.insert(varDecl, values);
return values;
}
Value CodeGen::genNonInitializerVar(const ast::VariableDecl *varDecl,
Location loc) {
// A functor used to generate expressions nested
auto getTypeConstraint = [&]() -> Value {
for (const ast::ConstraintRef &constraint : varDecl->getConstraints()) {
Value typeValue =
TypeSwitch<const ast::Node *, Value>(constraint.constraint)
.Case<ast::AttrConstraintDecl, ast::ValueConstraintDecl,
ast::ValueRangeConstraintDecl>(
[&, this](auto *cst) -> Value {
if (auto *typeConstraintExpr = cst->getTypeExpr())
return this->genSingleExpr(typeConstraintExpr);
return Value();
})
.Default(Value());
if (typeValue)
return typeValue;
}
return Value();
};
// Generate a value based on the type of the variable.
ast::Type type = varDecl->getType();
Type mlirType = genType(type);
if (type.isa<ast::ValueType>())
return builder.create<pdl::OperandOp>(loc, mlirType, getTypeConstraint());
if (type.isa<ast::TypeType>())
return builder.create<pdl::TypeOp>(loc, mlirType, /*type=*/TypeAttr());
if (type.isa<ast::AttributeType>())
return builder.create<pdl::AttributeOp>(loc, getTypeConstraint());
if (ast::OperationType opType = type.dyn_cast<ast::OperationType>()) {
Value operands = builder.create<pdl::OperandsOp>(
loc, pdl::RangeType::get(builder.getType<pdl::ValueType>()),
/*type=*/Value());
Value results = builder.create<pdl::TypesOp>(
loc, pdl::RangeType::get(builder.getType<pdl::TypeType>()),
/*types=*/ArrayAttr());
return builder.create<pdl::OperationOp>(
loc, opType.getName(), operands, std::nullopt, ValueRange(), results);
}
if (ast::RangeType rangeTy = type.dyn_cast<ast::RangeType>()) {
ast::Type eleTy = rangeTy.getElementType();
if (eleTy.isa<ast::ValueType>())
return builder.create<pdl::OperandsOp>(loc, mlirType,
getTypeConstraint());
if (eleTy.isa<ast::TypeType>())
return builder.create<pdl::TypesOp>(loc, mlirType, /*types=*/ArrayAttr());
}
llvm_unreachable("invalid non-initialized variable type");
}
void CodeGen::applyVarConstraints(const ast::VariableDecl *varDecl,
ValueRange values) {
// Generate calls to any user constraints that were attached via the
// constraint list.
for (const ast::ConstraintRef &ref : varDecl->getConstraints())
if (const auto *userCst = dyn_cast<ast::UserConstraintDecl>(ref.constraint))
genConstraintCall(userCst, genLoc(ref.referenceLoc), values);
}
//===----------------------------------------------------------------------===//
// CodeGen: Expressions
//===----------------------------------------------------------------------===//
Value CodeGen::genSingleExpr(const ast::Expr *expr) {
return TypeSwitch<const ast::Expr *, Value>(expr)
.Case<const ast::AttributeExpr, const ast::MemberAccessExpr,
const ast::OperationExpr, const ast::RangeExpr,
const ast::TypeExpr>(
[&](auto derivedNode) { return this->genExprImpl(derivedNode); })
.Case<const ast::CallExpr, const ast::DeclRefExpr, const ast::TupleExpr>(
[&](auto derivedNode) {
SmallVector<Value> results = this->genExprImpl(derivedNode);
assert(results.size() == 1 && "expected single expression result");
return results[0];
});
}
SmallVector<Value> CodeGen::genExpr(const ast::Expr *expr) {
return TypeSwitch<const ast::Expr *, SmallVector<Value>>(expr)
.Case<const ast::CallExpr, const ast::DeclRefExpr, const ast::TupleExpr>(
[&](auto derivedNode) { return this->genExprImpl(derivedNode); })
.Default([&](const ast::Expr *expr) -> SmallVector<Value> {
return {genSingleExpr(expr)};
});
}
Value CodeGen::genExprImpl(const ast::AttributeExpr *expr) {
Attribute attr = parseAttribute(expr->getValue(), builder.getContext());
assert(attr && "invalid MLIR attribute data");
return builder.create<pdl::AttributeOp>(genLoc(expr->getLoc()), attr);
}
SmallVector<Value> CodeGen::genExprImpl(const ast::CallExpr *expr) {
Location loc = genLoc(expr->getLoc());
SmallVector<Value> arguments;
for (const ast::Expr *arg : expr->getArguments())
arguments.push_back(genSingleExpr(arg));
// Resolve the callable expression of this call.
auto *callableExpr = dyn_cast<ast::DeclRefExpr>(expr->getCallableExpr());
assert(callableExpr && "unhandled CallExpr callable");
// Generate the PDL based on the type of callable.
const ast::Decl *callable = callableExpr->getDecl();
if (const auto *decl = dyn_cast<ast::UserConstraintDecl>(callable))
return genConstraintCall(decl, loc, arguments);
if (const auto *decl = dyn_cast<ast::UserRewriteDecl>(callable))
return genRewriteCall(decl, loc, arguments);
llvm_unreachable("unhandled CallExpr callable");
}
SmallVector<Value> CodeGen::genExprImpl(const ast::DeclRefExpr *expr) {
if (const auto *varDecl = dyn_cast<ast::VariableDecl>(expr->getDecl()))
return genVar(varDecl);
llvm_unreachable("unknown decl reference expression");
}
Value CodeGen::genExprImpl(const ast::MemberAccessExpr *expr) {
Location loc = genLoc(expr->getLoc());
StringRef name = expr->getMemberName();
SmallVector<Value> parentExprs = genExpr(expr->getParentExpr());
ast::Type parentType = expr->getParentExpr()->getType();
// Handle operation based member access.
if (ast::OperationType opType = parentType.dyn_cast<ast::OperationType>()) {
if (isa<ast::AllResultsMemberAccessExpr>(expr)) {
Type mlirType = genType(expr->getType());
if (isa<pdl::ValueType>(mlirType))
return builder.create<pdl::ResultOp>(loc, mlirType, parentExprs[0],
builder.getI32IntegerAttr(0));
return builder.create<pdl::ResultsOp>(loc, mlirType, parentExprs[0]);
}
const ods::Operation *odsOp = opType.getODSOperation();
if (!odsOp) {
assert(llvm::isDigit(name[0]) &&
"unregistered op only allows numeric indexing");
unsigned resultIndex;
name.getAsInteger(/*Radix=*/10, resultIndex);
IntegerAttr index = builder.getI32IntegerAttr(resultIndex);
return builder.create<pdl::ResultOp>(loc, genType(expr->getType()),
parentExprs[0], index);
}
// Find the result with the member name or by index.
ArrayRef<ods::OperandOrResult> results = odsOp->getResults();
unsigned resultIndex = results.size();
if (llvm::isDigit(name[0])) {
name.getAsInteger(/*Radix=*/10, resultIndex);
} else {
auto findFn = [&](const ods::OperandOrResult &result) {
return result.getName() == name;
};
resultIndex = llvm::find_if(results, findFn) - results.begin();
}
assert(resultIndex < results.size() && "invalid result index");
// Generate the result access.
IntegerAttr index = builder.getI32IntegerAttr(resultIndex);
return builder.create<pdl::ResultsOp>(loc, genType(expr->getType()),
parentExprs[0], index);
}
// Handle tuple based member access.
if (auto tupleType = parentType.dyn_cast<ast::TupleType>()) {
auto elementNames = tupleType.getElementNames();
// The index is either a numeric index, or a name.
unsigned index = 0;
if (llvm::isDigit(name[0]))
name.getAsInteger(/*Radix=*/10, index);
else
index = llvm::find(elementNames, name) - elementNames.begin();
assert(index < parentExprs.size() && "invalid result index");
return parentExprs[index];
}
llvm_unreachable("unhandled member access expression");
}
Value CodeGen::genExprImpl(const ast::OperationExpr *expr) {
Location loc = genLoc(expr->getLoc());
std::optional<StringRef> opName = expr->getName();
// Operands.
SmallVector<Value> operands;
for (const ast::Expr *operand : expr->getOperands())
operands.push_back(genSingleExpr(operand));
// Attributes.
SmallVector<StringRef> attrNames;
SmallVector<Value> attrValues;
for (const ast::NamedAttributeDecl *attr : expr->getAttributes()) {
attrNames.push_back(attr->getName().getName());
attrValues.push_back(genSingleExpr(attr->getValue()));
}
// Results.
SmallVector<Value> results;
for (const ast::Expr *result : expr->getResultTypes())
results.push_back(genSingleExpr(result));
return builder.create<pdl::OperationOp>(loc, opName, operands, attrNames,
attrValues, results);
}
Value CodeGen::genExprImpl(const ast::RangeExpr *expr) {
SmallVector<Value> elements;
for (const ast::Expr *element : expr->getElements())
llvm::append_range(elements, genExpr(element));
return builder.create<pdl::RangeOp>(genLoc(expr->getLoc()),
genType(expr->getType()), elements);
}
SmallVector<Value> CodeGen::genExprImpl(const ast::TupleExpr *expr) {
SmallVector<Value> elements;
for (const ast::Expr *element : expr->getElements())
elements.push_back(genSingleExpr(element));
return elements;
}
Value CodeGen::genExprImpl(const ast::TypeExpr *expr) {
Type type = parseType(expr->getValue(), builder.getContext());
assert(type && "invalid MLIR type data");
return builder.create<pdl::TypeOp>(genLoc(expr->getLoc()),
builder.getType<pdl::TypeType>(),
TypeAttr::get(type));
}
SmallVector<Value>
CodeGen::genConstraintCall(const ast::UserConstraintDecl *decl, Location loc,
ValueRange inputs) {
// Apply any constraints defined on the arguments to the input values.
for (auto it : llvm::zip(decl->getInputs(), inputs))
applyVarConstraints(std::get<0>(it), std::get<1>(it));
// Generate the constraint call.
SmallVector<Value> results =
genConstraintOrRewriteCall<pdl::ApplyNativeConstraintOp>(decl, loc,
inputs);
// Apply any constraints defined on the results of the constraint.
for (auto it : llvm::zip(decl->getResults(), results))
applyVarConstraints(std::get<0>(it), std::get<1>(it));
return results;
}
SmallVector<Value> CodeGen::genRewriteCall(const ast::UserRewriteDecl *decl,
Location loc, ValueRange inputs) {
return genConstraintOrRewriteCall<pdl::ApplyNativeRewriteOp>(decl, loc,
inputs);
}
template <typename PDLOpT, typename T>
SmallVector<Value> CodeGen::genConstraintOrRewriteCall(const T *decl,
Location loc,
ValueRange inputs) {
const ast::CompoundStmt *cstBody = decl->getBody();
// If the decl doesn't have a statement body, it is a native decl.
if (!cstBody) {
ast::Type declResultType = decl->getResultType();
SmallVector<Type> resultTypes;
if (ast::TupleType tupleType = declResultType.dyn_cast<ast::TupleType>()) {
for (ast::Type type : tupleType.getElementTypes())
resultTypes.push_back(genType(type));
} else {
resultTypes.push_back(genType(declResultType));
}
Operation *pdlOp = builder.create<PDLOpT>(
loc, resultTypes, decl->getName().getName(), inputs);
return pdlOp->getResults();
}
// Otherwise, this is a PDLL decl.
VariableMapTy::ScopeTy varScope(variables);
// Map the inputs of the call to the decl arguments.
// Note: This is only valid because we do not support recursion, meaning
// we don't need to worry about conflicting mappings here.
for (auto it : llvm::zip(inputs, decl->getInputs()))
variables.insert(std::get<1>(it), {std::get<0>(it)});
// Visit the body of the call as normal.
gen(cstBody);
// If the decl has no results, there is nothing to do.
if (cstBody->getChildren().empty())
return SmallVector<Value>();
auto *returnStmt = dyn_cast<ast::ReturnStmt>(cstBody->getChildren().back());
if (!returnStmt)
return SmallVector<Value>();
// Otherwise, grab the results from the return statement.
return genExpr(returnStmt->getResultExpr());
}
//===----------------------------------------------------------------------===//
// MLIRGen
//===----------------------------------------------------------------------===//
OwningOpRef<ModuleOp> mlir::pdll::codegenPDLLToMLIR(
MLIRContext *mlirContext, const ast::Context &context,
const llvm::SourceMgr &sourceMgr, const ast::Module &module) {
CodeGen codegen(mlirContext, context, sourceMgr);
OwningOpRef<ModuleOp> mlirModule = codegen.generate(module);
if (failed(verify(*mlirModule)))
return nullptr;
return mlirModule;
}
|