Changeset 104019 in vbox for trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
- Timestamp:
- Mar 24, 2024 1:07:36 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162407
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r104018 r104019 1338 1338 1339 1339 /** The argument count + hidden regs from the IEM_MC_BEGIN_EX statement. */ 1340 uint8_t cArgs ;1340 uint8_t cArgsX; 1341 1341 /** The IEM_CIMPL_F_XXX flags from the IEM_MC_BEGIN statement. */ 1342 1342 uint32_t fCImpl; … … 2045 2045 if (pReNative->fCImpl & IEM_CIMPL_F_CALLS_CIMPL) 2046 2046 return IEM_CIMPL_HIDDEN_ARGS; 2047 if (pReNative->fCImpl & IEM_CIMPL_F_CALLS_AIMPL_WITH_FXSTATE)2047 if (pReNative->fCImpl & (IEM_CIMPL_F_CALLS_AIMPL_WITH_FXSTATE | IEM_CIMPL_F_CALLS_AIMPL_WITH_XSTATE)) 2048 2048 return 1; 2049 2049 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.