1 /* Copyright (C) 1996, 1997, 1998, 2004 Free Software Foundation, Inc.
2 Contributed by David Mosberger (davidm@cs.arizona.edu).
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 /* Finds the first bit set in an integer. Optimized for the Alpha
57 cmpbge $1, $2, $3 # e0 : bit N == 1 for byte N == 0
60 bic $4, $3, $3 # e1 : bit N == 1 for first byte N != 0
61 and $3, 0xF0, $4 # e0 :
62 and $3, 0xCC, $5 # .. e1 :
63 and $3, 0xAA, $6 # e0 :
64 cmovne $4, 4, $0 # .. e1 :
65 cmovne $5, 2, $5 # e0 :
66 cmovne $6, 1, $6 # .. e1 :
67 addl $0, $5, $0 # e0 :
68 addl $0, $6, $0 # e1 : $0 == N
69 extbl $16, $0, $1 # e0 : $1 == byte N
72 and $3, $1, $3 # e1 : bit N == least bit set of byte N
73 and $3, 0xF0, $4 # e0 :
74 and $3, 0xCC, $5 # .. e1 :
75 and $3, 0xAA, $6 # e0 :
76 cmovne $4, 5, $2 # .. e1 :
77 cmovne $5, 2, $5 # e0 :
78 cmovne $6, 1, $6 # .. e1 :
79 s8addl $0, $2, $0 # e0 : mult byte ofs by 8 and sum
80 addl $5, $6, $5 # .. e1 :
81 addl $0, $5, $0 # e0 :
83 cmoveq $16, 0, $0 # e0 : trap input == 0 case.
88 weak_alias (__ffs, ffs)
89 libc_hidden_builtin_def (ffs)
91 weak_alias (ffsl, ffsll)