Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp577 if (!match(RHS, m_FSub(m_FPOne(), m_UIToFP(m_Value(C))))) in visitFMul()
580 if (match(RHS, m_FSub(m_FPOne(), m_UIToFP(m_Value(C)))) && in visitFMul()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp892 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0)))) in SimplifyFAddInst()
894 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1)))) in SimplifyFAddInst()
930 if (match(Op1, m_FSub(m_NegZero(), m_Value(X)))) in SimplifyFSubInst()
932 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) in SimplifyFSubInst()
/external/llvm/include/llvm/Support/
DPatternMatch.h413 m_FSub(const LHS &L, const RHS &R) { in m_FSub() function