Home | History | Annotate | Download | only in InstCombine

Lines Matching defs:Cond

2111       FCmpInst *Cond = cast<FCmpInst>(BI.getCondition());
2112 Cond->setPredicate(FCmpInst::getInversePredicate(FPred));
2116 Worklist.Add(Cond);
2128 ICmpInst *Cond = cast<ICmpInst>(BI.getCondition());
2129 Cond->setPredicate(ICmpInst::getInversePredicate(IPred));
2132 Worklist.Add(Cond);
2140 Value *Cond = SI.getCondition();
2141 unsigned BitWidth = cast<IntegerType>(Cond->getType())->getBitWidth();
2143 computeKnownBits(Cond, KnownZero, KnownOne, 0, &SI);
2175 if (Instruction *I = dyn_cast<Instruction>(Cond)) {
2186 ? ConstantExpr::getZExt(CaseVal, Cond->getType())
2187 : ConstantExpr::getSExt(CaseVal, Cond->getType());
2962 if (ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition())) {
2966 if (i.getCaseValue() == Cond) {