用于克隆扩展 XMM 寄存器的 SSE 指令
是否有任何 SSE 指令(最高版本 4.2)可以自动用另一个 XMM 寄存器的四个字的值填充四个 XMM 寄存器?
示例:在单词 ABCD
上运行指令将填充四个 XMM 寄存器:AAAA
、BBBB
、CCCC
和DDDD
。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信有一个操作,但是四个 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 themovd
instruction). There are similar variants ofpshufd
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.