Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp163 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqual() local
168 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()
169 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()
170 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp216 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { in isEqual() local
221 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && in isEqual()
222 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && in isEqual()
223 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); in isEqual()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DValueTracking.cpp5121 const ICmpInst *LHSCmp = dyn_cast<ICmpInst>(LHS); in isImpliedCondition() local
5123 if (LHSCmp && RHSCmp) in isImpliedCondition()
5124 return isImpliedCondICmps(LHSCmp, RHSCmp, DL, LHSIsTrue, Depth); in isImpliedCondition()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2246 llvm::Value *LHSCmp = Builder.CreateICmpNE(Ops.LHS, IntMin); in EmitUndefinedBehaviorIntegerDivAndRemCheck() local
2248 llvm::Value *NotOverflow = Builder.CreateOr(LHSCmp, RHSCmp, "or"); in EmitUndefinedBehaviorIntegerDivAndRemCheck()