forked from OSchip/llvm-project
[SelectionDAG] Assert on the width of DemandedElts argument to computeKnownBits for all vector typed operations not just build_vector.
Fix AArch64 unit test that fails with the assertion added. llvm-svn: 346437
This commit is contained in:
parent
e61652a384
commit
8cca8bd4aa
|
@ -2195,6 +2195,9 @@ KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
|
|||
|
||||
KnownBits Known2;
|
||||
unsigned NumElts = DemandedElts.getBitWidth();
|
||||
assert(!Op.getValueType().isVector() ||
|
||||
NumElts == Op.getValueType().getVectorNumElements() &&
|
||||
"Unexpected vector size");
|
||||
|
||||
if (!DemandedElts)
|
||||
return Known; // No demanded elts, better to assume we don't know anything.
|
||||
|
@ -2203,8 +2206,6 @@ KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
|
|||
switch (Opcode) {
|
||||
case ISD::BUILD_VECTOR:
|
||||
// Collect the known bits that are shared by every demanded vector element.
|
||||
assert(NumElts == Op.getValueType().getVectorNumElements() &&
|
||||
"Unexpected vector size");
|
||||
Known.Zero.setAllBits(); Known.One.setAllBits();
|
||||
for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
|
||||
if (!DemandedElts[i])
|
||||
|
|
|
@ -88,7 +88,7 @@ TEST_F(AArch64SelectionDAGTest, computeKnownBits_ZERO_EXTEND_VECTOR_INREG) {
|
|||
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
||||
auto InVec = DAG->getConstant(0, Loc, InVecVT);
|
||||
auto Op = DAG->getNode(ISD::ZERO_EXTEND_VECTOR_INREG, Loc, OutVecVT, InVec);
|
||||
auto DemandedElts = APInt(4, 15);
|
||||
auto DemandedElts = APInt(2, 3);
|
||||
KnownBits Known;
|
||||
DAG->computeKnownBits(Op, Known, DemandedElts);
|
||||
EXPECT_TRUE(Known.isZero());
|
||||
|
@ -120,7 +120,7 @@ TEST_F(AArch64SelectionDAGTest, ComputeNumSignBits_SIGN_EXTEND_VECTOR_INREG) {
|
|||
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
||||
auto InVec = DAG->getConstant(1, Loc, InVecVT);
|
||||
auto Op = DAG->getNode(ISD::SIGN_EXTEND_VECTOR_INREG, Loc, OutVecVT, InVec);
|
||||
auto DemandedElts = APInt(4, 15);
|
||||
auto DemandedElts = APInt(2, 3);
|
||||
EXPECT_EQ(DAG->ComputeNumSignBits(Op, DemandedElts), 15u);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue