Changeset 100222 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 20, 2023 2:40:48 AM (21 months ago)
- svn:sync-xref-src-repo-rev:
- 157932
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r100183 r100222 999 999 /** Statistics: Number of TB free calls. */ 1000 1000 uint64_t cTbFrees; 1001 /** Statistics: Number of TB lookup misses. */ 1002 uint64_t cTbLookupMisses; 1003 /** Statistics: Number of TB lookup hits (debug only). */ 1004 uint64_t cTbLookupHits; 1001 1005 /** Whether to end the current TB. */ 1002 1006 bool fEndTb; … … 1004 1008 bool afRecompilerStuff1[7]; 1005 1009 /** Spaced reserved for recompiler data / alignment. */ 1006 uint64_t auRecompilerStuff2[ 3];1010 uint64_t auRecompilerStuff2[1]; 1007 1011 /** @} */ 1008 1012 … … 4098 4102 4099 4103 uint32_t iemCalcExecDbgFlagsSlow(PVMCPUCC pVCpu); 4104 VBOXSTRICTRC iemExecInjectPendingTrap(PVMCPUCC pVCpu); 4100 4105 4101 4106 … … 4378 4383 * @note sed -e '/IEM_CIMPL_DEF_/!d' -e 's/IEM_CIMPL_DEF_/IEM_CIMPL_PROTO_/' -e 's/$/;/' 4379 4384 * @{ */ 4385 IEM_CIMPL_PROTO_2(iemCImpl_pop_mem16, uint16_t, iEffSeg, RTGCPTR, GCPtrEffDst); 4386 IEM_CIMPL_PROTO_2(iemCImpl_pop_mem32, uint16_t, iEffSeg, RTGCPTR, GCPtrEffDst); 4387 IEM_CIMPL_PROTO_2(iemCImpl_pop_mem64, uint16_t, iEffSeg, RTGCPTR, GCPtrEffDst); 4380 4388 IEM_CIMPL_PROTO_0(iemCImpl_popa_16); 4381 4389 IEM_CIMPL_PROTO_0(iemCImpl_popa_32); -
trunk/src/VBox/VMM/include/IEMMc.h
r100072 r100222 1016 1016 IEM_MC_RETURN_ON_FAILURE(iemMemStackPopU32(pVCpu, (a_pu32Value))) 1017 1017 #define IEM_MC_POP_U64(a_pu64Value) \ 1018 IEM_MC_RETURN_ON_FAILURE(iemMemStackPopU64(pVCpu, (a_pu64Value))) 1019 1020 #define IEM_MC_POP_EX_U16(a_pu16Value, a_) \ 1021 IEM_MC_RETURN_ON_FAILURE(iemMemStackPopU16Ex(pVCpu, (a_pu16Value), (a_pNewRsp))) 1022 #define IEM_MC_POP_EX_U32(a_pu32Value) \ 1023 IEM_MC_RETURN_ON_FAILURE(iemMemStackPopU32(pVCpu, (a_pu32Value))) 1024 #define IEM_MC_POP_EX_U64(a_pu64Value) \ 1018 1025 IEM_MC_RETURN_ON_FAILURE(iemMemStackPopU64(pVCpu, (a_pu64Value))) 1019 1026
Note:
See TracChangeset
for help on using the changeset viewer.