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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 #ifndef _DL_PROCINFO_H
21 #define _DL_PROCINFO_H 1
24 #include <sysdep.h> /* This defines the PPC_FEATURE_* macros. */
26 /* There are 25 bits used, but they are bits 7..31. */
27 #define _DL_HWCAP_FIRST 7
28 #define _DL_HWCAP_COUNT 32
30 /* These bits influence library search. */
31 #define HWCAP_IMPORTANT (PPC_FEATURE_HAS_ALTIVEC \
32 + PPC_FEATURE_HAS_DFP)
34 #define _DL_PLATFORMS_COUNT 8
36 #define _DL_FIRST_PLATFORM 32
37 /* Mask to filter out platforms. */
38 #define _DL_HWCAP_PLATFORM (((1ULL << _DL_PLATFORMS_COUNT) - 1) \
39 << _DL_FIRST_PLATFORM)
41 /* Platform bits (relative to _DL_FIRST_PLATFORM). */
42 #define PPC_PLATFORM_POWER4 0
43 #define PPC_PLATFORM_PPC970 1
44 #define PPC_PLATFORM_POWER5 2
45 #define PPC_PLATFORM_POWER5_PLUS 3
46 #define PPC_PLATFORM_POWER6 4
47 #define PPC_PLATFORM_CELL_BE 5
48 #define PPC_PLATFORM_POWER6X 6
49 #define PPC_PLATFORM_POWER7 7
51 static inline const char *
52 __attribute__ ((unused
))
53 _dl_hwcap_string (int idx
)
55 return GLRO(dl_powerpc_cap_flags
)[idx
- _DL_HWCAP_FIRST
];
58 static inline const char *
59 __attribute__ ((unused
))
60 _dl_platform_string (int idx
)
62 return GLRO(dl_powerpc_platforms
)[idx
- _DL_FIRST_PLATFORM
];
66 __attribute__ ((unused
))
67 _dl_string_hwcap (const char *str
)
69 for (int i
= _DL_HWCAP_FIRST
; i
< _DL_HWCAP_COUNT
; ++i
)
70 if (strcmp (str
, _dl_hwcap_string (i
)) == 0)
76 __attribute__ ((unused
, always_inline
))
77 _dl_string_platform (const char *str
)
82 if (strncmp (str
, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_POWER4
], 5) == 0)
89 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER4
;
92 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER5
;
95 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER5_PLUS
;
100 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER6
;
103 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER6X
;
108 ret
= _DL_FIRST_PLATFORM
+ PPC_PLATFORM_POWER7
;
116 else if (strncmp (str
, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC970
],
119 if (strcmp (str
+ 3, GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_PPC970
]
121 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_PPC970
;
122 else if (strcmp (str
+ 3,
123 GLRO(dl_powerpc_platforms
)[PPC_PLATFORM_CELL_BE
] + 3)
125 return _DL_FIRST_PLATFORM
+ PPC_PLATFORM_CELL_BE
;
133 __attribute__ ((unused
))
134 _dl_procinfo (int word
)
136 _dl_printf ("AT_HWCAP: ");
138 for (int i
= _DL_HWCAP_FIRST
; i
< _DL_HWCAP_COUNT
; ++i
)
140 _dl_printf (" %s", _dl_hwcap_string (i
));
148 #endif /* dl-procinfo.h */