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 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
|
// RUN: mlir-opt -split-input-file -convert-pdl-to-pdl-interp %s | FileCheck %s
// CHECK-LABEL: module @empty_module
module @empty_module {
// CHECK: func @matcher(%{{.*}}: !pdl.operation)
// CHECK-NEXT: pdl_interp.finalize
}
// -----
// CHECK-LABEL: module @simple
module @simple {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: pdl_interp.check_operation_name of %[[ROOT]] is "foo.op" -> ^bb2, ^bb1
// CHECK: ^bb1:
// CHECK: pdl_interp.finalize
// CHECK: ^bb2:
// CHECK: pdl_interp.check_operand_count of %[[ROOT]] is 0 -> ^bb3, ^bb1
// CHECK: ^bb3:
// CHECK: pdl_interp.check_result_count of %[[ROOT]] is 0 -> ^bb4, ^bb1
// CHECK: ^bb4:
// CHECK: pdl_interp.record_match @rewriters::@pdl_generated_rewriter
// CHECK-SAME: benefit(1), loc([%[[ROOT]]]), root("foo.op") -> ^bb1
// CHECK: module @rewriters
// CHECK: func @pdl_generated_rewriter(%[[REWRITE_ROOT:.*]]: !pdl.operation)
// CHECK: pdl_interp.apply_rewrite "rewriter"(%[[REWRITE_ROOT]]
// CHECK: pdl_interp.finalize
pdl.pattern : benefit(1) {
%root = operation "foo.op"
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @attributes
module @attributes {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// Check the value of "attr".
// CHECK-DAG: %[[ATTR:.*]] = pdl_interp.get_attribute "attr" of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[ATTR]] : !pdl.attribute
// CHECK-DAG: pdl_interp.check_attribute %[[ATTR]] is 10 : i64
// Check the type of "attr1".
// CHECK-DAG: %[[ATTR1:.*]] = pdl_interp.get_attribute "attr1" of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[ATTR1]] : !pdl.attribute
// CHECK-DAG: %[[ATTR1_TYPE:.*]] = pdl_interp.get_attribute_type of %[[ATTR1]]
// CHECK-DAG: pdl_interp.check_type %[[ATTR1_TYPE]] is i64
pdl.pattern : benefit(1) {
%type = type : i64
%attr = attribute = 10 : i64
%attr1 = attribute : %type
%root = operation {"attr" = %attr, "attr1" = %attr1}
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @constraints
module @constraints {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: %[[INPUT:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: %[[INPUT1:.*]] = pdl_interp.get_operand 1 of %[[ROOT]]
// CHECK-DAG: %[[RESULT:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK: pdl_interp.apply_constraint "multi_constraint"(%[[INPUT]], %[[INPUT1]], %[[RESULT]]
pdl.pattern : benefit(1) {
%input0 = operand
%input1 = operand
%root = operation(%input0, %input1 : !pdl.value, !pdl.value)
%result0 = result 0 of %root
pdl.apply_native_constraint "multi_constraint"(%input0, %input1, %result0 : !pdl.value, !pdl.value, !pdl.value)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @inputs
module @inputs {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT]] is 2
// Get the input and check the type.
// CHECK-DAG: %[[INPUT:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT]] : !pdl.value
// CHECK-DAG: %[[INPUT_TYPE:.*]] = pdl_interp.get_value_type of %[[INPUT]]
// CHECK-DAG: pdl_interp.check_type %[[INPUT_TYPE]] is i64
// Get the second operand and check that it is equal to the first.
// CHECK-DAG: %[[INPUT1:.*]] = pdl_interp.get_operand 1 of %[[ROOT]]
// CHECK-DAG: pdl_interp.are_equal %[[INPUT]], %[[INPUT1]] : !pdl.value
pdl.pattern : benefit(1) {
%type = type : i64
%input = operand : %type
%root = operation(%input, %input : !pdl.value, !pdl.value)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @variadic_inputs
module @variadic_inputs {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT]] is at_least 2
// The first operand has a known index.
// CHECK-DAG: %[[INPUT:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT]] : !pdl.value
// The second operand is a group of unknown size, with a type constraint.
// CHECK-DAG: %[[VAR_INPUTS:.*]] = pdl_interp.get_operands 1 of %[[ROOT]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[VAR_INPUTS]] : !pdl.range<value>
// CHECK-DAG: %[[INPUT_TYPE:.*]] = pdl_interp.get_value_type of %[[VAR_INPUTS]] : !pdl.range<type>
// CHECK-DAG: pdl_interp.check_types %[[INPUT_TYPE]] are [i64]
// The third operand is at an unknown offset due to operand 2, but is expected
// to be of size 1.
// CHECK-DAG: %[[INPUT2:.*]] = pdl_interp.get_operands 2 of %[[ROOT]] : !pdl.value
// CHECK-DAG: pdl_interp.are_equal %[[INPUT]], %[[INPUT2]] : !pdl.value
pdl.pattern : benefit(1) {
%types = types : [i64]
%inputs = operands : %types
%input = operand
%root = operation(%input, %inputs, %input : !pdl.value, !pdl.range<value>, !pdl.value)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @single_operand_range
module @single_operand_range {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// Check that the operand range is treated as all of the operands of the
// operation.
// CHECK-DAG: %[[RESULTS:.*]] = pdl_interp.get_operands of %[[ROOT]]
// CHECK-DAG: %[[RESULT_TYPES:.*]] = pdl_interp.get_value_type of %[[RESULTS]] : !pdl.range<type>
// CHECK-DAG: pdl_interp.check_types %[[RESULT_TYPES]] are [i64]
// The operand count is unknown, so there is no need to check for it.
// CHECK-NOT: pdl_interp.check_operand_count
pdl.pattern : benefit(1) {
%types = types : [i64]
%operands = operands : %types
%root = operation(%operands : !pdl.range<value>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @results
module @results {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: pdl_interp.check_result_count of %[[ROOT]] is 2
// Get the result and check the type.
// CHECK-DAG: %[[RESULT:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[RESULT]] : !pdl.value
// CHECK-DAG: %[[RESULT_TYPE:.*]] = pdl_interp.get_value_type of %[[RESULT]]
// CHECK-DAG: pdl_interp.check_type %[[RESULT_TYPE]] is i32
// The second result doesn't have any constraints, so we don't generate an
// access for it.
// CHECK-NOT: pdl_interp.get_result 1 of %[[ROOT]]
pdl.pattern : benefit(1) {
%type1 = type : i32
%type2 = type
%root = operation -> (%type1, %type2 : !pdl.type, !pdl.type)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @variadic_results
module @variadic_results {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: pdl_interp.check_result_count of %[[ROOT]] is at_least 2
// The first result has a known index.
// CHECK-DAG: %[[RESULT:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[RESULT]] : !pdl.value
// The second result is a group of unknown size, with a type constraint.
// CHECK-DAG: %[[VAR_RESULTS:.*]] = pdl_interp.get_results 1 of %[[ROOT]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[VAR_RESULTS]] : !pdl.range<value>
// CHECK-DAG: %[[RESULT_TYPE:.*]] = pdl_interp.get_value_type of %[[VAR_RESULTS]] : !pdl.range<type>
// CHECK-DAG: pdl_interp.check_types %[[RESULT_TYPE]] are [i64]
// The third result is at an unknown offset due to result 1, but is expected
// to be of size 1.
// CHECK-DAG: %[[RESULT2:.*]] = pdl_interp.get_results 2 of %[[ROOT]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[RESULT2]] : !pdl.value
pdl.pattern : benefit(1) {
%types = types : [i64]
%type = type
%root = operation -> (%type, %types, %type : !pdl.type, !pdl.range<type>, !pdl.type)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @single_result_range
module @single_result_range {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// Check that the result range is treated as all of the results of the
// operation.
// CHECK-DAG: %[[RESULTS:.*]] = pdl_interp.get_results of %[[ROOT]]
// CHECK-DAG: %[[RESULT_TYPES:.*]] = pdl_interp.get_value_type of %[[RESULTS]] : !pdl.range<type>
// CHECK-DAG: pdl_interp.check_types %[[RESULT_TYPES]] are [i64]
// The result count is unknown, so there is no need to check for it.
// CHECK-NOT: pdl_interp.check_result_count
pdl.pattern : benefit(1) {
%types = types : [i64]
%root = operation -> (%types : !pdl.range<type>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @results_as_operands
module @results_as_operands {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// Get the first result and check it matches the first operand.
// CHECK-DAG: %[[OPERAND_0:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: %[[DEF_OP_0:.*]] = pdl_interp.get_defining_op of %[[OPERAND_0]]
// CHECK-DAG: %[[RESULT_0:.*]] = pdl_interp.get_result 0 of %[[DEF_OP_0]]
// CHECK-DAG: pdl_interp.are_equal %[[RESULT_0]], %[[OPERAND_0]]
// Get the second result and check it matches the second operand.
// CHECK-DAG: %[[OPERAND_1:.*]] = pdl_interp.get_operand 1 of %[[ROOT]]
// CHECK-DAG: %[[DEF_OP_1:.*]] = pdl_interp.get_defining_op of %[[OPERAND_1]]
// CHECK-DAG: %[[RESULT_1:.*]] = pdl_interp.get_result 1 of %[[DEF_OP_1]]
// CHECK-DAG: pdl_interp.are_equal %[[RESULT_1]], %[[OPERAND_1]]
// Check that the parent operation of both results is the same.
// CHECK-DAG: pdl_interp.are_equal %[[DEF_OP_0]], %[[DEF_OP_1]]
pdl.pattern : benefit(1) {
%type1 = type : i32
%type2 = type
%inputOp = operation -> (%type1, %type2 : !pdl.type, !pdl.type)
%result1 = result 0 of %inputOp
%result2 = result 1 of %inputOp
%root = operation(%result1, %result2 : !pdl.value, !pdl.value)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @single_result_range_as_operands
module @single_result_range_as_operands {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: %[[OPERANDS:.*]] = pdl_interp.get_operands of %[[ROOT]] : !pdl.range<value>
// CHECK-DAG: %[[OP:.*]] = pdl_interp.get_defining_op of %[[OPERANDS]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[OP]]
// CHECK-DAG: %[[RESULTS:.*]] = pdl_interp.get_results of %[[OP]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.are_equal %[[RESULTS]], %[[OPERANDS]] : !pdl.range<value>
pdl.pattern : benefit(1) {
%types = types
%inputOp = operation -> (%types : !pdl.range<type>)
%results = results of %inputOp
%root = operation(%results : !pdl.range<value>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @switch_single_result_type
module @switch_single_result_type {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: %[[RESULT:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK: %[[RESULT_TYPE:.*]] = pdl_interp.get_value_type of %[[RESULT]]
// CHECK: pdl_interp.switch_type %[[RESULT_TYPE]] to [i32, i64]
pdl.pattern : benefit(1) {
%type = type : i32
%root = operation -> (%type : !pdl.type)
rewrite %root with "rewriter"
}
pdl.pattern : benefit(1) {
%type = type : i64
%root = operation -> (%type : !pdl.type)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @switch_result_types
module @switch_result_types {
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: %[[RESULTS:.*]] = pdl_interp.get_results of %[[ROOT]]
// CHECK: %[[RESULT_TYPES:.*]] = pdl_interp.get_value_type of %[[RESULTS]]
// CHECK: pdl_interp.switch_types %[[RESULT_TYPES]] to {{\[\[}}i32], [i64, i32]]
pdl.pattern : benefit(1) {
%types = types : [i32]
%root = operation -> (%types : !pdl.range<type>)
rewrite %root with "rewriter"
}
pdl.pattern : benefit(1) {
%types = types : [i64, i32]
%root = operation -> (%types : !pdl.range<type>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @switch_operand_count_at_least
module @switch_operand_count_at_least {
// Check that when there are multiple "at_least" checks, the failure branch
// goes to the next one in increasing order.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: pdl_interp.check_operand_count of %[[ROOT]] is at_least 1 -> ^[[PATTERN_1_NEXT_BLOCK:.*]],
// CHECK: ^bb2:
// CHECK-NEXT: pdl_interp.check_operand_count of %[[ROOT]] is at_least 2
// CHECK: ^[[PATTERN_1_NEXT_BLOCK]]:
// CHECK-NEXT: {{.*}} -> ^{{.*}}, ^bb2
pdl.pattern : benefit(1) {
%operand = operand
%operands = operands
%root = operation(%operand, %operands : !pdl.value, !pdl.range<value>)
rewrite %root with "rewriter"
}
pdl.pattern : benefit(1) {
%operand = operand
%operand2 = operand
%operands = operands
%root = operation(%operand, %operand2, %operands : !pdl.value, !pdl.value, !pdl.range<value>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @switch_result_count_at_least
module @switch_result_count_at_least {
// Check that when there are multiple "at_least" checks, the failure branch
// goes to the next one in increasing order.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: pdl_interp.check_result_count of %[[ROOT]] is at_least 1 -> ^[[PATTERN_1_NEXT_BLOCK:.*]],
// CHECK: ^[[PATTERN_2_BLOCK:[a-zA-Z_0-9]*]]:
// CHECK: pdl_interp.check_result_count of %[[ROOT]] is at_least 2
// CHECK: ^[[PATTERN_1_NEXT_BLOCK]]:
// CHECK-NEXT: pdl_interp.get_result
// CHECK-NEXT: pdl_interp.is_not_null {{.*}} -> ^{{.*}}, ^[[PATTERN_2_BLOCK]]
pdl.pattern : benefit(1) {
%type = type
%types = types
%root = operation -> (%type, %types : !pdl.type, !pdl.range<type>)
rewrite %root with "rewriter"
}
pdl.pattern : benefit(1) {
%type = type
%type2 = type
%types = types
%root = operation -> (%type, %type2, %types : !pdl.type, !pdl.type, !pdl.range<type>)
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @predicate_ordering
module @predicate_ordering {
// Check that the result is checked for null first, before applying the
// constraint. The null check is prevalent in both patterns, so should be
// prioritized first.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK: %[[RESULT:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK-NEXT: pdl_interp.is_not_null %[[RESULT]]
// CHECK: %[[RESULT_TYPE:.*]] = pdl_interp.get_value_type of %[[RESULT]]
// CHECK: pdl_interp.apply_constraint "typeConstraint"(%[[RESULT_TYPE]]
pdl.pattern : benefit(1) {
%resultType = type
pdl.apply_native_constraint "typeConstraint"(%resultType : !pdl.type)
%root = operation -> (%resultType : !pdl.type)
rewrite %root with "rewriter"
}
pdl.pattern : benefit(1) {
%resultType = type
%apply = operation -> (%resultType : !pdl.type)
rewrite %apply with "rewriter"
}
}
// -----
// CHECK-LABEL: module @multi_root
module @multi_root {
// Check the lowering of a simple two-root pattern.
// This checks that we correctly generate the pdl_interp.choose_op operation
// and tie the break between %root1 and %root2 in favor of %root1.
// CHECK: func @matcher(%[[ROOT1:.*]]: !pdl.operation)
// CHECK-DAG: %[[VAL1:.*]] = pdl_interp.get_operand 0 of %[[ROOT1]]
// CHECK-DAG: %[[OP1:.*]] = pdl_interp.get_defining_op of %[[VAL1]]
// CHECK-DAG: %[[OPS:.*]] = pdl_interp.get_users of %[[VAL1]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[ROOT2:.*]] : !pdl.operation in %[[OPS]]
// CHECK-DAG: %[[OPERANDS:.*]] = pdl_interp.get_operand 0 of %[[ROOT2]]
// CHECK-DAG: pdl_interp.are_equal %[[OPERANDS]], %[[VAL1]] : !pdl.value -> ^{{.*}}, ^[[CONTINUE:.*]]
// CHECK-DAG: pdl_interp.continue
// CHECK-DAG: %[[VAL2:.*]] = pdl_interp.get_operand 1 of %[[ROOT2]]
// CHECK-DAG: %[[OP2:.*]] = pdl_interp.get_defining_op of %[[VAL2]]
// CHECK-DAG: pdl_interp.is_not_null %[[OP1]] : !pdl.operation -> ^{{.*}}, ^[[CONTINUE]]
// CHECK-DAG: pdl_interp.is_not_null %[[OP2]] : !pdl.operation
// CHECK-DAG: pdl_interp.is_not_null %[[VAL1]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[VAL2]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[ROOT2]] : !pdl.operation
pdl.pattern @rewrite_multi_root : benefit(1) {
%input1 = operand
%input2 = operand
%type = type
%op1 = operation(%input1 : !pdl.value) -> (%type : !pdl.type)
%val1 = result 0 of %op1
%root1 = operation(%val1 : !pdl.value)
%op2 = operation(%input2 : !pdl.value) -> (%type : !pdl.type)
%val2 = result 0 of %op2
%root2 = operation(%val1, %val2 : !pdl.value, !pdl.value)
rewrite %root1 with "rewriter"(%root2 : !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @overlapping_roots
module @overlapping_roots {
// Check the lowering of a degenerate two-root pattern, where one root
// is in the subtree rooted at another.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: %[[VAL:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: %[[OP:.*]] = pdl_interp.get_defining_op of %[[VAL]]
// CHECK-DAG: %[[INPUT1:.*]] = pdl_interp.get_operand 0 of %[[OP]]
// CHECK-DAG: %[[INPUT2:.*]] = pdl_interp.get_operand 1 of %[[OP]]
// CHECK-DAG: pdl_interp.is_not_null %[[VAL]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[OP]] : !pdl.operation
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT1]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT2]] : !pdl.value
pdl.pattern @rewrite_overlapping_roots : benefit(1) {
%input1 = operand
%input2 = operand
%type = type
%op = operation(%input1, %input2 : !pdl.value, !pdl.value) -> (%type : !pdl.type)
%val = result 0 of %op
%root = operation(%val : !pdl.value)
rewrite with "rewriter"(%root : !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @force_overlapped_root
module @force_overlapped_root {
// Check the lowering of a degenerate two-root pattern, where one root
// is in the subtree rooted at another, and we are forced to use this
// root as the root of the search tree.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: %[[VAL:.*]] = pdl_interp.get_result 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT]] is 2
// CHECK-DAG: pdl_interp.check_result_count of %[[ROOT]] is 1
// CHECK-DAG: %[[INPUT2:.*]] = pdl_interp.get_operand 1 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT2]] : !pdl.value
// CHECK-DAG: %[[INPUT1:.*]] = pdl_interp.get_operand 0 of %[[ROOT]]
// CHECK-DAG: pdl_interp.is_not_null %[[INPUT1]] : !pdl.value
// CHECK-DAG: %[[OPS:.*]] = pdl_interp.get_users of %[[VAL]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[OP:.*]] : !pdl.operation in %[[OPS]]
// CHECK-DAG: pdl_interp.is_not_null %[[OP]] : !pdl.operation
// CHECK-DAG: pdl_interp.check_operand_count of %[[OP]] is 1
pdl.pattern @rewrite_forced_overlapped_root : benefit(1) {
%input1 = operand
%input2 = operand
%type = type
%root = operation(%input1, %input2 : !pdl.value, !pdl.value) -> (%type : !pdl.type)
%val = result 0 of %root
%op = operation(%val : !pdl.value)
rewrite %root with "rewriter"(%op : !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @variadic_results_all
module @variadic_results_all {
// Check the correct lowering when using all results of an operation
// and passing it them as operands to another operation.
// CHECK: func @matcher(%[[ROOT:.*]]: !pdl.operation)
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT]] is 0
// CHECK-DAG: %[[VALS:.*]] = pdl_interp.get_results of %[[ROOT]] : !pdl.range<value>
// CHECK-DAG: %[[VAL0:.*]] = pdl_interp.extract 0 of %[[VALS]]
// CHECK-DAG: %[[OPS:.*]] = pdl_interp.get_users of %[[VAL0]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[OP:.*]] : !pdl.operation in %[[OPS]]
// CHECK-DAG: %[[OPERANDS:.*]] = pdl_interp.get_operands of %[[OP]]
// CHECK-DAG pdl_interp.are_equal %[[VALS]], %[[OPERANDS]] -> ^{{.*}}, ^[[CONTINUE:.*]]
// CHECK-DAG: pdl_interp.is_not_null %[[OP]]
// CHECK-DAG: pdl_interp.check_result_count of %[[OP]] is 0
pdl.pattern @variadic_results_all : benefit(1) {
%types = types
%root = operation -> (%types : !pdl.range<type>)
%vals = results of %root
%op = operation(%vals : !pdl.range<value>)
rewrite %root with "rewriter"(%op : !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @variadic_results_at
module @variadic_results_at {
// Check the correct lowering when using selected results of an operation
// and passing it them as an operand to another operation.
// CHECK: func @matcher(%[[ROOT1:.*]]: !pdl.operation)
// CHECK-DAG: %[[VALS:.*]] = pdl_interp.get_operands 0 of %[[ROOT1]] : !pdl.range<value>
// CHECK-DAG: %[[OP:.*]] = pdl_interp.get_defining_op of %[[VALS]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[OP]] : !pdl.operation
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT1]] is at_least 1
// CHECK-DAG: pdl_interp.check_result_count of %[[ROOT1]] is 0
// CHECK-DAG: %[[VAL:.*]] = pdl_interp.get_operands 1 of %[[ROOT1]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[VAL]]
// CHECK-DAG: pdl_interp.is_not_null %[[VALS]]
// CHECK-DAG: %[[VAL0:.*]] = pdl_interp.extract 0 of %[[VALS]]
// CHECK-DAG: %[[ROOTS2:.*]] = pdl_interp.get_users of %[[VAL0]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[ROOT2:.*]] : !pdl.operation in %[[ROOTS2]] {
// CHECK-DAG: %[[OPERANDS:.*]] = pdl_interp.get_operands 1 of %[[ROOT2]]
// CHECK-DAG: pdl_interp.are_equal %[[OPERANDS]], %[[VALS]] : !pdl.range<value> -> ^{{.*}}, ^[[CONTINUE:.*]]
// CHECK-DAG: pdl_interp.is_not_null %[[ROOT2]]
// CHECK-DAG: pdl_interp.check_operand_count of %[[ROOT2]] is at_least 1
// CHECK-DAG: pdl_interp.check_result_count of %[[ROOT2]] is 0
// CHECK-DAG: pdl_interp.check_operand_count of %[[OP]] is 0
// CHECK-DAG: pdl_interp.check_result_count of %[[OP]] is at_least 1
pdl.pattern @variadic_results_at : benefit(1) {
%type = type
%types = types
%val = operand
%op = operation -> (%types, %type : !pdl.range<type>, !pdl.type)
%vals = results 0 of %op -> !pdl.range<value>
%root1 = operation(%vals, %val : !pdl.range<value>, !pdl.value)
%root2 = operation(%val, %vals : !pdl.value, !pdl.range<value>)
rewrite with "rewriter"(%root1, %root2 : !pdl.operation, !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @attribute_literal
module @attribute_literal {
// CHECK: func @matcher(%{{.*}}: !pdl.operation)
// CHECK: %[[ATTR:.*]] = pdl_interp.create_attribute 10 : i64
// CHECK: pdl_interp.apply_constraint "constraint"(%[[ATTR]] : !pdl.attribute)
// Check the correct lowering of an attribute that hasn't been bound.
pdl.pattern : benefit(1) {
%attr = attribute = 10
pdl.apply_native_constraint "constraint"(%attr: !pdl.attribute)
%root = operation
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @type_literal
module @type_literal {
// CHECK: func @matcher(%{{.*}}: !pdl.operation)
// CHECK: %[[TYPE:.*]] = pdl_interp.create_type i32
// CHECK: %[[TYPES:.*]] = pdl_interp.create_types [i32, i64]
// CHECK: pdl_interp.apply_constraint "constraint"(%[[TYPE]], %[[TYPES]] : !pdl.type, !pdl.range<type>)
// Check the correct lowering of a type that hasn't been bound.
pdl.pattern : benefit(1) {
%type = type : i32
%types = types : [i32, i64]
pdl.apply_native_constraint "constraint"(%type, %types: !pdl.type, !pdl.range<type>)
%root = operation
rewrite %root with "rewriter"
}
}
// -----
// CHECK-LABEL: module @common_connector
module @common_connector {
// Check the correct lowering when multiple roots are using the same
// connector.
// CHECK: func @matcher(%[[ROOTC:.*]]: !pdl.operation)
// CHECK-DAG: %[[VAL2:.*]] = pdl_interp.get_operand 0 of %[[ROOTC]]
// CHECK-DAG: %[[INTER:.*]] = pdl_interp.get_defining_op of %[[VAL2]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[INTER]] : !pdl.operation -> ^bb2, ^bb1
// CHECK-DAG: %[[VAL1:.*]] = pdl_interp.get_operand 0 of %[[INTER]]
// CHECK-DAG: %[[OP:.*]] = pdl_interp.get_defining_op of %[[VAL1]] : !pdl.value
// CHECK-DAG: pdl_interp.is_not_null %[[OP]]
// CHECK-DAG: %[[VAL0:.*]] = pdl_interp.get_result 0 of %[[OP]]
// CHECK-DAG: %[[ROOTS:.*]] = pdl_interp.get_users of %[[VAL0]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[ROOTA:.*]] : !pdl.operation in %[[ROOTS]] {
// CHECK-DAG: pdl_interp.is_not_null %[[ROOTA]] : !pdl.operation -> ^{{.*}}, ^[[CONTA:.*]]
// CHECK-DAG: pdl_interp.continue
// CHECK-DAG: pdl_interp.foreach %[[ROOTB:.*]] : !pdl.operation in %[[ROOTS]] {
// CHECK-DAG: pdl_interp.is_not_null %[[ROOTB]] : !pdl.operation -> ^{{.*}}, ^[[CONTB:.*]]
// CHECK-DAG: %[[ROOTA_OP:.*]] = pdl_interp.get_operand 0 of %[[ROOTA]]
// CHECK-DAG: pdl_interp.are_equal %[[ROOTA_OP]], %[[VAL0]] : !pdl.value
// CHECK-DAG: %[[ROOTB_OP:.*]] = pdl_interp.get_operand 0 of %[[ROOTB]]
// CHECK-DAG: pdl_interp.are_equal %[[ROOTB_OP]], %[[VAL0]] : !pdl.value
// CHECK-DAG } -> ^[[CONTA:.*]]
pdl.pattern @common_connector : benefit(1) {
%type = type
%op = operation -> (%type, %type : !pdl.type, !pdl.type)
%val0 = result 0 of %op
%val1 = result 1 of %op
%rootA = operation (%val0 : !pdl.value)
%rootB = operation (%val0 : !pdl.value)
%inter = operation (%val1 : !pdl.value) -> (%type : !pdl.type)
%val2 = result 0 of %inter
%rootC = operation (%val2 : !pdl.value)
rewrite with "rewriter"(%rootA, %rootB, %rootC : !pdl.operation, !pdl.operation, !pdl.operation)
}
}
// -----
// CHECK-LABEL: module @common_connector_range
module @common_connector_range {
// Check the correct lowering when multiple roots are using the same
// connector range.
// CHECK: func @matcher(%[[ROOTC:.*]]: !pdl.operation)
// CHECK-DAG: %[[VALS2:.*]] = pdl_interp.get_operands of %[[ROOTC]] : !pdl.range<value>
// CHECK-DAG: %[[INTER:.*]] = pdl_interp.get_defining_op of %[[VALS2]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[INTER]] : !pdl.operation -> ^bb2, ^bb1
// CHECK-DAG: %[[VALS1:.*]] = pdl_interp.get_operands of %[[INTER]] : !pdl.range<value>
// CHECK-DAG: %[[OP:.*]] = pdl_interp.get_defining_op of %[[VALS1]] : !pdl.range<value>
// CHECK-DAG: pdl_interp.is_not_null %[[OP]]
// CHECK-DAG: %[[VALS0:.*]] = pdl_interp.get_results 0 of %[[OP]]
// CHECK-DAG: %[[VAL0:.*]] = pdl_interp.extract 0 of %[[VALS0]] : !pdl.value
// CHECK-DAG: %[[ROOTS:.*]] = pdl_interp.get_users of %[[VAL0]] : !pdl.value
// CHECK-DAG: pdl_interp.foreach %[[ROOTA:.*]] : !pdl.operation in %[[ROOTS]] {
// CHECK-DAG: pdl_interp.is_not_null %[[ROOTA]] : !pdl.operation -> ^{{.*}}, ^[[CONTA:.*]]
// CHECK-DAG: pdl_interp.continue
// CHECK-DAG: pdl_interp.foreach %[[ROOTB:.*]] : !pdl.operation in %[[ROOTS]] {
// CHECK-DAG: pdl_interp.is_not_null %[[ROOTB]] : !pdl.operation -> ^{{.*}}, ^[[CONTB:.*]]
// CHECK-DAG: %[[ROOTA_OPS:.*]] = pdl_interp.get_operands of %[[ROOTA]]
// CHECK-DAG: pdl_interp.are_equal %[[ROOTA_OPS]], %[[VALS0]] : !pdl.range<value>
// CHECK-DAG: %[[ROOTB_OPS:.*]] = pdl_interp.get_operands of %[[ROOTB]]
// CHECK-DAG: pdl_interp.are_equal %[[ROOTB_OPS]], %[[VALS0]] : !pdl.range<value>
// CHECK-DAG } -> ^[[CONTA:.*]]
pdl.pattern @common_connector_range : benefit(1) {
%types = types
%op = operation -> (%types, %types : !pdl.range<type>, !pdl.range<type>)
%vals0 = results 0 of %op -> !pdl.range<value>
%vals1 = results 1 of %op -> !pdl.range<value>
%rootA = operation (%vals0 : !pdl.range<value>)
%rootB = operation (%vals0 : !pdl.range<value>)
%inter = operation (%vals1 : !pdl.range<value>) -> (%types : !pdl.range<type>)
%vals2 = results of %inter
%rootC = operation (%vals2 : !pdl.range<value>)
rewrite with "rewriter"(%rootA, %rootB, %rootC : !pdl.operation, !pdl.operation, !pdl.operation)
}
}
|