Description
Somebody on the internet (https://blog.dend.ro/rust-and-the-case-of-the-redundant-comparison/) complained that something like this:
fn vec_clear(x: &mut i32) {
if *x != 0 {
*x = 0;
}
}
generates a conditional store:
cmpl $0, (%rdi)
je .LBB0_2
movl $0, (%rdi)
.LBB0_2:
retq
on x86_64
instead of just an unconditional store movl $0, (%rdi); retq
.
Taking a look at the optimized LLVM-IR:
define void @vec_clear(i32* noalias nocapture dereferenceable(4) %x) {
start:
%0 = load i32, i32* %x, align 4
%1 = icmp eq i32 %0, 0
br i1 %1, label %bb2, label %bb1
bb1:
store i32 0, i32* %x, align 4
br label %bb2
bb2:
ret void
}
shows the issue.
The LLVM-IR generated by rustc is loosing critical information. It marks i32*
as noalias
, which means, that no other pointers in vec_clear
's scope will alias it. However, outside vec_clear
scope, other pointers are allowed to alias that memory. That is, if *x
is zero, other threads could be concurrently reading the memory and if LLVM would generate an unconditional store here, that would introduce a data-race, which means that this optimization is not safe on the LLVM-IR generated by rustc. OTOH, &mut i32` means that the pointer has unique access to the memory, that is, no other pointer can access the memory behind it as long as that pointer is alive. Therefore, transforming the code to an unconditional store does not introduce a data-race.
Therefore, I think that noalias
is not enough to perform this optimization and that we would need something stronger for LLVM to be able to perform it.
This also shows that &mut T
is stronger than C's restrict
keyword.