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
72 73 74 75 | |
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
78 79 80 81 82 83 84 85 86 87 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/riscv/abstract_ops.py
83 84 85 86 87 | |
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
90 91 92 93 94 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 | |
parse(parser: Parser) -> Self
classmethod
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 | |
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
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
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
129 130 131 132 133 134 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
136 137 138 139 140 141 142 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
144 145 146 147 148 149 150 151 152 153 154 155 156 | |
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
158 159 160 161 162 163 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
165 166 167 | |
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
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 | |
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
190 191 192 193 194 195 196 | |
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
198 199 200 201 202 203 | |
assembly_line() -> str | None
Source code in xdsl/dialects/riscv/abstract_ops.py
205 206 207 208 209 210 211 212 213 | |
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
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | |
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
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
283 284 | |
RdRsRsIntegerOperation
Bases: RdRsRsOperation[IntRegisterType, RS1InvT, RS2InvT], ABC, Generic[RS1InvT, RS2InvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
287 288 289 290 291 292 293 294 295 296 297 298 | |
__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
290 291 292 293 294 295 296 297 298 | |
RdRsRsFloatOperation
Bases: RdRsRsOperation[FloatRegisterType, RS1InvT, RS2InvT], ABC, Generic[RS1InvT, RS2InvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
301 302 303 304 305 306 307 308 309 310 311 312 | |
__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
304 305 306 307 308 309 310 311 312 | |
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
315 316 317 318 319 320 321 322 323 324 325 326 327 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 | |
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
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
348 349 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
351 352 353 354 355 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
357 358 359 360 | |
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
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 | |
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
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
398 399 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
401 402 403 404 405 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
407 408 409 410 | |
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
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | |
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
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
447 448 | |
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
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 | |
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
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
487 488 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
490 491 492 493 494 495 496 497 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
499 500 501 502 503 | |
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
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | |
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
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
542 543 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
545 546 547 548 549 550 551 552 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
554 555 556 557 558 | |
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
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 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | |
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
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
592 593 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
595 596 597 598 599 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
601 602 603 604 | |
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
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 | |
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
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
643 644 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
646 647 648 649 650 651 652 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
654 655 656 657 658 659 660 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
662 663 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
665 666 667 668 669 | |
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
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | |
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
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
708 709 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
711 712 713 714 715 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
717 718 719 720 | |
RdRsImmShiftOperation
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.
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
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 | |
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
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
765 766 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
768 769 770 771 772 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
774 775 776 777 | |
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
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 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 | |
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
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
826 827 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
829 830 831 832 833 834 835 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
837 838 839 840 841 842 843 | |
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
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | |
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
857 858 859 860 861 862 863 864 865 866 867 868 869 870 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
872 873 | |
RdRsIntegerOperation
Bases: RdRsOperation[IntRegisterType, RSInvT], ABC, Generic[RSInvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
876 877 878 879 880 881 882 883 884 885 886 | |
__init__(rs: Operation | SSAValue, *, rd: IntRegisterType = Registers.UNALLOCATED_INT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
879 880 881 882 883 884 885 886 | |
RdRsFloatOperation
Bases: RdRsOperation[FloatRegisterType, RSInvT], ABC, Generic[RSInvT]
Source code in xdsl/dialects/riscv/abstract_ops.py
889 890 891 892 893 894 895 896 897 898 899 | |
__init__(rs: Operation | SSAValue, *, rd: FloatRegisterType = Registers.UNALLOCATED_FLOAT, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
892 893 894 895 896 897 898 899 | |
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
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 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 | |
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
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
937 938 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
940 941 942 943 944 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
946 947 948 949 | |
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
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 988 989 990 991 992 993 994 995 996 997 998 999 | |
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
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
987 988 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
990 991 992 993 994 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
996 997 998 999 | |
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
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 | |
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
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1026 1027 | |
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
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 1057 1058 1059 1060 1061 1062 1063 | |
__init__(*, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/riscv/abstract_ops.py
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1049 1050 | |
parse_unresolved_operands(parser: Parser) -> list[UnresolvedOperand]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1052 1053 1054 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1056 1057 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1059 1060 1061 1062 1063 | |
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
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 | |
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
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1103 1104 1105 1106 1107 1108 1109 1110 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1112 1113 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1128 1129 1130 1131 1132 1133 | |
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
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 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 | |
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
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1175 1176 1177 1178 1179 1180 1181 1182 1183 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1185 1186 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1201 1202 1203 1204 1205 1206 | |
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
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 | |
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
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 | |
verify_() -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1246 1247 1248 1249 1250 1251 1252 1253 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1255 1256 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1273 1274 1275 1276 1277 1278 1279 1280 | |
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
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 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 | |
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
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/riscv/abstract_ops.py
1319 1320 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/riscv/abstract_ops.py
1333 1334 1335 1336 1337 1338 | |
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 = riscv.GetRegisterOp(Registers.s0).res
riscv.JalOp("my_func")
lhs = riscv.GetRegisterOp(Registers.A0).res
sum = riscv.AddOp(lhs, rhs, Registers.A0).rd
Source code in xdsl/dialects/riscv/abstract_ops.py
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 1367 1368 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 | |
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
1373 1374 1375 1376 1377 | |
assembly_line() -> str | None
Source code in xdsl/dialects/riscv/abstract_ops.py
1379 1380 1381 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/riscv/abstract_ops.py
1383 1384 1385 1386 1387 1388 1389 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
1391 1392 1393 | |
assembly_arg_str(arg: AssemblyInstructionArg) -> str
Source code in xdsl/dialects/riscv/abstract_ops.py
219 220 221 222 223 224 225 226 227 228 229 230 231 | |
print_assembly(module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/riscv/abstract_ops.py
234 235 236 | |
riscv_code(module: ModuleOp) -> str
Source code in xdsl/dialects/riscv/abstract_ops.py
239 240 241 242 | |