Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp355 CmpInst *RHSCmp = cast<CmpInst>(RHSI); in isEqualImpl() local
357 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqualImpl()
358 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqualImpl()
359 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqualImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DValueTracking.cpp6561 const ICmpInst *RHSCmp = dyn_cast<ICmpInst>(RHS); in isImpliedCondition() local
6562 if (RHSCmp) in isImpliedCondition()
6563 return isImpliedCondition(LHS, RHSCmp->getPredicate(), in isImpliedCondition()
6564 RHSCmp->getOperand(0), RHSCmp->getOperand(1), DL, in isImpliedCondition()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp3166 llvm::Value *RHSCmp = Builder.CreateICmpNE(Ops.RHS, NegOne); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local
3167 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()