Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / x86_64 / multiarch / strend-sse4.S
blob2fb96855784ff5f78ab8daf445163d2f8c572f22
1 /* Return the pointer to the end of string, using SSE4.2
2    Copyright (C) 2009 Free Software Foundation, Inc.
3    Contributed by Intel Corporation.
4    This file is part of the GNU C Library.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
20 #include <sysdep.h>
21 #include "asm-syntax.h"
23         .section .text.sse4.2,"ax",@progbits
24 ENTRY (__strend_sse4)
25         pxor    %xmm2, %xmm2
26         movq    %rdi, %rcx
27         andq    $~15, %rdi
28         movdqa  %xmm2, %xmm1
29         pcmpeqb (%rdi), %xmm2
30         orl     $0xffffffff, %esi
31         subq    %rdi, %rcx
32         shll    %cl, %esi
33         pmovmskb %xmm2, %edx
34         andl    %esi, %edx
35         jnz     1f
37 2:      pcmpistri $0x08, 16(%rdi), %xmm1
38         leaq    16(%rdi), %rdi
39         jnz     2b
41         leaq    (%rdi,%rcx), %rax
42         ret
44 1:      bsfl    %edx, %eax
45         addq    %rdi, %rax
46         ret
48 END (__strend_sse4)