]> pd.if.org Git - zos/blob - klib/bitops.s
klib and makefile
[zos] / klib / bitops.s
1 ; round up to a power of two
2 logtwoup:
3         xor eax, eax
4         bsr rsi, rdi ; rsi has the log 2 rounded down
5         bts rax, rsi
6         cmp rax, rdi
7         jz .done
8         shr rax, 1
9 .done:
10         ret