Changeset 47395 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 25, 2013 1:21:10 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstIEMCheckMc.cpp
r47394 r47395 34 34 bool volatile g_fRandom; 35 35 uint8_t volatile g_bRandom; 36 uint128_t g_u128Zero; 36 37 37 38 … … 463 464 #define IEM_MC_REF_MREG_U32_CONST(a_pu32Dst, a_iMReg) do { (a_pu32Dst) = (uint32_t const *)((uintptr_t)0); CHK_PTYPE(uint32_t const *, a_pu32Dst); } while (0) 464 465 465 #define IEM_MC_FETCH_XREG_U128(a_u128Value, a_iXReg) do { uint128_t u128Zero = {0,0}; (a_u128Value) =u128Zero; CHK_TYPE(uint128_t, a_u128Value); } while (0)466 #define IEM_MC_FETCH_XREG_U128(a_u128Value, a_iXReg) do { (a_u128Value) = g_u128Zero; CHK_TYPE(uint128_t, a_u128Value); } while (0) 466 467 #define IEM_MC_FETCH_XREG_U64(a_u64Value, a_iXReg) do { (a_u64Value) = 0; CHK_TYPE(uint64_t, a_u64Value); } while (0) 467 468 #define IEM_MC_FETCH_XREG_U32(a_u32Value, a_iXReg) do { (a_u32Value) = 0; CHK_TYPE(uint32_t, a_u32Value); } while (0)
Note:
See TracChangeset
for help on using the changeset viewer.