LZCNT - Count the Number of Leading Zero Bits
# [about]
# [reset counter]
.section .text
.global log2lzcnt
.type log2lzcnt, @function
log2lzcnt: # log2lzcnt(22473);
lzcnt %rdi, %rdi
movq $63, %rax
sub %rdi, %rax
ret # 2^14 requests handled
# copyleft 2025 iskrim46
# [source]