Changeset 100761 in vbox for trunk/src/VBox/VMM/include/IEMMc.h
- Timestamp:
- Aug 1, 2023 2:24:11 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMMc.h
r100731 r100761 1261 1261 /** May change the status bits (X86_EFL_STATUS_BITS) in RFLAGS . */ 1262 1262 #define IEM_CIMPL_F_STATUS_FLAGS RT_BIT_32(7) 1263 /** May enable interrupts, so recheck IRQ immediately afterwards. */ 1264 #define IEM_CIMPL_F_CHECK_IRQ RT_BIT_32(8) 1265 /** May enable interrupts, but actual enabling may be delayed one instruction 1266 * to do interrupt inhibiting, so recheck IRQ after the next instruction. */ 1267 #define IEM_CIMPL_F_CHECK_IRQ_DELAYED RT_BIT_32(9) 1263 1268 /** May trigger a VM exit. */ 1264 #define IEM_CIMPL_F_VMEXIT RT_BIT_32( 8)1269 #define IEM_CIMPL_F_VMEXIT RT_BIT_32(10) 1265 1270 /** May modify FPU state. */ 1266 #define IEM_CIMPL_F_FPU RT_BIT_32( 9)1271 #define IEM_CIMPL_F_FPU RT_BIT_32(11) 1267 1272 /** REP prefixed instruction which may yield before updating PC. */ 1268 #define IEM_CIMPL_F_REP RT_BIT_32(1 0)1273 #define IEM_CIMPL_F_REP RT_BIT_32(12) 1269 1274 /** Force end of TB after the instruction. */ 1270 #define IEM_CIMPL_F_END_TB RT_BIT_32(1 1)1275 #define IEM_CIMPL_F_END_TB RT_BIT_32(13) 1271 1276 /** Convenience: Raise exception (technically unnecessary, since it shouldn't return VINF_SUCCESS). */ 1272 1277 #define IEM_CIMPL_F_XCPT \
Note:
See TracChangeset
for help on using the changeset viewer.