glibc/sysdeps/i960/ffs.c

46 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 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
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 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
Library General Public License for more details.
1994-08-26 08:15:17 +02:00
1997-05-27 00:28:25 +02:00
You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB. 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)
1994-08-26 08:15:17 +02:00
#else
#include <sysdeps/generic/ffs.c>
#endif