SSE2值提取问题

发布于 2024-11-06 19:24:52 字数 239 浏览 0 评论 0原文

我想从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 技术交流群。

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

发布评论

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

评论(2

青芜 2024-11-13 19:24:52

您不要将内部函数放入 _asm 块中。它们的行为就像任何其他函数一样。这会工作得很好:

#include <emmintrin.h>

__m128i a = _mm_setr_epi16(8,9,3,2,4,5,6,11);
int r = _mm_extract_epi16(a, 0);

You don't put intrinsics inside an _asm block. They behave just like any other function. This will work fine:

#include <emmintrin.h>

__m128i a = _mm_setr_epi16(8,9,3,2,4,5,6,11);
int r = _mm_extract_epi16(a, 0);
天暗了我发光 2024-11-13 19:24:52

pextrw 指令仅适用于立即值。在 C 中,这意味着该值需要是编译时常量。

int r;
static const int inm=0;

__m128i a=_mm_setr_epi16(8,9,3,2,4,5,6,11);

r = _mm_extract_epi16(a,inm);    

The pextrw instruction does only work with an immediate value. In C this means the value needs to be a compile time constant.

int r;
static const int inm=0;

__m128i a=_mm_setr_epi16(8,9,3,2,4,5,6,11);

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