Declarative assembly format
declarative_assembly_format
This file contains the data structures necessary for the parsing and printing of the MLIR declarative assembly format defined at https://mlir.llvm.org/docs/DefiningDialects/Operations/#declarative-assembly-format .
CustomDirectiveInvT = TypeVar('CustomDirectiveInvT', bound=CustomDirective)
module-attribute
ParsingState
dataclass
State carried during the parsing of an operation using the declarative assembly format. It contains the elements that have already been parsed.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
op_type: type[IRDLOperation] = op_type
instance-attribute
operands: list[None | Sequence[UnresolvedOperand]] = [None] * len(op_def.operands)
instance-attribute
operand_types: list[None | Sequence[Attribute]] = [None] * len(op_def.operands)
instance-attribute
result_types: list[None | Sequence[Attribute]] = [None] * len(op_def.results)
instance-attribute
regions: list[None | Sequence[Region]] = [None] * len(op_def.regions)
instance-attribute
successors: list[None | Sequence[Successor]] = [None] * len(op_def.successors)
instance-attribute
attributes: dict[str, Attribute] = {}
instance-attribute
properties: dict[str, Attribute] = {}
instance-attribute
context: ConstraintContext = ConstraintContext()
instance-attribute
__init__(op_type: type[IRDLOperation])
Source code in xdsl/irdl/declarative_assembly_format.py
72 73 74 75 76 77 78 79 80 81 82 | |
PrintingState
dataclass
State carried during the printing of an operation using the declarative assembly format. It contains information on the last token, to know if a space should be emitted.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
last_was_punctuation: bool = field(default=False)
class-attribute
instance-attribute
Was the last element parsed a punctuation.
should_emit_space: bool = field(default=True)
class-attribute
instance-attribute
Should the printer emit a space before the next element. Depending on the directive, the space might not be printed (for instance for some punctuations).
__init__(last_was_punctuation: bool = False, should_emit_space: bool = True) -> None
print_whitespace(printer: Printer)
Handles whitespace printing for the majority of format directives.
Source code in xdsl/irdl/declarative_assembly_format.py
102 103 104 105 106 107 108 109 | |
FormatProgram
dataclass
The toplevel data structure of a declarative assembly format program. It is used to parse and print an operation.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
stmts: tuple[FormatDirective, ...]
instance-attribute
The statements composing the program. They are executed in order.
__init__(stmts: tuple[FormatDirective, ...]) -> None
from_str(input: str, op_def: OpDef) -> FormatProgram
staticmethod
Create the assembly format data program from its string representation. This might raise a ParseError exception if the string is invalid.
Source code in xdsl/irdl/declarative_assembly_format.py
122 123 124 125 126 127 128 129 130 | |
parse(parser: Parser, op_type: type[IRDLOperationInvT]) -> IRDLOperationInvT
Parse the operation with this format. The given operation type is expected to be the operation type represented by the operation definition passed to the FormatParser that created this FormatProgram.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
resolve_constraint_variables(state: ParsingState, op_def: OpDef)
Runs verification on the parsed parts of the operation, adding the resolved value
of each constraint variable to the ConstraintContext state.context.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
resolve_operand_types(state: ParsingState, op_def: OpDef) -> Sequence[Sequence[Attribute]]
Use the inferred type resolutions to fill missing operand types from other parsed types.
Source code in xdsl/irdl/declarative_assembly_format.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | |
resolve_result_types(state: ParsingState, op_def: OpDef) -> Sequence[Sequence[Attribute]]
Use the inferred type resolutions to fill missing result types from other parsed types.
Source code in xdsl/irdl/declarative_assembly_format.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
print(printer: Printer, op: IRDLOperation) -> None
Print the operation with this format. The given operation is expected to be defined using the operation definition passed to the FormatParser that created this FormatProgram.
Source code in xdsl/irdl/declarative_assembly_format.py
254 255 256 257 258 259 260 261 262 | |
Directive
dataclass
Bases: ABC
An assembly format directive
Source code in xdsl/irdl/declarative_assembly_format.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 | |
__init__() -> None
is_present(op: IRDLOperation) -> bool
Check if the directive is present in the input.
Source code in xdsl/irdl/declarative_assembly_format.py
269 270 271 272 273 | |
is_anchorable() -> bool
Can appear as an anchor in an optional group.
Source code in xdsl/irdl/declarative_assembly_format.py
275 276 277 278 279 | |
is_variadic_like() -> bool
Variadic-like format directives parse a comma separated list, and cannot be
followed by , directive.
Source code in xdsl/irdl/declarative_assembly_format.py
281 282 283 284 285 286 | |
is_optional_like() -> bool
Directives that successfully parse the empty string. The first element in an optional group must be optional-like.
Source code in xdsl/irdl/declarative_assembly_format.py
288 289 290 291 292 293 | |
FormatDirective
dataclass
Bases: Directive, ABC
A format directive for operation format.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
parse(parser: Parser, state: ParsingState) -> bool
abstractmethod
Parses the directive, returning True if input was consumed.
Source code in xdsl/irdl/declarative_assembly_format.py
299 300 301 302 303 304 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Parses an optional directive, returning False if not present.
Source code in xdsl/irdl/declarative_assembly_format.py
306 307 308 309 310 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
abstractmethod
Source code in xdsl/irdl/declarative_assembly_format.py
312 313 314 315 | |
set_empty(state: ParsingState)
Set the appropriate field of the parsing state to be empty. Used when a variable appears in an optional group which is not parsed.
Source code in xdsl/irdl/declarative_assembly_format.py
317 318 319 320 321 322 | |
CustomDirective
dataclass
Bases: FormatDirective, ABC
A user defined assembly format directive.
A custom directive can have multiple parameters, whose types should be
declared in the parameters field.
Source code in xdsl/irdl/declarative_assembly_format.py
325 326 327 328 329 330 331 332 | |
parameters: dict[str, type[FormatDirective]]
class-attribute
TypeableDirective
dataclass
Bases: Directive, ABC
Directives which can be used to set or get types.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
abstractmethod
Set the types for this directive to the given sequence.
Source code in xdsl/irdl/declarative_assembly_format.py
359 360 361 362 363 364 | |
parse_types(parser: Parser, state: ParsingState) -> bool
abstractmethod
Parses types for the directive, returning True if input was consumed.
Source code in xdsl/irdl/declarative_assembly_format.py
366 367 368 369 370 371 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
abstractmethod
Parse exactly one type for the directive.
Source code in xdsl/irdl/declarative_assembly_format.py
373 374 375 376 377 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
abstractmethod
Source code in xdsl/irdl/declarative_assembly_format.py
379 380 | |
TypeDirective
dataclass
Bases: FormatDirective
A directive which parses the type of a typeable directive, with format: type-directive ::= type(typeable-directive)
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
inner: TypeableDirective
instance-attribute
__init__(inner: TypeableDirective) -> None
set(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
392 393 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
395 396 | |
get(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
398 399 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
401 402 403 404 405 406 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
408 409 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
411 412 | |
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
414 415 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
417 418 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
420 421 | |
VariableDirective
dataclass
Bases: Directive, ABC
A variable directive, with the following format: variable-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
424 425 426 427 428 429 430 431 432 433 434 435 | |
name: str
instance-attribute
The variable name. This is only used for error message reporting.
index: int
instance-attribute
Index of the variable(operand or result) definition.
__init__(name: str, index: int) -> None
VariadicVariable
dataclass
Bases: VariableDirective, ABC
Source code in xdsl/irdl/declarative_assembly_format.py
438 439 440 441 442 443 444 445 446 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
439 440 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
442 443 | |
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
445 446 | |
OptionalVariable
dataclass
Bases: VariableDirective, ABC
Source code in xdsl/irdl/declarative_assembly_format.py
449 450 451 452 453 454 455 456 457 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
450 451 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
453 454 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
456 457 | |
AttrDictDirective
dataclass
Bases: FormatDirective
An attribute dictionary directive, with the following format:
attr-dict-directive ::= attr-dict
attr-dict-with-format-directive ::= attributes attr-dict
The directive (with and without the keyword) will always print a space before, and
will not request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
with_keyword: bool
instance-attribute
If this is set, the format starts with the attributes keyword.
reserved_attr_names: set[str]
instance-attribute
The set of attributes that should not be printed. These attributes are printed in other places in the format, and thus would be printed twice otherwise.
expected_properties: set[str]
instance-attribute
Properties that should be printed and parsed as part of this attr-dict. This is used to keep compatibility with MLIR which allows that.
__init__(with_keyword: bool, reserved_attr_names: set[str], expected_properties: set[str]) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
539 540 | |
OperandDirective
dataclass
Bases: FormatDirective, TypeableDirective, ABC
Base class for operand directives to aid typechecking.
Source code in xdsl/irdl/declarative_assembly_format.py
543 544 545 546 547 548 | |
OperandVariable
dataclass
Bases: VariableDirective, OperandDirective
An operand variable, with the following format: operand-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, operand: UnresolvedOperand)
Source code in xdsl/irdl/declarative_assembly_format.py
559 560 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
562 563 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
565 566 567 568 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
570 571 572 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
574 575 | |
get(op: IRDLOperation) -> SSAValue
Source code in xdsl/irdl/declarative_assembly_format.py
577 578 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
580 581 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
583 584 585 | |
VariadicOperandVariable
dataclass
Bases: VariadicVariable, OperandDirective
A variadic operand variable, with the following format:
operand-directive ::= ( percent-ident ( , percent-id )* )?
The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.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 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, operands: Sequence[UnresolvedOperand])
Source code in xdsl/irdl/declarative_assembly_format.py
596 597 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
599 600 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
602 603 604 605 606 607 608 609 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
611 612 613 614 615 616 617 618 619 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
621 622 | |
get(op: IRDLOperation) -> VarOperand
Source code in xdsl/irdl/declarative_assembly_format.py
624 625 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
627 628 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
630 631 632 633 634 635 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
637 638 | |
OptionalOperandVariable
dataclass
Bases: OptionalVariable, OperandDirective
An optional operand variable, with the following format: operand-directive ::= ( percent-ident )? The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
set(state: ParsingState, operand: UnresolvedOperand | None)
Source code in xdsl/irdl/declarative_assembly_format.py
648 649 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
651 652 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
654 655 656 657 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
659 660 661 662 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
664 665 | |
get(op: IRDLOperation) -> SSAValue | None
Source code in xdsl/irdl/declarative_assembly_format.py
667 668 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
670 671 672 673 674 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
676 677 678 679 680 681 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
683 684 | |
OperandsOrResultDirective
dataclass
Bases: TypeableDirective, ABC
Base class for the 'operands' and 'results' directives.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
__init__() -> None
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
696 697 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
699 700 | |
OperandsDirective
dataclass
Bases: OperandsOrResultDirective, FormatDirective
An operands directive, with the following format: operands-directive ::= operands Prints each operand of the operation, inserting a comma between each.
Source code in xdsl/irdl/declarative_assembly_format.py
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 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 791 792 793 794 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
731 732 733 734 735 736 737 738 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
762 763 764 765 766 767 768 769 770 771 772 773 774 775 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
777 778 779 780 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
782 783 784 785 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
787 788 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
790 791 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
793 794 | |
ResultVariable
dataclass
Bases: VariableDirective, TypeableDirective
An result variable, with the following format: result-directive ::= dollar-ident This directive can not be used for parsing and printing directly, as result parsing is not handled by the custom operation parser.
Source code in xdsl/irdl/declarative_assembly_format.py
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
806 807 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
809 810 811 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
813 814 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
816 817 | |
VariadicResultVariable
dataclass
Bases: VariadicVariable, TypeableDirective
A variadic result variable, with the following format:
result-directive ::= percent-ident (( , percent-id )* )?
This directive can not be used for parsing and printing directly, as result
parsing is not handled by the custom operation parser.
Source code in xdsl/irdl/declarative_assembly_format.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 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
829 830 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
832 833 834 835 836 837 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
839 840 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
842 843 | |
OptionalResultVariable
dataclass
Bases: OptionalVariable, TypeableDirective
An optional result variable, with the following format: result-directive ::= ( percent-ident )? This directive can not be used for parsing and printing directly, as result parsing is not handled by the custom operation parser.
Source code in xdsl/irdl/declarative_assembly_format.py
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
854 855 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
857 858 859 860 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
862 863 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
865 866 867 868 869 | |
ResultsDirective
dataclass
Bases: OperandsOrResultDirective
A results directive, with the following format: results-directive ::= results A typeable directive which processes the result types of the operation.
Source code in xdsl/irdl/declarative_assembly_format.py
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
879 880 881 882 883 884 885 886 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
888 889 890 891 892 893 894 895 896 897 898 899 900 901 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
903 904 905 906 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
908 909 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
911 912 | |
FunctionalTypeDirective
dataclass
Bases: FormatDirective
A directive which parses a functional type, with format:
functional-type-directive ::= functional-type(typeable-directive, typeable-directive)
A functional type is either of the form
( type-list ) -> ( type-list )
or
( type-list ) -> type
where type-list is a comma separated list of types (or the empty string to signify the empty list).
The second format is preferred for printing when possible.
Source code in xdsl/irdl/declarative_assembly_format.py
915 916 917 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 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | |
operand_typeable_directive: TypeableDirective
instance-attribute
result_typeable_directive: TypeableDirective
instance-attribute
__init__(operand_typeable_directive: TypeableDirective, result_typeable_directive: TypeableDirective) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
931 932 933 934 935 936 937 938 939 940 941 942 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
944 945 946 947 948 949 950 951 952 953 954 955 956 | |
RegionDirective
dataclass
Bases: FormatDirective, ABC
Baseclass to help keep typechecking simple.
Source code in xdsl/irdl/declarative_assembly_format.py
959 960 961 962 | |
RegionVariable
dataclass
Bases: RegionDirective, VariableDirective
A region variable, with the following format: region-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
965 966 967 968 969 970 971 972 973 974 975 976 977 978 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 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Region)
Source code in xdsl/irdl/declarative_assembly_format.py
973 974 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
976 977 978 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
980 981 982 983 984 985 986 | |
get(op: IRDLOperation) -> Region
Source code in xdsl/irdl/declarative_assembly_format.py
988 989 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
991 992 993 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
995 996 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
998 999 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1001 1002 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1004 1005 | |
VariadicRegionVariable
dataclass
Bases: RegionDirective, VariadicVariable
A variadic region variable, with the following format: region-directive ::= dollar-ident
The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Sequence[Region])
Source code in xdsl/irdl/declarative_assembly_format.py
1017 1018 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1020 1021 1022 1023 1024 1025 1026 1027 1028 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1030 1031 | |
get(op: IRDLOperation) -> Sequence[Region]
Source code in xdsl/irdl/declarative_assembly_format.py
1033 1034 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1036 1037 1038 1039 1040 1041 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1043 1044 | |
OptionalRegionVariable
dataclass
Bases: RegionDirective, OptionalVariable
An optional region variable, with the following format: region-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 | |
set(state: ParsingState, region: Region | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1054 1055 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1057 1058 1059 1060 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1062 1063 | |
get(op: IRDLOperation) -> Region | None
Source code in xdsl/irdl/declarative_assembly_format.py
1065 1066 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1068 1069 1070 1071 1072 1073 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1075 1076 | |
SuccessorDirective
dataclass
Bases: FormatDirective, ABC
Base class for type checking. A variadic successor directive cannot follow another variadic successor directive.
Source code in xdsl/irdl/declarative_assembly_format.py
1079 1080 1081 1082 1083 | |
SuccessorVariable
dataclass
Bases: VariableDirective, SuccessorDirective
A successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 | |
set(state: ParsingState, successor: Successor)
Source code in xdsl/irdl/declarative_assembly_format.py
1093 1094 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1096 1097 1098 1099 1100 1101 | |
get(op: IRDLOperation) -> Successor
Source code in xdsl/irdl/declarative_assembly_format.py
1103 1104 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1106 1107 1108 | |
VariadicSuccessorVariable
dataclass
Bases: VariadicVariable, SuccessorDirective
A variadic successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
set(state: ParsingState, successors: Sequence[Successor])
Source code in xdsl/irdl/declarative_assembly_format.py
1118 1119 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 | |
get(op: IRDLOperation) -> Sequence[Successor]
Source code in xdsl/irdl/declarative_assembly_format.py
1133 1134 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1136 1137 1138 1139 1140 1141 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1143 1144 | |
OptionalSuccessorVariable
dataclass
Bases: OptionalVariable, SuccessorDirective
An optional successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 | |
set(state: ParsingState, successor: Successor | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1154 1155 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1157 1158 1159 1160 | |
get(op: IRDLOperation) -> Successor | None
Source code in xdsl/irdl/declarative_assembly_format.py
1162 1163 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1165 1166 1167 1168 1169 1170 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1172 1173 | |
AttributeVariable
dataclass
Bases: FormatDirective
An attribute variable, with the following format: attribute-variable ::= dollar-ident The directive will request a space to be printed right after.
Source code in xdsl/irdl/declarative_assembly_format.py
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 1206 1207 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 | |
name: str
instance-attribute
The attribute name as it should be in the attribute or property dictionary.
is_property: bool
instance-attribute
Should this attribute be put in the attribute or property dictionary.
is_optional: bool
instance-attribute
Is this attribute optional in the operation definition.
default_value: Attribute | None
instance-attribute
__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None) -> None
set(state: ParsingState, attr: Attribute)
Source code in xdsl/irdl/declarative_assembly_format.py
1192 1193 1194 1195 1196 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1198 1199 1200 1201 1202 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1204 1205 1206 1207 1208 1209 | |
get(op: IRDLOperation) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1211 1212 1213 1214 1215 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1217 1218 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1220 1221 1222 1223 1224 1225 1226 1227 1228 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1230 1231 1232 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1234 1235 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1237 1238 | |
UniqueBaseAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 | |
unique_base: type[Attribute]
instance-attribute
The known base class of the Attribute, if any.
__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, unique_base: type[Attribute]) -> None
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1257 1258 1259 1260 1261 1262 | |
TypedAttributeVariable
dataclass
Bases: UniqueBaseAttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 | |
unique_type: Attribute
instance-attribute
The known type of the Attribute, if any.
__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, unique_base: type[Attribute], unique_type: Attribute) -> None
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1270 1271 1272 1273 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1275 1276 1277 | |
DenseArrayAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
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 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 | |
elt_type: IntegerType | AnyFloat
instance-attribute
__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, elt_type: IntegerType | AnyFloat) -> None
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1314 1315 1316 1317 1318 1319 1320 1321 1322 | |
SymbolNameAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1326 1327 1328 1329 1330 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1332 1333 1334 | |
OptionalUnitAttrVariable
Bases: AttributeVariable
An optional UnitAttr variable that holds no value and derives its meaning from its existence. Holds a parse and print method to reflect this.
operand-directive ::= (unit_attr unit_attr^)?
Also see: https://mlir.llvm.org/docs/DefiningDialects/Operations/#unit-attributes
Source code in xdsl/irdl/declarative_assembly_format.py
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 | |
__init__(name: str, is_property: bool)
Source code in xdsl/irdl/declarative_assembly_format.py
1347 1348 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1350 1351 1352 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1354 1355 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1357 1358 | |
WhitespaceDirective
dataclass
Bases: FormatDirective
A whitespace directive, with the following format:
whitespace-directive ::= `
| ` | ``
This directive is only applied during printing, and has no effect during
parsing.
The directive will not request any space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 | |
whitespace: Literal[' ', '\n', '']
instance-attribute
The whitespace that should be printed.
__init__(whitespace: Literal[' ', '\n', '']) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1374 1375 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1377 1378 1379 1380 | |
PunctuationDirective
dataclass
Bases: FormatDirective
A punctuation directive, with the following format:
punctuation-directive ::= punctuation
The directive will request a space to be printed right after, unless the punctuation
is <, (, {, or [.
It will also print a space before if a space is requested, and that the punctuation
is neither >, ), }, ], or , if the last element was a punctuation, and
additionally neither <, (, }, ], if the last element was not a punctuation.
Source code in xdsl/irdl/declarative_assembly_format.py
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 | |
punctuation: PunctuationSpelling
instance-attribute
The punctuation that should be printed/parsed.
__init__(punctuation: PunctuationSpelling) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1398 1399 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1418 1419 | |
KeywordDirective
dataclass
Bases: FormatDirective
A keyword directive, with the following format: keyword-directive ::= bare-ident The directive expects a specific identifier, and will request a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 | |
keyword: str
instance-attribute
The identifier that should be printed.
__init__(keyword: str) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1434 1435 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1437 1438 1439 1440 1441 1442 1443 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1445 1446 | |
OptionalGroupDirective
dataclass
Bases: FormatDirective
Source code in xdsl/irdl/declarative_assembly_format.py
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 | |
anchor: Directive
instance-attribute
then_whitespace: tuple[WhitespaceDirective, ...]
instance-attribute
then_first: FormatDirective
instance-attribute
then_elements: tuple[FormatDirective, ...]
instance-attribute
else_elements: tuple[FormatDirective, ...]
instance-attribute
__init__(anchor: Directive, then_whitespace: tuple[WhitespaceDirective, ...], then_first: FormatDirective, then_elements: tuple[FormatDirective, ...], else_elements: tuple[FormatDirective, ...]) -> None
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 | |
set_empty(state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1483 1484 1485 1486 1487 1488 | |
irdl_custom_directive(cls: type[CustomDirectiveInvT]) -> type[CustomDirectiveInvT]
Decorator used on custom directives to define the parameters class variable.
Source code in xdsl/irdl/declarative_assembly_format.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 | |