您将如何编写可能被优化为一条SSE指令的无符号加法代码?

问题描述

| 在C或C ++中,您将如何编写代码,以便将两个可能通过GCC优化的数组无符号相加到一条128位SSE无符号相加指令中?     

解决方法

// N number of ints to be added
// a,b input array
// c sum array
// nReg number of required vector registers

const unsigned nReg = N*sizeof(uint32_t)/sizeof(__v4si);
__v4si a[nReg],b[nReg],c[nReg];
for (unsigned i=0; i<nReg; ++i)
    c[i] = _mm_add_epi32(a[i],b[i]);

// in c++ simply
for (unsigned i=0; i<nReg; ++i)
    c[i] = a[i] + b[i];
根据需要展开循环并预取元素。建议进行分析。用__v16qi,__ v8hi和__v2di替换__v4si,以获得8、16、64位整数。     ,
for (i=0; i<N; i++) c[i] = a[i] + b[i];