[llvm] [InstCombine] Enable select freeze poison folding when storing value (PR #129776)
John McIver via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 21:34:51 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) {
----------------
jmciver wrote:
>From a high level should my implementation plan be?
1. Simplify getUndefReplacement helper to only handle select scalars
2. Implement poisonous constant expressions
3. Implement vector splat generation
https://github.com/llvm/llvm-project/pull/129776
More information about the llvm-commits
mailing list