Is there any equivalent function for the _mm_shuffle_epi8 function in SSE3 .Any suggestions on how to implement this would be really appreciated since I cant seem to get past this.I know that a lookup-table exists ,but it does not do an initial comparison like the _mm_shuffle ,so i am not sure how to implement this.
.alea_values: .word 123456789, 369258147 @ d0 : random value .word 1664525, 1664525 @ d1 : random multiplier .word 1013904223, 1013904223 @ d1 : random increment...@ initadr r0, .alea_valuesvld1.u32 {d0 - d2}, [r0] @ computevmul.u32 d0, d0, d1vadd.u32 d0, d0, d2@ storevst1.u32 {d0}, [r0]