glibc/sysdeps/i960/ffs.c

47 lines
1.3 KiB
C
Raw Normal View History

1994-08-26 08:15:17 +02:00
/* ffs -- find first set bit in a word, counted from least significant end.
For i960 Core architecture
1997-05-27 00:28:25 +02:00
This file is part of the GNU C Library.
Copyright (C) 1994, 1997, 2004, 2005 Free Software Foundation, Inc.
1994-08-26 08:15:17 +02:00
Contributed by Joel Sherrill (jsherril@redstone-emh2.army.mil),
1997-05-27 00:28:25 +02:00
On-Line Applications Research Corporation.
1994-08-26 08:15:17 +02:00
1997-05-27 00:28:25 +02:00
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 06:56:23 +02:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1994-08-26 08:15:17 +02:00
1997-05-27 00:28:25 +02:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 06:56:23 +02:00
Lesser General Public License for more details.
1994-08-26 08:15:17 +02:00
2001-07-06 06:56:23 +02:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
1994-08-26 08:15:17 +02:00
#include <string.h>
#undef ffs
#if defined (__GNUC__) && defined (__i960__)
int
__ffs (x)
1997-05-27 00:28:25 +02:00
int x;
1994-08-26 08:15:17 +02:00
{
int cnt;
1997-05-27 00:28:25 +02:00
asm ("scanbit %1,%0" : "=d" (cnt) : "rm" (x & -x));
1994-08-26 08:15:17 +02:00
return cnt;
}
weak_alias (__ffs, ffs)
2004-07-05 19:36:14 +02:00
libc_hidden_builtin_def (ffs)
1994-08-26 08:15:17 +02:00
#else
#include <string/ffs.c>
1994-08-26 08:15:17 +02:00
#endif