Home | History | Annotate | Line # | Download | only in builtins
      1  1.1  joerg /* ===-- ffsdi2.c - Implement __ffsdi2 -------------------------------------===
      2  1.1  joerg  *
      3  1.1  joerg  *                     The LLVM Compiler Infrastructure
      4  1.1  joerg  *
      5  1.1  joerg  * This file is dual licensed under the MIT and the University of Illinois Open
      6  1.1  joerg  * Source Licenses. See LICENSE.TXT for details.
      7  1.1  joerg  *
      8  1.1  joerg  * ===----------------------------------------------------------------------===
      9  1.1  joerg  *
     10  1.1  joerg  * This file implements __ffsdi2 for the compiler_rt library.
     11  1.1  joerg  *
     12  1.1  joerg  * ===----------------------------------------------------------------------===
     13  1.1  joerg  */
     14  1.1  joerg 
     15  1.1  joerg #include "int_lib.h"
     16  1.1  joerg 
     17  1.1  joerg /* Returns: the index of the least significant 1-bit in a, or
     18  1.1  joerg  * the value zero if a is zero. The least significant bit is index one.
     19  1.1  joerg  */
     20  1.1  joerg 
     21  1.1  joerg COMPILER_RT_ABI si_int
     22  1.1  joerg __ffsdi2(di_int a)
     23  1.1  joerg {
     24  1.1  joerg     dwords x;
     25  1.1  joerg     x.all = a;
     26  1.1  joerg     if (x.s.low == 0)
     27  1.1  joerg     {
     28  1.1  joerg         if (x.s.high == 0)
     29  1.1  joerg             return 0;
     30  1.1  joerg         return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
     31  1.1  joerg     }
     32  1.1  joerg     return __builtin_ctz(x.s.low) + 1;
     33  1.1  joerg }
     34