Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Instead of memset() you've got ZeroMemory(), instead of memcpy() you've got CopyMemory().

I believe MSVC intrinsics will use the rep stos/movs instructions, which are even smaller than calling functions (which includes the size of their import table entries too.)



The standard allows memset/memcpy to be replaced by inline code. There is no need to use non-standard extensions to get a performance boost.


That's how the MSVC intrinsics work. Turn on the option and memset/memcpy, among others, gets replaced automatically:

https://learn.microsoft.com/en-us/cpp/preprocessor/intrinsic...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: