Searched refs:AndCST (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1147 case Instruction::And: // (icmp pred (and X, AndCST), RHS)
1150 ConstantInt *AndCST = cast<ConstantInt>(LHSI->getOperand(1)); local
1161 (!AndCST->isNegative() && RHSV.isNonNegative())) {
1164 ConstantExpr::getZExt(AndCST, Cast->getSrcTy()));
1180 ConstantExpr::getTrunc(AndCST, Ty));
1198 Type *AndTy = AndCST->getType(); // Type of the and.
1218 AndCST->getValue()) == 0)
1247 NewAndCST = ConstantExpr::getLShr(AndCST, ShAmt);
1249 NewAndCST = ConstantExpr::getShl(AndCST, ShAmt);
1267 NS = Builder->CreateShl(AndCST, Shif
[all...]

Completed in 123 milliseconds