[llvm] [NFC] Add assertions for Src and Dst vec types in VecCombine folding (PR #134432)

via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 11:51:17 PDT 2025


https://github.com/calebwat created https://github.com/llvm/llvm-project/pull/134432

SrcVecTy and DstVecTy are used without a null check, and originate from a dyn_cast. This patch adds an assertion that these values are non-null before they are used/dereferenced.

>From ae4f0379b9b7e19d5764a714451f0b9aba815d7e Mon Sep 17 00:00:00 2001
From: "Watts, Caleb" <caleb.watts at intel.com>
Date: Fri, 4 Apr 2025 11:40:28 -0700
Subject: [PATCH] [NFC] Add assertions for Src and Dst vec types in VecCombine
 folding

SrcVecTy and DstVecTy are used without a null check, and originate from a dyn_cast. This patch adds an assertion that these values are non-null before they are used/dereferenced.
---
 llvm/lib/Transforms/Vectorize/VectorCombine.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
index 4bfe41a5ed00d..fc04266cac51b 100644
--- a/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
+++ b/llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -2052,6 +2052,9 @@ bool VectorCombine::foldShuffleOfSelects(Instruction &I) {
 
   auto *SrcVecTy = dyn_cast<FixedVectorType>(T1->getType());
   auto *DstVecTy = dyn_cast<FixedVectorType>(I.getType());
+  assert(SrcVecTy && DstVecTy &&
+         "Expected shuffle/select vector types to be defined");
+
   auto SK = TargetTransformInfo::SK_PermuteTwoSrc;
   auto SelOp = Instruction::Select;
   InstructionCost OldCost = TTI.getCmpSelInstrCost(



More information about the llvm-commits mailing list