1 //===- TestDialect.cpp - MLIR Dialect for Testing -------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "TestDialect.h" 10 #include "TestAttributes.h" 11 #include "TestInterfaces.h" 12 #include "TestTypes.h" 13 #include "mlir/Dialect/Arithmetic/IR/Arithmetic.h" 14 #include "mlir/Dialect/DLTI/DLTI.h" 15 #include "mlir/Dialect/StandardOps/IR/Ops.h" 16 #include "mlir/Dialect/Tensor/IR/Tensor.h" 17 #include "mlir/IR/BuiltinOps.h" 18 #include "mlir/IR/DialectImplementation.h" 19 #include "mlir/IR/PatternMatch.h" 20 #include "mlir/IR/TypeUtilities.h" 21 #include "mlir/Reducer/ReductionPatternInterface.h" 22 #include "mlir/Transforms/FoldUtils.h" 23 #include "mlir/Transforms/InliningUtils.h" 24 #include "llvm/ADT/StringSwitch.h" 25 26 // Include this before the using namespace lines below to 27 // test that we don't have namespace dependencies. 28 #include "TestOpsDialect.cpp.inc" 29 30 using namespace mlir; 31 using namespace test; 32 33 void test::registerTestDialect(DialectRegistry ®istry) { 34 registry.insert<TestDialect>(); 35 } 36 37 //===----------------------------------------------------------------------===// 38 // TestDialect Interfaces 39 //===----------------------------------------------------------------------===// 40 41 namespace { 42 43 /// Testing the correctness of some traits. 44 static_assert( 45 llvm::is_detected<OpTrait::has_implicit_terminator_t, 46 SingleBlockImplicitTerminatorOp>::value, 47 "has_implicit_terminator_t does not match SingleBlockImplicitTerminatorOp"); 48 static_assert(OpTrait::hasSingleBlockImplicitTerminator< 49 SingleBlockImplicitTerminatorOp>::value, 50 "hasSingleBlockImplicitTerminator does not match " 51 "SingleBlockImplicitTerminatorOp"); 52 53 // Test support for interacting with the AsmPrinter. 54 struct TestOpAsmInterface : public OpAsmDialectInterface { 55 using OpAsmDialectInterface::OpAsmDialectInterface; 56 57 AliasResult getAlias(Attribute attr, raw_ostream &os) const final { 58 StringAttr strAttr = attr.dyn_cast<StringAttr>(); 59 if (!strAttr) 60 return AliasResult::NoAlias; 61 62 // Check the contents of the string attribute to see what the test alias 63 // should be named. 64 Optional<StringRef> aliasName = 65 StringSwitch<Optional<StringRef>>(strAttr.getValue()) 66 .Case("alias_test:dot_in_name", StringRef("test.alias")) 67 .Case("alias_test:trailing_digit", StringRef("test_alias0")) 68 .Case("alias_test:prefixed_digit", StringRef("0_test_alias")) 69 .Case("alias_test:sanitize_conflict_a", 70 StringRef("test_alias_conflict0")) 71 .Case("alias_test:sanitize_conflict_b", 72 StringRef("test_alias_conflict0_")) 73 .Case("alias_test:tensor_encoding", StringRef("test_encoding")) 74 .Default(llvm::None); 75 if (!aliasName) 76 return AliasResult::NoAlias; 77 78 os << *aliasName; 79 return AliasResult::FinalAlias; 80 } 81 82 AliasResult getAlias(Type type, raw_ostream &os) const final { 83 if (auto tupleType = type.dyn_cast<TupleType>()) { 84 if (tupleType.size() > 0 && 85 llvm::all_of(tupleType.getTypes(), [](Type elemType) { 86 return elemType.isa<SimpleAType>(); 87 })) { 88 os << "test_tuple"; 89 return AliasResult::FinalAlias; 90 } 91 } 92 if (auto intType = type.dyn_cast<TestIntegerType>()) { 93 if (intType.getSignedness() == 94 TestIntegerType::SignednessSemantics::Unsigned && 95 intType.getWidth() == 8) { 96 os << "test_ui8"; 97 return AliasResult::FinalAlias; 98 } 99 } 100 return AliasResult::NoAlias; 101 } 102 }; 103 104 struct TestDialectFoldInterface : public DialectFoldInterface { 105 using DialectFoldInterface::DialectFoldInterface; 106 107 /// Registered hook to check if the given region, which is attached to an 108 /// operation that is *not* isolated from above, should be used when 109 /// materializing constants. 110 bool shouldMaterializeInto(Region *region) const final { 111 // If this is a one region operation, then insert into it. 112 return isa<OneRegionOp>(region->getParentOp()); 113 } 114 }; 115 116 /// This class defines the interface for handling inlining with standard 117 /// operations. 118 struct TestInlinerInterface : public DialectInlinerInterface { 119 using DialectInlinerInterface::DialectInlinerInterface; 120 121 //===--------------------------------------------------------------------===// 122 // Analysis Hooks 123 //===--------------------------------------------------------------------===// 124 125 bool isLegalToInline(Operation *call, Operation *callable, 126 bool wouldBeCloned) const final { 127 // Don't allow inlining calls that are marked `noinline`. 128 return !call->hasAttr("noinline"); 129 } 130 bool isLegalToInline(Region *, Region *, bool, 131 BlockAndValueMapping &) const final { 132 // Inlining into test dialect regions is legal. 133 return true; 134 } 135 bool isLegalToInline(Operation *, Region *, bool, 136 BlockAndValueMapping &) const final { 137 return true; 138 } 139 140 bool shouldAnalyzeRecursively(Operation *op) const final { 141 // Analyze recursively if this is not a functional region operation, it 142 // froms a separate functional scope. 143 return !isa<FunctionalRegionOp>(op); 144 } 145 146 //===--------------------------------------------------------------------===// 147 // Transformation Hooks 148 //===--------------------------------------------------------------------===// 149 150 /// Handle the given inlined terminator by replacing it with a new operation 151 /// as necessary. 152 void handleTerminator(Operation *op, 153 ArrayRef<Value> valuesToRepl) const final { 154 // Only handle "test.return" here. 155 auto returnOp = dyn_cast<TestReturnOp>(op); 156 if (!returnOp) 157 return; 158 159 // Replace the values directly with the return operands. 160 assert(returnOp.getNumOperands() == valuesToRepl.size()); 161 for (const auto &it : llvm::enumerate(returnOp.getOperands())) 162 valuesToRepl[it.index()].replaceAllUsesWith(it.value()); 163 } 164 165 /// Attempt to materialize a conversion for a type mismatch between a call 166 /// from this dialect, and a callable region. This method should generate an 167 /// operation that takes 'input' as the only operand, and produces a single 168 /// result of 'resultType'. If a conversion can not be generated, nullptr 169 /// should be returned. 170 Operation *materializeCallConversion(OpBuilder &builder, Value input, 171 Type resultType, 172 Location conversionLoc) const final { 173 // Only allow conversion for i16/i32 types. 174 if (!(resultType.isSignlessInteger(16) || 175 resultType.isSignlessInteger(32)) || 176 !(input.getType().isSignlessInteger(16) || 177 input.getType().isSignlessInteger(32))) 178 return nullptr; 179 return builder.create<TestCastOp>(conversionLoc, resultType, input); 180 } 181 182 void processInlinedCallBlocks( 183 Operation *call, 184 iterator_range<Region::iterator> inlinedBlocks) const final { 185 if (!isa<ConversionCallOp>(call)) 186 return; 187 188 // Set attributed on all ops in the inlined blocks. 189 for (Block &block : inlinedBlocks) { 190 block.walk([&](Operation *op) { 191 op->setAttr("inlined_conversion", UnitAttr::get(call->getContext())); 192 }); 193 } 194 } 195 }; 196 197 struct TestReductionPatternInterface : public DialectReductionPatternInterface { 198 public: 199 TestReductionPatternInterface(Dialect *dialect) 200 : DialectReductionPatternInterface(dialect) {} 201 202 void populateReductionPatterns(RewritePatternSet &patterns) const final { 203 populateTestReductionPatterns(patterns); 204 } 205 }; 206 207 } // namespace 208 209 //===----------------------------------------------------------------------===// 210 // TestDialect 211 //===----------------------------------------------------------------------===// 212 213 static void testSideEffectOpGetEffect( 214 Operation *op, 215 SmallVectorImpl<SideEffects::EffectInstance<TestEffects::Effect>> &effects); 216 217 // This is the implementation of a dialect fallback for `TestEffectOpInterface`. 218 struct TestOpEffectInterfaceFallback 219 : public TestEffectOpInterface::FallbackModel< 220 TestOpEffectInterfaceFallback> { 221 static bool classof(Operation *op) { 222 bool isSupportedOp = 223 op->getName().getStringRef() == "test.unregistered_side_effect_op"; 224 assert(isSupportedOp && "Unexpected dispatch"); 225 return isSupportedOp; 226 } 227 228 void 229 getEffects(Operation *op, 230 SmallVectorImpl<SideEffects::EffectInstance<TestEffects::Effect>> 231 &effects) const { 232 testSideEffectOpGetEffect(op, effects); 233 } 234 }; 235 236 void TestDialect::initialize() { 237 registerAttributes(); 238 registerTypes(); 239 addOperations< 240 #define GET_OP_LIST 241 #include "TestOps.cpp.inc" 242 >(); 243 addInterfaces<TestOpAsmInterface, TestDialectFoldInterface, 244 TestInlinerInterface, TestReductionPatternInterface>(); 245 allowUnknownOperations(); 246 247 // Instantiate our fallback op interface that we'll use on specific 248 // unregistered op. 249 fallbackEffectOpInterfaces = new TestOpEffectInterfaceFallback; 250 } 251 TestDialect::~TestDialect() { 252 delete static_cast<TestOpEffectInterfaceFallback *>( 253 fallbackEffectOpInterfaces); 254 } 255 256 Operation *TestDialect::materializeConstant(OpBuilder &builder, Attribute value, 257 Type type, Location loc) { 258 return builder.create<TestOpConstant>(loc, type, value); 259 } 260 261 ::mlir::LogicalResult FormatInferType2Op::inferReturnTypes( 262 ::mlir::MLIRContext *context, ::llvm::Optional<::mlir::Location> location, 263 ::mlir::ValueRange operands, ::mlir::DictionaryAttr attributes, 264 ::mlir::RegionRange regions, 265 ::llvm::SmallVectorImpl<::mlir::Type> &inferredReturnTypes) { 266 inferredReturnTypes.assign({::mlir::IntegerType::get(context, 16)}); 267 return ::mlir::success(); 268 } 269 270 void *TestDialect::getRegisteredInterfaceForOp(TypeID typeID, 271 OperationName opName) { 272 if (opName.getIdentifier() == "test.unregistered_side_effect_op" && 273 typeID == TypeID::get<TestEffectOpInterface>()) 274 return fallbackEffectOpInterfaces; 275 return nullptr; 276 } 277 278 LogicalResult TestDialect::verifyOperationAttribute(Operation *op, 279 NamedAttribute namedAttr) { 280 if (namedAttr.getName() == "test.invalid_attr") 281 return op->emitError() << "invalid to use 'test.invalid_attr'"; 282 return success(); 283 } 284 285 LogicalResult TestDialect::verifyRegionArgAttribute(Operation *op, 286 unsigned regionIndex, 287 unsigned argIndex, 288 NamedAttribute namedAttr) { 289 if (namedAttr.getName() == "test.invalid_attr") 290 return op->emitError() << "invalid to use 'test.invalid_attr'"; 291 return success(); 292 } 293 294 LogicalResult 295 TestDialect::verifyRegionResultAttribute(Operation *op, unsigned regionIndex, 296 unsigned resultIndex, 297 NamedAttribute namedAttr) { 298 if (namedAttr.getName() == "test.invalid_attr") 299 return op->emitError() << "invalid to use 'test.invalid_attr'"; 300 return success(); 301 } 302 303 Optional<Dialect::ParseOpHook> 304 TestDialect::getParseOperationHook(StringRef opName) const { 305 if (opName == "test.dialect_custom_printer") { 306 return ParseOpHook{[](OpAsmParser &parser, OperationState &state) { 307 return parser.parseKeyword("custom_format"); 308 }}; 309 } 310 if (opName == "test.dialect_custom_format_fallback") { 311 return ParseOpHook{[](OpAsmParser &parser, OperationState &state) { 312 return parser.parseKeyword("custom_format_fallback"); 313 }}; 314 } 315 return None; 316 } 317 318 llvm::unique_function<void(Operation *, OpAsmPrinter &)> 319 TestDialect::getOperationPrinter(Operation *op) const { 320 StringRef opName = op->getName().getStringRef(); 321 if (opName == "test.dialect_custom_printer") { 322 return [](Operation *op, OpAsmPrinter &printer) { 323 printer.getStream() << " custom_format"; 324 }; 325 } 326 if (opName == "test.dialect_custom_format_fallback") { 327 return [](Operation *op, OpAsmPrinter &printer) { 328 printer.getStream() << " custom_format_fallback"; 329 }; 330 } 331 return {}; 332 } 333 334 //===----------------------------------------------------------------------===// 335 // TestBranchOp 336 //===----------------------------------------------------------------------===// 337 338 Optional<MutableOperandRange> 339 TestBranchOp::getMutableSuccessorOperands(unsigned index) { 340 assert(index == 0 && "invalid successor index"); 341 return getTargetOperandsMutable(); 342 } 343 344 //===----------------------------------------------------------------------===// 345 // TestDialectCanonicalizerOp 346 //===----------------------------------------------------------------------===// 347 348 static LogicalResult 349 dialectCanonicalizationPattern(TestDialectCanonicalizerOp op, 350 PatternRewriter &rewriter) { 351 rewriter.replaceOpWithNewOp<arith::ConstantOp>( 352 op, rewriter.getI32IntegerAttr(42)); 353 return success(); 354 } 355 356 void TestDialect::getCanonicalizationPatterns( 357 RewritePatternSet &results) const { 358 results.add(&dialectCanonicalizationPattern); 359 } 360 361 //===----------------------------------------------------------------------===// 362 // TestFoldToCallOp 363 //===----------------------------------------------------------------------===// 364 365 namespace { 366 struct FoldToCallOpPattern : public OpRewritePattern<FoldToCallOp> { 367 using OpRewritePattern<FoldToCallOp>::OpRewritePattern; 368 369 LogicalResult matchAndRewrite(FoldToCallOp op, 370 PatternRewriter &rewriter) const override { 371 rewriter.replaceOpWithNewOp<CallOp>(op, TypeRange(), op.getCalleeAttr(), 372 ValueRange()); 373 return success(); 374 } 375 }; 376 } // namespace 377 378 void FoldToCallOp::getCanonicalizationPatterns(RewritePatternSet &results, 379 MLIRContext *context) { 380 results.add<FoldToCallOpPattern>(context); 381 } 382 383 //===----------------------------------------------------------------------===// 384 // Test Format* operations 385 //===----------------------------------------------------------------------===// 386 387 //===----------------------------------------------------------------------===// 388 // Parsing 389 390 static ParseResult parseCustomDirectiveOperands( 391 OpAsmParser &parser, OpAsmParser::OperandType &operand, 392 Optional<OpAsmParser::OperandType> &optOperand, 393 SmallVectorImpl<OpAsmParser::OperandType> &varOperands) { 394 if (parser.parseOperand(operand)) 395 return failure(); 396 if (succeeded(parser.parseOptionalComma())) { 397 optOperand.emplace(); 398 if (parser.parseOperand(*optOperand)) 399 return failure(); 400 } 401 if (parser.parseArrow() || parser.parseLParen() || 402 parser.parseOperandList(varOperands) || parser.parseRParen()) 403 return failure(); 404 return success(); 405 } 406 static ParseResult 407 parseCustomDirectiveResults(OpAsmParser &parser, Type &operandType, 408 Type &optOperandType, 409 SmallVectorImpl<Type> &varOperandTypes) { 410 if (parser.parseColon()) 411 return failure(); 412 413 if (parser.parseType(operandType)) 414 return failure(); 415 if (succeeded(parser.parseOptionalComma())) { 416 if (parser.parseType(optOperandType)) 417 return failure(); 418 } 419 if (parser.parseArrow() || parser.parseLParen() || 420 parser.parseTypeList(varOperandTypes) || parser.parseRParen()) 421 return failure(); 422 return success(); 423 } 424 static ParseResult 425 parseCustomDirectiveWithTypeRefs(OpAsmParser &parser, Type operandType, 426 Type optOperandType, 427 const SmallVectorImpl<Type> &varOperandTypes) { 428 if (parser.parseKeyword("type_refs_capture")) 429 return failure(); 430 431 Type operandType2, optOperandType2; 432 SmallVector<Type, 1> varOperandTypes2; 433 if (parseCustomDirectiveResults(parser, operandType2, optOperandType2, 434 varOperandTypes2)) 435 return failure(); 436 437 if (operandType != operandType2 || optOperandType != optOperandType2 || 438 varOperandTypes != varOperandTypes2) 439 return failure(); 440 441 return success(); 442 } 443 static ParseResult parseCustomDirectiveOperandsAndTypes( 444 OpAsmParser &parser, OpAsmParser::OperandType &operand, 445 Optional<OpAsmParser::OperandType> &optOperand, 446 SmallVectorImpl<OpAsmParser::OperandType> &varOperands, Type &operandType, 447 Type &optOperandType, SmallVectorImpl<Type> &varOperandTypes) { 448 if (parseCustomDirectiveOperands(parser, operand, optOperand, varOperands) || 449 parseCustomDirectiveResults(parser, operandType, optOperandType, 450 varOperandTypes)) 451 return failure(); 452 return success(); 453 } 454 static ParseResult parseCustomDirectiveRegions( 455 OpAsmParser &parser, Region ®ion, 456 SmallVectorImpl<std::unique_ptr<Region>> &varRegions) { 457 if (parser.parseRegion(region)) 458 return failure(); 459 if (failed(parser.parseOptionalComma())) 460 return success(); 461 std::unique_ptr<Region> varRegion = std::make_unique<Region>(); 462 if (parser.parseRegion(*varRegion)) 463 return failure(); 464 varRegions.emplace_back(std::move(varRegion)); 465 return success(); 466 } 467 static ParseResult 468 parseCustomDirectiveSuccessors(OpAsmParser &parser, Block *&successor, 469 SmallVectorImpl<Block *> &varSuccessors) { 470 if (parser.parseSuccessor(successor)) 471 return failure(); 472 if (failed(parser.parseOptionalComma())) 473 return success(); 474 Block *varSuccessor; 475 if (parser.parseSuccessor(varSuccessor)) 476 return failure(); 477 varSuccessors.append(2, varSuccessor); 478 return success(); 479 } 480 static ParseResult parseCustomDirectiveAttributes(OpAsmParser &parser, 481 IntegerAttr &attr, 482 IntegerAttr &optAttr) { 483 if (parser.parseAttribute(attr)) 484 return failure(); 485 if (succeeded(parser.parseOptionalComma())) { 486 if (parser.parseAttribute(optAttr)) 487 return failure(); 488 } 489 return success(); 490 } 491 492 static ParseResult parseCustomDirectiveAttrDict(OpAsmParser &parser, 493 NamedAttrList &attrs) { 494 return parser.parseOptionalAttrDict(attrs); 495 } 496 static ParseResult parseCustomDirectiveOptionalOperandRef( 497 OpAsmParser &parser, Optional<OpAsmParser::OperandType> &optOperand) { 498 int64_t operandCount = 0; 499 if (parser.parseInteger(operandCount)) 500 return failure(); 501 bool expectedOptionalOperand = operandCount == 0; 502 return success(expectedOptionalOperand != optOperand.hasValue()); 503 } 504 505 //===----------------------------------------------------------------------===// 506 // Printing 507 508 static void printCustomDirectiveOperands(OpAsmPrinter &printer, Operation *, 509 Value operand, Value optOperand, 510 OperandRange varOperands) { 511 printer << operand; 512 if (optOperand) 513 printer << ", " << optOperand; 514 printer << " -> (" << varOperands << ")"; 515 } 516 static void printCustomDirectiveResults(OpAsmPrinter &printer, Operation *, 517 Type operandType, Type optOperandType, 518 TypeRange varOperandTypes) { 519 printer << " : " << operandType; 520 if (optOperandType) 521 printer << ", " << optOperandType; 522 printer << " -> (" << varOperandTypes << ")"; 523 } 524 static void printCustomDirectiveWithTypeRefs(OpAsmPrinter &printer, 525 Operation *op, Type operandType, 526 Type optOperandType, 527 TypeRange varOperandTypes) { 528 printer << " type_refs_capture "; 529 printCustomDirectiveResults(printer, op, operandType, optOperandType, 530 varOperandTypes); 531 } 532 static void printCustomDirectiveOperandsAndTypes( 533 OpAsmPrinter &printer, Operation *op, Value operand, Value optOperand, 534 OperandRange varOperands, Type operandType, Type optOperandType, 535 TypeRange varOperandTypes) { 536 printCustomDirectiveOperands(printer, op, operand, optOperand, varOperands); 537 printCustomDirectiveResults(printer, op, operandType, optOperandType, 538 varOperandTypes); 539 } 540 static void printCustomDirectiveRegions(OpAsmPrinter &printer, Operation *, 541 Region ®ion, 542 MutableArrayRef<Region> varRegions) { 543 printer.printRegion(region); 544 if (!varRegions.empty()) { 545 printer << ", "; 546 for (Region ®ion : varRegions) 547 printer.printRegion(region); 548 } 549 } 550 static void printCustomDirectiveSuccessors(OpAsmPrinter &printer, Operation *, 551 Block *successor, 552 SuccessorRange varSuccessors) { 553 printer << successor; 554 if (!varSuccessors.empty()) 555 printer << ", " << varSuccessors.front(); 556 } 557 static void printCustomDirectiveAttributes(OpAsmPrinter &printer, Operation *, 558 Attribute attribute, 559 Attribute optAttribute) { 560 printer << attribute; 561 if (optAttribute) 562 printer << ", " << optAttribute; 563 } 564 565 static void printCustomDirectiveAttrDict(OpAsmPrinter &printer, Operation *op, 566 DictionaryAttr attrs) { 567 printer.printOptionalAttrDict(attrs.getValue()); 568 } 569 570 static void printCustomDirectiveOptionalOperandRef(OpAsmPrinter &printer, 571 Operation *op, 572 Value optOperand) { 573 printer << (optOperand ? "1" : "0"); 574 } 575 576 //===----------------------------------------------------------------------===// 577 // Test IsolatedRegionOp - parse passthrough region arguments. 578 //===----------------------------------------------------------------------===// 579 580 ParseResult IsolatedRegionOp::parse(OpAsmParser &parser, 581 OperationState &result) { 582 OpAsmParser::OperandType argInfo; 583 Type argType = parser.getBuilder().getIndexType(); 584 585 // Parse the input operand. 586 if (parser.parseOperand(argInfo) || 587 parser.resolveOperand(argInfo, argType, result.operands)) 588 return failure(); 589 590 // Parse the body region, and reuse the operand info as the argument info. 591 Region *body = result.addRegion(); 592 return parser.parseRegion(*body, argInfo, argType, /*argLocations=*/{}, 593 /*enableNameShadowing=*/true); 594 } 595 596 void IsolatedRegionOp::print(OpAsmPrinter &p) { 597 p << "test.isolated_region "; 598 p.printOperand(getOperand()); 599 p.shadowRegionArgs(getRegion(), getOperand()); 600 p << ' '; 601 p.printRegion(getRegion(), /*printEntryBlockArgs=*/false); 602 } 603 604 //===----------------------------------------------------------------------===// 605 // Test SSACFGRegionOp 606 //===----------------------------------------------------------------------===// 607 608 RegionKind SSACFGRegionOp::getRegionKind(unsigned index) { 609 return RegionKind::SSACFG; 610 } 611 612 //===----------------------------------------------------------------------===// 613 // Test GraphRegionOp 614 //===----------------------------------------------------------------------===// 615 616 ParseResult GraphRegionOp::parse(OpAsmParser &parser, OperationState &result) { 617 // Parse the body region, and reuse the operand info as the argument info. 618 Region *body = result.addRegion(); 619 return parser.parseRegion(*body, /*arguments=*/{}, /*argTypes=*/{}); 620 } 621 622 void GraphRegionOp::print(OpAsmPrinter &p) { 623 p << "test.graph_region "; 624 p.printRegion(getRegion(), /*printEntryBlockArgs=*/false); 625 } 626 627 RegionKind GraphRegionOp::getRegionKind(unsigned index) { 628 return RegionKind::Graph; 629 } 630 631 //===----------------------------------------------------------------------===// 632 // Test AffineScopeOp 633 //===----------------------------------------------------------------------===// 634 635 ParseResult AffineScopeOp::parse(OpAsmParser &parser, OperationState &result) { 636 // Parse the body region, and reuse the operand info as the argument info. 637 Region *body = result.addRegion(); 638 return parser.parseRegion(*body, /*arguments=*/{}, /*argTypes=*/{}); 639 } 640 641 void AffineScopeOp::print(OpAsmPrinter &p) { 642 p << "test.affine_scope "; 643 p.printRegion(getRegion(), /*printEntryBlockArgs=*/false); 644 } 645 646 //===----------------------------------------------------------------------===// 647 // Test parser. 648 //===----------------------------------------------------------------------===// 649 650 ParseResult ParseIntegerLiteralOp::parse(OpAsmParser &parser, 651 OperationState &result) { 652 if (parser.parseOptionalColon()) 653 return success(); 654 uint64_t numResults; 655 if (parser.parseInteger(numResults)) 656 return failure(); 657 658 IndexType type = parser.getBuilder().getIndexType(); 659 for (unsigned i = 0; i < numResults; ++i) 660 result.addTypes(type); 661 return success(); 662 } 663 664 void ParseIntegerLiteralOp::print(OpAsmPrinter &p) { 665 if (unsigned numResults = getNumResults()) 666 p << " : " << numResults; 667 } 668 669 ParseResult ParseWrappedKeywordOp::parse(OpAsmParser &parser, 670 OperationState &result) { 671 StringRef keyword; 672 if (parser.parseKeyword(&keyword)) 673 return failure(); 674 result.addAttribute("keyword", parser.getBuilder().getStringAttr(keyword)); 675 return success(); 676 } 677 678 void ParseWrappedKeywordOp::print(OpAsmPrinter &p) { p << " " << getKeyword(); } 679 680 //===----------------------------------------------------------------------===// 681 // Test WrapRegionOp - wrapping op exercising `parseGenericOperation()`. 682 683 ParseResult WrappingRegionOp::parse(OpAsmParser &parser, 684 OperationState &result) { 685 if (parser.parseKeyword("wraps")) 686 return failure(); 687 688 // Parse the wrapped op in a region 689 Region &body = *result.addRegion(); 690 body.push_back(new Block); 691 Block &block = body.back(); 692 Operation *wrappedOp = parser.parseGenericOperation(&block, block.begin()); 693 if (!wrappedOp) 694 return failure(); 695 696 // Create a return terminator in the inner region, pass as operand to the 697 // terminator the returned values from the wrapped operation. 698 SmallVector<Value, 8> returnOperands(wrappedOp->getResults()); 699 OpBuilder builder(parser.getContext()); 700 builder.setInsertionPointToEnd(&block); 701 builder.create<TestReturnOp>(wrappedOp->getLoc(), returnOperands); 702 703 // Get the results type for the wrapping op from the terminator operands. 704 Operation &returnOp = body.back().back(); 705 result.types.append(returnOp.operand_type_begin(), 706 returnOp.operand_type_end()); 707 708 // Use the location of the wrapped op for the "test.wrapping_region" op. 709 result.location = wrappedOp->getLoc(); 710 711 return success(); 712 } 713 714 void WrappingRegionOp::print(OpAsmPrinter &p) { 715 p << " wraps "; 716 p.printGenericOp(&getRegion().front().front()); 717 } 718 719 //===----------------------------------------------------------------------===// 720 // Test PrettyPrintedRegionOp - exercising the following parser APIs 721 // parseGenericOperationAfterOpName 722 // parseCustomOperationName 723 //===----------------------------------------------------------------------===// 724 725 ParseResult PrettyPrintedRegionOp::parse(OpAsmParser &parser, 726 OperationState &result) { 727 728 SMLoc loc = parser.getCurrentLocation(); 729 Location currLocation = parser.getEncodedSourceLoc(loc); 730 731 // Parse the operands. 732 SmallVector<OpAsmParser::OperandType, 2> operands; 733 if (parser.parseOperandList(operands)) 734 return failure(); 735 736 // Check if we are parsing the pretty-printed version 737 // test.pretty_printed_region start <inner-op> end : <functional-type> 738 // Else fallback to parsing the "non pretty-printed" version. 739 if (!succeeded(parser.parseOptionalKeyword("start"))) 740 return parser.parseGenericOperationAfterOpName( 741 result, llvm::makeArrayRef(operands)); 742 743 FailureOr<OperationName> parseOpNameInfo = parser.parseCustomOperationName(); 744 if (failed(parseOpNameInfo)) 745 return failure(); 746 747 StringRef innerOpName = parseOpNameInfo->getStringRef(); 748 749 FunctionType opFntype; 750 Optional<Location> explicitLoc; 751 if (parser.parseKeyword("end") || parser.parseColon() || 752 parser.parseType(opFntype) || 753 parser.parseOptionalLocationSpecifier(explicitLoc)) 754 return failure(); 755 756 // If location of the op is explicitly provided, then use it; Else use 757 // the parser's current location. 758 Location opLoc = explicitLoc.getValueOr(currLocation); 759 760 // Derive the SSA-values for op's operands. 761 if (parser.resolveOperands(operands, opFntype.getInputs(), loc, 762 result.operands)) 763 return failure(); 764 765 // Add a region for op. 766 Region ®ion = *result.addRegion(); 767 768 // Create a basic-block inside op's region. 769 Block &block = region.emplaceBlock(); 770 771 // Create and insert an "inner-op" operation in the block. 772 // Just for testing purposes, we can assume that inner op is a binary op with 773 // result and operand types all same as the test-op's first operand. 774 Type innerOpType = opFntype.getInput(0); 775 Value lhs = block.addArgument(innerOpType, opLoc); 776 Value rhs = block.addArgument(innerOpType, opLoc); 777 778 OpBuilder builder(parser.getBuilder().getContext()); 779 builder.setInsertionPointToStart(&block); 780 781 OperationState innerOpState(opLoc, innerOpName); 782 innerOpState.operands.push_back(lhs); 783 innerOpState.operands.push_back(rhs); 784 innerOpState.addTypes(innerOpType); 785 786 Operation *innerOp = builder.createOperation(innerOpState); 787 788 // Insert a return statement in the block returning the inner-op's result. 789 builder.create<TestReturnOp>(innerOp->getLoc(), innerOp->getResults()); 790 791 // Populate the op operation-state with result-type and location. 792 result.addTypes(opFntype.getResults()); 793 result.location = innerOp->getLoc(); 794 795 return success(); 796 } 797 798 void PrettyPrintedRegionOp::print(OpAsmPrinter &p) { 799 p << ' '; 800 p.printOperands(getOperands()); 801 802 Operation &innerOp = getRegion().front().front(); 803 // Assuming that region has a single non-terminator inner-op, if the inner-op 804 // meets some criteria (which in this case is a simple one based on the name 805 // of inner-op), then we can print the entire region in a succinct way. 806 // Here we assume that the prototype of "special.op" can be trivially derived 807 // while parsing it back. 808 if (innerOp.getName().getStringRef().equals("special.op")) { 809 p << " start special.op end"; 810 } else { 811 p << " ("; 812 p.printRegion(getRegion()); 813 p << ")"; 814 } 815 816 p << " : "; 817 p.printFunctionalType(*this); 818 } 819 820 //===----------------------------------------------------------------------===// 821 // Test PolyForOp - parse list of region arguments. 822 //===----------------------------------------------------------------------===// 823 824 ParseResult PolyForOp::parse(OpAsmParser &parser, OperationState &result) { 825 SmallVector<OpAsmParser::OperandType, 4> ivsInfo; 826 // Parse list of region arguments without a delimiter. 827 if (parser.parseRegionArgumentList(ivsInfo)) 828 return failure(); 829 830 // Parse the body region. 831 Region *body = result.addRegion(); 832 auto &builder = parser.getBuilder(); 833 SmallVector<Type, 4> argTypes(ivsInfo.size(), builder.getIndexType()); 834 return parser.parseRegion(*body, ivsInfo, argTypes); 835 } 836 837 void PolyForOp::print(OpAsmPrinter &p) { p.printGenericOp(*this); } 838 839 void PolyForOp::getAsmBlockArgumentNames(Region ®ion, 840 OpAsmSetValueNameFn setNameFn) { 841 auto arrayAttr = getOperation()->getAttrOfType<ArrayAttr>("arg_names"); 842 if (!arrayAttr) 843 return; 844 auto args = getRegion().front().getArguments(); 845 auto e = std::min(arrayAttr.size(), args.size()); 846 for (unsigned i = 0; i < e; ++i) { 847 if (auto strAttr = arrayAttr[i].dyn_cast<StringAttr>()) 848 setNameFn(args[i], strAttr.getValue()); 849 } 850 } 851 852 //===----------------------------------------------------------------------===// 853 // Test removing op with inner ops. 854 //===----------------------------------------------------------------------===// 855 856 namespace { 857 struct TestRemoveOpWithInnerOps 858 : public OpRewritePattern<TestOpWithRegionPattern> { 859 using OpRewritePattern<TestOpWithRegionPattern>::OpRewritePattern; 860 861 void initialize() { setDebugName("TestRemoveOpWithInnerOps"); } 862 863 LogicalResult matchAndRewrite(TestOpWithRegionPattern op, 864 PatternRewriter &rewriter) const override { 865 rewriter.eraseOp(op); 866 return success(); 867 } 868 }; 869 } // namespace 870 871 void TestOpWithRegionPattern::getCanonicalizationPatterns( 872 RewritePatternSet &results, MLIRContext *context) { 873 results.add<TestRemoveOpWithInnerOps>(context); 874 } 875 876 OpFoldResult TestOpWithRegionFold::fold(ArrayRef<Attribute> operands) { 877 return getOperand(); 878 } 879 880 OpFoldResult TestOpConstant::fold(ArrayRef<Attribute> operands) { 881 return getValue(); 882 } 883 884 LogicalResult TestOpWithVariadicResultsAndFolder::fold( 885 ArrayRef<Attribute> operands, SmallVectorImpl<OpFoldResult> &results) { 886 for (Value input : this->getOperands()) { 887 results.push_back(input); 888 } 889 return success(); 890 } 891 892 OpFoldResult TestOpInPlaceFold::fold(ArrayRef<Attribute> operands) { 893 assert(operands.size() == 1); 894 if (operands.front()) { 895 (*this)->setAttr("attr", operands.front()); 896 return getResult(); 897 } 898 return {}; 899 } 900 901 OpFoldResult TestPassthroughFold::fold(ArrayRef<Attribute> operands) { 902 return getOperand(); 903 } 904 905 LogicalResult OpWithInferTypeInterfaceOp::inferReturnTypes( 906 MLIRContext *, Optional<Location> location, ValueRange operands, 907 DictionaryAttr attributes, RegionRange regions, 908 SmallVectorImpl<Type> &inferredReturnTypes) { 909 if (operands[0].getType() != operands[1].getType()) { 910 return emitOptionalError(location, "operand type mismatch ", 911 operands[0].getType(), " vs ", 912 operands[1].getType()); 913 } 914 inferredReturnTypes.assign({operands[0].getType()}); 915 return success(); 916 } 917 918 LogicalResult OpWithShapedTypeInferTypeInterfaceOp::inferReturnTypeComponents( 919 MLIRContext *context, Optional<Location> location, ValueShapeRange operands, 920 DictionaryAttr attributes, RegionRange regions, 921 SmallVectorImpl<ShapedTypeComponents> &inferredReturnShapes) { 922 // Create return type consisting of the last element of the first operand. 923 auto operandType = operands.front().getType(); 924 auto sval = operandType.dyn_cast<ShapedType>(); 925 if (!sval) { 926 return emitOptionalError(location, "only shaped type operands allowed"); 927 } 928 int64_t dim = 929 sval.hasRank() ? sval.getShape().front() : ShapedType::kDynamicSize; 930 auto type = IntegerType::get(context, 17); 931 inferredReturnShapes.push_back(ShapedTypeComponents({dim}, type)); 932 return success(); 933 } 934 935 LogicalResult OpWithShapedTypeInferTypeInterfaceOp::reifyReturnTypeShapes( 936 OpBuilder &builder, ValueRange operands, 937 llvm::SmallVectorImpl<Value> &shapes) { 938 shapes = SmallVector<Value, 1>{ 939 builder.createOrFold<tensor::DimOp>(getLoc(), operands.front(), 0)}; 940 return success(); 941 } 942 943 LogicalResult OpWithResultShapeInterfaceOp::reifyReturnTypeShapes( 944 OpBuilder &builder, ValueRange operands, 945 llvm::SmallVectorImpl<Value> &shapes) { 946 Location loc = getLoc(); 947 shapes.reserve(operands.size()); 948 for (Value operand : llvm::reverse(operands)) { 949 auto rank = operand.getType().cast<RankedTensorType>().getRank(); 950 auto currShape = llvm::to_vector<4>( 951 llvm::map_range(llvm::seq<int64_t>(0, rank), [&](int64_t dim) -> Value { 952 return builder.createOrFold<tensor::DimOp>(loc, operand, dim); 953 })); 954 shapes.push_back(builder.create<tensor::FromElementsOp>( 955 getLoc(), RankedTensorType::get({rank}, builder.getIndexType()), 956 currShape)); 957 } 958 return success(); 959 } 960 961 LogicalResult OpWithResultShapePerDimInterfaceOp::reifyResultShapes( 962 OpBuilder &builder, ReifiedRankedShapedTypeDims &shapes) { 963 Location loc = getLoc(); 964 shapes.reserve(getNumOperands()); 965 for (Value operand : llvm::reverse(getOperands())) { 966 auto currShape = llvm::to_vector<4>(llvm::map_range( 967 llvm::seq<int64_t>( 968 0, operand.getType().cast<RankedTensorType>().getRank()), 969 [&](int64_t dim) -> Value { 970 return builder.createOrFold<tensor::DimOp>(loc, operand, dim); 971 })); 972 shapes.emplace_back(std::move(currShape)); 973 } 974 return success(); 975 } 976 977 //===----------------------------------------------------------------------===// 978 // Test SideEffect interfaces 979 //===----------------------------------------------------------------------===// 980 981 namespace { 982 /// A test resource for side effects. 983 struct TestResource : public SideEffects::Resource::Base<TestResource> { 984 StringRef getName() final { return "<Test>"; } 985 }; 986 } // namespace 987 988 static void testSideEffectOpGetEffect( 989 Operation *op, 990 SmallVectorImpl<SideEffects::EffectInstance<TestEffects::Effect>> 991 &effects) { 992 auto effectsAttr = op->getAttrOfType<AffineMapAttr>("effect_parameter"); 993 if (!effectsAttr) 994 return; 995 996 effects.emplace_back(TestEffects::Concrete::get(), effectsAttr); 997 } 998 999 void SideEffectOp::getEffects( 1000 SmallVectorImpl<MemoryEffects::EffectInstance> &effects) { 1001 // Check for an effects attribute on the op instance. 1002 ArrayAttr effectsAttr = (*this)->getAttrOfType<ArrayAttr>("effects"); 1003 if (!effectsAttr) 1004 return; 1005 1006 // If there is one, it is an array of dictionary attributes that hold 1007 // information on the effects of this operation. 1008 for (Attribute element : effectsAttr) { 1009 DictionaryAttr effectElement = element.cast<DictionaryAttr>(); 1010 1011 // Get the specific memory effect. 1012 MemoryEffects::Effect *effect = 1013 StringSwitch<MemoryEffects::Effect *>( 1014 effectElement.get("effect").cast<StringAttr>().getValue()) 1015 .Case("allocate", MemoryEffects::Allocate::get()) 1016 .Case("free", MemoryEffects::Free::get()) 1017 .Case("read", MemoryEffects::Read::get()) 1018 .Case("write", MemoryEffects::Write::get()); 1019 1020 // Check for a non-default resource to use. 1021 SideEffects::Resource *resource = SideEffects::DefaultResource::get(); 1022 if (effectElement.get("test_resource")) 1023 resource = TestResource::get(); 1024 1025 // Check for a result to affect. 1026 if (effectElement.get("on_result")) 1027 effects.emplace_back(effect, getResult(), resource); 1028 else if (Attribute ref = effectElement.get("on_reference")) 1029 effects.emplace_back(effect, ref.cast<SymbolRefAttr>(), resource); 1030 else 1031 effects.emplace_back(effect, resource); 1032 } 1033 } 1034 1035 void SideEffectOp::getEffects( 1036 SmallVectorImpl<TestEffects::EffectInstance> &effects) { 1037 testSideEffectOpGetEffect(getOperation(), effects); 1038 } 1039 1040 //===----------------------------------------------------------------------===// 1041 // StringAttrPrettyNameOp 1042 //===----------------------------------------------------------------------===// 1043 1044 // This op has fancy handling of its SSA result name. 1045 ParseResult StringAttrPrettyNameOp::parse(OpAsmParser &parser, 1046 OperationState &result) { 1047 // Add the result types. 1048 for (size_t i = 0, e = parser.getNumResults(); i != e; ++i) 1049 result.addTypes(parser.getBuilder().getIntegerType(32)); 1050 1051 if (parser.parseOptionalAttrDictWithKeyword(result.attributes)) 1052 return failure(); 1053 1054 // If the attribute dictionary contains no 'names' attribute, infer it from 1055 // the SSA name (if specified). 1056 bool hadNames = llvm::any_of(result.attributes, [](NamedAttribute attr) { 1057 return attr.getName() == "names"; 1058 }); 1059 1060 // If there was no name specified, check to see if there was a useful name 1061 // specified in the asm file. 1062 if (hadNames || parser.getNumResults() == 0) 1063 return success(); 1064 1065 SmallVector<StringRef, 4> names; 1066 auto *context = result.getContext(); 1067 1068 for (size_t i = 0, e = parser.getNumResults(); i != e; ++i) { 1069 auto resultName = parser.getResultName(i); 1070 StringRef nameStr; 1071 if (!resultName.first.empty() && !isdigit(resultName.first[0])) 1072 nameStr = resultName.first; 1073 1074 names.push_back(nameStr); 1075 } 1076 1077 auto namesAttr = parser.getBuilder().getStrArrayAttr(names); 1078 result.attributes.push_back({StringAttr::get(context, "names"), namesAttr}); 1079 return success(); 1080 } 1081 1082 void StringAttrPrettyNameOp::print(OpAsmPrinter &p) { 1083 // Note that we only need to print the "name" attribute if the asmprinter 1084 // result name disagrees with it. This can happen in strange cases, e.g. 1085 // when there are conflicts. 1086 bool namesDisagree = getNames().size() != getNumResults(); 1087 1088 SmallString<32> resultNameStr; 1089 for (size_t i = 0, e = getNumResults(); i != e && !namesDisagree; ++i) { 1090 resultNameStr.clear(); 1091 llvm::raw_svector_ostream tmpStream(resultNameStr); 1092 p.printOperand(getResult(i), tmpStream); 1093 1094 auto expectedName = getNames()[i].dyn_cast<StringAttr>(); 1095 if (!expectedName || 1096 tmpStream.str().drop_front() != expectedName.getValue()) { 1097 namesDisagree = true; 1098 } 1099 } 1100 1101 if (namesDisagree) 1102 p.printOptionalAttrDictWithKeyword((*this)->getAttrs()); 1103 else 1104 p.printOptionalAttrDictWithKeyword((*this)->getAttrs(), {"names"}); 1105 } 1106 1107 // We set the SSA name in the asm syntax to the contents of the name 1108 // attribute. 1109 void StringAttrPrettyNameOp::getAsmResultNames( 1110 function_ref<void(Value, StringRef)> setNameFn) { 1111 1112 auto value = getNames(); 1113 for (size_t i = 0, e = value.size(); i != e; ++i) 1114 if (auto str = value[i].dyn_cast<StringAttr>()) 1115 if (!str.getValue().empty()) 1116 setNameFn(getResult(i), str.getValue()); 1117 } 1118 1119 //===----------------------------------------------------------------------===// 1120 // ResultTypeWithTraitOp 1121 //===----------------------------------------------------------------------===// 1122 1123 LogicalResult ResultTypeWithTraitOp::verify() { 1124 if ((*this)->getResultTypes()[0].hasTrait<TypeTrait::TestTypeTrait>()) 1125 return success(); 1126 return emitError("result type should have trait 'TestTypeTrait'"); 1127 } 1128 1129 //===----------------------------------------------------------------------===// 1130 // AttrWithTraitOp 1131 //===----------------------------------------------------------------------===// 1132 1133 LogicalResult AttrWithTraitOp::verify() { 1134 if (getAttr().hasTrait<AttributeTrait::TestAttrTrait>()) 1135 return success(); 1136 return emitError("'attr' attribute should have trait 'TestAttrTrait'"); 1137 } 1138 1139 //===----------------------------------------------------------------------===// 1140 // RegionIfOp 1141 //===----------------------------------------------------------------------===// 1142 1143 void RegionIfOp::print(OpAsmPrinter &p) { 1144 p << " "; 1145 p.printOperands(getOperands()); 1146 p << ": " << getOperandTypes(); 1147 p.printArrowTypeList(getResultTypes()); 1148 p << " then "; 1149 p.printRegion(getThenRegion(), 1150 /*printEntryBlockArgs=*/true, 1151 /*printBlockTerminators=*/true); 1152 p << " else "; 1153 p.printRegion(getElseRegion(), 1154 /*printEntryBlockArgs=*/true, 1155 /*printBlockTerminators=*/true); 1156 p << " join "; 1157 p.printRegion(getJoinRegion(), 1158 /*printEntryBlockArgs=*/true, 1159 /*printBlockTerminators=*/true); 1160 } 1161 1162 ParseResult RegionIfOp::parse(OpAsmParser &parser, OperationState &result) { 1163 SmallVector<OpAsmParser::OperandType, 2> operandInfos; 1164 SmallVector<Type, 2> operandTypes; 1165 1166 result.regions.reserve(3); 1167 Region *thenRegion = result.addRegion(); 1168 Region *elseRegion = result.addRegion(); 1169 Region *joinRegion = result.addRegion(); 1170 1171 // Parse operand, type and arrow type lists. 1172 if (parser.parseOperandList(operandInfos) || 1173 parser.parseColonTypeList(operandTypes) || 1174 parser.parseArrowTypeList(result.types)) 1175 return failure(); 1176 1177 // Parse all attached regions. 1178 if (parser.parseKeyword("then") || parser.parseRegion(*thenRegion, {}, {}) || 1179 parser.parseKeyword("else") || parser.parseRegion(*elseRegion, {}, {}) || 1180 parser.parseKeyword("join") || parser.parseRegion(*joinRegion, {}, {})) 1181 return failure(); 1182 1183 return parser.resolveOperands(operandInfos, operandTypes, 1184 parser.getCurrentLocation(), result.operands); 1185 } 1186 1187 OperandRange RegionIfOp::getSuccessorEntryOperands(unsigned index) { 1188 assert(index < 2 && "invalid region index"); 1189 return getOperands(); 1190 } 1191 1192 void RegionIfOp::getSuccessorRegions( 1193 Optional<unsigned> index, ArrayRef<Attribute> operands, 1194 SmallVectorImpl<RegionSuccessor> ®ions) { 1195 // We always branch to the join region. 1196 if (index.hasValue()) { 1197 if (index.getValue() < 2) 1198 regions.push_back(RegionSuccessor(&getJoinRegion(), getJoinArgs())); 1199 else 1200 regions.push_back(RegionSuccessor(getResults())); 1201 return; 1202 } 1203 1204 // The then and else regions are the entry regions of this op. 1205 regions.push_back(RegionSuccessor(&getThenRegion(), getThenArgs())); 1206 regions.push_back(RegionSuccessor(&getElseRegion(), getElseArgs())); 1207 } 1208 1209 void RegionIfOp::getRegionInvocationBounds( 1210 ArrayRef<Attribute> operands, 1211 SmallVectorImpl<InvocationBounds> &invocationBounds) { 1212 // Each region is invoked at most once. 1213 invocationBounds.assign(/*NumElts=*/3, /*Elt=*/{0, 1}); 1214 } 1215 1216 //===----------------------------------------------------------------------===// 1217 // AnyCondOp 1218 //===----------------------------------------------------------------------===// 1219 1220 void AnyCondOp::getSuccessorRegions(Optional<unsigned> index, 1221 ArrayRef<Attribute> operands, 1222 SmallVectorImpl<RegionSuccessor> ®ions) { 1223 // The parent op branches into the only region, and the region branches back 1224 // to the parent op. 1225 if (index) 1226 regions.emplace_back(&getRegion()); 1227 else 1228 regions.emplace_back(getResults()); 1229 } 1230 1231 void AnyCondOp::getRegionInvocationBounds( 1232 ArrayRef<Attribute> operands, 1233 SmallVectorImpl<InvocationBounds> &invocationBounds) { 1234 invocationBounds.emplace_back(1, 1); 1235 } 1236 1237 //===----------------------------------------------------------------------===// 1238 // SingleNoTerminatorCustomAsmOp 1239 //===----------------------------------------------------------------------===// 1240 1241 ParseResult SingleNoTerminatorCustomAsmOp::parse(OpAsmParser &parser, 1242 OperationState &state) { 1243 Region *body = state.addRegion(); 1244 if (parser.parseRegion(*body, /*arguments=*/{}, /*argTypes=*/{})) 1245 return failure(); 1246 return success(); 1247 } 1248 1249 void SingleNoTerminatorCustomAsmOp::print(OpAsmPrinter &printer) { 1250 printer.printRegion( 1251 getRegion(), /*printEntryBlockArgs=*/false, 1252 // This op has a single block without terminators. But explicitly mark 1253 // as not printing block terminators for testing. 1254 /*printBlockTerminators=*/false); 1255 } 1256 1257 #include "TestOpEnums.cpp.inc" 1258 #include "TestOpInterfaces.cpp.inc" 1259 #include "TestOpStructs.cpp.inc" 1260 #include "TestTypeInterfaces.cpp.inc" 1261 1262 #define GET_OP_CLASSES 1263 #include "TestOps.cpp.inc" 1264