blob: 910f6c7d5d28a948bfb05ff693e3ad5f9554395e (
plain)
1
2
3
4
5
6
7
8
9
10
|
.section .text
.global log2lzcnt
.type log2lzcnt, @function
# {{template "source_code.html" .}}
# {{template "reset.html" .}}
log2lzcnt: # log2lzcnt({{.Requests}});
lzcnt %rdi, %rdi
movq $63, %rax
sub %rdi, %rax
ret # 2^{{.Log2lzcnt}} requests handled
|