]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/sparc/dl-procinfo.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / sparc / dl-procinfo.c
CommitLineData
fe0b1e85 1/* Data for Linux/sparc version of processor capability information.
f7a9f785 2 Copyright (C) 2002-2016 Free Software Foundation, Inc.
27ef89fb
UD
3 This file is part of the GNU C Library.
4 Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
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
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
27ef89fb
UD
19
20/* This information must be kept in sync with the _DL_HWCAP_COUNT
21 definition in procinfo.h.
22
23 If anything should be added here check whether the size of each string
24 is still ok with the given array size.
25
26 All the #ifdefs in the definitions ar equite irritating but
27 necessary if we want to avoid duplicating the information. There
28 are three different modes:
29
30 - PROCINFO_DECL is defined. This means we are only interested in
31 declarations.
32
33 - PROCINFO_DECL is not defined:
34
35 + if SHARED is defined the file is included in an array
36 initializer. The .element = { ... } syntax is needed.
37
38 + if SHARED is not defined a normal array initialization is
39 needed.
40 */
41
11bf8ce1
UD
42#ifndef PROCINFO_CLASS
43#define PROCINFO_CLASS
27ef89fb 44#endif
11bf8ce1 45
27ef89fb 46#if !defined PROCINFO_DECL && defined SHARED
fe0b1e85 47 ._dl_sparc_cap_flags
27ef89fb 48#else
ff04dda4 49PROCINFO_CLASS const char _dl_sparc_cap_flags[27][11]
27ef89fb
UD
50#endif
51#ifndef PROCINFO_DECL
5f4318d1
DM
52 = { "flush", "stbar", "swap", "muldiv", "v9", "ultra3", "v9v", "v9v2",
53 "mul32", "div32", "fsmuld", "v8plus", "popc", "vis", "vis2",
54 "ASIBlkInit", "fmaf", "vis3", "hpc", "random", "trans", "fjfmau",
ff04dda4 55 "ima", "cspare", "pause", "cbcond", "crypto" }
27ef89fb
UD
56#endif
57#if !defined SHARED || defined PROCINFO_DECL
58;
59#else
60,
61#endif
62
63#undef PROCINFO_DECL
11bf8ce1 64#undef PROCINFO_CLASS