Changeset 104784 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 26, 2024 5:45:30 PM (8 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstVexMap2.cpp.h
r104722 r104784 2275 2275 { 2276 2276 IEMOP_MNEMONIC3(VEX_RVM, ANDN, andn, Gy, By, Ey, DISOPTYPE_HARMLESS, IEMOPHINT_VEX_L_ZERO); 2277 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); 2277 2278 IEMOP_VERIFICATION_UNDEFINED_EFLAGS(X86_EFL_AF | X86_EFL_PF); 2278 2279 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); … … 2377 2378 /** Body for the vex group 17 instructions. */ 2378 2379 #define IEMOP_BODY_By_Ey(a_Instr) \ 2380 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); \ 2379 2381 IEMOP_VERIFICATION_UNDEFINED_EFLAGS(X86_EFL_AF | X86_EFL_PF); \ 2380 2382 if (IEM_IS_MODRM_REG_MODE(bRm)) \ … … 2545 2547 /** Body for BZHI, BEXTR, ++; assumes VEX.L must be 0. */ 2546 2548 #define IEMOP_BODY_Gy_Ey_By(a_Instr, a_fFeatureMember, a_fUndefFlags) \ 2549 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); \ 2547 2550 IEMOP_VERIFICATION_UNDEFINED_EFLAGS(a_fUndefFlags); \ 2548 2551 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); \ … … 2641 2644 /** Body for SARX, SHLX, SHRX; assumes VEX.L must be 0. */ 2642 2645 #define IEMOP_BODY_Gy_Ey_By_NoEflags(a_Instr, a_fFeatureMember) \ 2646 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); \ 2643 2647 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); \ 2644 2648 if (IEM_IS_MODRM_REG_MODE(bRm)) \ … … 2740 2744 /** Body for PDEP and PEXT (similar to ANDN, except no EFLAGS). */ 2741 2745 #define IEMOP_BODY_Gy_By_Ey_NoEflags(a_Instr, a_fFeatureMember) \ 2746 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); \ 2742 2747 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); \ 2743 2748 if (IEM_IS_MODRM_REG_MODE(bRm)) \ … … 2855 2860 { 2856 2861 IEMOP_MNEMONIC4(VEX_RVM, MULX, mulx, Gy, By, Ey, rDX, DISOPTYPE_HARMLESS, IEMOPHINT_VEX_L_ZERO); 2862 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); 2857 2863 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); 2858 2864 if (IEM_IS_MODRM_REG_MODE(bRm)) -
trunk/src/VBox/VMM/VMMAll/IEMAllInstVexMap3.cpp.h
r104369 r104784 1786 1786 { 1787 1787 IEMOP_MNEMONIC3(VEX_RMI, RORX, rorx, Gy, Ey, Ib, DISOPTYPE_HARMLESS, IEMOPHINT_VEX_L_ZERO | IEMOPHINT_VEX_V_ZERO); 1788 IEMOP_HLP_IGNORE_VEX_W_PREFIX_IF_NOT_IN_64BIT(); 1788 1789 uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); 1789 1790 if (IEM_IS_MODRM_REG_MODE(bRm))
Note:
See TracChangeset
for help on using the changeset viewer.