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
139 140 141 142 | |
X86RegisterAllocatableOperation
dataclass
Bases: IRDLOperation, RegisterAllocatableOperation, ABC
Base class for x86 operations that can take part in register allocation.
Source code in xdsl/dialects/x86/ops.py
145 146 147 148 | |
X86HasRegisterConstraints
dataclass
Bases: X86RegisterAllocatableOperation, HasRegisterConstraints, ABC
Base class for x86 operations with register constraints.
By default, all operands are "in", and all results are "out", subclasses must
override get_register_constraints if some of the results must be in the same
registers as operands.
Source code in xdsl/dialects/x86/ops.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
161 162 163 164 165 | |
X86CustomFormatOperation
dataclass
Bases: IRDLOperation, ABC
Source code in xdsl/dialects/x86/ops.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
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
187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
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
202 203 204 205 206 207 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/x86/ops.py
209 210 211 212 213 214 215 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
217 218 219 220 221 222 223 224 225 226 227 228 229 | |
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
231 232 233 234 235 236 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
238 239 240 | |
X86Instruction
dataclass
Bases: X86AsmOperation, X86HasRegisterConstraints
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
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | |
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
257 258 259 260 261 262 263 | |
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
265 266 267 268 269 270 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
272 273 274 275 276 277 278 279 280 | |
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
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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
324 325 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
327 328 329 330 | |
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
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | |
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
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
364 365 | |
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
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | |
destination: OpResult[X86VectorRegisterType] = result_def(X86VectorRegisterType)
class-attribute
instance-attribute
source = operand_def(X86VectorRegisterType)
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: X86VectorRegisterType)
Source code in xdsl/dialects/x86/ops.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
405 406 407 | |
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
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | |
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
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
439 440 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
442 443 | |
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
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | |
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
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
475 476 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
478 479 | |
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
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
513 514 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
516 517 | |
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
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
565 566 567 568 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
570 571 572 573 | |
DM_OperationHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
576 577 578 579 580 581 582 583 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
577 578 579 580 581 582 583 | |
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
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
destination: OpResult[R1InvT] = 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
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
626 627 628 629 | |
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
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 | |
destination = result_def(X86VectorRegisterType)
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: X86VectorRegisterType)
Source code in xdsl/dialects/x86/ops.py
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
678 679 680 681 | |
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
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 | |
immediate = attr_def(IntegerAttr[SI32])
class-attribute
instance-attribute
destination: OpResult[R1InvT] = 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
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
717 718 | |
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
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
764 765 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
767 768 | |
MS_OperationHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
771 772 773 774 775 776 777 778 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
772 773 774 775 776 777 778 | |
MS_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that write one source register to a memory destination. Read-modify-write subclasses must additionally declare a memory read.
Source code in xdsl/dialects/x86/ops.py
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 | |
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(), 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
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
823 824 825 | |
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: [m+offset]{k} := s where [m+offset] is the memory location addressed by the base register and offset, s is the source vector register, and k is the mask.
Source code in xdsl/dialects/x86/ops.py
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 868 869 870 871 872 873 874 875 876 877 878 879 880 881 | |
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
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
877 878 879 880 881 | |
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
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 | |
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
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
928 929 930 931 | |
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
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 961 962 963 964 965 966 967 968 969 970 971 972 973 974 | |
destination: OpResult[R1InvT] = 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
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
973 974 | |
DSI8_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT]
A base class for x86 operations that have one destination register, one source register, and an unsigned 8-bit immediate value.
Source code in xdsl/dialects/x86/ops.py
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 1013 1014 1015 1016 | |
destination: OpResult[R1InvT] = result_def(R1InvT)
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
immediate = prop_def(IntegerAttr[UI8])
class-attribute
instance-attribute
assembly_format = '$source `,` $immediate attr-dict `:` functional-type($source, $destination)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, immediate: int | IntegerAttr[UI8], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1015 1016 | |
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
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 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 | |
destination: OpResult[R1InvT] = 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
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1064 1065 1066 1067 1068 | |
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
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 | |
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
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1106 1107 1108 | |
ConditionalJumpOperation
Bases: X86Instruction, X86CustomFormatOperation, ABC
A base class for Jcc operations.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
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 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 | |
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
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 | |
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
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 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1278 1279 1280 1281 1282 1283 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1285 1286 1287 1288 | |
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
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 | |
T: VarConstraint = VarConstraint('T', base(X86VectorRegisterType))
class-attribute
register_in = operand_def(T)
class-attribute
instance-attribute
register_out = result_def(T)
class-attribute
instance-attribute
source1 = operand_def(X86VectorRegisterType)
class-attribute
instance-attribute
source2 = operand_def(X86VectorRegisterType)
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
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1339 1340 1341 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1343 1344 1345 1346 1347 1348 | |
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
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 | |
destination: OpResult[R1InvT] = 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
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 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1388 1389 1390 1391 | |
DSM_Operation
Bases: X86Instruction, ABC, Generic[R1InvT, R2InvT, R3InvT]
A base class for x86 operations that have one destination register, one source register, and one memory source operand.
Source code in xdsl/dialects/x86/ops.py
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 | |
destination: OpResult[R1InvT] = result_def(R1InvT)
class-attribute
instance-attribute
source = operand_def(R2InvT)
class-attribute
instance-attribute
memory = operand_def(R3InvT)
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 = '$source `,` `[` $memory (`+` $memory_offset^)? `]` attr-dict `:` `(` type($source) `,` type($memory) `)` `->` type($destination)'
class-attribute
instance-attribute
__init__(source: Operation | SSAValue, memory: Operation | SSAValue, memory_offset: int | IntegerAttr[SI64], *, comment: str | StringAttr | None = None, destination: R1InvT)
Source code in xdsl/dialects/x86/ops.py
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1435 1436 1437 | |
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
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1487 1488 1489 1490 1491 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1493 1494 1495 1496 | |
RSMB_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. When the broadcast attribute is set, the memory operand uses EVEX broadcast encoding.
Source code in xdsl/dialects/x86/ops.py
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 | |
register_in = operand_def(R1InvT)
class-attribute
instance-attribute
register_out: OpResult[R1InvT] = 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
broadcast = opt_attr_def(UnitAttr)
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], *, broadcast: bool = False, comment: str | StringAttr | None = None, register_out: R1InvT | None = None)
Source code in xdsl/dialects/x86/ops.py
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 | |
lane_bitwidth() -> int
abstractmethod
classmethod
The bitwidth of a single lane of the vector this operation operates on.
Source code in xdsl/dialects/x86/ops.py
1550 1551 1552 1553 1554 1555 1556 | |
broadcast_modifier() -> str
The EVEX broadcast modifier for this operation, e.g. 1to8.
The lane count is the register width divided by the lane width, so it
depends on the register bank this operation is allocated to: vfmadd231pd
broadcasts 1to2 on xmm, 1to4 on ymm and 1to8 on zmm.
Source code in xdsl/dialects/x86/ops.py
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 | |
get_register_constraints() -> RegisterConstraints
Source code in xdsl/dialects/x86/ops.py
1581 1582 1583 1584 | |
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
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 | |
destination: OpResult[R1InvT] = 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
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1626 1627 1628 1629 1630 1631 1632 | |
RS_AddOpHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
1638 1639 1640 1641 1642 1643 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
1639 1640 1641 1642 1643 | |
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
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 | |
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
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 | |
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
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 | |
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
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 | |
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
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 | |
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
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 | |
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
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 | |
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
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 | |
name = 'x86.rs.xor'
class-attribute
instance-attribute
DS_MovOpHasCanonicalizationPatterns
dataclass
Bases: HasCanonicalizationPatternsTrait
Source code in xdsl/dialects/x86/ops.py
1761 1762 1763 1764 1765 1766 | |
get_canonicalization_patterns() -> tuple[RewritePattern, ...]
classmethod
Source code in xdsl/dialects/x86/ops.py
1762 1763 1764 1765 1766 | |
DS_MovOp
dataclass
Bases: DS_Operation[GeneralRegisterType, GeneralRegisterType]
Copies the value of s into r.
x[r] = x[s]
See external documentation.
Source code in xdsl/dialects/x86/ops.py
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 | |
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
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 | |
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
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 | |
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
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 | |
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(GeneralRegisterType)
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
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1850 1851 | |
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
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 | |
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: OpResult[GeneralRegisterType] = result_def(GeneralRegisterType)
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
1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1891 1892 | |
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
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 | |
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
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 | |
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
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 | |
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
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 | |
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
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 | |
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
1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
1996 1997 | |
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
2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 | |
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
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2046 2047 | |
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
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 | |
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
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 | |
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
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 | |
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
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 | |
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
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 | |
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
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 | |
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
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 | |
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
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 | |
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
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 | |
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
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 | |
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
2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 | |
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
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 | |
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
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 | |
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
2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 | |
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
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 | |
name = 'x86.ms.add'
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
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
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 | |
name = 'x86.ms.sub'
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
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
2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 | |
name = 'x86.ms.and'
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
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
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 | |
name = 'x86.ms.or'
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
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
2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 | |
name = 'x86.ms.xor'
class-attribute
instance-attribute
traits = traits_def(MemoryReadEffect())
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
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 | |
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
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 | |
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
2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 | |
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
2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 | |
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
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 | |
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
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 | |
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
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 | |
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
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 | |
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
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 | |
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
2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 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 | |
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
2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2483 2484 2485 | |
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
2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 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 2535 2536 2537 | |
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
2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2535 2536 2537 | |
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
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 | |
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
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 | |
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
2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 | |
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
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 | |
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
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 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 | |
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
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2642 2643 2644 | |
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
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 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 | |
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
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
2697 2698 2699 | |
LabelOp
Bases: X86AsmOperation, X86HasRegisterConstraints
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
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 | |
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
2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2733 2734 | |
DirectiveOp
Bases: X86AsmOperation, X86HasRegisterConstraints, 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
2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 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 | |
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
2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2765 2766 2767 2768 2769 2770 2771 2772 2773 | |
custom_parse_attributes(parser: Parser) -> dict[str, Attribute]
classmethod
Source code in xdsl/dialects/x86/ops.py
2775 2776 2777 2778 2779 2780 2781 2782 2783 | |
custom_print_attributes(printer: Printer) -> AbstractSet[str]
Source code in xdsl/dialects/x86/ops.py
2785 2786 2787 2788 2789 2790 2791 | |
print_op_type(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2793 2794 | |
parse_op_type(parser: Parser) -> tuple[Sequence[Attribute], Sequence[Attribute]]
classmethod
Source code in xdsl/dialects/x86/ops.py
2796 2797 2798 2799 2800 | |
C_JmpOp
Bases: X86Instruction, X86CustomFormatOperation
Unconditional jump to the label specified in destination.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
2803 2804 2805 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 2856 2857 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 | |
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
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2852 2853 2854 2855 2856 2857 2858 2859 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 | |
FallthroughOp
Bases: X86AsmOperation, X86HasRegisterConstraints, 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
2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 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 2953 2954 2955 2956 2957 2958 2959 2960 2961 | |
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
2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 | |
print(printer: Printer) -> None
Source code in xdsl/dialects/x86/ops.py
2938 2939 2940 2941 2942 2943 2944 2945 | |
parse(parser: Parser) -> Self
classmethod
Source code in xdsl/dialects/x86/ops.py
2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
2959 2960 2961 | |
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
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 | |
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(RFLAGS)
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)
Source code in xdsl/dialects/x86/ops.py
2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3003 3004 | |
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
3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 | |
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(RFLAGS)
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)
Source code in xdsl/dialects/x86/ops.py
3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3053 3054 3055 | |
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
3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 | |
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
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 | |
assembly_line_args() -> tuple[AssemblyInstructionArg, ...]
Source code in xdsl/dialects/x86/ops.py
3099 3100 | |
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
3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 | |
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(RFLAGS)
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)
Source code in xdsl/dialects/x86/ops.py
3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3149 3150 3151 | |
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
3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 | |
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(RFLAGS)
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)
Source code in xdsl/dialects/x86/ops.py
3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 | |
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
3203 3204 3205 3206 | |
C_JaOp
dataclass
Bases: ConditionalJumpOperation
Jump if above (CF=0 and ZF=0).
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3209 3210 3211 3212 3213 3214 3215 3216 3217 | |
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
3220 3221 3222 3223 3224 3225 3226 3227 3228 | |
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
3231 3232 3233 3234 3235 3236 3237 3238 3239 | |
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
3242 3243 3244 3245 3246 3247 3248 3249 3250 | |
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
3253 3254 3255 3256 3257 3258 3259 3260 3261 | |
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
3264 3265 3266 3267 3268 3269 3270 3271 3272 | |
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
3275 3276 3277 3278 3279 3280 3281 3282 3283 | |
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
3286 3287 3288 3289 3290 3291 3292 3293 3294 | |
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
3297 3298 3299 3300 3301 3302 3303 3304 3305 | |
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
3308 3309 3310 3311 3312 3313 3314 3315 3316 | |
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
3319 3320 3321 3322 3323 3324 3325 3326 3327 | |
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
3330 3331 3332 3333 3334 3335 3336 3337 3338 | |
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
3341 3342 3343 3344 3345 3346 3347 3348 3349 | |
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
3352 3353 3354 3355 3356 3357 3358 3359 3360 | |
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
3363 3364 3365 3366 3367 3368 3369 3370 3371 | |
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
3374 3375 3376 3377 3378 3379 3380 3381 3382 | |
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
3385 3386 3387 3388 3389 3390 3391 3392 3393 | |
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
3396 3397 3398 3399 3400 3401 3402 3403 3404 | |
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
3407 3408 3409 3410 3411 3412 3413 3414 3415 | |
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
3418 3419 3420 3421 3422 3423 3424 3425 3426 | |
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
3429 3430 3431 3432 3433 3434 3435 3436 3437 | |
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
3440 3441 3442 3443 3444 3445 3446 3447 3448 | |
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
3451 3452 3453 3454 3455 3456 3457 3458 3459 | |
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
3462 3463 3464 3465 3466 3467 3468 3469 3470 | |
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
3473 3474 3475 3476 3477 3478 3479 3480 3481 | |
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
3484 3485 3486 3487 3488 3489 3490 3491 3492 | |
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
3495 3496 3497 3498 3499 3500 3501 3502 3503 | |
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
3506 3507 3508 3509 3510 3511 3512 3513 3514 | |
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
3517 3518 3519 3520 3521 3522 3523 3524 3525 | |
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
3528 3529 3530 3531 3532 3533 3534 3535 3536 | |
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
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 | |
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
3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 | |
name = 'x86.rssk.vfmadd231pd'
class-attribute
instance-attribute
RSM_Vfmadd231pdOp
dataclass
Bases: RSMB_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
3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 | |
name = 'x86.rsm.vfmadd231pd'
class-attribute
instance-attribute
lane_bitwidth() -> int
classmethod
Source code in xdsl/dialects/x86/ops.py
3578 3579 3580 | |
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
3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 | |
name = 'x86.rss.vfmadd231ps'
class-attribute
instance-attribute
RSM_Vfmadd231psOp
dataclass
Bases: RSMB_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
3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 | |
name = 'x86.rsm.vfmadd231ps'
class-attribute
instance-attribute
lane_bitwidth() -> int
classmethod
Source code in xdsl/dialects/x86/ops.py
3610 3611 3612 | |
DSM_VmulpdOp
dataclass
Bases: DSM_Operation[X86VectorRegisterType, X86VectorRegisterType, GeneralRegisterType]
Multiply packed double-precision floating-point elements in s and at the specified memory location and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 | |
name = 'x86.dsm.vmulpd'
class-attribute
instance-attribute
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
3628 3629 | |
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
3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 | |
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
3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 | |
name = 'x86.dss.addps'
class-attribute
instance-attribute
DSS_VaddpdOp
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
3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 | |
name = 'x86.dss.vaddpd'
class-attribute
instance-attribute
DSM_VaddsdOp
dataclass
Bases: DSM_Operation[SSERegisterType, SSERegisterType, GeneralRegisterType]
Add the low double-precision floating-point elements in s and at the specified memory location and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 | |
name = 'x86.dsm.vaddsd'
class-attribute
instance-attribute
DSS_VaddpsOp
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
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 | |
name = 'x86.dss.vaddps'
class-attribute
instance-attribute
DSS_VpxordOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Bitwise XOR of packed doubleword integers in s1 and s2 and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 | |
name = 'x86.dss.vpxord'
class-attribute
instance-attribute
DSS_VpxorqOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Bitwise XOR of packed quadword integers in s1 and s2 and store the result in d.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 | |
name = 'x86.dss.vpxorq'
class-attribute
instance-attribute
DSS_VxorpdOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Bitwise XOR of 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
3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 | |
name = 'x86.dss.vxorpd'
class-attribute
instance-attribute
DSS_VxorpsOp
dataclass
Bases: DSS_Operation[X86VectorRegisterType, X86VectorRegisterType, X86VectorRegisterType]
Bitwise XOR of 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
3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 | |
name = 'x86.dss.vxorps'
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
3756 3757 3758 3759 3760 3761 3762 3763 3764 | |
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
3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 | |
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
3779 3780 3781 3782 3783 3784 3785 3786 3787 | |
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
3790 3791 3792 3793 3794 3795 3796 3797 3798 | |
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
3801 3802 3803 3804 3805 3806 3807 3808 3809 | |
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
3812 3813 3814 3815 3816 3817 3818 3819 3820 | |
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
3823 3824 3825 3826 3827 3828 3829 3830 3831 | |
name = 'x86.ms.vmovups'
class-attribute
instance-attribute
MS_VmovsdOp
dataclass
Bases: MS_Operation[GeneralRegisterType, SSERegisterType]
Move a scalar double-precision floating-point value from an XMM register to memory.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
3834 3835 3836 3837 3838 3839 3840 3841 3842 | |
name = 'x86.ms.vmovsd'
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
3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 | |
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
3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 | |
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
3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 | |
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
3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 | |
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
3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 | |
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
3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 | |
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
3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 | |
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
3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 | |
name = 'x86.dmk.vmovups'
class-attribute
instance-attribute
MSK_VmovapdOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, X86VectorRegisterType]
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
3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 | |
name = 'x86.msk.vmovapd'
class-attribute
instance-attribute
MSK_VmovupdOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, X86VectorRegisterType]
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
3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 | |
name = 'x86.msk.vmovupd'
class-attribute
instance-attribute
MSK_VmovapsOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, X86VectorRegisterType]
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
3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 | |
name = 'x86.msk.vmovaps'
class-attribute
instance-attribute
MSK_VmovupsOp
dataclass
Bases: MSK_Operation[GeneralRegisterType, X86VectorRegisterType]
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
3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 | |
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
3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 | |
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
4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 | |
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
4015 4016 4017 4018 4019 4020 4021 4022 4023 | |
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
4026 4027 4028 4029 4030 4031 4032 4033 4034 | |
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
4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 | |
name = 'x86.dk.kmovb'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4047 4048 4049 4050 4051 4052 4053 4054 | |
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
4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 | |
name = 'x86.ks.kmovb'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4067 4068 4069 4070 4071 4072 4073 4074 4075 | |
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
4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 | |
name = 'x86.dk.kmovw'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4088 4089 4090 4091 4092 4093 4094 4095 | |
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
4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 | |
name = 'x86.ks.kmovw'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4108 4109 4110 4111 4112 4113 4114 4115 4116 | |
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
4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 | |
name = 'x86.dk.kmovd'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4129 4130 4131 4132 4133 4134 4135 4136 | |
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
4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 | |
name = 'x86.ks.kmovd'
class-attribute
instance-attribute
assembly_line_args() -> tuple[AssemblyInstructionArg | None, ...]
Source code in xdsl/dialects/x86/ops.py
4149 4150 4151 4152 4153 4154 4155 4156 4157 | |
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
4160 4161 4162 4163 4164 4165 4166 4167 4168 | |
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
4171 4172 4173 4174 4175 4176 4177 4178 4179 | |
name = 'x86.ks.kmovq'
class-attribute
instance-attribute
DSI_Vextractf64x4Op
dataclass
Bases: DSI8_Operation[AVX2RegisterType, AVX512RegisterType]
Extract 256 bits of packed double-precision floating-point elements from a ZMM register into a YMM register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 | |
name = 'x86.dsi.vextractf64x4'
class-attribute
instance-attribute
DSI_Vextractf128Op
dataclass
Bases: DSI8_Operation[SSERegisterType, AVX2RegisterType]
Extract 128 bits of packed floating-point elements from a YMM register into an XMM register.
See external documentation.
Source code in xdsl/dialects/x86/ops.py
4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 | |
name = 'x86.dsi.vextractf128'
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
4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 | |
name = 'x86.dssi.shufps'
class-attribute
instance-attribute
GetAnyRegisterOperation
Bases: X86AsmOperation, X86HasRegisterConstraints, ABC, Generic[R1InvT]
This instruction allows us to create an SSAValue for a given register name.
Source code in xdsl/dialects/x86/ops.py
4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 | |
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
4244 4245 4246 4247 4248 | |
assembly_line() -> str | None
Source code in xdsl/dialects/x86/ops.py
4250 4251 | |
GetRegisterOp
dataclass
Bases: GetAnyRegisterOperation[GeneralRegisterType]
Source code in xdsl/dialects/x86/ops.py
4254 4255 4256 | |
name = 'x86.get_register'
class-attribute
instance-attribute
GetAVXRegisterOp
dataclass
Bases: GetAnyRegisterOperation[X86VectorRegisterType]
Source code in xdsl/dialects/x86/ops.py
4259 4260 4261 | |
name = 'x86.get_avx_register'
class-attribute
instance-attribute
GetMaskRegisterOp
dataclass
Bases: GetAnyRegisterOperation[AVX512MaskRegisterType]
Source code in xdsl/dialects/x86/ops.py
4264 4265 4266 | |
name = 'x86.get_mask_register'
class-attribute
instance-attribute
ParallelMovOp
Bases: X86HasRegisterConstraints
Source code in xdsl/dialects/x86/ops.py
4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 | |
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
4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 | |
verify_() -> None
Source code in xdsl/dialects/x86/ops.py
4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 | |
X86AsmTarget
dataclass
Bases: Target
Source code in xdsl/dialects/x86/ops.py
4326 4327 4328 4329 4330 4331 | |
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
4330 4331 | |
print_assembly(module: ModuleOp, output: IO[str]) -> None
Source code in xdsl/dialects/x86/ops.py
4314 4315 4316 4317 | |
x86_code(module: ModuleOp) -> str
Source code in xdsl/dialects/x86/ops.py
4320 4321 4322 4323 | |