Changeset 49391 in vbox
- Timestamp:
- Nov 5, 2013 3:17:27 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/iprt/x86.h (modified) (1 diff)
-
src/VBox/VMM/VMMAll/IEMAll.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r49083 r49391 1303 1303 #define X86_PAGE_4M_BASE_MASK_32 0xffc00000U 1304 1304 1305 /** 1306 * Check if the given address is canonical. 1307 */ 1308 #define X86_IS_CANONICAL(a_u64Addr) ((uint64_t)(a_u64Addr) + UINT64_C(0x800000000000) < UINT64_C(0x1000000000000)) 1305 1309 1306 1310 -
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r48936 r49391 334 334 * Check if the address is canonical. 335 335 */ 336 #define IEM_IS_CANONICAL(a_u64Addr) ((uint64_t)(a_u64Addr) + UINT64_C(0x800000000000) < UINT64_C(0x1000000000000))336 #define IEM_IS_CANONICAL(a_u64Addr) X86_IS_CANONICAL(a_u64Addr) 337 337 338 338
Note:
See TracChangeset
for help on using the changeset viewer.

