Ops
ops
The x86 dialect contains operations that represent x86 assembly operations.
In x86, the assembly operations may have different meaning depending on the types of
arguments.
For example, the mov instruction can assign
an immediate value to a register, or move the contents of another register.
In order to disambiguate the two, we use a mnemonic in the operation name to communicate
which operands are expected, for example x86.ds.mov is the version that moves the
contents of one register to another, and x86.di.mov is the version that sets the
immediate value passed in to the register.
The mnemonic encodes the types of the assembly instruction arguments, in order.
Here are the possible mnemonic values and what they stand for:
s: Source registerd: Destination registerk: Mask registerr: Register used both as a source and destinationi: Immediate valuem: Memoryc: Condition
This dialect is structured into abstract base classes, which are prefixed with the
mnemonic that corresponds to the subclassing operations (e.g. DS_Operation).
R1InvT = TypeVar('R1InvT', bound=X86RegisterType)
module-attribute
R2InvT = TypeVar('R2InvT', bound=X86RegisterType)
module-attribute
R3InvT = TypeVar('R3InvT', bound=X86RegisterType)
module-attribute
R4InvT = TypeVar('R4InvT', bound=X86RegisterType)
module-attribute
SI64: TypeAlias = IntegerType[Literal[64], Literal[Signedness.SIGNED]]
module-attribute
SI32: TypeAlias = IntegerType[Literal[32], Literal[Signedness.SIGNED]]
module-attribute
si64: SI64 = IntegerType(64, Signedness.SIGNED)
module-attribute
si32: SI32 = IntegerType(32, Signedness.SIGNED)
module-attribute
UI8: TypeAlias = IntegerType[Literal[8], Literal[Signedness.UNSIGNED]]
module-attribute
ui8: UI8 = IntegerType(8, Signedness.UNSIGNED)
module-attribute
X86AsmOperation
dataclass
Bases: IRDLOperation, OneLineAssemblyPrintable, ABC
Base class for operations that can be a part of x86 assembly printing.
Source code in xdsl/dialects/x86/ops.py
135 136 137 138 | |
X86RegallocOperation
dataclass
Bases: IRDLOperation, HasRegisterConstraints, ABC
Base class for operations that can take part in register allocation.
Source code in xdsl/dialects/x86/ops.py
141 142 143 144 145 146 147 148 149 150 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
146 147 148 149 150 | |
X86CustomFormatOperation
dataclass
Bases: IRDLOperation, ABC
Source code in xdsl/dialects/x86/ops.py
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 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | |
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/x86/ops.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Parse attributes with custom syntax. Subclasses may override this method.
Source code in xdsl/dialects/x86/ops.py
187 188 189 190 191 192 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/x86/ops.py
194 195 196 197 198 199 200 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
202 203 204 205 206 207 208 209 210 211 212 213 214 | |
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/x86/ops.py
216 217 218 219 220 221 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
223 224 225 | |
X86Instruction
dataclass
Bases: X86AsmOperation, X86RegallocOperation
Base class for operations that can be a part of x86 assembly printing. Must represent an instruction in the x86 instruction set. The name of the operation will be used as the x86 assembly instruction name.
Source code in xdsl/dialects/x86/ops.py
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 264 265 | |
traits = traits_def(RegisterAllocatedMemoryEffect())
class-attribute
instance-attribute
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/x86/ops.py
242 243 244 245 246 247 248 | |
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/x86/ops.py
250 251 252 253 254 255 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
257 258 259 260 261 262 263 264 265 | |
RS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one register that is read and written to, and one source register.
Source code in xdsl/dialects/x86/ops.py
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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
assembly_format = '$register_in `,` $source attr-dict `:` `(` type($register_in) `,` type($source) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: Operation | SSAValue, source: Operation | SSAValue, *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
309 310 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
312 313 314 315 | |
DS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one destination register and one source register.
Source code in xdsl/dialects/x86/ops.py
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 | |
destination: OpResult[R1InvT] = result_def(R1InvT)
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
assembly_format = '$source attr-dict `:` `(` type($source) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
349 350 | |
DSK_Operation
Bases: X86Instruction, ABC
A base class for x86 operations that have one destination register and one source register.
Source code in xdsl/dialects/x86/ops.py
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | |
destination: OpResult[AVX512RegisterType] = result_def(AVX512RegisterType)
class-attribute
instance-attribute
source = operand_def(AVX512RegisterType)
class-attribute
instance-attribute
mask_reg = operand_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
z = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
assembly_format = '$source `,` $mask_reg attr-dict `:` `(` type($source) `,` type($mask_reg) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, mask_reg: Operation | SSAValue, *, z: bool = False, comment: str | StringAttr | None = None, destination: AVX512RegisterType)
Source code in xdsl/dialects/x86/ops.py
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
390 391 392 | |
DK_Operation
Bases: X86Instruction, X86CustomFormatOperation, HasRegisterConstraints, ABC
A base class for x86 operations that have one general purpose destination register and one writemask source register.
Source code in xdsl/dialects/x86/ops.py
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 424 425 426 427 428 | |
destination: OpResult[GeneralRegisterType] = result_def(GeneralRegisterType)
class-attribute
instance-attribute
source = operand_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, *, comment: str | StringAttr | None = None, destination: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
424 425 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
427 428 | |
KS_Operation
Bases: X86Instruction, X86CustomFormatOperation, HasRegisterConstraints, ABC
A base class for x86 operations that have one general purpose destination register and one writemask source register.
Source code in xdsl/dialects/x86/ops.py
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 462 463 464 | |
destination: OpResult[AVX512MaskRegisterType] = result_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
source = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, *, comment: str | StringAttr | None = None, destination: AVX512MaskRegisterType)
Source code in xdsl/dialects/x86/ops.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
460 461 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
463 464 | |
R_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 operations that have one register that is read and written to.
Source code in xdsl/dialects/x86/ops.py
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 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
assembly_format = '$register_in attr-dict `:` `(` type($register_in) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: SSAValue[R1InvT], *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
498 499 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
501 502 | |
RM_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one register read and written to and one memory access with an optional offset.
Source code in xdsl/dialects/x86/ops.py
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
memory = operand_def(R2InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '$register_in `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($register_in) `,` type($memory) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: Operation | SSAValue, memory: Operation | SSAValue, memory_offset: int | IntegerAttr[I64], *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
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 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
550 551 552 553 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
555 556 557 558 | |
DM_OperationHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
561 562 563 564 565 566 567 568 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
562 563 564 565 566 567 568 | |
DM_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that load from memory into a destination register.
Source code in xdsl/dialects/x86/ops.py
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 605 606 607 608 609 610 611 612 613 614 | |
destination = result_def(R1InvT)
class-attribute
instance-attribute
memory = operand_def(R2InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
traits = traits_def(DM_OperationHasCanonicalizationPatterns(), MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` functional-type($memory, $destination)'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, memory_offset: int | IntegerAttr, *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
611 612 613 614 | |
DMK_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 AVX512 operations that have one destination register d that is written to, a source register m that contains a pointer, a constant offset, and a mask register k. The z attribute enables zero masking, which sets the elements of the destination register to zero where the corresponding bit in the mask is zero.
Source code in xdsl/dialects/x86/ops.py
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 | |
destination = result_def(AVX512RegisterType)
class-attribute
instance-attribute
memory = operand_def(R1InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
mask_reg = operand_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
z = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '`[` $memory (`+` $memory_offset^)? `]` `,` $mask_reg attr-dict `:` `(` type($memory) `,` type($mask_reg) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, mask_reg: Operation | SSAValue, memory_offset: int | IntegerAttr, *, z: bool = False, comment: str | StringAttr | None = None, destination: AVX512RegisterType)
Source code in xdsl/dialects/x86/ops.py
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
663 664 665 666 | |
DI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 operations that have one destination register and an immediate value.
Source code in xdsl/dialects/x86/ops.py
669 670 671 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 | |
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
destination = result_def(R1InvT)
class-attribute
instance-attribute
assembly_format = '$immediate attr-dict `:` `(` `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
702 703 | |
RI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 operations that have one register that is read and written to and an immediate value.
Source code in xdsl/dialects/x86/ops.py
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 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
assembly_format = '$register_in `,` $immediate attr-dict `:` `(` type($register_in) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: Operation | SSAValue, immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
749 750 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
752 753 | |
MS_OperationHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
756 757 758 759 760 761 762 763 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
757 758 759 760 761 762 763 | |
MS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one memory reference and one source register.
Source code in xdsl/dialects/x86/ops.py
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 808 809 810 811 | |
memory = operand_def(R1InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
traits = traits_def(MS_OperationHasCanonicalizationPatterns(), MemoryReadEffect(), MemoryWriteEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $source attr-dict `:` `(` type($memory) `,` type($source) `)` `->` `(` `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, source: Operation | SSAValue, memory_offset: int | IntegerAttr[I64], *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
809 810 811 | |
MSK_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 AVX512 operations that have one destination register that is written to, a memory operand (with optional offset), a source register, and a mask register. The z attribute enables zero-masking, which sets the elements of the destination register to zero where the mask is zero.
Typical usage: d[k] := op([m+offset], s) where d is the destination AVX512 register, [m+offset] is the memory location addressed by the base register and offset, s is the source register, and k is the mask.
Source code in xdsl/dialects/x86/ops.py
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 864 865 866 867 | |
memory = operand_def(R1InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
mask_reg = operand_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
z = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
traits = traits_def(MemoryWriteEffect())
class-attribute
instance-attribute
assembly_format = '`[` $memory (`+` $memory_offset^)? `]` `,` $source `,` $mask_reg attr-dict `:` `(` type($memory) `,` type($source) `,` type($mask_reg) `)` `->` `(` `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, source: Operation | SSAValue, mask_reg: Operation | SSAValue, memory_offset: int | IntegerAttr, *, z: bool = False, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
863 864 865 866 867 | |
MI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 operations that have one memory reference and an immediate value.
Source code in xdsl/dialects/x86/ops.py
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 | |
memory = operand_def(R1InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[SI64], default_value=(IntegerAttr(0, si64)))
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect(), MemoryWriteEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $immediate attr-dict `:` `(` type($memory) `)` `->` `(` `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, memory_offset: int | IntegerAttr[SI64], immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
914 915 916 917 | |
DSI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one destination register, one source register and an immediate value.
Source code in xdsl/dialects/x86/ops.py
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 | |
destination = result_def(R1InvT)
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
assembly_format = '$source `,` $immediate attr-dict `:` `(` type($source) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
959 960 | |
DMI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one destination register, one memory reference and an immediate value.
Source code in xdsl/dialects/x86/ops.py
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 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 | |
destination = result_def(R1InvT)
class-attribute
instance-attribute
memory = operand_def(R2InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[SI64], default_value=(IntegerAttr(0, si64)))
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $immediate attr-dict `:` `(` type($memory) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, immediate: int | IntegerAttr[SI32], memory_offset: int | IntegerAttr[SI64], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1008 1009 1010 1011 1012 | |
M_Operation
Bases: X86Instruction, ABC, Generic[R1InvT]
A base class for x86 operations with a memory reference.
Source code in xdsl/dialects/x86/ops.py
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 | |
memory = operand_def(R1InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[SI64], default_value=(IntegerAttr(0, si64)))
class-attribute
instance-attribute
traits = traits_def(MemoryWriteEffect(), MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($memory) `)` `->` `(` `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, memory_offset: int | IntegerAttr[SI64], *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1050 1051 1052 | |
ConditionalJumpOperation
Bases: X86Instruction, X86CustomFormatOperation, ABC
A base class for Jcc operations.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
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 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 1134 1135 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 | |
rflags = operand_def(RFLAGS)
class-attribute
instance-attribute
then_values = var_operand_def(X86RegisterType)
class-attribute
instance-attribute
else_values = var_operand_def(X86RegisterType)
class-attribute
instance-attribute
irdl_options = (AttrSizedOperandSegments(),)
class-attribute
instance-attribute
then_block = successor_def()
class-attribute
instance-attribute
else_block = successor_def()
class-attribute
instance-attribute
traits = traits_def(IsTerminator())
class-attribute
instance-attribute
__init__(rflags: Operation | SSAValue, then_values: Sequence[SSAValue], else_values: Sequence[SSAValue], then_block: Successor, else_block: Successor, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
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 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 | |
RSS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT, R3InvT]
A base class for x86 operations that have one register that is read and written to, and two source registers.
Source code in xdsl/dialects/x86/ops.py
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
source1 = operand_def(R2InvT)
class-attribute
instance-attribute
source2 = operand_def(R3InvT)
class-attribute
instance-attribute
assembly_format = '$register_in `,` $source1 `,` $source2 attr-dict `:` `(` type($register_in) `,` type($source1) `,` type($source2) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: SSAValue[R1InvT], source1: Operation | SSAValue, source2: Operation | SSAValue, *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1222 1223 1224 1225 1226 1227 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1229 1230 1231 1232 | |
RSSK_Operation
Bases: X86Instruction, ABC
A base class for x86 AVX512 operations that have one register r that is read and written to, and two source registers s1 and s2, with mask register k. The z attribute enables zero masking, which sets the elements of the destination register to zero where the corresponding bit in the mask is zero.
Source code in xdsl/dialects/x86/ops.py
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 | |
T: VarConstraint = VarConstraint('T', base(AVX512RegisterType))
class-attribute
register_in = operand_def(T)
class-attribute
instance-attribute
register_out = result_def(T)
class-attribute
instance-attribute
source1 = operand_def(AVX512RegisterType)
class-attribute
instance-attribute
source2 = operand_def(AVX512RegisterType)
class-attribute
instance-attribute
mask_reg = operand_def(AVX512MaskRegisterType)
class-attribute
instance-attribute
z = opt_attr_def(UnitAttr)
class-attribute
instance-attribute
assembly_format = '$register_in `,` $source1 `,` $source2 `,` $mask_reg attr-dict `:` `(` type($register_in) `,` type($source1) `,` type($source2) `,` type($mask_reg) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: SSAValue[R1InvT], source1: Operation | SSAValue, source2: Operation | SSAValue, mask_reg: Operation | SSAValue, *, z: bool = False, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
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 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1283 1284 1285 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1287 1288 1289 1290 1291 1292 | |
DSS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT, R3InvT]
A base class for x86 operations that have one destination register and two source registers.
Source code in xdsl/dialects/x86/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 | |
destination = result_def(R1InvT)
class-attribute
instance-attribute
source1 = operand_def(R2InvT)
class-attribute
instance-attribute
source2 = operand_def(R3InvT)
class-attribute
instance-attribute
assembly_format = '$source1 `,` $source2 attr-dict `:` `(` type($source1) `,` type($source2) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source1: Operation | SSAValue[R2InvT], source2: Operation | SSAValue[R3InvT], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1329 1330 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1332 1333 1334 1335 | |
RSM_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT, R4InvT]
A base class for x86 operations that have one register that is read and written to, one source register and one memory source operand.
Source code in xdsl/dialects/x86/ops.py
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 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 1394 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out = result_def(R1InvT)
class-attribute
instance-attribute
source1 = operand_def(R2InvT)
class-attribute
instance-attribute
memory = operand_def(R4InvT)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[SI64], default_value=(IntegerAttr(0, si64)))
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '$register_in `,` $source1 `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($register_in) `,` type($source1) `,` type($memory) `)` `->` type($register_out)'
class-attribute
instance-attribute
__init__(register_in: SSAValue[R1InvT], source1: Operation | SSAValue, memory: Operation | SSAValue, memory_offset: int | IntegerAttr[SI64], *, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
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 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1385 1386 1387 1388 1389 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1391 1392 1393 1394 | |
DSSI_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT, R3InvT]
A base class for x86 operations that have one destination register, one source register and an immediate value.
Source code in xdsl/dialects/x86/ops.py
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 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 | |
destination = result_def(R1InvT)
class-attribute
instance-attribute
source0 = operand_def(R2InvT)
class-attribute
instance-attribute
source1 = operand_def(R3InvT)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[UI8])
class-attribute
instance-attribute
assembly_format = '$source0 `,` $source1 `,` $immediate attr-dict `:` `(` type($source0) `,` type($source1) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source0: Operation | SSAValue, source1: Operation | SSAValue, immediate: int | IntegerAttr[UI8], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1436 1437 1438 1439 1440 1441 1442 | |
RS_AddOpHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
1448 1449 1450 1451 1452 1453 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
1449 1450 1451 1452 1453 | |
RS_AddOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
Adds the registers r and s and stores the result in r.
x[r] = x[r] + x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 | |
name = 'x86.rs.add'
class-attribute
instance-attribute
traits = traits_def(AlwaysSpeculatable(), RS_AddOpHasCanonicalizationPatterns())
class-attribute
instance-attribute
RS_SubOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
subtracts s from r and stores the result in r.
x[r] = x[r] - x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 | |
name = 'x86.rs.sub'
class-attribute
instance-attribute
RS_ImulOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
Multiplies the registers r and s and stores the result in r.
x[r] = x[r] * x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 | |
name = 'x86.rs.imul'
class-attribute
instance-attribute
RS_FAddOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
Adds the floating point values in registers r and s and stores the result in r.
x[r] += x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 | |
name = 'x86.rs.fadd'
class-attribute
instance-attribute
RS_FMulOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
Multiplies the floating point values in registers r and s and stores the result in r.
x[r] *= x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 | |
name = 'x86.rs.fmul'
class-attribute
instance-attribute
RS_AndOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise and of r and s, stored in r
x[r] = x[r] & x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 | |
name = 'x86.rs.and'
class-attribute
instance-attribute
RS_OrOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise or of r and s, stored in r
x[r] = x[r] | x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 | |
name = 'x86.rs.or'
class-attribute
instance-attribute
RS_XorOp
dataclass
Bases: RS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise xor of r and s, stored in r
x[r] = x[r] ^ x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 | |
name = 'x86.rs.xor'
class-attribute
instance-attribute
DS_MovOpHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
1571 1572 1573 1574 1575 1576 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
1572 1573 1574 1575 1576 | |
DS_MovOp
dataclass
Bases: DS_Operation[X86RegisterType, GeneralRegisterType]
Copies the value of s into r.
x[r] = x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 | |
name = 'x86.ds.mov'
class-attribute
instance-attribute
traits = traits_def(AlwaysSpeculatable(), DS_MovOpHasCanonicalizationPatterns())
class-attribute
instance-attribute
DS_VpbroadcastdOp
dataclass
Bases: DS_Operation[X86VectorRegisterType, GeneralRegisterType]
Broadcast single precision floating-point scalar in s to d.
x[r] = x[s]
See external documentation
Source code in xdsl/dialects/x86/ops.py
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 | |
name = 'x86.ds.vpbroadcastd'
class-attribute
instance-attribute
DS_VpbroadcastqOp
dataclass
Bases: DS_Operation[X86VectorRegisterType, GeneralRegisterType]
Broadcast double precision floating-point scalar in s to d.
x[r] = x[s]
See external documentation
Source code in xdsl/dialects/x86/ops.py
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 | |
name = 'x86.ds.vpbroadcastq'
class-attribute
instance-attribute
S_PushOp
Bases: X86Instruction
Decreases %rsp and places s at the new memory location pointed to by %rsp.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 | |
name = 'x86.s.push'
class-attribute
instance-attribute
rsp_in = operand_def(RSP)
class-attribute
instance-attribute
rsp_out = result_def(RSP)
class-attribute
instance-attribute
source = operand_def(X86RegisterType)
class-attribute
instance-attribute
assembly_format = '$rsp_in `,` $source attr-dict `:` `(` type($rsp_in) `,` type($source) `)` `->` type($rsp_out)'
class-attribute
instance-attribute
__init__(rsp_in: Operation | SSAValue, source: Operation | SSAValue, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1660 1661 | |
D_PopOp
Bases: X86Instruction
Copies the value at the top of the stack into d and increases %rsp.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 | |
name = 'x86.d.pop'
class-attribute
instance-attribute
rsp_in = operand_def(RSP)
class-attribute
instance-attribute
rsp_out = result_def(RSP)
class-attribute
instance-attribute
destination = result_def(X86RegisterType)
class-attribute
instance-attribute
assembly_format = '$rsp_in attr-dict `:` `(` type($rsp_in) `)` `->` `(` type($rsp_out) `,` type($destination) `)`'
class-attribute
instance-attribute
__init__(rsp_in: Operation | SSAValue, *, comment: str | StringAttr | None = None, destination: X86RegisterType)
Source code in xdsl/dialects/x86/ops.py
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1701 1702 | |
R_NegOp
dataclass
Bases: R_Operation[GeneralRegisterType]
Negates r and stores the result in r.
x[r] = -x[r]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 | |
name = 'x86.r.neg'
class-attribute
instance-attribute
R_NotOp
dataclass
Bases: R_Operation[GeneralRegisterType]
bitwise not of r, stored in r
x[r] = ~x[r]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 | |
name = 'x86.r.not'
class-attribute
instance-attribute
R_IncOp
dataclass
Bases: R_Operation[GeneralRegisterType]
Increments r by 1 and stores the result in r.
x[r] = x[r] + 1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 | |
name = 'x86.r.inc'
class-attribute
instance-attribute
R_DecOp
dataclass
Bases: R_Operation[GeneralRegisterType]
Decrements r by 1 and stores the result in r.
x[r] = x[r] - 1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 | |
name = 'x86.r.dec'
class-attribute
instance-attribute
S_IDivOp
Bases: X86Instruction
Divides the value in RDX:RAX by s and stores the quotient in RAX and the remainder in RDX.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 | |
name = 'x86.s.idiv'
class-attribute
instance-attribute
source = operand_def(X86RegisterType)
class-attribute
instance-attribute
rdx_input = operand_def(RDX)
class-attribute
instance-attribute
rax_input = operand_def(RAX)
class-attribute
instance-attribute
rdx_output = result_def(RDX)
class-attribute
instance-attribute
rax_output = result_def(RAX)
class-attribute
instance-attribute
assembly_format = '$source `,` $rdx_input `,` $rax_input attr-dict `:` `(` type($source) `,` type($rdx_input) `,` type($rax_input) `)` `->` `(` type($rdx_output) `,` type($rax_output) `)`'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, rdx_input: Operation | SSAValue, rax_input: Operation | SSAValue, *, comment: str | StringAttr | None = None, rdx_output: GeneralRegisterType, rax_output: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1806 1807 | |
S_ImulOp
Bases: X86Instruction
The source operand is multiplied by the value in the RAX register and the product is stored in the RDX:RAX registers.
x[RDX:RAX] = x[RAX] * s
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 | |
name = 'x86.s.imul'
class-attribute
instance-attribute
source = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
rax_input = operand_def(RAX)
class-attribute
instance-attribute
rdx_output = result_def(RDX)
class-attribute
instance-attribute
rax_output = result_def(RAX)
class-attribute
instance-attribute
assembly_format = '$source `,` $rax_input attr-dict `:` `(` type($source) `,` type($rax_input) `)` `->` `(` type($rdx_output) `,` type($rax_output) `)`'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, rax_input: Operation | SSAValue, *, comment: str | StringAttr | None = None, rdx_output: GeneralRegisterType, rax_output: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1856 1857 | |
RM_AddOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
Adds the value from the memory location pointed to by m to r and stores the result in r.
x[r] = x[r] + [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 | |
name = 'x86.rm.add'
class-attribute
instance-attribute
RM_SubOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
Subtracts the value from the memory location pointed to by m from r and stores the result in r.
x[r] = x[r] - [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 | |
name = 'x86.rm.sub'
class-attribute
instance-attribute
RM_ImulOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
Multiplies the value from the memory location pointed to by m with r and stores the result in r.
x[r] = x[r] * [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 | |
name = 'x86.rm.imul'
class-attribute
instance-attribute
RM_AndOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise and of r and [m], stored in r
x[r] = x[r] & [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 | |
name = 'x86.rm.and'
class-attribute
instance-attribute
RM_OrOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise or of r and [m], stored in r
x[r] = x[r] | [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 | |
name = 'x86.rm.or'
class-attribute
instance-attribute
RM_XorOp
dataclass
Bases: RM_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise xor of r and [m], stored in r
x[r] = x[r] ^ [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 | |
name = 'x86.rm.xor'
class-attribute
instance-attribute
DM_MovOp
dataclass
Bases: DM_Operation[GeneralRegisterType, GeneralRegisterType]
Copies the value from the memory location pointed to by source register m into destination register d.
x[d] = [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 | |
name = 'x86.dm.mov'
class-attribute
instance-attribute
DM_LeaOp
dataclass
Bases: DM_Operation[GeneralRegisterType, GeneralRegisterType]
Loads the effective address of the memory location pointed to by m into d.
x[d] = &x[m]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 | |
name = 'x86.dm.lea'
class-attribute
instance-attribute
RI_AddOp
dataclass
Bases: RI_Operation[GeneralRegisterType]
Adds the immediate value to r and stores the result in r.
x[r] = x[r] + immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 | |
name = 'x86.ri.add'
class-attribute
instance-attribute
RI_SubOp
dataclass
Bases: RI_Operation[GeneralRegisterType]
Subtracts the immediate value from r and stores the result in r.
x[r] = x[r] - immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 | |
name = 'x86.ri.sub'
class-attribute
instance-attribute
RI_AndOp
dataclass
Bases: RI_Operation[GeneralRegisterType]
bitwise and of r and immediate, stored in r
x[r] = x[r] & immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 | |
name = 'x86.ri.and'
class-attribute
instance-attribute
RI_OrOp
dataclass
Bases: RI_Operation[GeneralRegisterType]
bitwise or of r and immediate, stored in r
x[r] = x[r] | immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 | |
name = 'x86.ri.or'
class-attribute
instance-attribute
RI_XorOp
dataclass
Bases: RI_Operation[GeneralRegisterType]
bitwise xor of r and immediate, stored in r
x[r] = x[r] ^ immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 | |
name = 'x86.ri.xor'
class-attribute
instance-attribute
DI_MovOp
dataclass
Bases: DI_Operation[GeneralRegisterType]
Copies the immediate value into r.
x[r] = immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 | |
name = 'x86.di.mov'
class-attribute
instance-attribute
traits = traits_def(AlwaysSpeculatable())
class-attribute
instance-attribute
MS_AddOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
Adds the value from s to the memory location pointed to by m.
[x[m]] = [x[m]] + x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 | |
name = 'x86.ms.add'
class-attribute
instance-attribute
MS_SubOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
Subtracts the value from s from the memory location pointed to by m. [x[m]] = [x[m]] - x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 | |
name = 'x86.ms.sub'
class-attribute
instance-attribute
MS_AndOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise and of [m] and s [x[m]] = [x[m]] & x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 | |
name = 'x86.ms.and'
class-attribute
instance-attribute
MS_OrOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise or of [m] and s [x[m]] = [x[m]] | x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 | |
name = 'x86.ms.or'
class-attribute
instance-attribute
MS_XorOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
bitwise xor of [m] and s [x[m]] = [x[m]] ^ x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 | |
name = 'x86.ms.xor'
class-attribute
instance-attribute
MS_MovOp
dataclass
Bases: MS_Operation[GeneralRegisterType, GeneralRegisterType]
Copies the value from s into the memory location pointed to by m. [x[m]] = x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 | |
name = 'x86.ms.mov'
class-attribute
instance-attribute
MI_AddOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
Adds the immediate value to the memory location pointed to by m. [x[m]] = [x[m]] + immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 | |
name = 'x86.mi.add'
class-attribute
instance-attribute
MI_SubOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
Subtracts the immediate value from the memory location pointed to by m. [x[m]] = [x[m]] - immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 | |
name = 'x86.mi.sub'
class-attribute
instance-attribute
MI_AndOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
bitwise and of immediate and [m], stored in [m]
[x[m]] = [x[m]] & immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 | |
name = 'x86.mi.and'
class-attribute
instance-attribute
MI_OrOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
bitwise or of immediate and [m], stored in [m]
[x[m]] = [x[m]] | immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 | |
name = 'x86.mi.or'
class-attribute
instance-attribute
MI_XorOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
bitwise xor of immediate and [m], stored in [m]
[x[m]] = [x[m]] ^ immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 | |
name = 'x86.mi.xor'
class-attribute
instance-attribute
MI_MovOp
dataclass
Bases: MI_Operation[GeneralRegisterType]
Copies the immediate value into the memory location pointed to by m. [x[m]] = immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 | |
name = 'x86.mi.mov'
class-attribute
instance-attribute
DSI_ImulOp
dataclass
Bases: DSI_Operation[GeneralRegisterType, GeneralRegisterType]
Multiplies the immediate value with the source register and stores the result in the destination register. x[d] = x[s] * immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 | |
name = 'x86.dsi.imul'
class-attribute
instance-attribute
DMI_ImulOp
dataclass
Bases: DMI_Operation[GeneralRegisterType, GeneralRegisterType]
Multiplies the immediate value with the memory location pointed to by m and stores the result in d. x[d] = [x[m]] * immediate
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 | |
name = 'x86.dmi.imul'
class-attribute
instance-attribute
M_PushOp
Bases: X86Instruction
Decreases %rsp and places [m] at the new memory location pointed to by %rsp.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 | |
name = 'x86.m.push'
class-attribute
instance-attribute
rsp_in = operand_def(RSP)
class-attribute
instance-attribute
rsp_out = result_def(RSP)
class-attribute
instance-attribute
memory = operand_def(X86RegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
traits = traits_def(MemoryWriteEffect())
class-attribute
instance-attribute
assembly_format = '$rsp_in `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($rsp_in) `,` type($memory) `)` `->` type($rsp_out)'
class-attribute
instance-attribute
__init__(rsp_in: Operation | SSAValue, memory: Operation | SSAValue, *, comment: str | StringAttr | None = None, memory_offset: int | IntegerAttr, rsp_out: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2283 2284 2285 | |
M_PopOp
Bases: X86Instruction
Copies the value at the top of the stack into [m] and increases %rsp. The value held by m is a pointer to the memory location where the value is stored. The only register modified by this operation is %rsp.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 | |
name = 'x86.m.pop'
class-attribute
instance-attribute
rsp_in = operand_def(RSP)
class-attribute
instance-attribute
memory = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
rsp_out = result_def(RSP)
class-attribute
instance-attribute
traits = traits_def(MemoryWriteEffect())
class-attribute
instance-attribute
assembly_format = '$rsp_in `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($rsp_in) `,` type($memory) `)` `->` type($rsp_out)'
class-attribute
instance-attribute
__init__(rsp_in: Operation | SSAValue, memory: Operation | SSAValue, *, comment: str | StringAttr | None = None, memory_offset: int | IntegerAttr, rsp_out: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2335 2336 2337 | |
M_NegOp
dataclass
Bases: M_Operation[GeneralRegisterType]
Negates the value at the memory location pointed to by m.
[x[m]] = -[x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 | |
name = 'x86.m.neg'
class-attribute
instance-attribute
M_NotOp
dataclass
Bases: M_Operation[GeneralRegisterType]
bitwise not of [m], stored in [m]
[x[m]] = ~[x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 | |
name = 'x86.m.not'
class-attribute
instance-attribute
M_IncOp
dataclass
Bases: M_Operation[GeneralRegisterType]
Increments the value at the memory location pointed to by m. [x[m]] = [x[m]] + 1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 | |
name = 'x86.m.inc'
class-attribute
instance-attribute
M_DecOp
dataclass
Bases: M_Operation[GeneralRegisterType]
Decrements the value at the memory location pointed to by m. [x[m]] = [x[m]] - 1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 | |
name = 'x86.m.dec'
class-attribute
instance-attribute
M_IDivOp
Bases: X86Instruction
Divides the value in RDX:RAX by [m] and stores the quotient in RAX and the remainder in RDX.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 | |
name = 'x86.m.idiv'
class-attribute
instance-attribute
memory = operand_def(X86RegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
rdx_in = operand_def(RDX)
class-attribute
instance-attribute
rdx_out = result_def(RDX)
class-attribute
instance-attribute
rax_in = operand_def(RAX)
class-attribute
instance-attribute
rax_out = result_def(RAX)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $rdx_in `,` $rax_in attr-dict `:` `(` type($memory) `,` type($rdx_in) `,` type($rax_in) `)` `->` `(` type($rdx_out) `,` type($rax_out) `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, rdx_in: Operation | SSAValue, rax_in: Operation | SSAValue, memory_offset: int | IntegerAttr, *, comment: str | StringAttr | None = None, rdx_out: GeneralRegisterType, rax_out: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2442 2443 2444 | |
M_ImulOp
Bases: X86Instruction
The source operand is multiplied by the value in the RAX register and the product is stored in the RDX:RAX registers. x[RDX:RAX] = x[RAX] * [x[m]]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 | |
name = 'x86.m.imul'
class-attribute
instance-attribute
memory = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
rdx_out = result_def(RDX)
class-attribute
instance-attribute
rax_in = operand_def(RAX)
class-attribute
instance-attribute
rax_out = result_def(RAX)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $rax_in attr-dict `:` `(` type($memory) `,` type($rax_in) `)` `->` `(` type($rdx_out) `,` type($rax_out) `)`'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, rax_in: Operation | SSAValue, memory_offset: int | IntegerAttr, *, comment: str | StringAttr | None = None, rdx_out: GeneralRegisterType, rax_out: GeneralRegisterType)
Source code in xdsl/dialects/x86/ops.py
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2497 2498 2499 | |
LabelOp
Bases: X86AsmOperation, X86RegallocOperation
The label operation is used to emit text labels (e.g. loop:) that are used as branch, unconditional jump targets and symbol offsets.
Source code in xdsl/dialects/x86/ops.py
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 | |
name = 'x86.label'
class-attribute
instance-attribute
label = attr_def(StringAttr)
class-attribute
instance-attribute
comment = opt_attr_def(StringAttr)
class-attribute
instance-attribute
assembly_format = '$label attr-dict'
class-attribute
instance-attribute
__init__(label: str | StringAttr, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2533 2534 | |
DirectiveOp
Bases: X86AsmOperation, X86RegallocOperation, X86CustomFormatOperation
The directive operation is used to represent a directive in the assembly code. (e.g. .globl; .type etc)
Source code in xdsl/dialects/x86/ops.py
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 | |
name = 'x86.directive'
class-attribute
instance-attribute
directive = attr_def(StringAttr)
class-attribute
instance-attribute
value = opt_attr_def(StringAttr)
class-attribute
instance-attribute
__init__(directive: str | StringAttr, value: str | StringAttr | None)
Source code in xdsl/dialects/x86/ops.py
2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2565 2566 2567 2568 2569 2570 2571 2572 2573 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/x86/ops.py
2575 2576 2577 2578 2579 2580 2581 2582 2583 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/x86/ops.py
2585 2586 2587 2588 2589 2590 2591 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2593 2594 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/x86/ops.py
2596 2597 2598 2599 2600 | |
C_JmpOp
Bases: X86Instruction, X86CustomFormatOperation
Unconditional jump to the label specified in destination.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 | |
name = 'x86.c.jmp'
class-attribute
instance-attribute
block_values = var_operand_def(X86RegisterType)
class-attribute
instance-attribute
successor = successor_def()
class-attribute
instance-attribute
traits = traits_def(IsTerminator())
class-attribute
instance-attribute
__init__(block_values: Sequence[SSAValue], successor: Successor, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2652 2653 2654 2655 2656 2657 2658 2659 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 | |
FallthroughOp
Bases: X86AsmOperation, X86RegallocOperation, X86CustomFormatOperation
Continue execution into the next block. The successor of this operation must be immediately after this operation's parent.
Source code in xdsl/dialects/x86/ops.py
2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 | |
name = 'x86.fallthrough'
class-attribute
instance-attribute
block_values = var_operand_def(X86RegisterType)
class-attribute
instance-attribute
successor = successor_def()
class-attribute
instance-attribute
traits = traits_def(IsTerminator(), NoMemoryEffect())
class-attribute
instance-attribute
__init__(block_values: Sequence[SSAValue], successor: Successor, *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2736 2737 2738 2739 2740 2741 2742 2743 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2757 2758 2759 | |
SS_CmpOp
Bases: X86Instruction
Compares the first source operand with the second source operand and sets the status flags in the EFLAGS register according to the results.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 | |
name = 'x86.ss.cmp'
class-attribute
instance-attribute
source1 = operand_def(X86RegisterType)
class-attribute
instance-attribute
source2 = operand_def(X86RegisterType)
class-attribute
instance-attribute
result = result_def(RFLAGSRegisterType)
class-attribute
instance-attribute
assembly_format = '$source1 `,` $source2 attr-dict `:` `(` type($source1) `,` type($source2) `)` `->` type($result)'
class-attribute
instance-attribute
__init__(source1: Operation | SSAValue, source2: Operation | SSAValue, *, comment: str | StringAttr | None = None, result: RFLAGSRegisterType)
Source code in xdsl/dialects/x86/ops.py
2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2802 2803 | |
SM_CmpOp
Bases: X86Instruction
Compares the first source operand with the second source operand and sets the status flags in the EFLAGS register according to the results.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 | |
name = 'x86.sm.cmp'
class-attribute
instance-attribute
source = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
result = result_def(RFLAGSRegisterType)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '$source `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($source) `,` type($memory) `)` `->` type($result)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, memory: Operation | SSAValue, memory_offset: int | IntegerAttr, *, comment: str | StringAttr | None = None, result: RFLAGSRegisterType)
Source code in xdsl/dialects/x86/ops.py
2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2853 2854 2855 | |
SI_CmpOp
Bases: X86Instruction
Compares the first source operand with the second source operand and sets the status flags in the EFLAGS register according to the results.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 | |
name = 'x86.si.cmp'
class-attribute
instance-attribute
source = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
result = result_def(RFLAGS)
class-attribute
instance-attribute
assembly_format = '$source `,` $immediate attr-dict `:` `(` type($source) `)` `->` type($result)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None)
Source code in xdsl/dialects/x86/ops.py
2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
2899 2900 | |
MS_CmpOp
Bases: X86Instruction
Compares the first source operand with the second source operand and sets the status flags in the EFLAGS register according to the results.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 | |
name = 'x86.ms.cmp'
class-attribute
instance-attribute
memory = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[I64], default_value=(IntegerAttr(0, i64)))
class-attribute
instance-attribute
source = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
result = result_def(RFLAGSRegisterType)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $source attr-dict `:` `(` type($memory) `,` type($source) `)` `->` type($result)'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, source: Operation | SSAValue, memory_offset: int | IntegerAttr, *, comment: str | StringAttr | None = None, result: RFLAGSRegisterType)
Source code in xdsl/dialects/x86/ops.py
2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2950 2951 2952 | |
MI_CmpOp
Bases: X86Instruction
Compares the first source operand with the second source operand and sets the status flags in the EFLAGS register according to the results.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 | |
name = 'x86.mi.cmp'
class-attribute
instance-attribute
memory = operand_def(GeneralRegisterType)
class-attribute
instance-attribute
memory_offset = attr_def(IntegerAttr[SI64], default_value=(IntegerAttr(0, si64)))
class-attribute
instance-attribute
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
result = result_def(RFLAGSRegisterType)
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
class-attribute
instance-attribute
assembly_format = '` ` `[` $memory (`+` $memory_offset^)? `]` `,` $immediate attr-dict `:`type($memory) `->` type($result)'
class-attribute
instance-attribute
__init__(memory: Operation | SSAValue, memory_offset: int | IntegerAttr[SI64], immediate: int | IntegerAttr[SI32], *, comment: str | StringAttr | None = None, result: RFLAGSRegisterType)
Source code in xdsl/dialects/x86/ops.py
2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3005 3006 3007 3008 | |
C_JaOp
dataclass
Bases: ConditionalJumpOperation
Jump if above (CF=0 and ZF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3011 3012 3013 3014 3015 3016 3017 3018 3019 | |
name = 'x86.c.ja'
class-attribute
instance-attribute
C_JaeOp
dataclass
Bases: ConditionalJumpOperation
Jump if above or equal (CF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3022 3023 3024 3025 3026 3027 3028 3029 3030 | |
name = 'x86.c.jae'
class-attribute
instance-attribute
C_JbOp
dataclass
Bases: ConditionalJumpOperation
Jump if below (CF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3033 3034 3035 3036 3037 3038 3039 3040 3041 | |
name = 'x86.c.jb'
class-attribute
instance-attribute
C_JbeOp
dataclass
Bases: ConditionalJumpOperation
Jump if below or equal (CF=1 or ZF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3044 3045 3046 3047 3048 3049 3050 3051 3052 | |
name = 'x86.c.jbe'
class-attribute
instance-attribute
C_JcOp
dataclass
Bases: ConditionalJumpOperation
Jump if carry (CF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3055 3056 3057 3058 3059 3060 3061 3062 3063 | |
name = 'x86.c.jc'
class-attribute
instance-attribute
C_JeOp
dataclass
Bases: ConditionalJumpOperation
Jump if equal (ZF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3066 3067 3068 3069 3070 3071 3072 3073 3074 | |
name = 'x86.c.je'
class-attribute
instance-attribute
C_JgOp
dataclass
Bases: ConditionalJumpOperation
Jump if greater (ZF=0 and SF=OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3077 3078 3079 3080 3081 3082 3083 3084 3085 | |
name = 'x86.c.jg'
class-attribute
instance-attribute
C_JgeOp
dataclass
Bases: ConditionalJumpOperation
Jump if greater or equal (SF=OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3088 3089 3090 3091 3092 3093 3094 3095 3096 | |
name = 'x86.c.jge'
class-attribute
instance-attribute
C_JlOp
dataclass
Bases: ConditionalJumpOperation
Jump if less (SF≠OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3099 3100 3101 3102 3103 3104 3105 3106 3107 | |
name = 'x86.c.jl'
class-attribute
instance-attribute
C_JleOp
dataclass
Bases: ConditionalJumpOperation
Jump if less or equal (ZF=1 or SF≠OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3110 3111 3112 3113 3114 3115 3116 3117 3118 | |
name = 'x86.c.jle'
class-attribute
instance-attribute
C_JnaOp
dataclass
Bases: ConditionalJumpOperation
Jump if not above (CF=1 or ZF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3121 3122 3123 3124 3125 3126 3127 3128 3129 | |
name = 'x86.c.jna'
class-attribute
instance-attribute
C_JnaeOp
dataclass
Bases: ConditionalJumpOperation
Jump if not above or equal (CF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3132 3133 3134 3135 3136 3137 3138 3139 3140 | |
name = 'x86.c.jnae'
class-attribute
instance-attribute
C_JnbOp
dataclass
Bases: ConditionalJumpOperation
Jump if not below (CF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3143 3144 3145 3146 3147 3148 3149 3150 3151 | |
name = 'x86.c.jnb'
class-attribute
instance-attribute
C_JnbeOp
dataclass
Bases: ConditionalJumpOperation
Jump if not below or equal (CF=0 and ZF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3154 3155 3156 3157 3158 3159 3160 3161 3162 | |
name = 'x86.c.jnbe'
class-attribute
instance-attribute
C_JncOp
dataclass
Bases: ConditionalJumpOperation
Jump if not carry (CF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3165 3166 3167 3168 3169 3170 3171 3172 3173 | |
name = 'x86.c.jnc'
class-attribute
instance-attribute
C_JneOp
dataclass
Bases: ConditionalJumpOperation
Jump if not equal (ZF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3176 3177 3178 3179 3180 3181 3182 3183 3184 | |
name = 'x86.c.jne'
class-attribute
instance-attribute
C_JngOp
dataclass
Bases: ConditionalJumpOperation
Jump if not greater (ZF=1 or SF≠OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3187 3188 3189 3190 3191 3192 3193 3194 3195 | |
name = 'x86.c.jng'
class-attribute
instance-attribute
C_JngeOp
dataclass
Bases: ConditionalJumpOperation
Jump if not greater or equal (SF≠OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3198 3199 3200 3201 3202 3203 3204 3205 3206 | |
name = 'x86.c.jnge'
class-attribute
instance-attribute
C_JnlOp
dataclass
Bases: ConditionalJumpOperation
Jump if not less (SF=OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3209 3210 3211 3212 3213 3214 3215 3216 3217 | |
name = 'x86.c.jnl'
class-attribute
instance-attribute
C_JnleOp
dataclass
Bases: ConditionalJumpOperation
Jump if not less or equal (ZF=0 and SF=OF).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3220 3221 3222 3223 3224 3225 3226 3227 3228 | |
name = 'x86.c.jnle'
class-attribute
instance-attribute
C_JnoOp
dataclass
Bases: ConditionalJumpOperation
Jump if not overflow (OF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3231 3232 3233 3234 3235 3236 3237 3238 3239 | |
name = 'x86.c.jno'
class-attribute
instance-attribute
C_JnpOp
dataclass
Bases: ConditionalJumpOperation
Jump if not parity (PF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3242 3243 3244 3245 3246 3247 3248 3249 3250 | |
name = 'x86.c.jnp'
class-attribute
instance-attribute
C_JnsOp
dataclass
Bases: ConditionalJumpOperation
Jump if not sign (SF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3253 3254 3255 3256 3257 3258 3259 3260 3261 | |
name = 'x86.c.jns'
class-attribute
instance-attribute
C_JnzOp
dataclass
Bases: ConditionalJumpOperation
Jump if not zero (ZF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3264 3265 3266 3267 3268 3269 3270 3271 3272 | |
name = 'x86.c.jnz'
class-attribute
instance-attribute
C_JoOp
dataclass
Bases: ConditionalJumpOperation
Jump if overflow (OF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3275 3276 3277 3278 3279 3280 3281 3282 3283 | |
name = 'x86.c.jo'
class-attribute
instance-attribute
C_JpOp
dataclass
Bases: ConditionalJumpOperation
Jump if parity (PF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3286 3287 3288 3289 3290 3291 3292 3293 3294 | |
name = 'x86.c.jp'
class-attribute
instance-attribute
C_JpeOp
dataclass
Bases: ConditionalJumpOperation
Jump if parity even (PF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3297 3298 3299 3300 3301 3302 3303 3304 3305 | |
name = 'x86.c.jpe'
class-attribute
instance-attribute
C_JpoOp
dataclass
Bases: ConditionalJumpOperation
Jump if parity odd (PF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3308 3309 3310 3311 3312 3313 3314 3315 3316 | |
name = 'x86.c.jpo'
class-attribute
instance-attribute
C_JsOp
dataclass
Bases: ConditionalJumpOperation
Jump if sign (SF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3319 3320 3321 3322 3323 3324 3325 3326 3327 | |
name = 'x86.c.js'
class-attribute
instance-attribute
C_JzOp
dataclass
Bases: ConditionalJumpOperation
Jump if zero (ZF=1).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3330 3331 3332 3333 3334 3335 3336 3337 3338 | |
name = 'x86.c.jz'
class-attribute
instance-attribute
RSS_Vfmadd231pdOp
dataclass
Bases: RSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Multiply packed double-precision floating-point elements in s1 and s2, add the intermediate result to r, and store the final result in r.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 | |
name = 'x86.rss.vfmadd231pd'
class-attribute
instance-attribute
RSSK_Vfmadd231pdOp
dataclass
Bases: RSSK_Operation
AVX512 masked multiply packed double-precision floating-point elements in s1 and s2, add the intermediate result to r, and store the final result in r.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 | |
name = 'x86.rssk.vfmadd231pd'
class-attribute
instance-attribute
RSM_Vfmadd231pdOp
dataclass
Bases: RSM_Operation[X86VectorRegisterType, X86VectorRegisterType, GeneralRegisterType]
Multiply packed double-precision floating-point elements in s1 and at specified memory location, add the intermediate result to r, and store the final result in r.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 | |
name = 'x86.rsm.vfmadd231pd'
class-attribute
instance-attribute
RSS_Vfmadd231psOp
dataclass
Bases: RSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Multiply packed single-precision floating-point elements in s1 and s2, add the intermediate result to r, and store the final result in r.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 | |
name = 'x86.rss.vfmadd231ps'
class-attribute
instance-attribute
RSM_Vfmadd231psOp
dataclass
Bases: RSM_Operation[X86VectorRegisterType, X86VectorRegisterType, GeneralRegisterType]
Multiply packed single-precision floating-point elements in s1 and at specified memory location, add the intermediate result to r, and store the final result in r.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 | |
name = 'x86.rsm.vfmadd231ps'
class-attribute
instance-attribute
DSS_AddpdOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Add packed double-precision floating-point elements in s1 and s2 and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 | |
name = 'x86.dss.addpd'
class-attribute
instance-attribute
DSS_AddpsOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Add packed single-precision floating-point elements in s1 and s2 and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 | |
name = 'x86.dss.addps'
class-attribute
instance-attribute
DS_VmovapdOp
dataclass
Bases: DS_Operation[X86VectorRegisterType, X86VectorRegisterType]
Move aligned packed double precision floating-point values from zmm1 to zmm2
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3437 3438 3439 3440 3441 3442 3443 3444 3445 | |
name = 'x86.ds.vmovapd'
class-attribute
instance-attribute
DSK_VmovapdOp
dataclass
Bases: DSK_Operation
Move aligned packed double precision floating-point values from zmm1 to zmm2 using writemask k1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 | |
name = 'x86.dsk.vmovapd'
class-attribute
instance-attribute
DS_VmovapsOp
dataclass
Bases: DS_Operation[X86VectorRegisterType, X86VectorRegisterType]
Move aligned packed single precision floating-point values from zmm1 to zmm2
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3460 3461 3462 3463 3464 3465 3466 3467 3468 | |
name = 'x86.ds.vmovaps'
class-attribute
instance-attribute
MS_VmovapdOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Move aligned packed double precision floating-point values from zmm1 to m512
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3471 3472 3473 3474 3475 3476 3477 3478 3479 | |
name = 'x86.ms.vmovapd'
class-attribute
instance-attribute
MS_VmovapsOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Move aligned packed single precision floating-point values from zmm1 to m512
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3482 3483 3484 3485 3486 3487 3488 3489 3490 | |
name = 'x86.ms.vmovaps'
class-attribute
instance-attribute
MS_VmovupdOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Move unaligned packed double precision floating-point values from vector register to memory
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3493 3494 3495 3496 3497 3498 3499 3500 3501 | |
name = 'x86.ms.vmovupd'
class-attribute
instance-attribute
MS_VmovupsOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Move unaligned packed single precision floating-point values from vector register to memory
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3504 3505 3506 3507 3508 3509 3510 3511 3512 | |
name = 'x86.ms.vmovups'
class-attribute
instance-attribute
DM_VmovapdOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Move aligned packed double precision floating-point values from memory to vector register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 | |
name = 'x86.dm.vmovapd'
class-attribute
instance-attribute
DM_VmovapsOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Move aligned packed single precision floating-point values from memory to vector register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 | |
name = 'x86.dm.vmovaps'
class-attribute
instance-attribute
DM_VmovupdOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Move unaligned packed double precision floating-point values from memory to vector register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 | |
name = 'x86.dm.vmovupd'
class-attribute
instance-attribute
DM_VmovupsOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Move unaligned packed single precision floating-point values from memory to vector register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 | |
name = 'x86.dm.vmovups'
class-attribute
instance-attribute
DMK_VmovapdOp
dataclass
Bases: DMK_Operation[GeneralRegisterType]
Move aligned packed double precision floating-point values from memory to vector register using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 | |
name = 'x86.dmk.vmovapd'
class-attribute
instance-attribute
DMK_VmovupdOp
dataclass
Bases: DMK_Operation[GeneralRegisterType]
Move unaligned packed double precision floating-point values from memory to vector register using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 | |
name = 'x86.dmk.vmovupd'
class-attribute
instance-attribute
DMK_VmovapsOp
dataclass
Bases: DMK_Operation[GeneralRegisterType]
Move aligned packed single precision floating-point values from memory to vector register using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 | |
name = 'x86.dmk.vmovaps'
class-attribute
instance-attribute
DMK_VmovupsOp
dataclass
Bases: DMK_Operation[GeneralRegisterType]
Move unaligned packed single precision floating-point values from memory to vector register using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 | |
name = 'x86.dmk.vmovups'
class-attribute
instance-attribute
MSK_VmovapdOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, AVX512RegisterType]
Move aligned packed double precision floating-point values from vector register to memory using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 | |
name = 'x86.msk.vmovapd'
class-attribute
instance-attribute
MSK_VmovupdOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, AVX512RegisterType]
Move unaligned packed double precision floating-point values from vector register to memory using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 | |
name = 'x86.msk.vmovupd'
class-attribute
instance-attribute
MSK_VmovapsOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, AVX512RegisterType]
Move aligned packed single precision floating-point values from vector register to memory using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 | |
name = 'x86.msk.vmovaps'
class-attribute
instance-attribute
MSK_VmovupsOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, AVX512RegisterType]
Move unaligned packed single precision floating-point values from vector register to memory using writemask k.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 | |
name = 'x86.msk.vmovups'
class-attribute
instance-attribute
MS_VmovntpdOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Moves the packed double precision floating-point values in the source operand to the destination operand using a non-temporal hint to prevent caching of the data during the write to memory.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 | |
name = 'x86.ms.vmovntpd'
class-attribute
instance-attribute
MS_VmovntpsOp
dataclass
Bases: MS_Operation[GeneralRegisterType, X86VectorRegisterType]
Moves the packed single precision floating-point values in the source operand to the destination operand using a non-temporal hint to prevent caching of the data during the write to memory.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 | |
name = 'x86.ms.vmovntps'
class-attribute
instance-attribute
DM_VbroadcastsdOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Broadcast low double precision floating-point element in m64 to eight locations in zmm1 using writemask k1
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3685 3686 3687 3688 3689 3690 3691 3692 3693 | |
name = 'x86.dm.vbroadcastsd'
class-attribute
instance-attribute
DM_VbroadcastssOp
dataclass
Bases: DM_Operation[X86VectorRegisterType, GeneralRegisterType]
Broadcast single precision floating-point element to eight locations in memory
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3696 3697 3698 3699 3700 3701 3702 3703 3704 | |
name = 'x86.dm.vbroadcastss'
class-attribute
instance-attribute
DK_KMovBOp
dataclass
Bases: DK_Operation
Move 8 bits mask from source mask register to general-purpose register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 | |
name = 'x86.dk.kmovb'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3717 3718 3719 3720 3721 3722 3723 3724 | |
KS_KMovBOp
dataclass
Bases: KS_Operation
Move 8 bits mask from general-purpose register to destination mask register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 | |
name = 'x86.ks.kmovb'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3737 3738 3739 3740 3741 3742 3743 3744 3745 | |
DK_KMovWOp
dataclass
Bases: DK_Operation
Move 16 bits mask from source mask register to general-purpose register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 | |
name = 'x86.dk.kmovw'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3758 3759 3760 3761 3762 3763 3764 3765 | |
KS_KMovWOp
dataclass
Bases: KS_Operation
Move 16 bits mask from general-purpose register to destination mask register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 | |
name = 'x86.ks.kmovw'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3778 3779 3780 3781 3782 3783 3784 3785 3786 | |
DK_KMovDOp
dataclass
Bases: DK_Operation
Move 32 bits mask from source mask register to general-purpose register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 | |
name = 'x86.dk.kmovd'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3799 3800 3801 3802 3803 3804 3805 3806 | |
KS_KMovDOp
dataclass
Bases: KS_Operation
Move 32 bits mask from general-purpose register to destination mask register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 | |
name = 'x86.ks.kmovd'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3819 3820 3821 3822 3823 3824 3825 3826 3827 | |
DK_KMovQOp
dataclass
Bases: DK_Operation
Move 64 bits mask from source mask register to general-purpose register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3830 3831 3832 3833 3834 3835 3836 3837 3838 | |
name = 'x86.dk.kmovq'
class-attribute
instance-attribute
KS_KMovQOp
dataclass
Bases: KS_Operation
Move 64 bits mask from general-purpose register to destination mask register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3841 3842 3843 3844 3845 3846 3847 3848 3849 | |
name = 'x86.ks.kmovq'
class-attribute
instance-attribute
DSSI_ShufpsOp
dataclass
Bases: DSSI_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Selects a single precision floating-point value of an input quadruplet using a two-bit control and move to a designated element of the destination operand. Each 64-bit element-pair of a 128-bit lane of the destination operand is interleaved between the corresponding lane of the first source operand and the second source operand at the granularity 128 bits. Each two bits in the imm8 byte, starting from bit 0, is the select control of the corresponding element of a 128-bit lane of the destination to received the shuffled result of an input quadruplet. The two lower elements of a 128-bit lane in the destination receives shuffle results from the quadruple of the first source operand. The next two elements of the destination receives shuffle results from the quadruple of the second source operand.
See external documentation
Source code in xdsl/dialects/x86/ops.py
3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 | |
name = 'x86.dssi.shufps'
class-attribute
instance-attribute
GetAnyRegisterOperation
Bases: X86AsmOperation, X86RegallocOperation, ABC, Generic[R1InvT]
This instruction allows us to create an SSAValue for a given register name.
Source code in xdsl/dialects/x86/ops.py
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 | |
result: OpResult[R1InvT] = result_def(R1InvT)
class-attribute
instance-attribute
assembly_format = 'attr-dict `:` type($result)'
class-attribute
instance-attribute
traits = traits_def(NoMemoryEffect())
class-attribute
instance-attribute
__init__(register_type: R1InvT)
Source code in xdsl/dialects/x86/ops.py
3890 3891 3892 3893 3894 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
3896 3897 | |
GetRegisterOp
dataclass
Bases: GetAnyRegisterOperation[GeneralRegisterType]
Source code in xdsl/dialects/x86/ops.py
3900 3901 3902 | |
name = 'x86.get_register'
class-attribute
instance-attribute
GetAVXRegisterOp
dataclass
Bases: GetAnyRegisterOperation[X86VectorRegisterType]
Source code in xdsl/dialects/x86/ops.py
3905 3906 3907 | |
name = 'x86.get_avx_register'
class-attribute
instance-attribute
GetMaskRegisterOp
dataclass
Bases: GetAnyRegisterOperation[AVX512MaskRegisterType]
Source code in xdsl/dialects/x86/ops.py
3910 3911 3912 | |
name = 'x86.get_mask_register'
class-attribute
instance-attribute
ParallelMovOp
Bases: X86RegallocOperation
Source code in xdsl/dialects/x86/ops.py
3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 | |
name = 'x86.parallel_mov'
class-attribute
instance-attribute
inputs = var_operand_def(X86RegisterType)
class-attribute
instance-attribute
outputs: VarOpResult[X86RegisterType] = var_result_def(X86RegisterType)
class-attribute
instance-attribute
free_registers = opt_prop_def(ArrayAttr[X86RegisterType])
class-attribute
instance-attribute
assembly_format = '$inputs attr-dict `:` functional-type($inputs, $outputs)'
class-attribute
instance-attribute
irdl_options = (ParsePropInAttrDict(),)
class-attribute
instance-attribute
traits = traits_def(RegisterAllocatedMemoryEffect())
class-attribute
instance-attribute
__init__(inputs: Sequence[SSAValue], outputs: Sequence[X86RegisterType], free_registers: ArrayAttr[X86RegisterType] | None = None)
Source code in xdsl/dialects/x86/ops.py
3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 | |
X86AsmTarget
dataclass
Bases: Target
Source code in xdsl/dialects/x86/ops.py
3972 3973 3974 3975 3976 3977 | |
name = 'x86-asm'
class-attribute
instance-attribute
__init__() -> None
emit(ctx: Context, module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/x86/ops.py
3976 3977 | |
print_assembly(module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/x86/ops.py
3960 3961 3962 3963 | |
x86_code(module: ModuleOp) -> str
Source code in xdsl/dialects/x86/ops.py
3966 3967 3968 3969 | |