Changeset 102069 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 11, 2023 2:40:32 AM (15 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r102068 r102069 3064 3064 'IEM_MC_STORE_GREG_U16_CONST': (McBlock.parseMcGeneric, True, True, ), 3065 3065 'IEM_MC_STORE_GREG_U32': (McBlock.parseMcGeneric, True, True, ), 3066 'IEM_MC_STORE_GREG_U32_CONST': (McBlock.parseMcGeneric, True, False,),3066 'IEM_MC_STORE_GREG_U32_CONST': (McBlock.parseMcGeneric, True, True, ), 3067 3067 'IEM_MC_STORE_GREG_U64': (McBlock.parseMcGeneric, True, False, ), 3068 3068 'IEM_MC_STORE_GREG_U64_CONST': (McBlock.parseMcGeneric, True, False, ), -
trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp
r102068 r102069 6344 6344 iemNativeEmitStoreGregU32Const(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGReg, uint32_t uValue) 6345 6345 { 6346 pReNative->pInstrBuf[off++] = 0xcc;6347 6346 Assert(iGReg < 16); 6348 6347 uint8_t const idxGstTmpReg = iemNativeRegAllocTmpForGuestReg(pReNative, &off, IEMNATIVEGSTREG_GPR(iGReg),
Note:
See TracChangeset
for help on using the changeset viewer.