Changeset 104053 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Mar 26, 2024 7:15:51 AM (11 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r104021 r104053 3309 3309 'IEM_MC_STORE_FPU_RESULT_WITH_MEM_OP_THEN_POP': (McBlock.parseMcGeneric, True, True, False, ), 3310 3310 'IEM_MC_STORE_FPUREG_R80_SRC_REF': (McBlock.parseMcGeneric, True, True, False, ), 3311 'IEM_MC_STORE_GREG_I64': (McBlock.parseMcGeneric, True, True, False,),3311 'IEM_MC_STORE_GREG_I64': (McBlock.parseMcGeneric, True, True, True, ), 3312 3312 'IEM_MC_STORE_GREG_U16': (McBlock.parseMcGeneric, True, True, True, ), 3313 3313 'IEM_MC_STORE_GREG_U16_CONST': (McBlock.parseMcGeneric, True, True, True, ), -
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompFuncs.h
r104052 r104053 3164 3164 #define IEM_MC_STORE_GREG_U64(a_iGReg, a_u64Value) \ 3165 3165 off = iemNativeEmitStoreGregU64(pReNative, off, a_iGReg, a_u64Value) 3166 3167 #define IEM_MC_STORE_GREG_I64(a_iGReg, a_i64Value) \ 3168 off = iemNativeEmitStoreGregU64(pReNative, off, a_iGReg, a_i64Value) 3166 3169 3167 3170 /** Emits code for IEM_MC_STORE_GREG_U64. */
Note:
See TracChangeset
for help on using the changeset viewer.