I recently wanted to see what actually happens when an existing C project containing Intel SSE intrinsics is ported to ARM64.

The usual example is straightforward:

__m128 r = _mm_add_ps(a, b);

Enter fullscreen mode

Exit fullscreen mode