[llvm] [RISCV] Reorder insert_subvector and bitcast in getDeinterleaveShiftAndTrunc. (PR #127258)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 12:49:07 PST 2025
https://github.com/topperc created https://github.com/llvm/llvm-project/pull/127258
Put the bitcast before the insert_subvector. It's more likely the insert subvector can be combined with other nodes. The insert_subvector only needed sometimes, and I'm considering reusing this function which might require pulling the insert_subvector out.
>From f87bfd47778c3a29805e6001f1272ea9fbffcd11 Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper at sifive.com>
Date: Fri, 14 Feb 2025 12:46:43 -0800
Subject: [PATCH] [RISCV] Reorder insert_subvector and bitcast in
getDeinterleaveShiftAndTrunc.
Put the bitcast before the insert_subvector. It's more likely the
insert subvector can be combined with other nodes.
---
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index da04880348af6..9784ef13f3782 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -4660,10 +4660,10 @@ static SDValue getDeinterleaveShiftAndTrunc(const SDLoc &DL, MVT VT,
SDValue Res = DAG.getNode(ISD::SRL, DL, WideSrcVT, Src,
DAG.getConstant(Shift, DL, WideSrcVT));
Res = DAG.getNode(ISD::TRUNCATE, DL, ResVT, Res);
- MVT IntVT = VT.changeVectorElementTypeToInteger();
- Res = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, IntVT, DAG.getUNDEF(IntVT), Res,
- DAG.getVectorIdxConstant(0, DL));
- return DAG.getBitcast(VT, Res);
+ MVT CastVT = ResVT.changeVectorElementType(VT.getVectorElementType());
+ Res = DAG.getBitcast(CastVT, Res);
+ return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, VT, DAG.getUNDEF(VT), Res,
+ DAG.getVectorIdxConstant(0, DL));
}
// Lower the following shuffle to vslidedown.
More information about the llvm-commits
mailing list