- Timestamp:
- Mar 27, 2024 2:44:51 PM (6 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
-
IEMAllInstPython.py (modified) (1 diff)
-
IEMAllN8veRecompFuncs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r104087 r104092 3351 3351 'IEM_MC_STORE_SREG_BASE_U64': (McBlock.parseMcGeneric, True, True, False, ), 3352 3352 'IEM_MC_STORE_SSE_RESULT': (McBlock.parseMcGeneric, True, True, g_fNativeSimd), 3353 'IEM_MC_STORE_XREG_R32': (McBlock.parseMcGeneric, True, True, False,),3354 'IEM_MC_STORE_XREG_R64': (McBlock.parseMcGeneric, True, True, False,),3353 'IEM_MC_STORE_XREG_R32': (McBlock.parseMcGeneric, True, True, g_fNativeSimd), 3354 'IEM_MC_STORE_XREG_R64': (McBlock.parseMcGeneric, True, True, g_fNativeSimd), 3355 3355 'IEM_MC_STORE_XREG_U128': (McBlock.parseMcGeneric, True, True, g_fNativeSimd), 3356 3356 'IEM_MC_STORE_XREG_U16': (McBlock.parseMcGeneric, True, True, g_fNativeSimd), -
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompFuncs.h
r104087 r104092 7736 7736 off = iemNativeEmitSimdStoreXregUxx(pReNative, off, a_iXReg, a_u32Value, sizeof(uint8_t), a_iByte) 7737 7737 7738 #define IEM_MC_STORE_XREG_R32(a_iXReg, a_r32Value) \ 7739 off = iemNativeEmitSimdStoreXregUxx(pReNative, off, a_iXReg, a_r32Value, sizeof(RTFLOAT32U), 0 /*iElem*/) 7740 7741 #define IEM_MC_STORE_XREG_R64(a_iXReg, a_r64Value) \ 7742 off = iemNativeEmitSimdStoreXregUxx(pReNative, off, a_iXReg, a_r64Value, sizeof(RTFLOAT64U), 0 /*iElem*/) 7743 7738 7744 /** Emits code for IEM_MC_STORE_XREG_U64/IEM_MC_STORE_XREG_U32/IEM_MC_STORE_XREG_U16/IEM_MC_STORE_XREG_U8. */ 7739 7745 DECL_INLINE_THROW(uint32_t)
Note:
See TracChangeset
for help on using the changeset viewer.

