<div dir="ltr">Hello everyone,<div><br></div><div>This week I was looking into the following example (<a href="https://godbolt.org/z/uhgQcq">https://godbolt.org/z/uhgQcq</a>) where two constants are written to a local array and an input argument, masked and shifted, is used to select between them. The possible values for the CC variable are 0 and 1, so I'm expecting that at the maximum level of optimizations the two constants are actually propagated, resulting in the return value being a 'select' controlled by CC and returning either one or the other.</div><div><br></div><div>Although, I quickly realized that the implementation in the function 'src' was not going to be optimized any further, resulting in the generation of two 'store' instructions and one 'load' instruction, apparently hindering the constant propagation pass.</div><div><br></div><div>I then decided to explicitly access the local buffer with constant indexes and see if LLVM would have been able to identify that CC could have been either 0 or 1 (effectively avoiding the 'default' case of the switch and therefore the '0xdeadc0de' constant). As a result the function 'tgt' is optimized in the way I would expect it to be.</div><div><br></div><div>This also seemed to be a good exercise for Alive2, so I fed it with the unoptimized 'src' and the optimized 'tgt' functions to prove their equivalence, obtaining the result 'Transformation seems to be correct'. As a counter-proof I tampered with the logic or modified the constants, obtaining a valid proof of why the transformation wasn't correct (effectively showing that the original 'src' and 'tgt' functions may actually be semantically equivalent).</div><div><br></div><div>To replicate the Alive2 result at <a href="https://alive2.llvm.org">https://alive2.llvm.org</a>, the following input can be used:</div><div><br></div><div>define i64 @_Z3srcm(i64 %Flags) {<br>entry:<br>  %Memory = alloca [2 x i64], align 16<br>  %and = lshr i64 %Flags, 6<br>  %shr = and i64 %and, 1<br>  %0 = bitcast [2 x i64]* %Memory to i8*<br>  %arrayidx = getelementptr inbounds [2 x i64], [2 x i64]* %Memory, i64 0, i64 0<br>  store i64 5369966919, i64* %arrayidx, align 16<br>  %arrayidx1 = getelementptr inbounds [2 x i64], [2 x i64]* %Memory, i64 0, i64 1<br>  store i64 5369966790, i64* %arrayidx1, align 8<br>  %arrayidx2 = getelementptr inbounds [2 x i64], [2 x i64]* %Memory, i64 0, i64 %shr<br>  %1 = load i64, i64* %arrayidx2, align 8<br>  ret i64 %1<br>}<br><br>define i64 @_Z3tgtm(i64 %Flags) {<br>entry:<br>  %0 = and i64 %Flags, 64<br>  %trunc = icmp eq i64 %0, 0<br>  %. = select i1 %trunc, i64 5369966919, i64 5369966790<br>  ret i64 %.<br>}<br></div><div><br></div><div>At this point I decided to replicate the 'tgt' function logic and coded a quick LLVM pass that:</div><div><ol><li>uses the known/unknown computed bits information to identify a non-volatile 'load' instruction that uses an index proved to have only two possible values;</li><li> check if there's at least one 'store' to the accessed buffer using one of the two indexes;</li><li>converts the single 'load' instruction into two 'load' instructions using the concrete indexes;</li><li>generates a 'select' instruction that returns one of the two loaded values, using as condition a check on the index.</li></ol><div>The pass seems to be working fine, but I'm left wondering if LLVM is purposefully avoiding such an optimization, and if so what is the reason to do so (e.g. hard to prove that the optimization is actually going to improve the quality of the code, the logic I'm using is completely off the rails).</div></div><div><br></div><div>Assuming the logic it's correct and this could be seen as a new custom optimization pass, what would be the suggested way to implement it in a solid and generic fashion?</div><div><br></div><div>Thanks for any insight,</div><div>Matteo</div></div>