e3407bab9b94a7a3ea348e39e6893b0067679b64
1 /* Copyright (C) 2009 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef UST_PROCESSOR_H
19 #define UST_PROCESSOR_H
21 #define ____cacheline_aligned __attribute__((aligned(CAA_CACHE_LINE_SIZE)))
25 static inline int fls(int x
)
30 : "=&r" (r
) : "rm" (x
), "rm" (-1));
34 #elif defined(__x86_64)
36 static inline int fls(int x
)
41 : "=&r" (r
) : "rm" (x
), "rm" (-1));
45 #elif defined(__PPC__)
47 static __inline__
int fls(unsigned int x
)
51 asm ("cntlzw %0,%1" : "=r" (lz
) : "r" (x
));
55 #else /* arch-agnostic */
57 static __inline__
int fls(unsigned int x
)
63 if (!(x
& 0xFFFF0000U
)) {
67 if (!(x
& 0xFF000000U
)) {
71 if (!(x
& 0xF0000000U
)) {
75 if (!(x
& 0xC0000000U
)) {
79 if (!(x
& 0x80000000U
)) {
88 #endif /* UST_PROCESSOR_H */
This page took 0.032971 seconds and 5 git commands to generate.