Searched defs:BCst (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp457 ConstantInt *BCst = dyn_cast<ConstantInt>(B); local
462 bool icmp_bbit = (BCst && !BCst->isZero() &&
463 BCst->getValue().isPowerOf2());
512 } else if (BCst && CCst &&
513 ConstantExpr::getAnd(BCst, CCst) == CCst) {
763 ConstantInt *BCst = dyn_cast<ConstantInt>(B); local
764 if (!BCst) return nullptr;
774 APInt NewMask = BCst->getValue() & DCst->getValue();
776 if (NewMask == BCst
[all...]

Completed in 556 milliseconds