[llvm] AMDGPU: Convert vector 64-bit shl to 32-bit if shift amt >= 32 (PR #132964)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 06:06:51 PDT 2025


================
@@ -4116,9 +4119,21 @@ SDValue AMDGPUTargetLowering::performShlCombine(SDNode *N,
   SDValue NewShift =
       DAG.getNode(ISD::SHL, SL, TargetType, Lo, ShiftAmt, N->getFlags());
 
-  const SDValue Zero = DAG.getConstant(0, SL, TargetType);
-
-  SDValue Vec = DAG.getBuildVector(TargetVecPairType, SL, {Zero, NewShift});
+  const SDValue Zero = DAG.getConstant(0, SL, TargetScalarType);
+  SDValue Vec;
+
+  if (VT.isVector()) {
+    EVT ConcatType = TargetType.getDoubleNumVectorElementsVT(*DAG.getContext());
+    unsigned NElts = TargetType.getVectorNumElements();
+    SmallVector<SDValue, 8> Ops;
+    DAG.ExtractVectorElements(NewShift, Ops, 0, NElts);
+    for (unsigned I = 0; I != NElts; ++I)
----------------
LU-JOHN wrote:

Re-coded with array indexing and new renamed vectors.  Hopefully this makes comment unnecessary.

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


More information about the llvm-commits mailing list