Vector sin for x86_64 and tests.
[glibc.git] / sysdeps / x86_64 / fpu / multiarch / svml_d_sin2_core.S
blob29bd0a7b4d8be4c825b8db276eb7ef7c41a6b24d
1 /* Multiple versions of vectorized sin.
2    Copyright (C) 2014-2015 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <http://www.gnu.org/licenses/>.  */
19 #include <sysdep.h>
20 #include <init-arch.h>
22         .text
23 ENTRY (_ZGVbN2v_sin)
24         .type   _ZGVbN2v_sin, @gnu_indirect_function
25         cmpl    $0, KIND_OFFSET+__cpu_features(%rip)
26         jne     1f
27         call    __init_cpu_features
28 1:      leaq    _ZGVbN2v_sin_sse4(%rip), %rax
29         testl   $bit_SSE4_1, __cpu_features+CPUID_OFFSET+index_SSE4_1(%rip)
30         jz      2f
31         ret
32 2:      leaq    _ZGVbN2v_sin_sse2(%rip), %rax
33         ret
34 END (_ZGVbN2v_sin)
35 libmvec_hidden_def (_ZGVbN2v_sin)
37 #define _ZGVbN2v_sin _ZGVbN2v_sin_sse2
38 #include "../svml_d_sin2_core.S"