Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp392 CmpInst *RHSCmp = cast<CmpInst>(RHSI); 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.cpp9226 if (const ICmpInst *RHSCmp = dyn_cast<ICmpInst>(RHS)) { in isImpliedCondition() local
9228 LHS, RHSCmp->getPredicate(), RHSCmp->getOperand(0), in isImpliedCondition()
9229 RHSCmp->getOperand(1), DL, LHSIsTrue, Depth)) in isImpliedCondition()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3715 llvm::Value *RHSCmp = Builder.CreateICmpNE(Ops.RHS, NegOne); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local
3716 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()