[llvm] [AArch64][SVE] Fold integer lane extract and store to FPR store (PR #129756)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 03:56:10 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());
----------------
sdesmalen-arm wrote:
Okay, I see now how it's a functional change (it now no longer `return`s if it's not halving truncate). In that case, just leave it in and ignore my comment.
https://github.com/llvm/llvm-project/pull/129756
More information about the llvm-commits
mailing list