[llvm] 9ad082e - [DAG] Pull out repeated getOperand() calls for shuffle ops. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 30 06:03:05 PDT 2022
Author: Simon Pilgrim
Date: 2022-07-30T14:02:54+01:00
New Revision: 9ad082eb5a948ffd5d8fc959967d184c3433aca0
URL: https://github.com/llvm/llvm-project/commit/9ad082eb5a948ffd5d8fc959967d184c3433aca0
DIFF: https://github.com/llvm/llvm-project/commit/9ad082eb5a948ffd5d8fc959967d184c3433aca0.diff
LOG: [DAG] Pull out repeated getOperand() calls for shuffle ops. NFC.
Added:
Modified:
llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index e4abafba9cd60..0d5066554fce2 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -3189,6 +3189,8 @@ bool TargetLowering::SimplifyDemandedVectorElts(
break;
}
case ISD::VECTOR_SHUFFLE: {
+ SDValue LHS = Op.getOperand(0);
+ SDValue RHS = Op.getOperand(1);
ArrayRef<int> ShuffleMask = cast<ShuffleVectorSDNode>(Op)->getMask();
// Collect demanded elements from shuffle operands..
@@ -3208,11 +3210,11 @@ bool TargetLowering::SimplifyDemandedVectorElts(
// See if we can simplify either shuffle operand.
APInt UndefLHS, ZeroLHS;
APInt UndefRHS, ZeroRHS;
- if (SimplifyDemandedVectorElts(Op.getOperand(0), DemandedLHS, UndefLHS,
- ZeroLHS, TLO, Depth + 1))
+ if (SimplifyDemandedVectorElts(LHS, DemandedLHS, UndefLHS, ZeroLHS, TLO,
+ Depth + 1))
return true;
- if (SimplifyDemandedVectorElts(Op.getOperand(1), DemandedRHS, UndefRHS,
- ZeroRHS, TLO, Depth + 1))
+ if (SimplifyDemandedVectorElts(RHS, DemandedRHS, UndefRHS, ZeroRHS, TLO,
+ Depth + 1))
return true;
// Simplify mask using undef elements from LHS/RHS.
@@ -3236,8 +3238,7 @@ bool TargetLowering::SimplifyDemandedVectorElts(
// to Identity which can cause premature removal of the shuffle mask.
if (Updated && !IdentityLHS && !IdentityRHS && !TLO.LegalOps) {
SDValue LegalShuffle =
- buildLegalVectorShuffle(VT, DL, Op.getOperand(0), Op.getOperand(1),
- NewMask, TLO.DAG);
+ buildLegalVectorShuffle(VT, DL, LHS, RHS, NewMask, TLO.DAG);
if (LegalShuffle)
return TLO.CombineTo(Op, LegalShuffle);
}
More information about the llvm-commits
mailing list