| OLD | NEW |
| 1 # Define instruction mnemonics enumerated type. | 1 # Define instruction mnemonics enumerated type. |
| 2 # Each line defines a separate instruction mnemonic. | 2 # Each line defines a separate instruction mnemonic. |
| 3 # Note: No need to sort, the generator will do this. | 3 # Note: No need to sort, the generator will do this. |
| 4 # | 4 # |
| 5 # Special names for communicating instruction patterns, when decoder | 5 # Special names for communicating instruction patterns, when decoder |
| 6 # tables are simplified and no longer represent actual x86 instructions: | 6 # tables are simplified and no longer represent actual x86 instructions: |
| 7 # | 7 # |
| 8 DontCare # Instruction name is not needed. | 8 DontCare # Instruction name is not needed. |
| 9 DontCareJump # Generic jump instruction name. | 9 DontCareJump # Generic jump instruction name. |
| 10 DontCareCondJump # Generic conditional jump instruction name. | 10 DontCareCondJump # Generic conditional jump instruction name. |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 Subps | 601 Subps |
| 602 Subpd | 602 Subpd |
| 603 Subsd | 603 Subsd |
| 604 Subss | 604 Subss |
| 605 Swapgs | 605 Swapgs |
| 606 Syscall | 606 Syscall |
| 607 Sysenter | 607 Sysenter |
| 608 Sysexit | 608 Sysexit |
| 609 Sysret | 609 Sysret |
| 610 Test | 610 Test |
| 611 Tzcnt |
| 611 Ucomisd | 612 Ucomisd |
| 612 Ucomiss | 613 Ucomiss |
| 613 Ud2 | 614 Ud2 |
| 614 Unpckhpd | 615 Unpckhpd |
| 615 Unpckhps | 616 Unpckhps |
| 616 Unpcklpd | 617 Unpcklpd |
| 617 Unpcklps | 618 Unpcklps |
| 618 Verr | 619 Verr |
| 619 Verw | 620 Verw |
| 620 Vmload | 621 Vmload |
| 621 Vmmcall | 622 Vmmcall |
| 622 Vmrun | 623 Vmrun |
| 623 Vmsave | 624 Vmsave |
| 624 Wbinvd | 625 Wbinvd |
| 625 Wrmsr | 626 Wrmsr |
| 626 Xadd | 627 Xadd |
| 627 Xchg | 628 Xchg |
| 628 Xlat | 629 Xlat |
| 629 Xor | 630 Xor |
| 630 Xorpd | 631 Xorpd |
| 631 Xorps | 632 Xorps |
| OLD | NEW |