[llvm] [SelectionDAG] Use SimplifyDemandedBits from SimplifyDemandedVectorElts Bitcast. (PR #133717)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 06:49:17 PDT 2025
================
@@ -3163,10 +3163,22 @@ bool TargetLowering::SimplifyDemandedVectorElts(
SDValue Src = Op.getOperand(0);
EVT SrcVT = Src.getValueType();
- // We only handle vectors here.
- // TODO - investigate calling SimplifyDemandedBits/ComputeKnownBits?
- if (!SrcVT.isVector())
+ if (!SrcVT.isVector()) {
+ // TODO - bigendian once we have test coverage.
+ if (IsLE) {
+ APInt DemandedSrcBits = APInt::getZero(SrcVT.getSizeInBits());
+ for (unsigned i = 0; i != NumElts; ++i)
----------------
arsenm wrote:
Braces
https://github.com/llvm/llvm-project/pull/133717
More information about the llvm-commits
mailing list