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

时间:2011-05-24 18:02:50

标签: c++ c sse

在C或C ++中,你会如何编写无符号添加两个可能被GCC优化的数组的代码到一个128位SSE无符号加法指令中?

2 个答案:

答案 0 :(得分:3)

// 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位整数。

答案 1 :(得分:1)

for (i=0; i<N; i++) c[i] = a[i] + b[i];