[llvm] [InstCombine] Enable select freeze poison folding when storing value (PR #129776)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 02:04:57 PDT 2025


================
@@ -4812,15 +4812,20 @@ Instruction *InstCombinerImpl::visitFreeze(FreezeInst &I) {
   //
   // TODO: This could use getBinopAbsorber() / getBinopIdentity() to avoid
   //       duplicating logic for binops at least.
-  auto getUndefReplacement = [&I](Type *Ty) {
-    Constant *BestValue = nullptr;
-    Constant *NullValue = Constant::getNullValue(Ty);
+  auto getUndefReplacement = [&I, &AC = this->AC, &DT = this->DT](Type *Ty) {
----------------
nikic wrote:

Not really. The *primary* purpose is to replace a freeze(poison) fully, see the `if (match(Op0, m_Undef()))` branch below. However, it is *also* used to handle the case where we have something like `freeze <i8 0, i8 poison>`, where we're only replacing elements.

TBH I find it somewhat doubtful to use the same helper for both. I think it would make more sense to separate out the vector handling and make that one just fill the gaps with the first non-undef element. I think creating a vector splat is going to be more useful than creating a a mixed vector constant where some elements have beneficial values for some operation.

Also, I think that code is currently incorrect because it fails to handle potentially poisonous constant expressions.

Maybe we should clean up that code first.

https://github.com/llvm/llvm-project/pull/129776


More information about the llvm-commits mailing list