]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix x86-64 strchr propagation of search byte into all bytes of SSE register
authorRichard Li <richardpku@gmail.com>
Mon, 25 Oct 2010 18:13:17 +0000 (14:13 -0400)
committerAndreas Schwab <schwab@redhat.com>
Tue, 26 Oct 2010 13:18:07 +0000 (15:18 +0200)
(cherry picked from commit dbf3a06904168417a05882a871342e7a9ee3b383)

ChangeLog
sysdeps/x86_64/multiarch/strchr.S

index a8e764c37b51643176e4661691a1f506cf76b475..cbab7a5a4855264f5698a2199b1397e1ba978ab3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-25  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #12159]
+       * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
+       into all bytes of SSE register.
+       Patch by Richard Li <richardpku@gmail.com>.
+
 2010-10-22  Andreas Schwab  <schwab@redhat.com>
 
        * include/dlfcn.h (__RTLD_SECURE): Define.
index 27eead9852e649caeb2f24379b65a0cefdfbc1e8..71845a35fe0b84a3a80072baca1213a2e55b3918 100644 (file)
@@ -1,5 +1,5 @@
 /* strchr with SSE4.2
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -87,13 +87,13 @@ __strchr_sse42:
        pxor    %xmm2, %xmm2
        movd    %esi, %xmm1
        movl    %edi, %ecx
+       pshufb  %xmm2, %xmm1
        andl    $15, %ecx
        movq    %rdi, %r8
        je      L(aligned_start)
 
 /* Handle unaligned string.  */
        andq    $-16, %r8
-       pshufb  %xmm2, %xmm1
        movdqa  (%r8), %xmm0
        pcmpeqb  %xmm0, %xmm2
        pcmpeqb  %xmm1, %xmm0