Lines Matching full:bcst
446 ConstantInt *BCst = dyn_cast<ConstantInt>(B);
451 bool icmp_bbit = (BCst && !BCst->isZero() &&
452 BCst->getValue().isPowerOf2());
499 } else if (BCst && CCst &&
500 ConstantExpr::getAnd(BCst, CCst) == CCst) {
749 ConstantInt *BCst = dyn_cast<ConstantInt>(B);
750 if (!BCst) return nullptr;
760 APInt NewMask = BCst->getValue() & DCst->getValue();
762 if (NewMask == BCst->getValue())
772 APInt NewMask = BCst->getValue() | DCst->getValue();
774 if (NewMask == BCst->getValue())
795 CCst = cast<ConstantInt>(ConstantExpr::getXor(BCst, CCst));
800 if (((BCst->getValue() & DCst->getValue()) &