[llvm] 6f0da46 - [X86] getFauxShuffleMask - drop unnecessary computeKnownBits OR(X,Y) shuffle decoding.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 4 08:00:12 PDT 2020
Author: Simon Pilgrim
Date: 2020-08-04T15:57:47+01:00
New Revision: 6f0da46d538ec3003584cc6ea4419f4403f19771
URL: https://github.com/llvm/llvm-project/commit/6f0da46d538ec3003584cc6ea4419f4403f19771
DIFF: https://github.com/llvm/llvm-project/commit/6f0da46d538ec3003584cc6ea4419f4403f19771.diff
LOG: [X86] getFauxShuffleMask - drop unnecessary computeKnownBits OR(X,Y) shuffle decoding.
Now that rG47cea9e82dda941e lets us aggressively decode multi-use shuffles for the OR(SHUFFLE(),SHUFFLE()) case we don't need the computeKnownBits variant any more.
Added:
Modified:
llvm/lib/Target/X86/X86ISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index df88bdad1d47..25bd7609fc54 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -7360,40 +7360,6 @@ static bool getFauxShuffleMask(SDValue N, const APInt &DemandedElts,
return true;
}
case ISD::OR: {
- // Inspect each operand at the byte level. We can merge these into a
- // blend shuffle mask if for each byte at least one is masked out (zero).
- KnownBits Known0 =
- DAG.computeKnownBits(N.getOperand(0), DemandedElts, Depth + 1);
- KnownBits Known1 =
- DAG.computeKnownBits(N.getOperand(1), DemandedElts, Depth + 1);
- if (Known0.One.isNullValue() && Known1.One.isNullValue()) {
- bool IsByteMask = true;
- APInt ZeroMask = APInt::getNullValue(NumBytesPerElt);
- APInt SelectMask = APInt::getNullValue(NumBytesPerElt);
- for (unsigned i = 0; i != NumBytesPerElt && IsByteMask; ++i) {
- unsigned LHS = Known0.Zero.extractBits(8, i * 8).getZExtValue();
- unsigned RHS = Known1.Zero.extractBits(8, i * 8).getZExtValue();
- if (LHS == 255 && RHS == 0)
- SelectMask.setBit(i);
- else if (LHS == 255 && RHS == 255)
- ZeroMask.setBit(i);
- else if (!(LHS == 0 && RHS == 255))
- IsByteMask = false;
- }
- if (IsByteMask) {
- for (unsigned i = 0; i != NumSizeInBytes; i += NumBytesPerElt) {
- for (unsigned j = 0; j != NumBytesPerElt; ++j) {
- unsigned Ofs = (SelectMask[j] ? NumSizeInBytes : 0);
- int Idx = (ZeroMask[j] ? (int)SM_SentinelZero : (i + j + Ofs));
- Mask.push_back(Idx);
- }
- }
- Ops.push_back(N.getOperand(0));
- Ops.push_back(N.getOperand(1));
- return true;
- }
- }
-
// Handle OR(SHUFFLE,SHUFFLE) case where one source is zero and the other
// is a valid shuffle index.
SDValue N0 = peekThroughBitcasts(N.getOperand(0));
More information about the llvm-commits
mailing list