2019-04-29 06:47:49 +08:00
|
|
|
//===-- ctzti2.c - Implement __ctzti2 -------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements __ctzti2 for the compiler_rt library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-27 00:47:03 +08:00
|
|
|
|
|
|
|
#include "int_lib.h"
|
|
|
|
|
2014-02-22 07:53:03 +08:00
|
|
|
#ifdef CRT_HAS_128BIT
|
2012-06-23 05:09:22 +08:00
|
|
|
|
2019-04-29 06:47:49 +08:00
|
|
|
// Returns: the number of trailing 0-bits
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2019-04-29 06:47:49 +08:00
|
|
|
// Precondition: a != 0
|
2009-06-27 00:47:03 +08:00
|
|
|
|
2020-06-30 16:06:52 +08:00
|
|
|
COMPILER_RT_ABI int __ctzti2(ti_int a) {
|
2019-04-29 05:53:32 +08:00
|
|
|
twords x;
|
|
|
|
x.all = a;
|
|
|
|
const di_int f = -(x.s.low == 0);
|
|
|
|
return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
|
|
|
|
((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT)));
|
2009-06-27 00:47:03 +08:00
|
|
|
}
|
|
|
|
|
2019-04-29 06:47:49 +08:00
|
|
|
#endif // CRT_HAS_128BIT
|