xref: /aosp_15_r20/external/compiler-rt/lib/builtins/clzsi2.c (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1*7c3d14c8STreehugger Robot /* ===-- clzsi2.c - Implement __clzsi2 -------------------------------------===
2*7c3d14c8STreehugger Robot  *
3*7c3d14c8STreehugger Robot  *               The LLVM Compiler Infrastructure
4*7c3d14c8STreehugger Robot  *
5*7c3d14c8STreehugger Robot  * This file is dual licensed under the MIT and the University of Illinois Open
6*7c3d14c8STreehugger Robot  * Source Licenses. See LICENSE.TXT for details.
7*7c3d14c8STreehugger Robot  *
8*7c3d14c8STreehugger Robot  * ===----------------------------------------------------------------------===
9*7c3d14c8STreehugger Robot  *
10*7c3d14c8STreehugger Robot  * This file implements __clzsi2 for the compiler_rt library.
11*7c3d14c8STreehugger Robot  *
12*7c3d14c8STreehugger Robot  * ===----------------------------------------------------------------------===
13*7c3d14c8STreehugger Robot  */
14*7c3d14c8STreehugger Robot 
15*7c3d14c8STreehugger Robot #include "int_lib.h"
16*7c3d14c8STreehugger Robot 
17*7c3d14c8STreehugger Robot /* Returns: the number of leading 0-bits */
18*7c3d14c8STreehugger Robot 
19*7c3d14c8STreehugger Robot /* Precondition: a != 0 */
20*7c3d14c8STreehugger Robot 
21*7c3d14c8STreehugger Robot COMPILER_RT_ABI si_int
__clzsi2(si_int a)22*7c3d14c8STreehugger Robot __clzsi2(si_int a)
23*7c3d14c8STreehugger Robot {
24*7c3d14c8STreehugger Robot     su_int x = (su_int)a;
25*7c3d14c8STreehugger Robot     si_int t = ((x & 0xFFFF0000) == 0) << 4;  /* if (x is small) t = 16 else 0 */
26*7c3d14c8STreehugger Robot     x >>= 16 - t;      /* x = [0 - 0xFFFF] */
27*7c3d14c8STreehugger Robot     su_int r = t;       /* r = [0, 16] */
28*7c3d14c8STreehugger Robot     /* return r + clz(x) */
29*7c3d14c8STreehugger Robot     t = ((x & 0xFF00) == 0) << 3;
30*7c3d14c8STreehugger Robot     x >>= 8 - t;       /* x = [0 - 0xFF] */
31*7c3d14c8STreehugger Robot     r += t;            /* r = [0, 8, 16, 24] */
32*7c3d14c8STreehugger Robot     /* return r + clz(x) */
33*7c3d14c8STreehugger Robot     t = ((x & 0xF0) == 0) << 2;
34*7c3d14c8STreehugger Robot     x >>= 4 - t;       /* x = [0 - 0xF] */
35*7c3d14c8STreehugger Robot     r += t;            /* r = [0, 4, 8, 12, 16, 20, 24, 28] */
36*7c3d14c8STreehugger Robot     /* return r + clz(x) */
37*7c3d14c8STreehugger Robot     t = ((x & 0xC) == 0) << 1;
38*7c3d14c8STreehugger Robot     x >>= 2 - t;       /* x = [0 - 3] */
39*7c3d14c8STreehugger Robot     r += t;            /* r = [0 - 30] and is even */
40*7c3d14c8STreehugger Robot     /* return r + clz(x) */
41*7c3d14c8STreehugger Robot /*     switch (x)
42*7c3d14c8STreehugger Robot  *     {
43*7c3d14c8STreehugger Robot  *     case 0:
44*7c3d14c8STreehugger Robot  *         return r + 2;
45*7c3d14c8STreehugger Robot  *     case 1:
46*7c3d14c8STreehugger Robot  *         return r + 1;
47*7c3d14c8STreehugger Robot  *     case 2:
48*7c3d14c8STreehugger Robot  *     case 3:
49*7c3d14c8STreehugger Robot  *         return r;
50*7c3d14c8STreehugger Robot  *     }
51*7c3d14c8STreehugger Robot  */
52*7c3d14c8STreehugger Robot     return r + ((2 - x) & -((x & 2) == 0));
53*7c3d14c8STreehugger Robot }
54