Searched refs:LHSCmp (Results 1 – 4 of 4) sorted by relevance
163 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqual() local168 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()169 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()170 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
216 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqual() local221 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()222 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()223 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
5121 const ICmpInst *LHSCmp = dyn_cast<ICmpInst>(LHS); in isImpliedCondition() local5123 if (LHSCmp && RHSCmp) in isImpliedCondition()5124 return isImpliedCondICmps(LHSCmp, RHSCmp, DL, LHSIsTrue, Depth); in isImpliedCondition()
2246 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local2248 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()