Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / powerpc / dl-procinfo.c
blobfe2c4b52cd51c9b1c483cb54daa615138f6973b4
1 /* Data for processor capability information. PowerPC version.
2 Copyright (C) 2005-2014 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 /* This information must be kept in sync with the _DL_HWCAP_COUNT and
20 _DL_PLATFORM_COUNT definitions in procinfo.h.
22 If anything should be added here check whether the size of each string
23 is still ok with the given array size.
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:
29 - PROCINFO_DECL is defined. This means we are only interested in
30 declarations.
32 - PROCINFO_DECL is not defined:
34 + if SHARED is defined the file is included in an array
35 initializer. The .element = { ... } syntax is needed.
37 + if SHARED is not defined a normal array initialization is
38 needed.
41 #ifndef PROCINFO_CLASS
42 # define PROCINFO_CLASS
43 #endif
45 #if !defined PROCINFO_DECL && defined SHARED
46 ._dl_powerpc_cap_flags
47 #else
48 PROCINFO_CLASS const char _dl_powerpc_cap_flags[57][10]
49 #endif
50 #ifndef PROCINFO_DECL
51 = {
52 "vsx",
53 "arch_2_06", "power6x", "dfp", "pa6t",
54 "arch_2_05", "ic_snoop", "smt", "booke",
55 "cellbe", "power5+", "power5", "power4",
56 "notb", "efpdouble", "efpsingle", "spe",
57 "ucache", "4xxmac", "mmu", "fpu",
58 "altivec", "ppc601", "ppc64", "ppc32",
59 "", "", "", "",
60 "", "", "", "",
61 "", "", "", "",
62 "", "", "", "",
63 "", "", "", "",
64 "", "", "", "",
65 "", "", "tar", "isel",
66 "ebb", "dscr", "htm", "arch_2_07",
68 #endif
69 #if !defined SHARED || defined PROCINFO_DECL
71 #else
73 #endif
75 #if !defined PROCINFO_DECL && defined SHARED
76 ._dl_powerpc_platforms
77 #else
78 PROCINFO_CLASS const char _dl_powerpc_platforms[14][12]
79 #endif
80 #ifndef PROCINFO_DECL
81 = {
82 [PPC_PLATFORM_POWER4] = "power4",
83 [PPC_PLATFORM_PPC970] = "ppc970",
84 [PPC_PLATFORM_POWER5] = "power5",
85 [PPC_PLATFORM_POWER5_PLUS] = "power5+",
86 [PPC_PLATFORM_POWER6] = "power6",
87 [PPC_PLATFORM_CELL_BE] = "ppc-cell-be",
88 [PPC_PLATFORM_POWER6X] = "power6x",
89 [PPC_PLATFORM_POWER7] = "power7",
90 [PPC_PLATFORM_PPCA2] = "ppca2",
91 [PPC_PLATFORM_PPC405] = "ppc405",
92 [PPC_PLATFORM_PPC440] = "ppc440",
93 [PPC_PLATFORM_PPC464] = "ppc464",
94 [PPC_PLATFORM_PPC476] = "ppc476",
95 [PPC_PLATFORM_POWER8] = "power8",
97 #endif
98 #if !defined SHARED || defined PROCINFO_DECL
100 #else
102 #endif
104 #undef PROCINFO_DECL
105 #undef PROCINFO_CLASS