[llvm] 790f2eb - [InstCombine] Avoid simplifying bitcast of undef to a zeroinitializer vector (#108872)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 17 15:31:32 PDT 2024
Author: Alex MacLean
Date: 2024-09-17T15:31:28-07:00
New Revision: 790f2eb16a279f4cb4b57397fcafd5cadb49d6b7
URL: https://github.com/llvm/llvm-project/commit/790f2eb16a279f4cb4b57397fcafd5cadb49d6b7
DIFF: https://github.com/llvm/llvm-project/commit/790f2eb16a279f4cb4b57397fcafd5cadb49d6b7.diff
LOG: [InstCombine] Avoid simplifying bitcast of undef to a zeroinitializer vector (#108872)
In some cases, if an undef value is the product of another instcombine
simplification, a bitcast of undef is simplified to a zeroinitializer
vector instead of undef.
Added:
Modified:
llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
llvm/test/Transforms/InstCombine/bitcast.ll
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
index 5c9faa9449f539..ea51d779045718 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
@@ -2323,6 +2323,11 @@ static Value *optimizeIntegerToVectorInsertions(BitCastInst &CI,
auto *DestVecTy = cast<FixedVectorType>(CI.getType());
Value *IntInput = CI.getOperand(0);
+ // if the int input is just an undef value do not try to optimize to vector
+ // insertions as it will prevent undef propagation
+ if (isa<UndefValue>(IntInput))
+ return nullptr;
+
SmallVector<Value*, 8> Elements(DestVecTy->getNumElements());
if (!collectInsertionElements(IntInput, 0, Elements,
DestVecTy->getElementType(),
diff --git a/llvm/test/Transforms/InstCombine/bitcast.ll b/llvm/test/Transforms/InstCombine/bitcast.ll
index 4ab24ce7b925dc..79e6370b7242f5 100644
--- a/llvm/test/Transforms/InstCombine/bitcast.ll
+++ b/llvm/test/Transforms/InstCombine/bitcast.ll
@@ -879,3 +879,26 @@ define half @copysign_idiom_constant_wrong_type2(bfloat %x, i16 %mag) {
%y = bitcast i16 %res to half
ret half %y
}
+
+define i16 @bitcast_undef_to_vector() {
+; CHECK-LABEL: @bitcast_undef_to_vector(
+; CHECK-NEXT: entry:
+; CHECK-NEXT: br label [[END:%.*]]
+; CHECK: unreachable:
+; CHECK-NEXT: br label [[END]]
+; CHECK: end:
+; CHECK-NEXT: ret i16 undef
+;
+entry:
+ br label %end
+
+unreachable: ; No predecessors!
+ %0 = extractvalue { i32, i32 } zeroinitializer, 1
+ br label %end
+
+end: ; preds = %unreachable, %entry
+ %1 = phi i32 [ %0, %unreachable ], [ undef, %entry ]
+ %2 = bitcast i32 %1 to <2 x i16>
+ %3 = extractelement <2 x i16> %2, i64 0
+ ret i16 %3
+}
More information about the llvm-commits
mailing list