chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / sysdeps / i386 / i686 / multiarch / strcspn.S
1 /* Multiple versions of strcspn
2    Copyright (C) 2009 Free Software Foundation, Inc.
3    Contributed by Intel Corporation.
4    This file is part of the GNU C Library.
5
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.
10
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.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, write to the Free
18    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19    02111-1307 USA.  */
20
21 #include <config.h>
22
23 #ifdef HAVE_SSE4_SUPPORT
24
25 #include <sysdep.h>
26 #include <ifunc-defines.h>
27
28 #ifdef USE_AS_STRPBRK
29 #define STRCSPN_SSE42   __strpbrk_sse42
30 #define STRCSPN_IA32    __strpbrk_ia32
31 #define __GI_STRCSPN    __GI_strpbrk
32 #else
33 #ifndef STRCSPN
34 #define STRCSPN         strcspn
35 #define STRCSPN_SSE42   __strcspn_sse42
36 #define STRCSPN_IA32    __strcspn_ia32
37 #define __GI_STRCSPN    __GI_strcspn
38 #endif
39 #endif
40
41 /* Define multiple versions only for the definition in libc.  Don't
42    define multiple versions for strpbrk in static library since we
43    need strpbrk before the initialization happened.  */
44 #if (defined SHARED || !defined USE_AS_STRPBRK) && !defined NOT_IN_libc
45 # ifdef SHARED
46         .section        .gnu.linkonce.t.__i686.get_pc_thunk.bx,"ax",@progbits
47         .globl  __i686.get_pc_thunk.bx
48         .hidden __i686.get_pc_thunk.bx
49         .p2align 4
50         .type   __i686.get_pc_thunk.bx,@function
51 __i686.get_pc_thunk.bx:
52         movl    (%esp), %ebx
53         ret
54
55         .text
56 ENTRY(STRCSPN)
57         .type   STRCSPN, @gnu_indirect_function
58         pushl   %ebx
59         cfi_adjust_cfa_offset (4)
60         cfi_rel_offset (ebx, 0)
61         call    __i686.get_pc_thunk.bx
62         addl    $_GLOBAL_OFFSET_TABLE_, %ebx
63         cmpl    $0, KIND_OFFSET+__cpu_features@GOTOFF(%ebx)
64         jne     1f
65         call    __init_cpu_features
66 1:      leal    STRCSPN_IA32@GOTOFF(%ebx), %eax
67         testl   $(1<<20), CPUID_OFFSET+COMMON_CPUID_INDEX_1*CPUID_SIZE+CPUID_ECX_OFFSET+__cpu_features@GOTOFF(%ebx)
68         jz      2f
69         leal    STRCSPN_SSE42@GOTOFF(%ebx), %eax
70 2:      popl    %ebx
71         cfi_adjust_cfa_offset (-4);
72         cfi_restore (ebx)
73         ret
74 END(STRCSPN)
75 # else
76         .text
77 ENTRY(STRCSPN)
78         .type   STRCSPN, @gnu_indirect_function
79         cmpl    $0, KIND_OFFSET+__cpu_features
80         jne     1f
81         call    __init_cpu_features
82 1:      leal    STRCSPN_IA32, %eax
83         testl   $(1<<20), CPUID_OFFSET+COMMON_CPUID_INDEX_1*CPUID_SIZE+CPUID_ECX_OFFSET+__cpu_features
84         jz      2f
85         leal    STRCSPN_SSE42, %eax
86 2:      ret
87 END(STRCSPN)
88 # endif
89
90 # undef ENTRY
91 # define ENTRY(name) \
92         .type STRCSPN_IA32, @function; \
93         .globl STRCSPN_IA32; \
94         .p2align 4; \
95         STRCSPN_IA32: cfi_startproc; \
96         CALL_MCOUNT
97 # undef END
98 # define END(name) \
99         cfi_endproc; .size STRCSPN_IA32, .-STRCSPN_IA32
100 # undef libc_hidden_builtin_def
101 /* IFUNC doesn't work with the hidden functions in shared library since
102    they will be called without setting up EBX needed for PLT which is
103    used by IFUNC.  */
104 # define libc_hidden_builtin_def(name) \
105         .globl __GI_STRCSPN; __GI_STRCSPN = STRCSPN_IA32
106 #endif
107
108 #endif /* HAVE_SSE4_SUPPORT */
109
110 #ifdef USE_AS_STRPBRK
111 #include "../../strpbrk.S"
112 #else
113 #include "../../strcspn.S"
114 #endif