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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp327 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
332 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) &&
333 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) &&
334 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp5547 const ICmpInst *LHSCmp = dyn_cast<ICmpInst>(LHS); local
5549 if (LHSCmp && RHSCmp)
5550 return isImpliedCondICmps(LHSCmp, RHSCmp, DL, LHSIsTrue, Depth);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp3072 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); local
3074 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or");

Completed in 137 milliseconds