1 /* Processor capability information handling macros. PowerPC version.
2 Copyright (C) 2005, 2006 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
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 14
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
54 #define PPC_PLATFORM_POWER8 13
56 static inline const char *
57 __attribute__ ((unused
))
58 _dl_hwcap_string (int idx
)
60 return GLRO(dl_powerpc_cap_flags
)[idx
- _DL_HWCAP_FIRST
];
63 static inline const char *
64 __attribute__ ((unused
))
65 _dl_platform_string (int idx
)
67 return GLRO(dl_powerpc_platforms
)[idx
- _DL_FIRST_PLATFORM
];
71 __attribute__ ((unused
))
72 _dl_string_hwcap (const char *str
)
74 for (int i
= _DL_HWCAP_FIRST
; i
< _DL_HWCAP_COUNT
; ++i
)
75 if (strcmp (str
, _dl_hwcap_string (i
)) == 0)
81 __attribute__ ((unused
, always_inline
))
82 _dl_string_platform (const char *str
)
87 if (strncmp (str
, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_POWER4
], 5) == 0)
94 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER4
;
97 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER5
;
100 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER5_PLUS
;
105 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER6
;
108 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER6X
;
113 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER7
;
116 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER8
;
124 else if (strncmp (str
, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC970
],
127 if (strcmp (str
+ 3, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC970
]
129 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC970
;
130 else if (strcmp (str
+ 3,
131 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_CELL_BE
] + 3)
133 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_CELL_BE
;
134 else if (strcmp (str
+ 3,
135 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPCA2
] + 3)
137 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPCA2
;
138 else if (strcmp (str
+ 3,
139 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC405
] + 3)
141 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC405
;
142 else if (strcmp (str
+ 3,
143 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC440
] + 3)
145 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC440
;
146 else if (strcmp (str
+ 3,
147 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC464
] + 3)
149 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC464
;
150 else if (strcmp (str
+ 3,
151 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC476
] + 3)
153 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC476
;
161 __attribute__ ((unused
))
162 _dl_procinfo (unsigned int type
, unsigned long int word
)
164 /* Fallback to unknown output mechanism. */
165 if (type
== AT_HWCAP2
)
168 _dl_printf ("AT_HWCAP: ");
170 for (int i
= _DL_HWCAP_FIRST
; i
< _DL_HWCAP_COUNT
; ++i
)
172 _dl_printf (" %s", _dl_hwcap_string (i
));
180 #endif /* dl-procinfo.h */