aboutsummaryrefslogtreecommitdiff
path: root/log2.s
blob: cae631bc50568bd30eb6e43f39013e9889c43385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# {{template "link.html" (arr "about" "/about")}}
# {{template "reset.html" .}}
    .section    .text
    .global     log2lzcnt
    .type       log2lzcnt, @function
log2lzcnt:              # log2lzcnt({{.Requests}});
    lzcnt   %rdi, %rdi 
    movq    $63,  %rax
    sub     %rdi, %rax
    ret                 # 2^{{.Log2lzcnt}} requests handled

# copyleft 2025 iskrim46
# {{template "link.html" (arr "source" "https://github.com/hovertank3d/lzcnt.space")}}