Home
last modified time | relevance | path

Searched refs:LHSCmp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp389 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqualImpl() local
394 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqualImpl()
395 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqualImpl()
396 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqualImpl()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp9194 const ICmpInst *LHSCmp = dyn_cast<ICmpInst>(LHS); in isImpliedCondition() local
9195 if (LHSCmp) in isImpliedCondition()
9196 return isImpliedCondICmps(LHSCmp, RHSPred, RHSOp0, RHSOp1, DL, LHSIsTrue); in isImpliedCondition()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3714 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local
3716 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()