[llvm] [DAG] Combine (sext (sext_in_reg x)) to (sext_in_reg (any_extend x)) (PR #132386)
Pierre van Houtryve via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 07:48:27 PDT 2025
================
@@ -13936,14 +13936,22 @@ SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
return DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, SDLoc(N), VT,
N0.getOperand(0));
- // fold (sext (sext_inreg x)) -> (sext (trunc x))
if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG) {
SDValue N00 = N0.getOperand(0);
EVT ExtVT = cast<VTSDNode>(N0->getOperand(1))->getVT();
- if ((N00.getOpcode() == ISD::TRUNCATE || TLI.isTruncateFree(N00, ExtVT)) &&
- (!LegalTypes || TLI.isTypeLegal(ExtVT))) {
- SDValue T = DAG.getNode(ISD::TRUNCATE, DL, ExtVT, N00);
- return DAG.getNode(ISD::SIGN_EXTEND, DL, VT, T);
+ if (N00.getOpcode() == ISD::TRUNCATE || TLI.isTruncateFree(N00, ExtVT)) {
+ // fold (sext (sext_inreg x)) -> (sext (trunc x))
+ if ((!LegalTypes || TLI.isTypeLegal(ExtVT))) {
+ SDValue T = DAG.getNode(ISD::TRUNCATE, DL, ExtVT, N00);
+ return DAG.getNode(ISD::SIGN_EXTEND, DL, VT, T);
+ }
+
+ // If the trunc wasn't legal, try to fold to (sext_inreg (anyext x))
+ if ((!LegalTypes || TLI.isTypeLegal(VT))) {
----------------
Pierre-vh wrote:
Good idea
I've also wanted to remove the need to have a truncate on N00, but it creates all sorts of combine loops.
I need to find the right combination of TLI hooks that'd disable this transform on targets that don't want it, but I can do that in a separate patch just fine.
https://github.com/llvm/llvm-project/pull/132386
More information about the llvm-commits
mailing list