Searched refs:LBO (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2519 BinaryOperator *LBO = dyn_cast<BinaryOperator>(LHS); in SimplifyICmpInst() local 2521 if (MaxRecurse && (LBO || RBO)) { in SimplifyICmpInst() 2526 if (LBO && LBO->getOpcode() == Instruction::Add) { in SimplifyICmpInst() 2527 A = LBO->getOperand(0); B = LBO->getOperand(1); in SimplifyICmpInst() 2529 (CmpInst::isUnsigned(Pred) && LBO->hasNoUnsignedWrap()) || in SimplifyICmpInst() 2530 (CmpInst::isSigned(Pred) && LBO->hasNoSignedWrap()); in SimplifyICmpInst() 2582 if (LBO && match(LBO, m_CombineOr(m_Or(m_Value(), m_Specific(RHS)), in SimplifyICmpInst() 2599 if (LBO && match(LBO, m_CombineOr(m_And(m_Value(), m_Specific(RHS)), in SimplifyICmpInst() 2638 if (LBO && match(LBO, m_URem(m_Value(), m_Specific(RHS)))) { in SimplifyICmpInst() 2700 if (LBO && match(LBO, m_UDiv(m_Specific(RHS), m_Value()))) { in SimplifyICmpInst() [all …]
|