Abstract ops
abstract_ops
AssemblyInstructionArg: TypeAlias = IntegerAttr | LabelAttr | SSAValue | RegisterType | str
module-attribute
RISCVAsmOperation
dataclass
Bases: IRDLOperation, OneLineAssemblyPrintable, ABC
Base class for operations that can be a part of RISC-V assembly printing.
Source code in xdsl/dialects/riscv/abstract_ops.py
77 78 79 80 | |
RISCVRegallocOperation
dataclass
Bases: HasRegisterConstraints, IRDLOperation, ABC
Base class for operations that can take part in register allocation.
Source code in xdsl/dialects/riscv/abstract_ops.py
83 84 85 86 87 88 89 90 91 92 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/riscv/abstract_ops.py
88 89 90 91 92 | |
RISCVCustomFormatOperation
dataclass
Bases: IRDLOperation, ABC
Base class for RISC-V operations that specialize their custom format.
Source code in xdsl/dialects/riscv/abstract_ops.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
parse_unresolved_operands(parser: Parser) -> list[UnresolvedOperand]
classmethod
Parse a list of comma separated unresolved operands.
Notice that this method will consume trailing comma.
Source code in xdsl/dialects/riscv/abstract_ops.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Parse attributes with custom syntax. Subclasses may override this method.
Source code in xdsl/dialects/riscv/abstract_ops.py
134 135 136 137 138 139 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
141 142 143 144 145 146 147 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
149 150 151 152 153 154 155 156 157 158 159 160 161 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Print attributes with custom syntax. Return the names of the attributes printed. Subclasses may override this method.
Source code in xdsl/dialects/riscv/abstract_ops.py
163 164 165 166 167 168 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
170 171 172 | |
RISCVInstruction
dataclass
Bases: RISCVAsmOperation, RISCVRegallocOperation, ABC
Base class for operations that can be a part of RISC-V assembly printing. Must represent an instruction in the RISC-V instruction set, and have the following format:
name arg0, arg1, arg2 # comment
The name of the operation will be used as the RISC-V assembly instruction name.
Source code in xdsl/dialects/riscv/abstract_ops.py
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 | |
comment = opt_attr_def(StringAttr)
class-attribute
instance-attribute
An optional comment that will be printed along with the instruction.
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
abstractmethod
The arguments to the instruction, in the order they should be printed in the assembly.
Source code in xdsl/dialects/riscv/abstract_ops.py
195 196 197 198 199 200 201 | |
assembly_instruction_name() -> str
By default, the name of the instruction is the same as the name of the operation.
Source code in xdsl/dialects/riscv/abstract_ops.py
203 204 205 206 207 208 | |
assembly_line() -> str | None
Source code in xdsl/dialects/riscv/abstract_ops.py
210 211 212 213 214 215 216 217 218 | |
RISCVAsmTarget
dataclass
Bases: Target
Source code in xdsl/dialects/riscv/abstract_ops.py
250 251 252 253 254 255 | |
name = 'riscv-asm'
class-attribute
instance-attribute
__init__() -> None
emit(ctx: Context, module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
254 255 | |
RdRsRsOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC, Generic[RDInvT, RS1InvT, RS2InvT]
A base class for RISC-V operations that have one destination register, and two source registers.
This is called R-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | |
rd: OpResult[RDInvT] = result_def(RDInvT)
class-attribute
instance-attribute
rs1 = operand_def(RS1InvT)
class-attribute
instance-attribute
rs2 = operand_def(RS2InvT)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, *, rd: RDInvT = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
296 297 | |
RdRsRsIntegerOperation
Bases: RdRsRsOperation[IntRegisterType, RS1InvT, RS2InvT], ABC, Generic[RS1InvT, RS2InvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
300 301 302 303 304 305 306 307 308 309 310 311 | |
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
303 304 305 306 307 308 309 310 311 | |
RdRsRsFloatOperation
Bases: RdRsRsOperation[FloatRegisterType, RS1InvT, RS2InvT], ABC, Generic[RS1InvT, RS2InvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
314 315 316 317 318 319 320 321 322 323 324 325 | |
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
317 318 319 320 321 322 323 324 325 | |
RsRsImmFloatOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RV32F operations that have two source registers (one integer and one floating-point) and an immediate.
Source code in xdsl/dialects/riscv/abstract_ops.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | |
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[I12])
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, immediate: int | IntegerAttr[I12] | str | LabelAttr, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
361 362 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
364 365 366 367 368 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
370 371 372 373 | |
RdRsImmFloatOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RV32Foperations that have one floating-point destination register, one source register and one immediate operand.
Source code in xdsl/dialects/riscv/abstract_ops.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | |
rd = result_def(FloatRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[I12] | LabelAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, immediate: int | IntegerAttr[I12] | str | LabelAttr, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
411 412 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
414 415 416 417 418 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
420 421 422 423 | |
RdRsRsRsFloatOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RV32F operations that take three floating-point input registers and a destination register, e.g: fused-multiply-add (FMA) instructions.
Source code in xdsl/dialects/riscv/abstract_ops.py
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 | |
rd = result_def(FloatRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
rs3 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
traits = traits_def(RegisterAllocatedMemoryEffect())
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, rs3: Operation | SSAValue, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
460 461 | |
RdRsRsFloatFloatIntegerOperationWithFastMath
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have two source floating-point registers with an integer destination register, and can be annotated with fastmath flags.
This is called R-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
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 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
fastmath = attr_def(FastMathFlagsAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, fastmath: FastMathFlagsAttr = FastMathFlagsAttr('none'), comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
500 501 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
503 504 505 506 507 508 509 510 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
512 513 514 515 516 | |
RdRsRsFloatOperationWithFastMath
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one destination floating-point register, and two source floating-point registers and can be annotated with fastmath flags.
This is called R-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |
rd = result_def(FloatRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(FloatRegisterType)
class-attribute
instance-attribute
fastmath = opt_attr_def(FastMathFlagsAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, fastmath: FastMathFlagsAttr | None = None, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
555 556 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
558 559 560 561 562 563 564 565 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
567 568 569 570 571 | |
RdImmIntegerOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one destination register, and one immediate operand (e.g. U-Type and J-Type instructions in the RISC-V spec).
Source code in xdsl/dialects/riscv/abstract_ops.py
574 575 576 577 578 579 580 581 582 583 584 585 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 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[I20] | LabelAttr)
class-attribute
instance-attribute
__init__(immediate: int | IntegerAttr | str | LabelAttr, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
605 606 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
608 609 610 611 612 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
614 615 616 617 | |
RdImmJumpOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
In the RISC-V spec, this is the same as RdImmOperation. For jumps, the rd register
is neither an operand, because the stored value is overwritten, nor a result value,
because the value in rd is not defined after the jump back. So the rd makes the
most sense as an attribute.
Source code in xdsl/dialects/riscv/abstract_ops.py
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 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 | |
rd = opt_attr_def(IntRegisterType)
class-attribute
instance-attribute
The rd register here is not a register storing the result, rather the register where the program counter is stored before jumping.
immediate = attr_def(IntegerAttr[SI20] | LabelAttr)
class-attribute
instance-attribute
__init__(immediate: int | IntegerAttr[SI20] | str | LabelAttr, *, rd: IntRegisterType | None = None, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
656 657 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
659 660 661 662 663 664 665 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
667 668 669 670 671 672 673 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
675 676 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
678 679 680 681 682 | |
RdRsImmIntegerOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one destination register, one source register and one immediate operand.
This is called I-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI12] | LabelAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, immediate: int | IntegerAttr[SI12] | str | LabelAttr, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
721 722 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
724 725 726 727 728 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
730 731 732 733 | |
ImmShiftOpHasCanonicalizationPatternsTrait
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/riscv/abstract_ops.py
736 737 738 739 740 741 742 743 744 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
737 738 739 740 741 742 743 744 | |
RdRsImmShiftOperation
Bases: RISCVInstruction, ABC
A base class for RISC-V operations that have one destination register, one source register and one immediate operand.
This is called I-Type in the RISC-V specification.
Shifts by a constant are encoded as a specialization of the I-type format. The shift amount is encoded in the lower 5 bits of the I-immediate field for RV32
For RV32I, SLLI, SRLI, and SRAI generate an illegal instruction exception if imm[5] 6 != 0 but the shift amount is encoded in the lower 6 bits of the I-immediate field for RV64I.
Source code in xdsl/dialects/riscv/abstract_ops.py
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 796 797 798 799 800 801 802 803 804 805 806 807 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[UI5])
class-attribute
instance-attribute
traits = traits_def(ImmShiftOpHasCanonicalizationPatternsTrait())
class-attribute
instance-attribute
assembly_format = '$rs1 `,` $immediate attr-dict `:` `(` type($rs1) `)` `->` type($rd)'
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, immediate: int | IntegerAttr[UI5], *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
792 793 | |
py_operation(rs1: IntegerAttr[I32]) -> IntegerAttr[I32]
abstractmethod
Performs a python function corresponding to this operation.
If i := py_operation(rs1) is an IntegerAttr[I32], then this operation can be
canonicalized to a constant with value i when the inputs are constants
with values rs1. The immediate value is retrieved from the immediate attribute of the operation.
Source code in xdsl/dialects/riscv/abstract_ops.py
795 796 797 798 799 800 801 802 803 804 805 806 807 | |
RdRsImmBitManipOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one destination register, one source register and one immediate operand.
These operations are from the Zba, Zbb, and Zbs extensions.
The immediate value is encoded in the lower 5 bits of the immediate field for RV32 and the lower 6 bits for RV64.
See external documentation.
Source code in xdsl/dialects/riscv/abstract_ops.py
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[UI5] | LabelAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, immediate: int | IntegerAttr[UI5] | str | LabelAttr, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
851 852 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
854 855 856 857 858 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
860 861 862 863 | |
RdRsImmJumpOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one destination register, one source register and one immediate operand.
This is called I-Type in the RISC-V specification.
In the RISC-V spec, this is the same as RdRsImmOperation. For jumps, the rd register
is neither an operand, because the stored value is overwritten, nor a result value,
because the value in rd is not defined after the jump back. So the rd makes the
most sense as an attribute.
Source code in xdsl/dialects/riscv/abstract_ops.py
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 901 902 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 | |
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
rd = opt_attr_def(IntRegisterType)
class-attribute
instance-attribute
The rd register here is not a register storing the result, rather the register where the program counter is stored before jumping.
immediate = attr_def(IntegerAttr[SI12] | LabelAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, immediate: int | IntegerAttr[SI12] | str | LabelAttr, *, rd: IntRegisterType | None = None, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
912 913 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
915 916 917 918 919 920 921 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
923 924 925 926 927 928 929 | |
RdRsOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC, Generic[RDInvT, RSInvT]
A base class for RISC-V pseudo-instructions that have one destination register and one source register.
Source code in xdsl/dialects/riscv/abstract_ops.py
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 958 959 | |
rd = result_def(RDInvT)
class-attribute
instance-attribute
rs = operand_def(RSInvT)
class-attribute
instance-attribute
__init__(rs: Operation | SSAValue, *, rd: RDInvT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
943 944 945 946 947 948 949 950 951 952 953 954 955 956 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
958 959 | |
RdRsIntegerOperation
Bases: RdRsOperation[IntRegisterType, RSInvT], ABC, Generic[RSInvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
962 963 964 965 966 967 968 969 970 971 972 | |
__init__(rs: Operation | SSAValue, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
965 966 967 968 969 970 971 972 | |
RdRsFloatOperation
Bases: RdRsOperation[FloatRegisterType, RSInvT], ABC, Generic[RSInvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
975 976 977 978 979 980 981 982 983 984 985 | |
__init__(rs: Operation | SSAValue, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
978 979 980 981 982 983 984 985 | |
RsRsOffIntegerOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have one source register and a destination register, and an offset.
This is called B-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 | |
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(IntRegisterType)
class-attribute
instance-attribute
offset = attr_def(IntegerAttr[SI12] | LabelAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, offset: int | IntegerAttr[SI12] | LabelAttr, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1023 1024 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1026 1027 1028 1029 1030 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1032 1033 1034 1035 | |
RsRsImmIntegerOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have two source registers and an immediate.
This is called S-Type in the RISC-V specification.
Source code in xdsl/dialects/riscv/abstract_ops.py
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(IntRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI12])
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, immediate: int | IntegerAttr[SI12] | str | LabelAttr, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1073 1074 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1076 1077 1078 1079 1080 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1082 1083 1084 1085 | |
RsRsIntegerOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have two source registers.
Source code in xdsl/dialects/riscv/abstract_ops.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 | |
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
rs2 = operand_def(IntRegisterType)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, rs2: Operation | SSAValue, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1112 1113 | |
NullaryOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations that have neither sources nor destinations.
Source code in xdsl/dialects/riscv/abstract_ops.py
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 | |
__init__(*, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1135 1136 | |
parse_unresolved_operands(parser: Parser) -> list[UnresolvedOperand]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1138 1139 1140 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1142 1143 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1145 1146 1147 1148 1149 | |
CsrReadWriteOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations performing a swap to/from a CSR.
The 'writeonly' attribute controls the actual behaviour of the operation: * when True, the operation writes the rs value to the CSR but never reads it and in this case rd must be allocated to x0 * when False, a proper atomic swap is performed and the previous CSR value is returned in rd
Source code in xdsl/dialects/riscv/abstract_ops.py
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 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
csr = attr_def(IntegerAttr)
class-attribute
instance-attribute
writeonly = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, csr: IntegerAttr, *, writeonly: bool = False, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1189 1190 1191 1192 1193 1194 1195 1196 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1198 1199 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1214 1215 1216 1217 1218 1219 | |
CsrBitwiseOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations performing a masked bitwise operation on the CSR while returning the original value.
The 'readonly' attribute controls the actual behaviour of the operation: * when True, the operation is guaranteed to have no side effects that can be potentially related to writing to a CSR; in this case rs must be allocated to x0 * when False, the bitwise operations is performed and any side effect related to writing to a CSR takes place even if the mask in rs has no actual bits set.
Source code in xdsl/dialects/riscv/abstract_ops.py
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 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 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
rs1 = operand_def(IntRegisterType)
class-attribute
instance-attribute
csr = attr_def(IntegerAttr)
class-attribute
instance-attribute
readonly = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
__init__(rs1: Operation | SSAValue, csr: IntegerAttr, *, readonly: bool = False, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1261 1262 1263 1264 1265 1266 1267 1268 1269 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1271 1272 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1287 1288 1289 1290 1291 1292 | |
CsrReadWriteImmOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations performing a write immediate to/read from a CSR.
The 'writeonly' attribute controls the actual behaviour of the operation: * when True, the operation writes the rs value to the CSR but never reads it and in this case rd must be allocated to x0 * when False, a proper atomic swap is performed and the previous CSR value is returned in rd
Source code in xdsl/dialects/riscv/abstract_ops.py
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 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
csr = attr_def(IntegerAttr)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr)
class-attribute
instance-attribute
writeonly = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
__init__(csr: IntegerAttr, immediate: IntegerAttr, *, writeonly: bool = False, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1332 1333 1334 1335 1336 1337 1338 1339 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1341 1342 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1359 1360 1361 1362 1363 1364 1365 1366 | |
CsrBitwiseImmOperation
Bases: RISCVCustomFormatOperation, RISCVInstruction, ABC
A base class for RISC-V operations performing a masked bitwise operation on the CSR while returning the original value. The bitmask is specified in the 'immediate' attribute.
The 'immediate' attribute controls the actual behaviour of the operation: * when equals to zero, the operation is guaranteed to have no side effects that can be potentially related to writing to a CSR; * when not equal to zero, any side effect related to writing to a CSR takes place.
Source code in xdsl/dialects/riscv/abstract_ops.py
1369 1370 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 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 | |
rd = result_def(IntRegisterType)
class-attribute
instance-attribute
csr = attr_def(IntegerAttr)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr)
class-attribute
instance-attribute
__init__(csr: IntegerAttr, immediate: IntegerAttr, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1405 1406 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1419 1420 1421 1422 1423 1424 | |
GetAnyRegisterOperation
Bases: RISCVCustomFormatOperation, RISCVAsmOperation, RISCVRegallocOperation, ABC, Generic[RDInvT]
This instruction allows us to create an SSAValue with for a given register name. This
is useful for bridging the RISC-V convention that stores the result of function calls
in a0 and a1 into SSA form.
For example, to generate this assembly:
jal my_func
add a0 s0 a0
One needs to do the following:
rhs = rv32.GetRegisterOp(Registers.s0).res
riscv.JalOp("my_func")
lhs = rv32.GetRegisterOp(Registers.A0).res
sum = riscv.AddOp(lhs, rhs, Registers.A0).rd
Source code in xdsl/dialects/riscv/abstract_ops.py
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 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 1479 | |
res = result_def(RDInvT)
class-attribute
instance-attribute
traits = traits_def(Pure())
class-attribute
instance-attribute
__init__(register_type: RDInvT)
Source code in xdsl/dialects/riscv/abstract_ops.py
1459 1460 1461 1462 1463 | |
assembly_line() -> str | None
Source code in xdsl/dialects/riscv/abstract_ops.py
1465 1466 1467 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1469 1470 1471 1472 1473 1474 1475 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1477 1478 1479 | |
assembly_arg_str(arg: AssemblyInstructionArg) -> str
Source code in xdsl/dialects/riscv/abstract_ops.py
224 225 226 227 228 229 230 231 232 233 234 235 236 | |
print_assembly(module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
239 240 241 | |
riscv_code(module: ModuleOp) -> str
Source code in xdsl/dialects/riscv/abstract_ops.py
244 245 246 247 | |