Changeset 102066 in vbox for trunk/include
- Timestamp:
- Nov 10, 2023 4:20:29 PM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/armv8.h
r102065 r102066 2556 2556 uint32_t iHalfWord = 0, bool f64Bit = true) 2557 2557 { 2558 Assert(iRegDst < 32 ); Assert(uImm16 <= UINT16_MAX); Assert(iHalfWord < 2 + (2* f64Bit));2558 Assert(iRegDst < 32U); Assert(uImm16 <= (uint32_t)UINT16_MAX); Assert(iHalfWord < 2U + (2U * f64Bit)); 2559 2559 return ((uint32_t)f64Bit << 31) 2560 | ((uint32_t)enmType << 29) 2560 2561 | UINT32_C(0x11400000) 2561 | ( Half<< 21)2562 | (iHalfWord << 21) 2562 2563 | (uImm16 << 5) 2563 2564 | iRegDst;
Note:
See TracChangeset
for help on using the changeset viewer.