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) -> None
abstractmethod
Parses the directive.
Source code in xdsl/irdl/declarative_assembly_format.py
300 301 302 303 304 305 | |
parse_optional(parser: Parser, state: ParsingState) -> None
Optionally parses a directive.
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) -> None
abstractmethod
Parses types for the directive.
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)
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 | |
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)
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 | |
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 | |
__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)
Source code in xdsl/irdl/declarative_assembly_format.py
565 566 567 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
569 570 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
572 573 | |
get(op: IRDLOperation) -> SSAValue
Source code in xdsl/irdl/declarative_assembly_format.py
575 576 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
578 579 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
581 582 583 | |
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
586 587 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 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, operands: Sequence[UnresolvedOperand])
Source code in xdsl/irdl/declarative_assembly_format.py
594 595 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
597 598 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
600 601 602 603 604 605 606 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
608 609 610 611 612 613 614 615 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
617 618 | |
get(op: IRDLOperation) -> VarOperand
Source code in xdsl/irdl/declarative_assembly_format.py
620 621 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
623 624 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
626 627 628 629 630 631 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
633 634 | |
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
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | |
set(state: ParsingState, operand: UnresolvedOperand | None)
Source code in xdsl/irdl/declarative_assembly_format.py
644 645 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
647 648 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
650 651 652 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
654 655 656 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
658 659 | |
get(op: IRDLOperation) -> SSAValue | None
Source code in xdsl/irdl/declarative_assembly_format.py
661 662 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
664 665 666 667 668 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
670 671 672 673 674 675 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
677 678 | |
OperandsOrResultDirective
dataclass
Bases: TypeableDirective, ABC
Base class for the 'operands' and 'results' directives.
Source code in xdsl/irdl/declarative_assembly_format.py
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 | |
__init__() -> None
is_variadic_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
690 691 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
693 694 | |
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
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 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 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
725 726 727 728 729 730 731 732 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
755 756 757 758 759 760 761 762 763 764 765 766 767 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
769 770 771 772 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
774 775 776 777 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
779 780 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
782 783 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
785 786 | |
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
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
798 799 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
801 802 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
804 805 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
807 808 | |
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
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 | |
__init__(name: str, index: int) -> None
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
820 821 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
823 824 825 826 827 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
829 830 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
832 833 | |
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
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | |
set_types(state: ParsingState, types: Sequence[Attribute])
Source code in xdsl/irdl/declarative_assembly_format.py
844 845 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
847 848 849 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
851 852 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
854 855 856 857 858 | |
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
861 862 863 864 865 866 867 868 869 870 871 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 | |
set_types(state: ParsingState, types: Sequence[Attribute]) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
868 869 870 871 872 873 874 875 | |
parse_types(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
877 878 879 880 881 882 883 884 885 886 887 888 889 | |
parse_single_type(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
891 892 893 894 | |
get_types(op: IRDLOperation) -> Sequence[Attribute]
Source code in xdsl/irdl/declarative_assembly_format.py
896 897 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
899 900 | |
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
903 904 905 906 907 908 909 910 911 912 913 914 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 | |
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)
Source code in xdsl/irdl/declarative_assembly_format.py
919 920 921 922 923 924 925 926 927 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
929 930 931 932 933 934 935 936 937 938 939 940 941 | |
RegionDirective
dataclass
Bases: FormatDirective, ABC
Baseclass to help keep typechecking simple.
Source code in xdsl/irdl/declarative_assembly_format.py
944 945 946 947 | |
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
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Region)
Source code in xdsl/irdl/declarative_assembly_format.py
958 959 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
961 962 | |
parse_optional(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
964 965 966 967 968 | |
get(op: IRDLOperation) -> Region
Source code in xdsl/irdl/declarative_assembly_format.py
970 971 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
973 974 975 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
977 978 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
980 981 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
983 984 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
986 987 | |
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
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | |
__init__(name: str, index: int) -> None
set(state: ParsingState, region: Sequence[Region])
Source code in xdsl/irdl/declarative_assembly_format.py
999 1000 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1002 1003 1004 1005 1006 1007 1008 1009 | |
parse_optional(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1011 1012 | |
get(op: IRDLOperation) -> Sequence[Region]
Source code in xdsl/irdl/declarative_assembly_format.py
1014 1015 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1017 1018 1019 1020 1021 1022 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1024 1025 | |
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
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 | |
set(state: ParsingState, region: Region | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1035 1036 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1038 1039 1040 | |
parse_optional(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1042 1043 | |
get(op: IRDLOperation) -> Region | None
Source code in xdsl/irdl/declarative_assembly_format.py
1045 1046 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1048 1049 1050 1051 1052 1053 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1055 1056 | |
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
1059 1060 1061 1062 1063 | |
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
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
set(state: ParsingState, successor: Successor)
Source code in xdsl/irdl/declarative_assembly_format.py
1073 1074 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1076 1077 1078 | |
get(op: IRDLOperation) -> Successor
Source code in xdsl/irdl/declarative_assembly_format.py
1080 1081 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1083 1084 1085 | |
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
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 | |
set(state: ParsingState, successors: Sequence[Successor])
Source code in xdsl/irdl/declarative_assembly_format.py
1095 1096 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1098 1099 1100 1101 1102 1103 1104 1105 | |
get(op: IRDLOperation) -> Sequence[Successor]
Source code in xdsl/irdl/declarative_assembly_format.py
1107 1108 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1110 1111 1112 1113 1114 1115 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1117 1118 | |
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
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 | |
set(state: ParsingState, successor: Successor | None)
Source code in xdsl/irdl/declarative_assembly_format.py
1128 1129 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1131 1132 1133 | |
get(op: IRDLOperation) -> Successor | None
Source code in xdsl/irdl/declarative_assembly_format.py
1135 1136 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1138 1139 1140 1141 1142 1143 | |
set_empty(state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1145 1146 | |
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
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 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 | |
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
1165 1166 1167 1168 1169 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1171 1172 1173 1174 1175 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1177 1178 1179 1180 | |
get(op: IRDLOperation) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1182 1183 1184 1185 1186 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1188 1189 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1191 1192 1193 1194 1195 1196 1197 1198 1199 | |
is_present(op: IRDLOperation) -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1201 1202 1203 | |
is_anchorable() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1205 1206 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1208 1209 | |
UniqueBaseAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 | |
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
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1228 1229 1230 1231 1232 1233 | |
TypedAttributeVariable
dataclass
Bases: UniqueBaseAttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 | |
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
1241 1242 1243 1244 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1246 1247 1248 | |
DenseArrayAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 | |
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
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1285 1286 1287 1288 1289 1290 1291 1292 1293 | |
SymbolNameAttributeVariable
dataclass
Bases: AttributeVariable
Source code in xdsl/irdl/declarative_assembly_format.py
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 | |
parse_attr(parser: Parser) -> Attribute | None
Source code in xdsl/irdl/declarative_assembly_format.py
1297 1298 1299 1300 1301 | |
print_attr(printer: Printer, attr: Attribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1303 1304 1305 | |
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
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 | |
__init__(name: str, is_property: bool)
Source code in xdsl/irdl/declarative_assembly_format.py
1318 1319 | |
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1321 1322 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1324 1325 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1327 1328 | |
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
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 | |
whitespace: Literal[' ', '\n', '']
instance-attribute
The whitespace that should be printed.
__init__(whitespace: Literal[' ', '\n', '']) -> None
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1364 1365 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1367 1368 | |
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
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 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 | |
punctuation: PunctuationSpelling
instance-attribute
The punctuation that should be printed/parsed.
__init__(punctuation: PunctuationSpelling) -> None
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1386 1387 | |
parse_optional(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1389 1390 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1409 1410 | |
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
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 | |
keyword: str
instance-attribute
The identifier that should be printed.
__init__(keyword: str) -> None
parse(parser: Parser, state: ParsingState)
Source code in xdsl/irdl/declarative_assembly_format.py
1425 1426 | |
parse_optional(parser: Parser, state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1428 1429 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1431 1432 | |
is_optional_like() -> bool
Source code in xdsl/irdl/declarative_assembly_format.py
1434 1435 | |
OptionalGroupDirective
dataclass
Bases: FormatDirective
Source code in xdsl/irdl/declarative_assembly_format.py
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 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 | |
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)
Source code in xdsl/irdl/declarative_assembly_format.py
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 | |
print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 | |
set_empty(state: ParsingState) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1473 1474 1475 1476 1477 1478 | |
AttrParsingState
dataclass
State during parsing of a ParametrizedAttribute using declarative format.
Source code in xdsl/irdl/declarative_assembly_format.py
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 | |
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
1495 1496 1497 | |
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
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 | |
__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
1511 1512 1513 1514 1515 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
abstractmethod
Print the directive.
Source code in xdsl/irdl/declarative_assembly_format.py
1517 1518 1519 1520 1521 1522 1523 | |
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
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 | |
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
1543 1544 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1546 1547 1548 1549 | |
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
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 | |
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
1564 1565 | |
print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1567 1568 1569 1570 | |
AttrFormatProgram
dataclass
The toplevel data structure of a declarative assembly format program for attributes/types.
Source code in xdsl/irdl/declarative_assembly_format.py
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 | |
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
1585 1586 1587 1588 1589 | |
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
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 | |
print(printer: Printer, attr: ParametrizedAttribute) -> None
Source code in xdsl/irdl/declarative_assembly_format.py
1603 1604 1605 1606 | |
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 | |