-
Notifications
You must be signed in to change notification settings - Fork 15.3k
Open
Labels
Description
| Bugzilla Link | 33329 |
| Version | trunk |
| OS | Windows NT |
| CC | @adibiagio,@legrosbuffle,@efriedma-quic,@filcab,@rotateright,@ZviRackover |
Extended Description
Currently memcmp lowers to a libcall:
int cmp16(const char *a, const char *b) {
return __builtin_memcmp(a, b, 16);
}cmp16(char const*, char const*):
movl $16, %edx
jmp memcmpWhich depending on the lib implementation/shim calls can be quite slow. A possible alternative would be to vectorize this, using a more complex version of what we do for 'equality' memcmp (Bug #33325):
#include <x86intrin.h>
int cmp16(const char *a, const char *b) {
__m128i va = _mm_loadu_si128((const __m128i*)a);
__m128i vb = _mm_loadu_si128((const __m128i*)b);
unsigned eq = _mm_movemask_epi8(_mm_cmpeq_epi8(va, vb));
__m128i kSign = _mm_set1_epi8(0x80);
va = _mm_xor_si128(va, kSign);
vb = _mm_xor_si128(vb, kSign);
unsigned gt = _mm_movemask_epi8(_mm_cmpgt_epi8(va, vb));
unsigned lt = _mm_movemask_epi8(_mm_cmplt_epi8(va, vb));
unsigned cgt = __tzcnt_u32(gt);
unsigned clt = __tzcnt_u32(lt);
return ((eq == 0xFFFF) ? 0 : (clt - cgt));
}clang -g0 -O3 -march=btver2
cmp16(char const*, char const*):
vmovdqu (%rdi), %xmm0
vmovdqu (%rsi), %xmm1
vpcmpeqb %xmm1, %xmm0, %xmm2
vpmovmskb %xmm2, %ecx
vmovdqa .LCPI0_0(%rip), %xmm2 # xmm2 = [9259542123273814144,9259542123273814144]
vpxor %xmm2, %xmm0, %xmm0
vpxor %xmm2, %xmm1, %xmm1
vpcmpgtb %xmm1, %xmm0, %xmm2
vpcmpgtb %xmm0, %xmm1, %xmm0
vpmovmskb %xmm2, %eax
vpmovmskb %xmm0, %edx
tzcntl %eax, %eax
tzcntl %edx, %edx
subl %eax, %edx
xorl %eax, %eax
cmpl $65535, %ecx # imm = 0xFFFF
cmovnel %edx, %eax
retq