Changeset 103834 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 13, 2024 3:32:59 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162204
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMN8veRecompilerEmit.h
r103828 r103834 7538 7538 7539 7539 /** 7540 * Emits a vecdst.au32[iDWord] = 0 store. 7541 */ 7542 DECL_FORCE_INLINE(uint32_t) 7543 iemNativeEmitSimdZeroVecRegElemU32Ex(PIEMNATIVEINSTR pCodeBuf, uint32_t off, uint8_t iVecReg, uint8_t iDWord) 7544 { 7545 Assert(iDWord <= 7); 7546 7547 #ifdef RT_ARCH_AMD64 7548 /* 7549 * xor tmp0, tmp0 7550 * pinsrd xmm, tmp0, iDword 7551 */ 7552 if (IEMNATIVE_REG_FIXED_TMP0 >= 8) 7553 pCodeBuf[off++] = X86_OP_REX_R | X86_OP_REX_B; 7554 pCodeBuf[off++] = 0x33; 7555 pCodeBuf[off++] = X86_MODRM_MAKE(X86_MOD_REG, IEMNATIVE_REG_FIXED_TMP0 & 7, IEMNATIVE_REG_FIXED_TMP0 & 7); 7556 off = iemNativeEmitSimdStoreGprToVecRegU32Ex(&pCodeBuf[off], off, iVecReg, IEMNATIVE_REG_FIXED_TMP0, iDWord); 7557 #elif defined(RT_ARCH_ARM64) 7558 /* ASSUMES that there are two adjacent 128-bit registers available for the 256-bit value. */ 7559 Assert(!(iVecReg & 0x1)); 7560 /* ins vecsrc[iDWord], wzr */ 7561 if (iDWord >= 4) 7562 pCodeBuf[off++] = Armv8A64MkVecInstrIns(iVecReg + 1, ARMV8_A64_REG_WZR, iDWord - 4, kArmv8InstrUmovInsSz_U32); 7563 else 7564 pCodeBuf[off++] = Armv8A64MkVecInstrIns(iVecReg, ARMV8_A64_REG_WZR, iDWord, kArmv8InstrUmovInsSz_U32); 7565 #else 7566 # error "port me" 7567 #endif 7568 return off; 7569 } 7570 7571 7572 /** 7573 * Emits a vecdst.au32[iDWord] = 0 store. 7574 */ 7575 DECL_INLINE_THROW(uint32_t) 7576 iemNativeEmitSimdZeroVecRegElemU32(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iVecReg, uint8_t iDWord) 7577 { 7578 7579 #ifdef RT_ARCH_AMD64 7580 off = iemNativeEmitSimdZeroVecRegElemU32Ex(iemNativeInstrBufEnsure(pReNative, off, 10), off, iVecReg, iDWord); 7581 #elif defined(RT_ARCH_ARM64) 7582 off = iemNativeEmitSimdZeroVecRegElemU32Ex(iemNativeInstrBufEnsure(pReNative, off, 1), off, iVecReg, iDWord); 7583 #else 7584 # error "port me" 7585 #endif 7586 IEMNATIVE_ASSERT_INSTR_BUF_ENSURE(pReNative, off); 7587 return off; 7588 } 7589 7590 7591 /** 7540 7592 * Emits a vecdst[0:127] = 0 store. 7541 7593 */
Note:
See TracChangeset
for help on using the changeset viewer.