2009-08-05 12:02:56 +08:00
|
|
|
/* ===-- ffsti2.c - Implement __ffsti2 -------------------------------------===
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2010-11-17 06:13:33 +08:00
|
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
* Source Licenses. See LICENSE.TXT for details.
|
2009-08-05 12:02:56 +08:00
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*
|
|
|
|
* This file implements __ffsti2 for the compiler_rt library.
|
|
|
|
*
|
|
|
|
* ===----------------------------------------------------------------------===
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2012-06-23 05:09:22 +08:00
|
|
|
#if __x86_64
|
|
|
|
|
2009-08-05 12:02:56 +08:00
|
|
|
/* Returns: the index of the least significant 1-bit in a, or
|
|
|
|
* the value zero if a is zero. The least significant bit is index one.
|
|
|
|
*/
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
si_int
|
|
|
|
__ffsti2(ti_int a)
|
|
|
|
{
|
|
|
|
twords x;
|
|
|
|
x.all = a;
|
2009-09-03 17:12:20 +08:00
|
|
|
if (x.s.low == 0)
|
2009-06-27 00:47:03 +08:00
|
|
|
{
|
2009-09-03 17:12:20 +08:00
|
|
|
if (x.s.high == 0)
|
2009-06-27 00:47:03 +08:00
|
|
|
return 0;
|
2009-09-03 17:12:20 +08:00
|
|
|
return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
2009-09-03 17:12:20 +08:00
|
|
|
return __builtin_ctzll(x.s.low) + 1;
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
|
2009-08-10 02:41:02 +08:00
|
|
|
#endif /* __x86_64 */
|