We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Godbolt link
#include <stdint.h> uint64_t blsr_test_cmove(uint64_t rdi, uint64_t rsi) { uint64_t rax = rdi & (rdi - 1); return (rsi != 0) ? rax : rdi; }
Emits:
blsr_test_cmove: cmp rsi, 1 lea rcx, [rdi - 1] sbb rax, rax or rax, rcx and rax, rdi ret
Should be:
blsr_test_cmove: blsr rax, rdi test rsi, rsi cmove rax, rdi ret
The text was updated successfully, but these errors were encountered:
Same issue applies to BLSI (Godbolt link)
Sorry, something went wrong.
@llvm/issue-subscribers-backend-x86
Author: Niles Salter (Validark)
uint64_t blsr_test_cmove(uint64_t rdi, uint64_t rsi) { uint64_t rax = rdi & (rdi - 1); return (rsi != 0) ? rax : rdi; }
Emits: ```asm blsr_test_cmove: cmp rsi, 1 lea rcx, [rdi - 1] sbb rax, rax or rax, rcx and rax, rdi ret
No branches or pull requests
Godbolt link
Emits:
Should be:
The text was updated successfully, but these errors were encountered: