SSE2值提取问题
我想从128位寄存器中提取值(第一个字16位),我得到了这个命令,但这不起作用。设置a的值后会有一些算术运算,然后变量内部会有一些算术运算结果最终会改变我想提取第一个单词...我该怎么做...
int r;
int inm=0;
__m128i a=_mm_setr_epi16(8,9,3,2,4,5,6,11);
_asm{
r = _mm_extract_epi16(a,inm);
}
i want to extract the value(first word 16bits) from 128bit register, i got this command but this is not working.there will be some arithmetic operation after setting the value of a, than there will be some arithmetic operation as result inside the variable will change finally i want extract the first word...how can i do this...
int r;
int inm=0;
__m128i a=_mm_setr_epi16(8,9,3,2,4,5,6,11);
_asm{
r = _mm_extract_epi16(a,inm);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不要将内部函数放入 _asm 块中。它们的行为就像任何其他函数一样。这会工作得很好:
You don't put intrinsics inside an _asm block. They behave just like any other function. This will work fine:
pextrw
指令仅适用于立即值。在 C 中,这意味着该值需要是编译时常量。The
pextrw
instruction does only work with an immediate value. In C this means the value needs to be a compile time constant.