VirtualBox

Changeset 102067 in vbox


Ignore:
Timestamp:
Nov 10, 2023 4:24:36 PM (11 months ago)
Author:
vboxsync
Message:

VMM/IEM: Native translation of IEM_MC_STORE_GREG_U16_CONST. bugref:10371

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py

    r102065 r102067  
    30623062    'IEM_MC_STORE_GREG_I64':                                     (McBlock.parseMcGeneric,           True,  False, ),
    30633063    '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, ),
    30653065    'IEM_MC_STORE_GREG_U32':                                     (McBlock.parseMcGeneric,           True,  False, ),
    30663066    'IEM_MC_STORE_GREG_U32_CONST':                               (McBlock.parseMcGeneric,           True,  False, ),
  • trunk/src/VBox/VMM/VMMAll/IEMAllN8veRecompiler.cpp

    r102065 r102067  
    60126012
    60136013
    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)
    60166016
    60176017/** Emits code for IEM_MC_STORE_GREG_U16. */
     
    60196019iemNativeEmitStoreGregU16Const(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGReg, uint16_t uValue)
    60206020{
    6021 pReNative->pInstrBuf[off++] = 0xcc;
    60226021    Assert(iGReg < 16);
    60236022    uint8_t const idxGstTmpReg = iemNativeRegAllocTmpForGuestReg(pReNative, &off,
     
    60506049}
    60516050
     6051
     6052#define IEM_MC_STORE_GREG_U16(a_iGReg, a_u16Value) \
     6053    off = iemNativeEmitStoreGregU16(pReNative, off, a_iGReg, a_u16Value)
    60526054
    60536055/** Emits code for IEM_MC_STORE_GREG_U16. */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette