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
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 | |
op_type: type[IRDLOperation] = op_type
instance-attribute
operands: list[Sequence[UnresolvedOperand] | None] = [None] * len(op_def.operands)
instance-attribute
operand_types: list[Sequence[Attribute] | None] = [None] * len(op_def.operands)
instance-attribute
result_types: list[Sequence[Attribute] | None] = [None] * len(op_def.results)
instance-attribute
regions: list[Sequence[Region] | None] = [None] * len(op_def.regions)
instance-attribute
successors: list[Sequence[Successor] | None] = [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
73 74 75 76 77 78 79 80 81 82 83 | |
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
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
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
103 104 105 106 107 108 109 110 | |
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
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
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
123 124 125 126 127 128 129 130 131 | |
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
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 | |
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
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 | |
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
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |
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
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
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
255 256 257 258 259 260 261 262 263 | |
Directive
dataclass
Bases: ABC
An assembly format directive
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
__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
270 271 272 273 274 | |
is_anchorable() -> bool
Can appear as an anchor in an optional group.
Source code in xdsl/irdl/declarative_assembly_format.py
276 277 278 279 280 | |
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
282 283 284 285 286 287 | |
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
289 290 291 292 293 294 | |
FormatDirective
dataclass
Bases: Directive, ABC
A format directive for operation format.
Source code in xdsl/irdl/declarative_assembly_format.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | |
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
300 301 302 303 304 305 | |
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
307 308 309 310 311 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
abstractmethod
Source code in xdsl/irdl/declarative_assembly_format.py
313 314 315 316 | |
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
318 319 320 321 322 323 | |
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
326 327 328 329 330 331 332 333 | |
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
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 | |
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
360 361 362 363 364 365 | |
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
367 368 369 370 371 372 | |
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
374 375 376 377 378 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
abstractmethod
Source code in xdsl/irdl/declarative_assembly_format.py
380 381 | |
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
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | |
inner: TypeableDirective
instance-attribute
__init__(inner: TypeableDirective) -> None
set(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
393 394 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
396 397 | |
get(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
399 400 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
402 403 404 405 406 407 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
409 410 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
412 413 | |
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
415 416 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
418 419 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
421 422 | |
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
425 426 427 428 429 430 431 432 433 434 435 436 | |
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
439 440 441 442 443 444 445 446 447 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
440 441 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
443 444 | |
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
446 447 | |
OptionalVariable
dataclass
Bases: VariableDirective, ABC
Source code in xdsl/irdl/declarative_assembly_format.py
450 451 452 453 454 455 456 457 458 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
451 452 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
454 455 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
457 458 | |
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
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 | |
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
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
540 541 | |
OperandDirective
dataclass
Bases: FormatDirective, TypeableDirective, ABC
Base class for operand directives to aid typechecking.
Source code in xdsl/irdl/declarative_assembly_format.py
544 545 546 547 548 549 | |
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
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, operand: UnresolvedOperand)
Source code in xdsl/irdl/declarative_assembly_format.py
560 561 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
563 564 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
566 567 568 569 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
571 572 573 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
575 576 | |
get(op: IRDLOperation) -> SSAValue
Source code in xdsl/irdl/declarative_assembly_format.py
578 579 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
581 582 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
584 585 586 | |
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
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 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, operands: Sequence[UnresolvedOperand])
Source code in xdsl/irdl/declarative_assembly_format.py
597 598 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
600 601 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
603 604 605 606 607 608 609 610 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
612 613 614 615 616 617 618 619 620 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
622 623 | |
get(op: IRDLOperation) -> VarOperand
Source code in xdsl/irdl/declarative_assembly_format.py
625 626 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
628 629 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
631 632 633 634 635 636 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
638 639 | |
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
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 | |
set(state: ParsingState, operand: UnresolvedOperand | None)
Source code in xdsl/irdl/declarative_assembly_format.py
649 650 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
652 653 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
655 656 657 658 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
660 661 662 663 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
665 666 | |
get(op: IRDLOperation) -> SSAValue | None
Source code in xdsl/irdl/declarative_assembly_format.py
668 669 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
671 672 673 674 675 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
677 678 679 680 681 682 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
684 685 | |
OperandsOrResultDirective
dataclass
Bases: TypeableDirective, ABC
Base class for the 'operands' and 'results' directives.
Source code in xdsl/irdl/declarative_assembly_format.py
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 | |
__init__() -> None
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
697 698 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
700 701 | |
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
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 795 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
732 733 734 735 736 737 738 739 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
763 764 765 766 767 768 769 770 771 772 773 774 775 776 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
778 779 780 781 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
783 784 785 786 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
788 789 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
791 792 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
794 795 | |
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
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
807 808 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
810 811 812 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
814 815 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
817 818 | |
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
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
830 831 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
833 834 835 836 837 838 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
840 841 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
843 844 | |
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
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
855 856 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
858 859 860 861 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
863 864 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
866 867 868 869 870 | |
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
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 913 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
880 881 882 883 884 885 886 887 | |
parse_types(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
889 890 891 892 893 894 895 896 897 898 899 900 901 902 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
904 905 906 907 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
909 910 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
912 913 | |
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
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 957 | |
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
932 933 934 935 936 937 938 939 940 941 942 943 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
945 946 947 948 949 950 951 952 953 954 955 956 957 | |
RegionDirective
dataclass
Bases: FormatDirective, ABC
Baseclass to help keep typechecking simple.
Source code in xdsl/irdl/declarative_assembly_format.py
960 961 962 963 | |
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
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 1006 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Region)
Source code in xdsl/irdl/declarative_assembly_format.py
974 975 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
977 978 979 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
981 982 983 984 985 986 987 | |
get(op: IRDLOperation) -> Region
Source code in xdsl/irdl/declarative_assembly_format.py
989 990 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
992 993 994 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
996 997 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
999 1000 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1002 1003 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1005 1006 | |
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
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 1045 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Sequence[Region])
Source code in xdsl/irdl/declarative_assembly_format.py
1018 1019 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1021 1022 1023 1024 1025 1026 1027 1028 1029 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1031 1032 | |
get(op: IRDLOperation) -> Sequence[Region]
Source code in xdsl/irdl/declarative_assembly_format.py
1034 1035 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1037 1038 1039 1040 1041 1042 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1044 1045 | |
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
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 1077 | |
set(state: ParsingState, region: Region | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1055 1056 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1058 1059 1060 1061 | |
parse_optional(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1063 1064 | |
get(op: IRDLOperation) -> Region | None
Source code in xdsl/irdl/declarative_assembly_format.py
1066 1067 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1069 1070 1071 1072 1073 1074 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1076 1077 | |
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
1080 1081 1082 1083 1084 | |
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
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 | |
set(state: ParsingState, successor: Successor)
Source code in xdsl/irdl/declarative_assembly_format.py
1094 1095 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1097 1098 1099 1100 1101 1102 | |
get(op: IRDLOperation) -> Successor
Source code in xdsl/irdl/declarative_assembly_format.py
1104 1105 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1107 1108 1109 | |
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
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 | |
set(state: ParsingState, successors: Sequence[Successor])
Source code in xdsl/irdl/declarative_assembly_format.py
1119 1120 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 | |
get(op: IRDLOperation) -> Sequence[Successor]
Source code in xdsl/irdl/declarative_assembly_format.py
1134 1135 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1137 1138 1139 1140 1141 1142 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1144 1145 | |
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
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 1174 | |
set(state: ParsingState, successor: Successor | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1155 1156 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1158 1159 1160 1161 | |
get(op: IRDLOperation) -> Successor | None
Source code in xdsl/irdl/declarative_assembly_format.py
1163 1164 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1166 1167 1168 1169 1170 1171 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1173 1174 | |
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
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 1239 | |
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
1193 1194 1195 1196 1197 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1199 1200 1201 1202 1203 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1205 1206 1207 1208 1209 1210 | |
get(op: IRDLOperation) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1212 1213 1214 1215 1216 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1218 1219 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1221 1222 1223 1224 1225 1226 1227 1228 1229 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1231 1232 1233 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1235 1236 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1238 1239 | |
UniqueBaseAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 | |
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
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1258 1259 1260 1261 1262 1263 | |
TypedAttributeVariable
dataclass
Bases: UniqueBaseAttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | |
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
1271 1272 1273 1274 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1276 1277 1278 | |
DenseArrayAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
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 1323 | |
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
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 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1315 1316 1317 1318 1319 1320 1321 1322 1323 | |
SymbolNameAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1327 1328 1329 1330 1331 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1333 1334 1335 | |
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
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 | |
__init__(name: str, is_property: bool)
Source code in xdsl/irdl/declarative_assembly_format.py
1348 1349 | |
parse(parser: Parser, state: ParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1351 1352 1353 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1355 1356 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1358 1359 | |
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
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 | |
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
1395 1396 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1398 1399 | |
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
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | |
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
1417 1418 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1437 1438 | |
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
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 | |
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
1453 1454 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1456 1457 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1459 1460 | |
OptionalGroupDirective
dataclass
Bases: FormatDirective
Source code in xdsl/irdl/declarative_assembly_format.py
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 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 | |
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
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 | |
set_empty(state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1497 1498 1499 1500 1501 1502 | |
AttrParsingState
dataclass
State during parsing of a ParametrizedAttribute using declarative format.
Source code in xdsl/irdl/declarative_assembly_format.py
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 | |
attr_def: ParamAttrDef = attr_def
instance-attribute
parameters: list[Attribute | None] = [None] * len(attr_def.parameters)
instance-attribute
__init__(attr_def: ParamAttrDef)
Source code in xdsl/irdl/declarative_assembly_format.py
1519 1520 1521 | |
AttrFormatDirective
dataclass
Bases: ABC
Base class for attribute/type format directives.
Separate from FormatDirective because operation formats parse full ops (operands, results, regions, etc.) using Parser and ParsingState, while attribute/type formats only fill parameter slots of a ParametrizedAttribute using AttrParser and AttrParsingState.
Source code in xdsl/irdl/declarative_assembly_format.py
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 | |
__init__() -> None
parse(parser: AttrParser, state: AttrParsingState) -> bool
abstractmethod
Parse the directive, returning True if input was consumed.
Source code in xdsl/irdl/declarative_assembly_format.py
1535 1536 1537 1538 1539 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
abstractmethod
Print the directive.
Source code in xdsl/irdl/declarative_assembly_format.py
1541 1542 1543 1544 1545 1546 1547 | |
AttrWhitespaceDirective
dataclass
Bases: AttrFormatDirective
A whitespace directive for attribute/type assembly format.
Mirrors the op-side WhitespaceDirective: only applied during printing, with no effect during parsing.
Source code in xdsl/irdl/declarative_assembly_format.py
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 | |
whitespace: Literal[' ', '\n', '']
instance-attribute
The whitespace that should be printed.
__init__(whitespace: Literal[' ', '\n', '']) -> None
parse(parser: AttrParser, state: AttrParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1567 1568 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1570 1571 1572 1573 | |
AttrKeywordDirective
dataclass
Bases: AttrFormatDirective
A keyword directive for attribute/type assembly format.
Mirrors the op-side KeywordDirective: expects a specific identifier and requests a space to be printed after.
Source code in xdsl/irdl/declarative_assembly_format.py
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 | |
keyword: str
instance-attribute
The identifier that should be printed.
__init__(keyword: str) -> None
parse(parser: AttrParser, state: AttrParsingState) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1588 1589 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1591 1592 1593 1594 | |
AttrFormatProgram
dataclass
The toplevel data structure of a declarative assembly format program for attributes/types.
Source code in xdsl/irdl/declarative_assembly_format.py
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 | |
stmts: tuple[AttrFormatDirective, ...]
instance-attribute
The statements composing the program. They are executed in order.
__init__(stmts: tuple[AttrFormatDirective, ...]) -> None
from_str(format_str: str, attr_def: ParamAttrDef) -> AttrFormatProgram
staticmethod
Source code in xdsl/irdl/declarative_assembly_format.py
1609 1610 1611 1612 1613 | |
parse(parser: AttrParser, attr_def: ParamAttrDef) -> list[Attribute]
Run each directive in order, returning the parsed parameter values.
IRDL constraint verification runs when the attribute is constructed, not during this parse step.
Source code in xdsl/irdl/declarative_assembly_format.py
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 | |
print(printer: Printer, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1627 1628 1629 1630 | |
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
339 340 341 342 343 344 345 346 347 348 349 350 351 352 | |