[llvm] [AArch64][SVE] Fold integer lane extract and store to FPR store (PR #129756)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 03:25:12 PDT 2025


================
@@ -23946,17 +23960,49 @@ static SDValue performSTORECombine(SDNode *N,
   if (SDValue Store = combineBoolVectorAndTruncateStore(DAG, ST))
     return Store;
 
-  if (ST->isTruncatingStore()) {
-    EVT StoreVT = ST->getMemoryVT();
-    if (!isHalvingTruncateOfLegalScalableType(ValueVT, StoreVT))
-      return SDValue();
+  if (ST->isTruncatingStore() &&
+      isHalvingTruncateOfLegalScalableType(ValueVT, MemVT)) {
     if (SDValue Rshrnb =
             trySimplifySrlAddToRshrnb(ST->getOperand(1), DAG, Subtarget)) {
       return DAG.getTruncStore(ST->getChain(), ST, Rshrnb, ST->getBasePtr(),
-                               StoreVT, ST->getMemOperand());
+                               MemVT, ST->getMemOperand());
----------------
MacDue wrote:

I can factor it out (but this PR would depend on it). 

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


More information about the llvm-commits mailing list