用于克隆扩展 XMM 寄存器的 SSE 指令

发布于 2024-10-21 23:38:46 字数 190 浏览 1 评论 0原文

是否有任何 SSE 指令(最高版本 4.2)可以自动用另一个 XMM 寄存器的四个字的值填充四个 XMM 寄存器?

示例:在单词 ABCD 上运行指令将填充四个 XMM 寄存器:AAAABBBBCCCCDDDD

Is there any SSE instruction (up to version 4.2) that automatically fills four XMM registers with the value of the four words of another XMM register?

Example: running the instruction on the word ABCD would fill four XMM registers: AAAA, BBBB, CCCC, and DDDD.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥醉 2024-10-28 23:38:46

我不相信有一个操作,但是四个 pshufd 操作(每个目的地一个)就可以完成这项工作;请参阅http://lists.apple.com/archives/perfoptimization- dev/2007/Feb/msg00002.html(第一个代码示例,位于 movd 指令之后)。 pshufd 有类似的变体来复制寄存器的其他部分。我相信指令中使用的常量是寄存器的四个部分的 0、85、170 和 255。

I do not believe there is a single operation, but four pshufd operations (one for each destination) will do the job; see http://lists.apple.com/archives/perfoptimization-dev/2007/Feb/msg00002.html (the first code example, after the movd instruction). There are similar variants of pshufd to replicate the other parts of the register. I believe the constants to use in the instruction are 0, 85, 170, and 255 for the four parts of the register.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文