PowerPC: Program Priority Register support
[glibc.git] / ports / sysdeps / powerpc / dl-procinfo.h
blob98c37757a0ebf0e87ec669e4f2c3614647f332e8
1 /* Processor capability information handling macros. PowerPC version.
2 Copyright (C) 2005-2012 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 #ifndef _DL_PROCINFO_H
20 #define _DL_PROCINFO_H 1
22 #include <ldsodefs.h>
23 #include <sysdep.h> /* This defines the PPC_FEATURE_* macros. */
25 /* There are 25 bits used, but they are bits 7..31. */
26 #define _DL_HWCAP_FIRST 7
27 #define _DL_HWCAP_COUNT 32
29 /* These bits influence library search. */
30 #define HWCAP_IMPORTANT (PPC_FEATURE_HAS_ALTIVEC \
31 + PPC_FEATURE_HAS_DFP)
33 #define _DL_PLATFORMS_COUNT 13
35 #define _DL_FIRST_PLATFORM 32
36 /* Mask to filter out platforms. */
37 #define _DL_HWCAP_PLATFORM (((1ULL << _DL_PLATFORMS_COUNT) - 1) \
38 << _DL_FIRST_PLATFORM)
40 /* Platform bits (relative to _DL_FIRST_PLATFORM). */
41 #define PPC_PLATFORM_POWER4 0
42 #define PPC_PLATFORM_PPC970 1
43 #define PPC_PLATFORM_POWER5 2
44 #define PPC_PLATFORM_POWER5_PLUS 3
45 #define PPC_PLATFORM_POWER6 4
46 #define PPC_PLATFORM_CELL_BE 5
47 #define PPC_PLATFORM_POWER6X 6
48 #define PPC_PLATFORM_POWER7 7
49 #define PPC_PLATFORM_PPCA2 8
50 #define PPC_PLATFORM_PPC405 9
51 #define PPC_PLATFORM_PPC440 10
52 #define PPC_PLATFORM_PPC464 11
53 #define PPC_PLATFORM_PPC476 12
55 static inline const char *
56 __attribute__ ((unused))
57 _dl_hwcap_string (int idx)
59 return GLRO(dl_powerpc_cap_flags)[idx - _DL_HWCAP_FIRST];
62 static inline const char *
63 __attribute__ ((unused))
64 _dl_platform_string (int idx)
66 return GLRO(dl_powerpc_platforms)[idx - _DL_FIRST_PLATFORM];
69 static inline int
70 __attribute__ ((unused))
71 _dl_string_hwcap (const char *str)
73 for (int i = _DL_HWCAP_FIRST; i < _DL_HWCAP_COUNT; ++i)
74 if (strcmp (str, _dl_hwcap_string (i)) == 0)
75 return i;
76 return -1;
79 static inline int
80 __attribute__ ((unused, always_inline))
81 _dl_string_platform (const char *str)
83 if (str == NULL)
84 return -1;
86 if (strncmp (str, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_POWER4], 5) == 0)
88 int ret;
89 str += 5;
90 switch (*str)
92 case '4':
93 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER4;
94 break;
95 case '5':
96 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER5;
97 if (str[1] == '+')
99 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER5_PLUS;
100 ++str;
102 break;
103 case '6':
104 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER6;
105 if (str[1] == 'x')
107 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER6X;
108 ++str;
110 break;
111 case '7':
112 ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER7;
113 break;
114 default:
115 return -1;
117 if (str[1] == '\0')
118 return ret;
120 else if (strncmp (str, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC970],
121 3) == 0)
123 if (strcmp (str + 3, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC970]
124 + 3) == 0)
125 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC970;
126 else if (strcmp (str + 3,
127 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_CELL_BE] + 3)
128 == 0)
129 return _DL_FIRST_PLATFORM + PPC_PLATFORM_CELL_BE;
130 else if (strcmp (str + 3,
131 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPCA2] + 3)
132 == 0)
133 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPCA2;
134 else if (strcmp (str + 3,
135 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC405] + 3)
136 == 0)
137 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC405;
138 else if (strcmp (str + 3,
139 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC440] + 3)
140 == 0)
141 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC440;
142 else if (strcmp (str + 3,
143 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC464] + 3)
144 == 0)
145 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC464;
146 else if (strcmp (str + 3,
147 GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC476] + 3)
148 == 0)
149 return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC476;
152 return -1;
155 #ifdef IS_IN_rtld
156 static inline int
157 __attribute__ ((unused))
158 _dl_procinfo (int word)
160 _dl_printf ("AT_HWCAP: ");
162 for (int i = _DL_HWCAP_FIRST; i < _DL_HWCAP_COUNT; ++i)
163 if (word & (1 << i))
164 _dl_printf (" %s", _dl_hwcap_string (i));
166 _dl_printf ("\n");
168 return 0;
170 #endif
172 #endif /* dl-procinfo.h */