loudu/storeu_si128/256 should have overloads that takes a pointer since they are intended to load 16/32 bytes of data from an arbitrary address. It would be nice if they could also take seq/string inputs + offset (or macro it and take string[index]) and do the addring for me. It would be super nice if it did whatever magic is necessary to make loadu not require a var string and work with a normal immutable argument.
loudu/storeu_si128/256 should have overloads that takes a
pointer
since they are intended to load 16/32 bytes of data from an arbitrary address. It would be nice if they could also take seq/string inputs + offset (or macro it and takestring[index]
) and do theaddr
ing for me. It would be super nice if it did whatever magic is necessary to make loadu not require avar string
and work with a normal immutable argument.As an example of how gross this looks in the middle of code: https://github.com/RedBeard0531/advent_of_code_2017/blob/c88c4b0bf6d48d4a5d489f674658efc13e983af3/16/a16_2_sse_brute.nim#L85-L89