/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | 428 if (match(FCmp, m_Zero())) 438 if (match(FCmp, m_One()) && match(TCmp, m_Zero())) 547 if (match(Op1, m_Zero())) 676 if (match(Op1, m_Zero())) 684 if (isNUW && match(Op0, m_Zero())) 806 if (match(Op1, m_Zero()) && [all...] |
VectorUtils.cpp | 238 while (LastOperand > 1 && match(Gep->getOperand(LastOperand), m_Zero())) {
|
ValueTracking.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSelect.cpp | 308 if (!match(CmpRHS, m_Zero())) 366 if (!ICI->isEquality() || !match(CmpRHS, m_Zero())) 554 match(CmpRHS, m_Zero())) { 557 } else if (Pred == ICmpInst::ICMP_SLT && match(CmpRHS, m_Zero())) { 762 if (!match(IC->getOperand(1), m_Zero())) [all...] |
InstCombineAddSub.cpp | [all...] |
InstCombineCompares.cpp | [all...] |
InstructionCombining.cpp | [all...] |
InstCombineMulDivRem.cpp | [all...] |
InstCombineAndOrXor.cpp | [all...] |
/external/llvm/lib/IR/ |
ConstantFold.cpp | [all...] |
/external/llvm/include/llvm/IR/ |
PatternMatch.h | 137 inline match_zero m_Zero() { return match_zero(); } 157 return m_CombineOr(m_Zero(), m_NegZero()); [all...] |