[clang] [llvm] [SROA] Vector promote some memsets (PR #133301)

via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 03:54:57 PDT 2025


================
@@ -1011,6 +1011,26 @@ static Value *foldPHINodeOrSelectInst(Instruction &I) {
   return foldSelectInst(cast<SelectInst>(I));
 }
 
+/// Returns a fixed vector type equivalent to the memory set by II or nullptr if
+/// unable to do so.
+static FixedVectorType *getVectorTypeFor(const MemSetInst &II,
+                                         const DataLayout &DL) {
+  const ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
+  if (!Length)
+    return nullptr;
+
+  APInt Val = Length->getValue();
+  if (Val.ugt(std::numeric_limits<unsigned>::max()))
+    return nullptr;
+
+  auto *VTy =
+      FixedVectorType::get(II.getValue()->getType(), Val.getZExtValue());
+  if (DL.getTypeStoreSizeInBits(VTy) != DL.getTypeAllocSizeInBits(VTy))
----------------
macurtis-amd wrote:

This is a workaround.
Latest revision adds a comment to make this explicit and also cleans up the usage of getType*.


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


More information about the llvm-commits mailing list