xref: /DragonOS/kernel/src/arch/x86_64/asm/bitops.rs (revision 06b09f34ed64a006a80ae8df383e3c8b176f02e0)
1 use core::arch::x86_64::_popcnt64;
2 
3 /// @brief ffz - 寻找u64中的第一个0所在的位(从第0位开始寻找)
4 /// 请注意,如果x中没有0,那么结果将是未定义的。请确保传入的x至少存在1个0
5 ///
6 /// @param x 目标u64
7 /// @return i32 bit-number(0..63) of the first (least significant) zero bit.
8 #[inline]
9 pub fn ffz(x: u64) -> i32 {
10     return unsafe { _popcnt64((x & ((!x) - 1)).try_into().unwrap()) };
11 }
12