gpt4 book ai didi

c - 让 GCC 在整个使用内联汇编的函数中保留 SSE 寄存器

转载 作者:太空狗 更新时间:2023-10-29 17:07:05 24 4
gpt4 key购买 nike

我正在用 C 语言编写一个程序,需要进行一些快速的数学计算。我正在使用内联 SSE 汇编指令来获取一些 SIMD 操作(使用压缩 double float )。我在 Linux 上使用 GCC 进行编译。

我现在需要循环一些数据,我在计算中使用了一个常数因子。我想在循环期间将该因素隐藏在一个安全的寄存器中,这样我就不必每次都重新加载它。

用一些代码来说明:

struct vect2 {
fltpt x;
fltpt y;
}__attribute__((aligned(16))); /* Align on 16B boundary for SSE2 instructions */
typedef struct vect2 vect2_t;


void function()
{
/* get a specific value set up in xmm1, and keep it there for the
* rest of the loop. */
for( int i = 0, i<N; i++ ){
asm(
"Some calculations;"
"on an element of;"
"a data set.;"
"The value in xmm1;"
"is needed;"
);
}
}

我试过使用“register”关键字做一些事情。但如果我没记错的话,看起来我只能保留一个指向该结构的指针(在通用寄存器中)。这将需要在每次迭代中被推迟,浪费宝贵的时间。

register vect2_t hVect asm("xmm1") = {h, h};
/* Gives error: data type of 'hVect' isn't suitable for a register */

register vect2_t *hVect2 asm("rax");
*hVect2 = (vect2_t){h,h};
/* Seems to work, but not what I'm looking for */

我不只是想假设 GCC 不会更改 xmm1 寄存器,这太像“从 Nose 里飞出来的恶魔”之类的东西了:-)。所以我希望有一个合适的方法来做到这一点。

最佳答案

我认为这里的解决方案是让 gcc 知道你的 vec2_t 类型实际上是一个 vector ;然后你可以只计算循环不变值并将其视为普通变量(除非编译器知道它是 vector 类型):

typedef double vec2_t __attribute__ ((vector_size (16)));

void function()
{
/* get a specific value set up, e.g. */
vec2_t invariant;
asm( "some calculations, soring result in invariant."
: "=x" (invariant) );

for( int i = 0; i<N; i++ ){
asm(
"Some calculations;"
"on an element of;"
"a data set.;"
"The value in xmm1;"
"is needed;"
: "x" (invariant) // and other SSE arguments
);
}
}

我只是在循环内用一个简单的计算编译了它,并且在至少优化级别 1 的情况下,invariant 的值在循环期间保存在 XMM 寄存器中。

(这一切都假设您不需要显式 XMM 寄存器中的循环不变性;并且您可以使用 GCC 的正常寄存器分配)。

关于c - 让 GCC 在整个使用内联汇编的函数中保留 SSE 寄存器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1250083/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com