Traits
traits
OpTraitInvT = TypeVar('OpTraitInvT', bound=OpTrait)
module-attribute
OpTrait
dataclass
A trait attached to an operation definition. Traits can be used to define operation invariants, additional semantic information, or to group operations that have similar properties. Note that traits are the merge of traits and interfaces in MLIR.
Source code in xdsl/traits.py
19 20 21 22 23 24 25 26 27 28 29 30 | |
__init__() -> None
verify(op: Operation) -> None
Check that the operation satisfies the trait requirements.
Source code in xdsl/traits.py
28 29 30 | |
ConstantLike
dataclass
Bases: OpTrait, ABC
Operation known to be constant-like.
To participate in constant folding and other generic mechanisms implement
HasFolder or HasFolderInterface for your operation.
See external documentation.
Source code in xdsl/traits.py
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 | |
get_constant_value(ssa_value: SSAValue) -> Attribute | None
staticmethod
If the value is the result of a ConstantLike operation that implements
HasFolderInterface, return the attribute returned by fold corresponding to
the value's index in the list of results.
Source code in xdsl/traits.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
HasFolder
dataclass
Bases: OpTrait
Operation known to support folding.
Source code in xdsl/traits.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 | |
fold(op: Operation) -> Sequence[SSAValue | Attribute] | None
abstractmethod
classmethod
Attempts to fold the operation. The fold method cannot modify the IR. Returns either an existing SSAValue or an Attribute for each result of the operation. When folding is unsuccessful, returns None.
Source code in xdsl/traits.py
71 72 73 74 75 76 77 78 79 | |
HasParent
dataclass
Bases: OpTrait
Constraint the operation to have a specific parent operation.
Source code in xdsl/traits.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | |
op_types: tuple[type[Operation], ...]
instance-attribute
__init__(head_param: type[Operation], *tail_params: type[Operation])
Source code in xdsl/traits.py
88 89 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
91 92 93 94 95 96 97 98 99 100 101 102 103 | |
HasAncestor
dataclass
Bases: OpTrait
Constraint the operation to have a specific operation as ancestor, i.e. transitive parent.
Source code in xdsl/traits.py
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 | |
op_types: tuple[type[Operation], ...]
instance-attribute
__init__(head_param: type[Operation], *tail_params: type[Operation])
Source code in xdsl/traits.py
115 116 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
118 119 120 121 122 123 124 125 126 127 | |
walk_ancestors(op: Operation) -> Iterator[Operation]
Iterates over the ancestors of an operation, including the input
Source code in xdsl/traits.py
129 130 131 132 133 134 | |
get_ancestor(op: Operation) -> Operation | None
Source code in xdsl/traits.py
136 137 138 139 | |
IsTerminator
dataclass
Bases: OpTrait
This trait provides verification and functionality for operations that are known to be terminators.
See external documentation.
Source code in xdsl/traits.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 | |
verify(op: Operation) -> None
Check that the operation satisfies the IsTerminator trait requirements.
Source code in xdsl/traits.py
150 151 152 153 154 155 | |
ReturnLike
dataclass
Bases: OpTrait
This trait indicates that a terminator operation is "return-like". This means that it exits its current region and forwards its operands as "exit" values to the parent region. Operations with this trait are not permitted to contain successors or produce results.
Source code in xdsl/traits.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
166 167 168 169 170 171 172 | |
NoTerminator
dataclass
Bases: OpTrait
Allow an operation to have single block regions with no terminator.
See external documentation.
Source code in xdsl/traits.py
175 176 177 178 179 180 181 182 183 184 185 186 187 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
182 183 184 185 186 187 | |
SingleBlockImplicitTerminator
dataclass
Bases: OpTrait
Checks the existence of the specified terminator to an operation which has
single-block regions.
The conditions for the implicit creation of the terminator depend on the operation
and occur during its creation using the ensure_terminator method.
This should be fully compatible with MLIR's Trait.
See external documentation.
Source code in xdsl/traits.py
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 | |
op_type: type[Operation]
instance-attribute
__init__(op_type: type[Operation]) -> None
verify(op: Operation) -> None
Source code in xdsl/traits.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |
IsolatedFromAbove
dataclass
Bases: OpTrait
Constrains the contained operations to use only values defined inside this operation.
This should be fully compatible with MLIR's Trait.
See external documentation.
Source code in xdsl/traits.py
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 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | |
SymbolUserOpInterface
dataclass
Bases: OpTrait, ABC
Used to represent operations that reference Symbol operations. This provides the ability to perform safe and efficient verification of symbol uses, as well as additional functionality.
See external documentation.
Source code in xdsl/traits.py
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | |
verify(op: Operation) -> None
abstractmethod
This method should be adapted to the requirements of specific symbol users per operation.
It corresponds to the verifySymbolUses in upstream MLIR.
Source code in xdsl/traits.py
310 311 312 313 314 315 316 317 318 | |
SymbolTable
dataclass
Bases: OpTrait
SymbolTable operations are containers for Symbol operations. They offer lookup functionality for Symbols, and enforce unique symbols amongst its children.
A SymbolTable operation is constrained to have a single single-block region.
Source code in xdsl/traits.py
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 | |
verify(op: Operation)
Source code in xdsl/traits.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | |
lookup_symbol(op: Operation, name: str | StringAttr | SymbolRefAttr) -> Operation | None
staticmethod
Lookup a symbol by reference, starting from a specific operation's closest SymbolTable parent.
Source code in xdsl/traits.py
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 | |
insert_or_update(symbol_table_op: Operation, symbol_op: Operation) -> Operation | None
staticmethod
This takes a symbol_table_op and a symbol_op. It looks if another operation inside symbol_table_op already defines symbol_ops symbol. If another operation is found, it replaces that operation with symbol_op. Otherwise, symbol_op is inserted at the end of symbol_table_op.
This method returns the operation that was replaced or None if no operation was replaced.
Source code in xdsl/traits.py
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 | |
SymbolOpInterface
dataclass
Bases: OpTrait
A Symbol is a named operation that resides immediately within a region that defines
a SymbolTable (TODO). A Symbol operation should use the SymbolOpInterface interface to
provide the necessary verification and accessors.
A Symbol operation may be optional or not. If - the default - it is not optional,
a sym_name attribute of type StringAttr is required. If it is optional,
the attribute is optional too.
xDSL offers OptionalSymbolOpInterface as an always-optional SymbolOpInterface helper.
More requirements are defined in MLIR; Please see MLIR documentation for Symbol and SymbolTable for the requirements that are upcoming in xDSL.
See external documentation.
Source code in xdsl/traits.py
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 | |
get_sym_attr_name(op: Operation) -> StringAttr | None
Returns the symbol of the operation, if any
Source code in xdsl/traits.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | |
is_optional_symbol(op: Operation) -> bool
Returns true if this operation optionally defines a symbol based on the presence of the symbol name.
Source code in xdsl/traits.py
459 460 461 462 463 464 | |
verify(op: Operation) -> None
Source code in xdsl/traits.py
466 467 468 469 470 | |
OptionalSymbolOpInterface
dataclass
Bases: SymbolOpInterface
Helper interface specialization for an optional SymbolOpInterface.
Source code in xdsl/traits.py
473 474 475 476 477 478 479 | |
is_optional_symbol(op: Operation) -> bool
Source code in xdsl/traits.py
478 479 | |
CallableOpInterface
dataclass
Bases: OpTrait, ABC
Interface for function-like Operations that can be called in a generic way.
Please see MLIR documentation for CallOpInterface and CallableOpInterface for more information.
See external documentation.
Source code in xdsl/traits.py
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 | |
get_callable_region(op: Operation) -> Region
abstractmethod
classmethod
Returns the body of the operation
Source code in xdsl/traits.py
492 493 494 495 496 497 498 | |
get_argument_types(op: Operation) -> tuple[Attribute, ...]
abstractmethod
classmethod
Source code in xdsl/traits.py
500 501 502 503 | |
get_result_types(op: Operation) -> tuple[Attribute, ...]
abstractmethod
classmethod
Source code in xdsl/traits.py
505 506 507 508 | |
HasCanonicalizationPatternsTrait
dataclass
Bases: OpTrait
Provides the rewrite passes to canonicalize an operation.
Each rewrite pattern must have the trait's op as root.
Source code in xdsl/traits.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | |
__init__() -> None
get_patterns(op: type[Operation]) -> tuple[RewritePattern, ...]
Source code in xdsl/traits.py
519 520 521 522 523 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
abstractmethod
classmethod
Source code in xdsl/traits.py
525 526 527 528 | |
HasShapeInferencePatternsTrait
dataclass
Bases: OpTrait
Provides the rewrite passes to shape infer an operation.
Each rewrite pattern must have the trait's op as root.
Source code in xdsl/traits.py
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 | |
__init__() -> None
verify(op: Operation) -> None
Source code in xdsl/traits.py
539 540 | |
get_shape_inference_patterns() -> tuple[RewritePattern, ...]
abstractmethod
classmethod
Source code in xdsl/traits.py
542 543 544 545 | |
MemoryEffectKind
Bases: Enum
The kind of side effect an operation can have.
MLIR has a more detailed version of this, able to tie effects to specfic resources or values. Here, everything has its effect on the universe.
Source code in xdsl/traits.py
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 | |
READ = auto()
class-attribute
instance-attribute
Indicates that the operation reads from some resource. A 'read' effect implies only dereferencing of the resource, and not any visible mutation.
WRITE = auto()
class-attribute
instance-attribute
Indicates that the operation writes to some resource. A 'write' effect implies only mutating a resource, and not any visible dereference or read.
ALLOC = auto()
class-attribute
instance-attribute
Indicates that the operation allocates from some resource. An 'allocate' effect implies only allocation of the resource, and not any visible mutation or dereference.
FREE = auto()
class-attribute
instance-attribute
Indicates that the operation frees some resource that has been allocated. A 'free' effect implies only de-allocation of the resource, and not any visible allocation, mutation or dereference.
Resource
dataclass
Bases: ABC
This class represents a specific resource that an effect applies to.
Source code in xdsl/traits.py
582 583 584 585 586 587 588 589 590 | |
__init__() -> None
name() -> str
abstractmethod
Source code in xdsl/traits.py
588 589 590 | |
DefaultResource
dataclass
Bases: Resource
A conservative default resource kind.
Source code in xdsl/traits.py
593 594 595 596 597 598 599 600 | |
__init__() -> None
name() -> str
Source code in xdsl/traits.py
599 600 | |
EffectInstance
dataclass
An instance of a side effect.
Source code in xdsl/traits.py
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | |
kind: MemoryEffectKind
instance-attribute
The kind of side effect.
value: SSAValue | SymbolRefAttr | None = field(default=None)
class-attribute
instance-attribute
The value or symbol that is affected by the side effect, if known.
resource: Resource = field(default=(DefaultResource()))
class-attribute
instance-attribute
The resource that the effect applies to.
__init__(kind: MemoryEffectKind, value: SSAValue | SymbolRefAttr | None = None, resource: Resource = DefaultResource()) -> None
MemoryEffect
dataclass
Bases: OpTrait
A trait that enables operations to expose their side-effects or absence thereof.
Source code in xdsl/traits.py
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 | |
get_effects(op: Operation) -> set[EffectInstance] | None
abstractmethod
classmethod
Returns the concrete side effects of the operation.
Return None if the operation cannot conclude - interpreted as if the operation had no MemoryEffect interface in the first place.
Source code in xdsl/traits.py
630 631 632 633 634 635 636 637 638 639 | |
NoMemoryEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation never has side effects.
Source code in xdsl/traits.py
695 696 697 698 699 700 701 702 | |
get_effects(op: Operation) -> set[EffectInstance]
classmethod
Source code in xdsl/traits.py
700 701 702 | |
MemoryReadEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation always has read side effects.
Source code in xdsl/traits.py
705 706 707 708 709 710 711 712 | |
get_effects(op: Operation) -> set[EffectInstance]
classmethod
Source code in xdsl/traits.py
710 711 712 | |
MemoryWriteEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation always has write side effects.
Source code in xdsl/traits.py
715 716 717 718 719 720 721 722 | |
get_effects(op: Operation) -> set[EffectInstance]
classmethod
Source code in xdsl/traits.py
720 721 722 | |
MemoryAllocEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation always has alloc side effects.
Source code in xdsl/traits.py
725 726 727 728 729 730 731 732 | |
get_effects(op: Operation) -> set[EffectInstance]
classmethod
Source code in xdsl/traits.py
730 731 732 | |
MemoryFreeEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation always has deallocation side effects.
Source code in xdsl/traits.py
735 736 737 738 739 740 741 742 | |
get_effects(op: Operation) -> set[EffectInstance]
classmethod
Source code in xdsl/traits.py
740 741 742 | |
RecursiveMemoryEffect
dataclass
Bases: MemoryEffect
A trait that signals that an operation has the side effects of its contained operations.
Source code in xdsl/traits.py
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 | |
get_effects(op: Operation)
classmethod
Source code in xdsl/traits.py
751 752 753 754 755 756 757 758 759 760 761 | |
ConditionallySpeculatable
dataclass
Bases: OpTrait
Source code in xdsl/traits.py
764 765 766 767 768 | |
is_speculatable(op: Operation) -> bool
abstractmethod
classmethod
Source code in xdsl/traits.py
765 766 767 768 | |
AlwaysSpeculatable
dataclass
Bases: ConditionallySpeculatable
Source code in xdsl/traits.py
771 772 773 774 | |
is_speculatable(op: Operation)
classmethod
Source code in xdsl/traits.py
772 773 774 | |
RecursivelySpeculatable
dataclass
Bases: ConditionallySpeculatable
Source code in xdsl/traits.py
777 778 779 780 781 782 | |
is_speculatable(op: Operation)
classmethod
Source code in xdsl/traits.py
778 779 780 781 782 | |
Pure
dataclass
Bases: NoMemoryEffect, AlwaysSpeculatable
In MLIR, Pure is NoMemoryEffect + AlwaysSpeculatable.
Source code in xdsl/traits.py
790 791 792 793 | |
Commutative
dataclass
Bases: OpTrait
A trait that signals that an operation is commutative.
Source code in xdsl/traits.py
796 797 798 799 | |
HasInsnRepresentation
dataclass
Bases: OpTrait, ABC
A trait providing information on how to encode an operation using a .insn assember directive.
The returned string contains python string.format placeholders where formatted operands are inserted during printing.
See external documentation.
Source code in xdsl/traits.py
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | |
get_insn(op: Operation) -> str
abstractmethod
Return the insn representation of the operation for printing.
Source code in xdsl/traits.py
812 813 814 815 816 817 | |
SameOperandsAndResultType
dataclass
Bases: OpTrait
Constrain the operation to have the same operands and result type.
Source code in xdsl/traits.py
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 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 | |
__init__() -> None
verify(op: Operation) -> None
Source code in xdsl/traits.py
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 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 | |
ensure_terminator(op: Operation, trait: SingleBlockImplicitTerminator) -> None
Method that helps with the creation of an implicit terminator. This should be explicitly called during the creation of an operation that has the SingleBlockImplicitTerminator trait.
Source code in xdsl/traits.py
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 | |
has_effects(op: Operation, effect: MemoryEffectKind) -> bool
Returns if the operation has side effects of this kind.
Source code in xdsl/traits.py
642 643 644 645 646 647 | |
has_exact_effect(op: Operation, effect: MemoryEffectKind) -> bool
Returns if the operation has the given side effects and no others.
proxy for only_has_effect
Source code in xdsl/traits.py
650 651 652 653 654 655 656 | |
only_has_effect(op: Operation, effect: MemoryEffectKind) -> bool
Returns if the operation has the given side effects and no others.
Source code in xdsl/traits.py
659 660 661 662 663 664 | |
is_side_effect_free(op: Operation) -> bool
Boilerplate helper to check if a generic operation is side effect free for sure.
Source code in xdsl/traits.py
667 668 669 670 671 672 | |
get_effects(op: Operation) -> set[EffectInstance] | None
Helper to get known side effects of an operation. None means that the operation has unknown effects, for safety.
Source code in xdsl/traits.py
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 | |
is_speculatable(op: Operation)
Source code in xdsl/traits.py
785 786 787 | |