Lines Matching defs:Known3
763 KnownBits Known3(Known.getBitWidth());
765 computeKnownBitsFromCond(V, B, Known3, Depth + 1, SQ, Invert);
768 Known2 = Known2.unionWith(Known3);
770 Known2 = Known2.intersectWith(Known3);
1483 KnownBits Known3(BitWidth);
1485 computeKnownBits(L, DemandedElts, Known3, Depth + 1, RecQ);
1488 Known3.countMinTrailingZeros()));
1502 if (Known2.isNonNegative() && Known3.isNonNegative())
1504 else if (Known2.isNegative() && Known3.isNegative())
1511 if (Known2.isNonNegative() && Known3.isNegative())
1513 else if (Known2.isNegative() && Known3.isNonNegative())
1519 Known3.isNonNegative())
1692 KnownBits Known3(BitWidth);
1694 computeKnownBits(I->getOperand(1), DemandedElts, Known3, Depth + 1, Q);
1697 Known2.Zero.shl(ShiftAmt) | Known3.Zero.lshr(BitWidth - ShiftAmt);
1699 Known2.One.shl(ShiftAmt) | Known3.One.lshr(BitWidth - ShiftAmt);