]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/aarch64/multiarch/ifunc-impl-list.c
benchtests: Memory walking benchmark for memmove
[thirdparty/glibc.git] / sysdeps / aarch64 / multiarch / ifunc-impl-list.c
CommitLineData
6a2c6952
SE
1/* Enumerate available IFUNC implementations of a function. AARCH64 version.
2 Copyright (C) 2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
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.
9
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.
14
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/>. */
18
19#include <assert.h>
20#include <string.h>
21#include <wchar.h>
22#include <ldsodefs.h>
23#include <ifunc-impl-list.h>
24#include <init-arch.h>
25#include <stdio.h>
26
27/* Maximum number of IFUNC implementations. */
36ada5f6 28#define MAX_IFUNC 3
6a2c6952
SE
29
30size_t
31__libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
32 size_t max)
33{
34 assert (max >= MAX_IFUNC);
35
36 size_t i = 0;
37
38 INIT_ARCH ();
39
40 /* Support sysdeps/aarch64/multiarch/memcpy.c and memmove.c. */
41 IFUNC_IMPL (i, name, memcpy,
ab85da15 42 IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_thunderx)
36ada5f6 43 IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_falkor)
6a2c6952
SE
44 IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_generic))
45 IFUNC_IMPL (i, name, memmove,
ab85da15 46 IFUNC_IMPL_ADD (array, i, memmove, 1, __memmove_thunderx)
6a2c6952
SE
47 IFUNC_IMPL_ADD (array, i, memmove, 1, __memmove_generic))
48
49 return i;
50}