I tried to improve some code, but I wasn´t able, so I ask for help here, I also tried with intrinsics, but if you want to use intrinsic you need to use the GCC compiler, this compiler compile slower code than the LLVM, then all the code get slower, so the best option is to use directly asm. I put the both functions I want to improve, also the code in neon, the code is returning nonsense numbers. I really need help with this, any point to the right direction could help me a lot.
The code I want to improve:
inline unsigned des(const unsigned char* v0)
{
unsigned r;
r = v0[0]*v0[0];
r += v0[1]*v0[1];
r += v0[2]*v0[2];
r += v0[3]*v0[3];
r += v0[4]*v0[4];
r += v0[5]*v0[5];
r += v0[6]*v0[6];
r += v0[7]*v0[7];
return r;
}
inline unsigned suma(const unsigned char* v0)
{
unsigned r;
r = v0[0];
r += v0[1];
r += v0[2];
r += v0[3];
r += v0[4];
r += v0[5];
r += v0[6];
r += v0[7];
return r;
}
Neon code not working
unsigned desneon(unsigned v0[8])
{
asm volatile (
"vld1.32 {d2- d5}, [%0] \n\t"
"vld1.32 {d6- d9}, [%0] \n\t"
"vmul.s32 d0, d2, d6 \n\t" //d0= d2*d6
"vmla.s32 d0, d3, d7 \n\t" //d0 = d0 + d3*d7
"vmla.s32 d0, d4, d8 \n\t" //d0 = d0 + d4*d8
"vmla.s32 d0, d5, d9 \n\t" //d0 = d0 + d5*d9
"vpadd.s32 d0, d0 \n\t" //d0 = d[0] + d[1]
:: "r"(v0) :
);
}
Thanks a lot!!!
d0ends up with the result you want I'm pretty sure but you actually need to return it. – mattjgalloway Feb 21 at 17:50