Changeset 102067 in vbox
- Timestamp:
- Nov 10, 2023 4:24:36 PM (11 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
-
IEMAllInstPython.py (modified) (1 diff)
-
IEMAllN8veRecompiler.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r102065 r102067 3062 3062 'IEM_MC_STORE_GREG_I64': (McBlock.parseMcGeneric, True, False, ), 3063 3063 'IEM_MC_STORE_GREG_U16': (McBlock.parseMcGeneric, True, True, ), 3064 'IEM_MC_STORE_GREG_U16_CONST': (McBlock.parseMcGeneric, True, False,),3064 'IEM_MC_STORE_GREG_U16_CONST': (McBlock.parseMcGeneric, True, True, ), 3065 3065 'IEM_MC_STORE_GREG_U32': (McBlock.parseMcGeneric, True, False, ), 3066 3066 'IEM_MC_STORE_GREG_U32_CONST': (McBlock.parseMcGeneric, True, False, ), -
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp
r102065 r102067 6012 6012 6013 6013 6014 #define IEM_MC_STORE_GREG_U16 (a_iGReg, a_u16Value) \6015 off = iemNativeEmitStoreGregU16 (pReNative, off, a_iGReg, a_u16Value)6014 #define IEM_MC_STORE_GREG_U16_CONST(a_iGReg, a_u16Const) \ 6015 off = iemNativeEmitStoreGregU16Const(pReNative, off, a_iGReg, a_u16Const) 6016 6016 6017 6017 /** Emits code for IEM_MC_STORE_GREG_U16. */ … … 6019 6019 iemNativeEmitStoreGregU16Const(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGReg, uint16_t uValue) 6020 6020 { 6021 pReNative->pInstrBuf[off++] = 0xcc;6022 6021 Assert(iGReg < 16); 6023 6022 uint8_t const idxGstTmpReg = iemNativeRegAllocTmpForGuestReg(pReNative, &off, … … 6050 6049 } 6051 6050 6051 6052 #define IEM_MC_STORE_GREG_U16(a_iGReg, a_u16Value) \ 6053 off = iemNativeEmitStoreGregU16(pReNative, off, a_iGReg, a_u16Value) 6052 6054 6053 6055 /** Emits code for IEM_MC_STORE_GREG_U16. */
Note:
See TracChangeset
for help on using the changeset viewer.

