Pdl
pdl
AnyPDLType = AttributeType | OperationType | TypeType | ValueType
module-attribute
AnyPDLTypeConstr = base(AttributeType) | base(OperationType) | base(TypeType) | base(ValueType)
module-attribute
PDL = Dialect('pdl', [ApplyNativeConstraintOp, ApplyNativeRewriteOp, AttributeOp, OperandOp, EraseOp, OperandsOp, OperationOp, PatternOp, RangeOp, ReplaceOp, ResultOp, ResultsOp, RewriteOp, TypeOp, TypesOp], [AttributeType, OperationType, TypeType, ValueType, RangeType])
module-attribute
AttributeType
dataclass
Bases: ParametrizedAttribute, TypeAttribute
Source code in xdsl/dialects/pdl.py
113 114 115 | |
name = 'pdl.attribute'
class-attribute
instance-attribute
OperationType
dataclass
Bases: ParametrizedAttribute, TypeAttribute
Source code in xdsl/dialects/pdl.py
118 119 120 | |
name = 'pdl.operation'
class-attribute
instance-attribute
TypeType
dataclass
Bases: ParametrizedAttribute, TypeAttribute
Source code in xdsl/dialects/pdl.py
123 124 125 | |
name = 'pdl.type'
class-attribute
instance-attribute
ValueType
dataclass
Bases: ParametrizedAttribute, TypeAttribute
Source code in xdsl/dialects/pdl.py
128 129 130 | |
name = 'pdl.value'
class-attribute
instance-attribute
RangeType
dataclass
Bases: ParametrizedAttribute, TypeAttribute, Generic[_RangeT]
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.range'
class-attribute
instance-attribute
element_type: _RangeT
instance-attribute
parse_parameters(parser: AttrParser) -> Sequence[Attribute]
classmethod
Source code in xdsl/dialects/pdl.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | |
print_parameters(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
166 167 168 169 170 171 172 173 174 175 | |
ApplyNativeConstraintOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.apply_native_constraint'
class-attribute
instance-attribute
constraint_name = prop_def(StringAttr, prop_name='name')
class-attribute
instance-attribute
is_negated = prop_def(BoolAttr, prop_name='isNegated', default_value=(BoolAttr.from_bool(False)))
class-attribute
instance-attribute
args = var_operand_def(AnyPDLTypeConstr | base(RangeType[AnyPDLType]))
class-attribute
instance-attribute
res = var_result_def(AnyPDLTypeConstr | base(RangeType[AnyPDLType]))
class-attribute
instance-attribute
irdl_options = (ParsePropInAttrDict(),)
class-attribute
instance-attribute
assembly_format = '$name `(` $args `:` type($args) `)` (`:` type($res)^)? attr-dict'
class-attribute
instance-attribute
__init__(name: str | StringAttr, args: Sequence[SSAValue], result_types: Sequence[Attribute], is_negated: bool = False) -> None
Source code in xdsl/dialects/pdl.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
ApplyNativeRewriteOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.apply_native_rewrite'
class-attribute
instance-attribute
constraint_name = prop_def(StringAttr, prop_name='name')
class-attribute
instance-attribute
args = var_operand_def(AnyPDLTypeConstr | base(RangeType[AnyPDLType]))
class-attribute
instance-attribute
res = var_result_def(AnyPDLTypeConstr | base(RangeType[AnyPDLType]))
class-attribute
instance-attribute
__init__(name: str | StringAttr, args: Sequence[SSAValue], result_types: Sequence[Attribute]) -> None
Source code in xdsl/dialects/pdl.py
223 224 225 226 227 228 229 230 231 232 233 234 235 | |
parse(parser: Parser) -> ApplyNativeRewriteOp
classmethod
Source code in xdsl/dialects/pdl.py
237 238 239 240 241 242 243 244 245 246 247 248 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
250 251 252 253 254 255 256 257 | |
AttributeOp
Bases: IRDLOperation
See external documentation. https://mlir.llvm.org/docs/Dialects/PDLOps/#pdlattribute-pdlattributeop
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.attribute'
class-attribute
instance-attribute
value = opt_prop_def()
class-attribute
instance-attribute
value_type = opt_operand_def(TypeType)
class-attribute
instance-attribute
output = result_def(AttributeType)
class-attribute
instance-attribute
assembly_format = '(`:` $value_type^)? (`=` $value^)? attr-dict-with-keyword'
class-attribute
instance-attribute
verify_()
Source code in xdsl/dialects/pdl.py
274 275 276 277 278 279 280 281 282 283 284 | |
__init__(value: Attribute | SSAValue | None = None) -> None
The given value is either the expected attribute, if given an attribute, or the expected attribute type, if given an SSAValue.
Source code in xdsl/dialects/pdl.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | |
EraseOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
303 304 305 306 307 308 309 310 311 312 313 314 315 | |
name = 'pdl.erase'
class-attribute
instance-attribute
op_value = operand_def(OperationType)
class-attribute
instance-attribute
assembly_format = '$op_value attr-dict'
class-attribute
instance-attribute
__init__(op_value: SSAValue) -> None
Source code in xdsl/dialects/pdl.py
314 315 | |
OperandOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 | |
name = 'pdl.operand'
class-attribute
instance-attribute
value_type = opt_operand_def(TypeType)
class-attribute
instance-attribute
value = result_def(ValueType)
class-attribute
instance-attribute
assembly_format = '(`:` $value_type^)? attr-dict'
class-attribute
instance-attribute
__init__(value_type: SSAValue | None = None) -> None
Source code in xdsl/dialects/pdl.py
330 331 | |
verify_()
Source code in xdsl/dialects/pdl.py
333 334 | |
OperandsOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | |
name = 'pdl.operands'
class-attribute
instance-attribute
value_type = opt_operand_def(RangeType[TypeType])
class-attribute
instance-attribute
value = result_def(RangeType[ValueType])
class-attribute
instance-attribute
assembly_format = '(`:` $value_type^)? attr-dict'
class-attribute
instance-attribute
__init__(value_type: SSAValue | None) -> None
Source code in xdsl/dialects/pdl.py
349 350 | |
verify_()
Source code in xdsl/dialects/pdl.py
352 353 | |
OperationOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.operation'
class-attribute
instance-attribute
opName = opt_prop_def(StringAttr)
class-attribute
instance-attribute
attributeValueNames = prop_def(ArrayAttr[StringAttr])
class-attribute
instance-attribute
operand_values = var_operand_def(base(ValueType) | base(RangeType[ValueType]))
class-attribute
instance-attribute
attribute_values = var_operand_def(AttributeType)
class-attribute
instance-attribute
type_values = var_operand_def(base(TypeType) | base(RangeType[TypeType]))
class-attribute
instance-attribute
op = result_def(OperationType)
class-attribute
instance-attribute
irdl_options = (AttrSizedOperandSegments(as_property=True),)
class-attribute
instance-attribute
__init__(op_name: str | StringAttr | None, attribute_value_names: Iterable[StringAttr] | None = None, operand_values: Sequence[SSAValue] | None = None, attribute_values: Sequence[SSAValue] | None = None, type_values: Sequence[SSAValue] | None = None)
Source code in xdsl/dialects/pdl.py
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 | |
verify_()
Source code in xdsl/dialects/pdl.py
404 405 406 407 408 409 410 411 412 413 414 415 416 | |
parse(parser: Parser) -> OperationOp
classmethod
Source code in xdsl/dialects/pdl.py
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 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
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 | |
PatternOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.pattern'
class-attribute
instance-attribute
benefit = prop_def(IntegerAttr[I16])
class-attribute
instance-attribute
sym_name = opt_prop_def(StringAttr)
class-attribute
instance-attribute
body = region_def('single_block')
class-attribute
instance-attribute
traits = traits_def(OptionalSymbolOpInterface())
class-attribute
instance-attribute
__init__(benefit: int | IntegerAttr[IntegerType], sym_name: str | StringAttr | None, body: Region | None = None)
Source code in xdsl/dialects/pdl.py
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 | |
verify_()
Source code in xdsl/dialects/pdl.py
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 | |
parse(parser: Parser) -> PatternOp
classmethod
Source code in xdsl/dialects/pdl.py
582 583 584 585 586 587 588 589 590 591 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
593 594 595 596 597 598 | |
RangeOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
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 | |
name = 'pdl.range'
class-attribute
instance-attribute
arguments = var_operand_def(AnyPDLTypeConstr | base(RangeType[AnyPDLType]))
class-attribute
instance-attribute
result = result_def(RangeType[AnyPDLType])
class-attribute
instance-attribute
traits = lazy_traits_def(lambda: (HasParent(RewriteOp),))
class-attribute
instance-attribute
verify_() -> None
Source code in xdsl/dialects/pdl.py
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
__init__(arguments: Sequence[SSAValue], result_type: Attribute | None = None) -> None
Source code in xdsl/dialects/pdl.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 | |
parse(parser: Parser) -> RangeOp
classmethod
Source code in xdsl/dialects/pdl.py
651 652 653 654 655 656 657 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
659 660 661 662 663 664 665 | |
ReplaceOp
Bases: IRDLOperation
See external documentation.
pdl.replace operations are used within pdl.rewrite regions to specify
that an input operation should be marked as replaced. The semantics of this
operation correspond with the replaceOp method on a PatternRewriter. The
set of replacement values can be either:
* a single Operation (replOperation should be populated)
- The operation will be replaced with the results of this operation.
* a set of Values (replValues should be populated)
- The operation will be replaced with these values.
Source code in xdsl/dialects/pdl.py
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 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 | |
name = 'pdl.replace'
class-attribute
instance-attribute
op_value = operand_def(OperationType)
class-attribute
instance-attribute
repl_operation = opt_operand_def(OperationType)
class-attribute
instance-attribute
repl_values = var_operand_def(base(ValueType) | base(RangeType[ValueType]))
class-attribute
instance-attribute
irdl_options = (AttrSizedOperandSegments(as_property=True),)
class-attribute
instance-attribute
assembly_format = '$op_value `with` ` ` (`(` $repl_values^ `:` type($repl_values) `)`)? $repl_operation attr-dict'
class-attribute
instance-attribute
__init__(op_value: SSAValue, repl_operation: SSAValue | None = None, repl_values: Sequence[SSAValue] | None = None) -> None
Source code in xdsl/dialects/pdl.py
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 | |
verify_() -> None
Source code in xdsl/dialects/pdl.py
711 712 713 714 715 716 717 718 719 720 721 722 723 | |
ResultOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 | |
name = 'pdl.result'
class-attribute
instance-attribute
index = prop_def(IntegerAttr[I32])
class-attribute
instance-attribute
parent_ = operand_def(OperationType)
class-attribute
instance-attribute
val = result_def(ValueType)
class-attribute
instance-attribute
assembly_format = '$index `of` $parent_ attr-dict'
class-attribute
instance-attribute
__init__(index: int | IntegerAttr[IntegerType], parent: SSAValue) -> None
Source code in xdsl/dialects/pdl.py
739 740 741 742 743 744 | |
ResultsOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 | |
name = 'pdl.results'
class-attribute
instance-attribute
index = opt_prop_def(IntegerAttr[I32])
class-attribute
instance-attribute
parent_ = operand_def(OperationType)
class-attribute
instance-attribute
val = result_def(base(ValueType) | base(RangeType[ValueType]))
class-attribute
instance-attribute
__init__(parent: SSAValue, index: int | IntegerAttr[IntegerType] | None = None, result_type: Attribute = RangeType(ValueType())) -> None
Source code in xdsl/dialects/pdl.py
758 759 760 761 762 763 764 765 766 767 768 | |
parse(parser: Parser) -> ResultsOp
classmethod
Source code in xdsl/dialects/pdl.py
770 771 772 773 774 775 776 777 778 779 780 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/pdl.py
782 783 784 785 786 787 788 789 790 | |
RewriteOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 | |
name = 'pdl.rewrite'
class-attribute
instance-attribute
root = opt_operand_def(OperationType)
class-attribute
instance-attribute
name_ = opt_prop_def(StringAttr, prop_name='name')
class-attribute
instance-attribute
external_args = var_operand_def(AnyPDLTypeConstr)
class-attribute
instance-attribute
body = region_def()
class-attribute
instance-attribute
irdl_options = (AttrSizedOperandSegments(as_property=True),)
class-attribute
instance-attribute
traits = traits_def(HasParent(PatternOp), NoTerminator(), IsTerminator())
class-attribute
instance-attribute
assembly_format = '($root^)? (`with` $name^ (`(` $external_args^ `:` type($external_args) `)`)?)?($body^)? attr-dict-with-keyword'
class-attribute
instance-attribute
__init__(root: SSAValue | None, body: Region | type[Region.DEFAULT] = Region.DEFAULT, name: str | StringAttr | None = None, external_args: Sequence[SSAValue] = ()) -> None
Source code in xdsl/dialects/pdl.py
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 | |
TypeOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 | |
name = 'pdl.type'
class-attribute
instance-attribute
constantType = opt_prop_def(TypeAttribute)
class-attribute
instance-attribute
result = result_def(TypeType)
class-attribute
instance-attribute
assembly_format = 'attr-dict (`:` $constantType^)?'
class-attribute
instance-attribute
__init__(constant_type: Attribute | None = None) -> None
Source code in xdsl/dialects/pdl.py
865 866 867 868 | |
verify_()
Source code in xdsl/dialects/pdl.py
870 871 | |
TypesOp
Bases: IRDLOperation
See external documentation.
Source code in xdsl/dialects/pdl.py
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 | |
name = 'pdl.types'
class-attribute
instance-attribute
constantTypes = opt_prop_def(ArrayAttr[TypeAttribute])
class-attribute
instance-attribute
result = result_def(RangeType[TypeType])
class-attribute
instance-attribute
assembly_format = 'attr-dict (`:` $constantTypes^)?'
class-attribute
instance-attribute
__init__(constant_types: Iterable[Attribute] | None = None) -> None
Source code in xdsl/dialects/pdl.py
886 887 888 889 890 891 892 893 894 | |
verify_()
Source code in xdsl/dialects/pdl.py
896 897 | |
parse_operands_with_types(parser: Parser) -> list[SSAValue]
Parse a list of operands with types of the following format:
operand1, operand2 : type1, type2
At least one operand is expected.
Source code in xdsl/dialects/pdl.py
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 | |
print_operands_with_types(printer: Printer, operands: Iterable[SSAValue]) -> None
Source code in xdsl/dialects/pdl.py
80 81 82 83 | |
has_binding_use(op: Operation) -> bool
Returns true if the given operation is used by a "binding" pdl operation.
Source code in xdsl/dialects/pdl.py
86 87 88 89 90 91 92 93 94 95 96 | |
verify_has_binding_use(op: Operation) -> None
Raise an exception if the operation is in the main matcher body and is not used by a "binding" pdl operation.
Source code in xdsl/dialects/pdl.py
99 100 101 102 103 104 105 106 107 108 109 110 | |