[llvm] [AMDGPU] Skip handling of non-byte types in promote alloca. (PR #128769)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 19:51:35 PST 2025


================
@@ -759,6 +759,14 @@ bool AMDGPUPromoteAllocaImpl::tryPromoteAllocaToVector(AllocaInst &Alloca) {
     return false;
   }
 
+  Type *VecEltTy = VectorTy->getElementType();
+  constexpr unsigned SIZE_OF_BYTE = 8;
+  unsigned ElementSizeInBits = DL->getTypeSizeInBits(VecEltTy);
+  // FIXME: The non-byte type like i1 can be packed and be supported, but
+  // currently we do not handle them.
+  if (ElementSizeInBits % SIZE_OF_BYTE != 0)
----------------
arsenm wrote:

Best to replicate typeSizeEqualsStoreSize 

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


More information about the llvm-commits mailing list