1/* Data for processor capability information. PowerPC version.
2 Copyright (C) 2005-2024 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 <https://www.gnu.org/licenses/>. */
18
19/* This information must be kept in sync with the _DL_HWCAP_COUNT
20 definition in procinfo.h.
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/* The total number of available bits (including those prior to
42 _DL_HWCAP_FIRST). Some of these bits might not be used. */
43#define _DL_HWCAP_COUNT 128
44
45#ifndef PROCINFO_CLASS
46# define PROCINFO_CLASS
47#endif
48
49#if !IS_IN (ldconfig)
50# if !defined PROCINFO_DECL && defined SHARED
51 ._dl_powerpc_cpu_features
52# else
53PROCINFO_CLASS struct cpu_features _dl_powerpc_cpu_features
54# endif
55# ifndef PROCINFO_DECL
56= { }
57# endif
58# if !defined SHARED || defined PROCINFO_DECL
59;
60# else
61,
62# endif
63#endif
64
65#if !defined PROCINFO_DECL && defined SHARED
66 ._dl_powerpc_cap_flags
67#else
68PROCINFO_CLASS const char _dl_powerpc_cap_flags[_DL_HWCAP_COUNT][15]
69#endif
70#ifndef PROCINFO_DECL
71= {
72 "ppcle", "true_le", "", "",
73 "", "", "archpmu", "vsx",
74 "arch_2_06", "power6x", "dfp", "pa6t",
75 "arch_2_05", "ic_snoop", "smt", "booke",
76 "cellbe", "power5+", "power5", "power4",
77 "notb", "efpdouble", "efpsingle", "spe",
78 "ucache", "4xxmac", "mmu", "fpu",
79 "altivec", "ppc601", "ppc64", "ppc32",
80 "", "", "", "",
81 "", "", "", "",
82 "", "", "", "",
83 "", "", "", "",
84 "", "mma", "arch_3_1", "htm-no-suspend",
85 "scv", "darn", "ieee128", "arch_3_00",
86 "htm-nosc", "vcrypto", "tar", "isel",
87 "ebb", "dscr", "htm", "arch_2_07",
88 }
89#endif
90#if !defined SHARED || defined PROCINFO_DECL
91;
92#else
93,
94#endif
95
96#if !IS_IN (ldconfig)
97# if !defined PROCINFO_DECL && defined SHARED
98 ._dl_cache_line_size
99# else
100PROCINFO_CLASS int _dl_cache_line_size
101# endif
102# ifndef PROCINFO_DECL
103 = 0
104# endif
105# if !defined SHARED || defined PROCINFO_DECL
106;
107# else
108,
109# endif
110#endif
111
112
113#undef PROCINFO_DECL
114#undef PROCINFO_CLASS
115

source code of glibc/sysdeps/powerpc/dl-procinfo.c