Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp363 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqualImpl() local
368 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqualImpl()
369 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqualImpl()
370 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqualImpl()
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DValueTracking.cpp6954 const ICmpInst *LHSCmp = dyn_cast<ICmpInst>(LHS); in isImpliedCondition() local
6955 if (LHSCmp) in isImpliedCondition()
6956 return isImpliedCondICmps(LHSCmp, RHSPred, RHSOp0, RHSOp1, DL, LHSIsTrue, in isImpliedCondition()
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGExprScalar.cpp3409 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local
3411 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()