Changeset 101722 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Nov 3, 2023 12:36:45 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r101682 r101722 622 622 #define IEM_CIMPL_F_XCPT \ 623 623 (IEM_CIMPL_F_BRANCH_INDIRECT | IEM_CIMPL_F_BRANCH_FAR | IEM_CIMPL_F_MODE | IEM_CIMPL_F_RFLAGS | IEM_CIMPL_F_VMEXIT) 624 625 /** The block calls a C-implementation instruction function with two implicit arguments. 626 * Mutually exclusive with IEM_CIMPL_F_CALLS_AIMPL and 627 * IEM_CIMPL_F_CALLS_AIMPL_WITH_FXSTATE. 628 * @note The python scripts will add this is missing. */ 629 #define IEM_CIMPL_F_CALLS_CIMPL RT_BIT_32(16) 630 /** The block calls an ASM-implementation instruction function. 631 * Mutually exclusive with IEM_CIMPL_F_CALLS_CIMPL and 632 * IEM_CIMPL_F_CALLS_AIMPL_WITH_FXSTATE. 633 * @note The python scripts will add this is missing. */ 634 #define IEM_CIMPL_F_CALLS_AIMPL RT_BIT_32(17) 635 /** The block calls an ASM-implementation instruction function with an implicit 636 * X86FXSTATE pointer argument. 637 * Mutually exclusive with IEM_CIMPL_F_CALLS_CIMPL and IEM_CIMPL_F_CALLS_AIMPL. 638 * @note The python scripts will add this is missing. */ 639 #define IEM_CIMPL_F_CALLS_AIMPL_WITH_FXSTATE RT_BIT_32(18) 624 640 /** @} */ 625 641
Note:
See TracChangeset
for help on using the changeset viewer.