aboutsummaryrefslogtreecommitdiff
path: root/log2.s
blob: b7040e5f6e1c7fc11c736d8120fc510a801b8760 (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://git.ancap.in.ua/lzcnt.space")}}