Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 1 | /* ===-- clzdi2.c - Implement __clzdi2 -------------------------------------=== |
| 2 | * |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 +0000 | [diff] [blame] | 3 | * The LLVM Compiler Infrastructure |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 4 | * |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
| 10 | * This file implements __clzdi2 for the compiler_rt library. |
| 11 | * |
| 12 | * ===----------------------------------------------------------------------=== |
| 13 | */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 14 | |
| 15 | #include "int_lib.h" |
| 16 | |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 17 | /* Returns: the number of leading 0-bits */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 18 | |
Kristina Brooks | 22db696 | 2018-09-18 18:56:52 +0000 | [diff] [blame] | 19 | #if !defined(__clang__) && \ |
| 20 | ((defined(__sparc__) && defined(__arch64__)) || \ |
| 21 | defined(__mips64) || \ |
| 22 | (defined(__riscv) && __SIZEOF_POINTER__ >= 8)) |
| 23 | /* On 64-bit architectures with neither a native clz instruction nor a native |
| 24 | * ctz instruction, gcc resolves __builtin_clz to __clzdi2 rather than |
| 25 | * __clzsi2, leading to infinite recursion. */ |
Jonas Devlieghere | 1db3ca9 | 2018-02-08 11:14:11 +0000 | [diff] [blame] | 26 | #define __builtin_clz(a) __clzsi2(a) |
| 27 | extern si_int __clzsi2(si_int); |
| 28 | #endif |
| 29 | |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 30 | /* Precondition: a != 0 */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 31 | |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 +0000 | [diff] [blame] | 32 | COMPILER_RT_ABI si_int |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 33 | __clzdi2(di_int a) |
| 34 | { |
| 35 | dwords x; |
| 36 | x.all = a; |
Edward O'Callaghan | ccf4813 | 2009-08-09 18:41:02 +0000 | [diff] [blame] | 37 | const si_int f = -(x.s.high == 0); |
| 38 | return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) + |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 39 | (f & ((si_int)(sizeof(si_int) * CHAR_BIT))); |
| 40 | } |