]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/powerpc/dl-procinfo.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / powerpc / dl-procinfo.c
CommitLineData
857a1627 1/* Data for processor capability information. PowerPC version.
04277e02 2 Copyright (C) 2005-2019 Free Software Foundation, Inc.
857a1627
RM
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
fac0c5f2 16 License along with the GNU C Library. If not, see
59ba27a6 17 <http://www.gnu.org/licenses/>. */
857a1627 18
5f4f13b4
AS
19/* This information must be kept in sync with the _DL_HWCAP_COUNT
20 definition in procinfo.h.
857a1627
RM
21
22 If anything should be added here check whether the size of each string
23 is still ok with the given array size.
24
25 All the #ifdefs in the definitions are quite irritating but
26 necessary if we want to avoid duplicating the information. There
27 are three different modes:
28
29 - PROCINFO_DECL is defined. This means we are only interested in
30 declarations.
31
32 - PROCINFO_DECL is not defined:
33
34 + if SHARED is defined the file is included in an array
35 initializer. The .element = { ... } syntax is needed.
36
37 + if SHARED is not defined a normal array initialization is
38 needed.
39 */
40
41#ifndef PROCINFO_CLASS
42# define PROCINFO_CLASS
43#endif
44
c9cd7b0c
AZ
45#if !IS_IN (ldconfig)
46# if !defined PROCINFO_DECL && defined SHARED
47 ._dl_powerpc_cpu_features
48# else
49PROCINFO_CLASS struct cpu_features _dl_powerpc_cpu_features
50# endif
51# ifndef PROCINFO_DECL
52= { }
53# endif
54# if !defined SHARED || defined PROCINFO_DECL
55;
56# else
57,
58# endif
59#endif
60
857a1627
RM
61#if !defined PROCINFO_DECL && defined SHARED
62 ._dl_powerpc_cap_flags
63#else
df0c40ee 64PROCINFO_CLASS const char _dl_powerpc_cap_flags[64][15]
857a1627
RM
65#endif
66#ifndef PROCINFO_DECL
67= {
911569d0
CES
68 "ppcle", "true_le", "", "",
69 "", "", "archpmu", "vsx",
1642331d 70 "arch_2_06", "power6x", "dfp", "pa6t",
4cd3633d
UD
71 "arch_2_05", "ic_snoop", "smt", "booke",
72 "cellbe", "power5+", "power5", "power4",
857a1627
RM
73 "notb", "efpdouble", "efpsingle", "spe",
74 "ucache", "4xxmac", "mmu", "fpu",
75 "altivec", "ppc601", "ppc64", "ppc32",
89cd9569
RA
76 "", "", "", "",
77 "", "", "", "",
78 "", "", "", "",
79 "", "", "", "",
df0c40ee 80 "", "", "", "htm-no-suspend",
7dcdfbcf 81 "scv", "darn", "ieee128", "arch_3_00",
3c13f28c 82 "htm-nosc", "vcrypto", "tar", "isel",
89cd9569 83 "ebb", "dscr", "htm", "arch_2_07",
857a1627
RM
84 }
85#endif
86#if !defined SHARED || defined PROCINFO_DECL
87;
88#else
89,
90#endif
91
92#undef PROCINFO_DECL
93#undef PROCINFO_CLASS