Constraints
constraints
ConstraintVariableType: TypeAlias = Attribute | Sequence[Attribute] | int
module-attribute
Possible types that a constraint variable can have.
ConstraintVariableTypeT = TypeVar('ConstraintVariableTypeT', bound=ConstraintVariableType)
module-attribute
TypedAttributeCovT = TypeVar('TypedAttributeCovT', bound=TypedAttribute, covariant=True)
module-attribute
TypedAttributeT = TypeVar('TypedAttributeT', bound=TypedAttribute)
module-attribute
ParametrizedAttributeT = TypeVar('ParametrizedAttributeT', bound=ParametrizedAttribute)
module-attribute
ParametrizedAttributeCovT = TypeVar('ParametrizedAttributeCovT', bound=ParametrizedAttribute, covariant=True)
module-attribute
ConstraintContext
dataclass
Contains the assignment of constraint variables.
Source code in xdsl/irdl/constraints.py
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 | |
attr_variables: AbstractSet[str]
property
range_variables: AbstractSet[str]
property
int_variables: AbstractSet[str]
property
__init__(_variables: dict[str, Attribute] = dict[str, Attribute](), _range_variables: dict[str, tuple[Attribute, ...]] = dict[str, tuple[Attribute, ...]](), _int_variables: dict[str, int] = dict[str, int]()) -> None
get_variable(key: str) -> Attribute | None
Source code in xdsl/irdl/constraints.py
48 49 | |
get_range_variable(key: str) -> tuple[Attribute, ...] | None
Source code in xdsl/irdl/constraints.py
51 52 | |
get_int_variable(key: str) -> int | None
Source code in xdsl/irdl/constraints.py
54 55 | |
set_attr_variable(key: str, attr: Attribute)
Source code in xdsl/irdl/constraints.py
57 58 | |
set_range_variable(key: str, attrs: tuple[Attribute, ...])
Source code in xdsl/irdl/constraints.py
60 61 | |
set_int_variable(key: str, i: int)
Source code in xdsl/irdl/constraints.py
63 64 | |
copy()
Source code in xdsl/irdl/constraints.py
78 79 80 81 82 83 84 | |
update(other: ConstraintContext)
Source code in xdsl/irdl/constraints.py
86 87 88 89 90 | |
AttrConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain an attribute to a certain value.
Source code in xdsl/irdl/constraints.py
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 | |
__init__() -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the attribute satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
107 108 109 110 111 112 113 114 115 116 117 | |
verifies(attr: Attribute) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
119 120 121 122 123 124 125 126 127 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
129 130 131 132 133 134 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Check if there is enough information to infer the attribute given the constraint variables that are already set.
Source code in xdsl/irdl/constraints.py
136 137 138 139 140 141 142 | |
infer(context: ConstraintContext) -> AttributeCovT
Infer the attribute given the the values for all variables.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
144 145 146 147 148 149 150 151 152 | |
get_bases() -> set[type[Attribute]] | None
Get a set of base types that can satisfy this constraint, if there exists a finite collection, or None otherwise.
Source code in xdsl/irdl/constraints.py
154 155 156 157 158 159 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AttrConstraint[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
161 162 163 164 165 166 | |
__and__(value: AttrConstraint) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
168 169 170 171 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
173 174 175 176 177 178 179 180 181 182 183 | |
TypedAttributeConstraint
dataclass
Bases: AttrConstraint[TypedAttributeCovT]
Constrains the type of a typed attribute.
Source code in xdsl/irdl/constraints.py
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 | |
attr_constraint: AttrConstraint[TypedAttributeCovT]
instance-attribute
type_constraint: AttrConstraint
instance-attribute
__init__(attr_constraint: AttrConstraint[TypedAttributeCovT], type_constraint: AttrConstraint) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
205 206 207 208 209 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
211 212 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
214 215 | |
infer(context: ConstraintContext) -> TypedAttributeCovT
Source code in xdsl/irdl/constraints.py
217 218 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
220 221 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> TypedAttributeConstraint[TypedAttributeCovT]
Source code in xdsl/irdl/constraints.py
223 224 225 226 227 228 229 | |
VarConstraint
dataclass
Bases: AttrConstraint[AttributeCovT]
Constrain an attribute with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
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 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: AttrConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: AttrConstraint[AttributeCovT]) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
261 262 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
264 265 266 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
268 269 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
271 272 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> VarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
274 275 276 277 278 279 | |
TypeVarConstraint
dataclass
Bases: AttrConstraint
Stores the TypeVar instance used to define a generic ParametrizedAttribute.
Source code in xdsl/irdl/constraints.py
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 | |
type_var: TypeVar
instance-attribute
The instance of the TypeVar used in the definition.
base_constraint: AttrConstraint
instance-attribute
Constraint inferred from the base of the TypeVar.
__init__(type_var: TypeVar, base_constraint: AttrConstraint) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
294 295 296 297 298 299 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
301 302 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint
Source code in xdsl/irdl/constraints.py
304 305 306 307 308 309 310 311 312 | |
ConstraintVar
dataclass
Annotation used in PyRDL to define a constraint variable. For instance, the following code defines a constraint variable T, that can then be used in PyRDL:
T = Annotated[PyRDLConstraint, ConstraintVar("T")]
Source code in xdsl/irdl/constraints.py
315 316 317 318 319 320 321 322 323 324 325 326 327 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
__init__(name: str) -> None
EqAttrConstraint
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be equal to another attribute.
Source code in xdsl/irdl/constraints.py
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 | |
attr: AttributeCovT
instance-attribute
The attribute we want to check equality with.
__init__(attr: AttributeCovT) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
337 338 339 340 341 342 343 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
345 346 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
348 349 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
351 352 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
354 355 356 357 | |
BaseAttr
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Constrain an attribute to be of a given base type.
Source code in xdsl/irdl/constraints.py
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 | |
attr: type[AttributeCovT]
instance-attribute
The expected attribute base type.
__init__(attr: type[AttributeCovT]) -> None
__repr__()
Source code in xdsl/irdl/constraints.py
367 368 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
370 371 372 373 374 375 376 377 378 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
380 381 382 383 384 385 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
387 388 389 390 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
392 393 394 395 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AttrConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
397 398 399 400 | |
AnyAttr
dataclass
Bases: AttrConstraint
Constraint that is verified by all attributes.
Source code in xdsl/irdl/constraints.py
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | |
__init__() -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
420 421 422 423 424 425 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AnyAttr
Source code in xdsl/irdl/constraints.py
427 428 429 430 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
432 433 | |
__and__(value: AttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
435 436 | |
AnyOf
dataclass
Bases: AttrConstraint[AttributeCovT], Generic[AttributeCovT]
Ensure that an attribute satisfies one of the given constraints.
Source code in xdsl/irdl/constraints.py
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 | |
attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]
instance-attribute
The tuple of attribute constraints that are checked by this AnyOf constraint.
At most one constraint may be "abstract": an abstract constraint is a BaseAttr
for an abstract base class which can be inherited by other attribute classes.
This abstract attribute type is not runtime-final (i.e., does not have the @irdl_attr_definition decorator).
__init__(attr_constrs: Sequence[AttributeCovT | type[AttributeCovT] | AttrConstraint[AttributeCovT]])
Source code in xdsl/irdl/constraints.py
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 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
545 546 547 548 549 550 551 552 553 554 555 556 | |
__or__(value: AttrConstraint[_AttributeCovT]) -> AnyOf[AttributeCovT | _AttributeCovT]
Source code in xdsl/irdl/constraints.py
558 559 560 561 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
563 564 565 566 567 568 569 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
571 572 573 574 575 576 577 578 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AnyOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
580 581 582 583 584 585 | |
AllOf
dataclass
Bases: AttrConstraint[AttributeCovT]
Ensure that an attribute satisfies all the given constraints.
Source code in xdsl/irdl/constraints.py
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 | |
attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]
instance-attribute
The list of constraints that are checked.
__init__(attr_constrs: tuple[AttrConstraint[AttributeCovT], ...]) -> None
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
615 616 617 618 619 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
621 622 623 624 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
626 627 628 629 630 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
632 633 634 635 636 637 638 639 640 641 642 | |
__and__(value: AttrConstraint) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
644 645 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> AllOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
647 648 649 650 651 652 | |
ParamAttrConstraint
dataclass
Bases: AttrConstraint[ParametrizedAttributeCovT], Generic[ParametrizedAttributeCovT]
Constrain an attribute to be of a given type, and also constrain its parameters with additional constraints.
Source code in xdsl/irdl/constraints.py
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 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 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | |
base_attr: type[ParametrizedAttributeCovT]
instance-attribute
The base attribute type.
param_constrs: tuple[AttrConstraint, ...]
instance-attribute
The attribute parameter constraints
__init__(base_attr: type[ParametrizedAttributeCovT], param_constrs: Sequence[IRDLAttrConstraint | None])
Source code in xdsl/irdl/constraints.py
676 677 678 679 680 681 682 683 684 685 686 687 688 | |
__repr__()
Source code in xdsl/irdl/constraints.py
690 691 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
711 712 713 714 715 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
717 718 719 720 | |
infer(context: ConstraintContext) -> ParametrizedAttributeCovT
Source code in xdsl/irdl/constraints.py
722 723 724 725 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
727 728 729 730 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> ParamAttrConstraint[ParametrizedAttributeCovT]
Source code in xdsl/irdl/constraints.py
732 733 734 735 736 737 738 | |
__or__(value: AttrConstraint[_AttributeCovT])
Source code in xdsl/irdl/constraints.py
740 741 742 743 744 745 746 747 748 749 750 751 752 | |
MessageConstraint
dataclass
Bases: AttrConstraint[AttributeCovT]
Attach a message to a constraint, to provide more context when the constraint is not satisfied.
Source code in xdsl/irdl/constraints.py
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 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
message: str
instance-attribute
__init__(constr: AttrConstraint[AttributeCovT] | AttributeCovT | type[AttributeCovT], message: str)
Source code in xdsl/irdl/constraints.py
765 766 767 768 769 770 771 772 773 | |
verify(attr: Attribute, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
775 776 777 778 779 780 781 782 783 784 785 786 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
788 789 | |
get_bases() -> set[type[Attribute]] | None
Source code in xdsl/irdl/constraints.py
791 792 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
794 795 | |
infer(context: ConstraintContext) -> AttributeCovT
Source code in xdsl/irdl/constraints.py
797 798 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> MessageConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
800 801 802 803 804 805 | |
IntConstraint
dataclass
Bases: ABC
Constrain an integer to certain values.
Source code in xdsl/irdl/constraints.py
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 851 852 853 854 855 856 857 858 | |
__init__() -> None
verify(i: int, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the integer satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
812 813 814 815 816 817 818 819 820 821 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
823 824 825 826 827 828 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Check if there is enough information to infer the integer given the constraint variables that are already set.
Source code in xdsl/irdl/constraints.py
830 831 832 833 834 835 836 | |
infer(context: ConstraintContext) -> int
Infer the attribute given the the values for all variables.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
838 839 840 841 842 843 844 845 846 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
848 849 850 851 852 853 854 855 856 857 858 | |
AnyInt
dataclass
Bases: IntConstraint
Constraint that is verified by all integers.
Source code in xdsl/irdl/constraints.py
861 862 863 864 865 866 867 868 869 870 871 872 | |
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
866 867 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
869 870 871 872 | |
EqIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to a value.
Source code in xdsl/irdl/constraints.py
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 | |
value: int
instance-attribute
__init__(value: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
881 882 883 884 885 886 887 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
889 890 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
892 893 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
895 896 897 898 | |
NotEqualIntConstraint
dataclass
Bases: IntConstraint
Constrain an integer to not be equal to a given value.
Source code in xdsl/irdl/constraints.py
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 | |
value: int
instance-attribute
The value the integer must not be equal to.
__init__(value: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
908 909 910 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
912 913 914 915 | |
IntSetConstraint
dataclass
Bases: IntConstraint
Constrain an integer to one of a set of integers.
Source code in xdsl/irdl/constraints.py
918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 | |
values: frozenset[int]
instance-attribute
__init__(values: frozenset[int]) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
924 925 926 927 928 929 930 931 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
933 934 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
936 937 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
939 940 941 942 | |
AtLeast
dataclass
Bases: IntConstraint
Constrain an integer to be at least a given value.
Source code in xdsl/irdl/constraints.py
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 | |
bound: int
instance-attribute
The minimum value the integer can take.
__init__(bound: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
952 953 954 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
956 957 958 959 | |
AtMost
dataclass
Bases: IntConstraint
Constrain an integer to be at most a given value.
Source code in xdsl/irdl/constraints.py
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 | |
bound: int
instance-attribute
The maximum value the integer can take.
__init__(bound: int) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
969 970 971 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
973 974 975 976 | |
IntVarConstraint
dataclass
Bases: IntConstraint
Constrain an integer with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: IntConstraint
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: IntConstraint) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1007 1008 | |
can_infer(var_constraint_names: AbstractSet[str]) -> bool
Source code in xdsl/irdl/constraints.py
1010 1011 | |
infer(context: ConstraintContext) -> int
Source code in xdsl/irdl/constraints.py
1013 1014 1015 1016 1017 1018 1019 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
1021 1022 1023 1024 1025 1026 | |
IntTypeVarConstraint
dataclass
Bases: IntConstraint
Stores the TypeVar instance used to define a generic type.
Source code in xdsl/irdl/constraints.py
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 | |
type_var: TypeVar
instance-attribute
The instance of the TypeVar used in the definition.
base_constraint: IntConstraint
instance-attribute
Constraint inferred from the base of the TypeVar.
__init__(type_var: TypeVar, base_constraint: IntConstraint) -> None
verify(i: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1041 1042 1043 1044 1045 1046 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> IntConstraint
Source code in xdsl/irdl/constraints.py
1048 1049 1050 1051 1052 1053 1054 1055 1056 | |
RangeConstraint
dataclass
Bases: ABC, Generic[AttributeCovT]
Constrain a range of attributes to certain values.
Source code in xdsl/irdl/constraints.py
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 | |
__init__() -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
abstractmethod
Check if the range satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 | |
verifies(attrs: Sequence[Attribute]) -> TypeGuard[AttributeCovT]
A helper method to check whether a given attribute matches self.
Source code in xdsl/irdl/constraints.py
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
abstractmethod
Check if the length of the range satisfies the constraint, or raise an exception otherwise.
Source code in xdsl/irdl/constraints.py
1087 1088 1089 1090 1091 1092 | |
variables() -> set[str]
Returns a set of the variables that can be extracted by this constraint.
These variables are always expected to be set after running verify.
Source code in xdsl/irdl/constraints.py
1094 1095 1096 1097 1098 1099 | |
variables_from_length() -> set[str]
Returns a set of the variables that can be extracted from the range length by this constraint.
These variables are always expected to be set after running verify_length.
Source code in xdsl/irdl/constraints.py
1101 1102 1103 1104 1105 1106 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Check if there is enough information to infer the attribute given the constraint variables that are already set, and whether the length of the range is known in advance.
Source code in xdsl/irdl/constraints.py
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Infer the attribute given the the values for all variables, and possibly the length of the range if known.
Raises an exception if the attribute cannot be inferred. If can_infer
returns True with the given constraint variables, this method should
not raise an exception.
Source code in xdsl/irdl/constraints.py
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeConstraint[AttributeCovT]
abstractmethod
A helper function to make type vars used in attribute definitions concrete when creating constraints for new attributes or operations.
Source code in xdsl/irdl/constraints.py
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 | |
of_length(length_constr: IntConstraint) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1144 1145 1146 1147 | |
RangeLengthConstraint
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain an attribute range with the given length.
Source code in xdsl/irdl/constraints.py
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 | |
constraint: RangeConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
length: IntConstraint
instance-attribute
The length that the range must have
__init__(constraint: RangeConstraint[AttributeCovT], length: IntConstraint) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1162 1163 1164 1165 1166 1167 1168 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1170 1171 1172 1173 1174 1175 1176 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1178 1179 | |
variables_from_length() -> set[str]
Source code in xdsl/irdl/constraints.py
1181 1182 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1184 1185 1186 1187 1188 1189 1190 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1192 1193 1194 1195 1196 1197 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeLengthConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1199 1200 1201 1202 1203 1204 1205 | |
RangeVarConstraint
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain an attribute range with the given constraint, and constrain all occurences of this constraint (i.e, sharing the same name) to be equal.
Source code in xdsl/irdl/constraints.py
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 | |
name: str
instance-attribute
The variable name. All uses of that name refer to the same variable.
constraint: RangeConstraint[AttributeCovT]
instance-attribute
The constraint that the variable must satisfy.
__init__(name: str, constraint: RangeConstraint[AttributeCovT]) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1237 1238 1239 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1241 1242 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1244 1245 1246 1247 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1249 1250 1251 1252 1253 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeVarConstraint[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1255 1256 1257 1258 1259 1260 | |
RangeOf
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain each element in a range to satisfy a given constraint.
Source code in xdsl/irdl/constraints.py
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
__init__(constr: IRDLAttrConstraint[AttributeCovT])
Source code in xdsl/irdl/constraints.py
1271 1272 1273 1274 | |
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1276 1277 1278 1279 1280 1281 1282 | |
verify_length(length: int, constraint_context: ConstraintContext)
Source code in xdsl/irdl/constraints.py
1284 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1286 1287 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: bool) -> bool
Source code in xdsl/irdl/constraints.py
1289 1290 1291 1292 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1294 1295 1296 1297 1298 1299 1300 1301 1302 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> RangeOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1304 1305 1306 1307 | |
SingleOf
dataclass
Bases: RangeConstraint[AttributeCovT]
Constrain a range to only contain a single element, which should satisfy a given constraint.
Source code in xdsl/irdl/constraints.py
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 | |
constr: AttrConstraint[AttributeCovT]
instance-attribute
__init__(constr: AttrConstraint[AttributeCovT]) -> None
verify(attrs: Sequence[Attribute], constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1318 1319 1320 1321 1322 1323 1324 1325 | |
verify_length(length: int, constraint_context: ConstraintContext) -> None
Source code in xdsl/irdl/constraints.py
1327 1328 1329 | |
variables() -> set[str]
Source code in xdsl/irdl/constraints.py
1331 1332 | |
can_infer(var_constraint_names: AbstractSet[str], *, length_known: int | None) -> bool
Source code in xdsl/irdl/constraints.py
1334 1335 1336 1337 | |
infer(context: ConstraintContext, *, length: int | None) -> Sequence[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1339 1340 1341 1342 | |
mapping_type_vars(type_var_mapping: Mapping[TypeVar, AttrConstraint | IntConstraint]) -> SingleOf[AttributeCovT]
Source code in xdsl/irdl/constraints.py
1344 1345 1346 1347 | |
attr_constr_coercion(attr: AttributeCovT | type[AttributeCovT] | AttrConstraint[AttributeCovT]) -> AttrConstraint[AttributeCovT]
Attributes are coerced into EqAttrConstraints, and Attribute types are coerced into BaseAttr.
Source code in xdsl/irdl/constraints.py
403 404 405 406 407 408 409 410 411 412 413 | |