1 1.1 joerg /* ===-- clzdi2.c - Implement __clzdi2 -------------------------------------=== 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 __clzdi2 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 number of leading 0-bits */ 18 1.1 joerg 19 1.3 skrll #if !defined(__clang__) && (defined(__sparc64__) || defined(__mips64) || defined(__riscv__)) 20 1.2 christos /* gcc resolves __builtin_clz -> __clzdi2 leading to infinite recursion */ 21 1.2 christos #define __builtin_clz(a) __clzsi2(a) 22 1.2 christos extern si_int __clzsi2(si_int); 23 1.2 christos #endif 24 1.2 christos 25 1.1 joerg /* Precondition: a != 0 */ 26 1.1 joerg 27 1.1 joerg COMPILER_RT_ABI si_int 28 1.1 joerg __clzdi2(di_int a) 29 1.1 joerg { 30 1.1 joerg dwords x; 31 1.1 joerg x.all = a; 32 1.1 joerg const si_int f = -(x.s.high == 0); 33 1.1 joerg return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) + 34 1.1 joerg (f & ((si_int)(sizeof(si_int) * CHAR_BIT))); 35 1.1 joerg } 36