Changeset 103848 in vbox
- Timestamp:
- Mar 14, 2024 11:44:27 AM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompilerEmit.h
r103846 r103848 7601 7601 Assert(!(iVecRegSrc & 0x1)); 7602 7602 /* Need to access the "high" 128-bit vector register. */ 7603 if (iByte >= 32)7604 off = iemNativeEmitSimdLoadGprFromVecRegU8Ex(iemNativeInstrBufEnsure(pReNative, off, 1), off, iGprDst, iVecRegSrc + 1, iByte - 32);7603 if (iByte >= 16) 7604 off = iemNativeEmitSimdLoadGprFromVecRegU8Ex(iemNativeInstrBufEnsure(pReNative, off, 1), off, iGprDst, iVecRegSrc + 1, iByte - 16); 7605 7605 else 7606 7606 off = iemNativeEmitSimdLoadGprFromVecRegU8Ex(iemNativeInstrBufEnsure(pReNative, off, 1), off, iGprDst, iVecRegSrc, iByte);
Note:
See TracChangeset
for help on using the changeset viewer.