Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp618 if (!match(RHS, m_FSub(m_FPOne(), m_UIToFP(m_Value(C))))) in visitFMul()
621 if (match(RHS, m_FSub(m_FPOne(), m_UIToFP(m_Value(C)))) && in visitFMul()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp805 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0)))) in SimplifyFAddInst()
807 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1)))) in SimplifyFAddInst()
843 if (match(Op1, m_FSub(m_NegZero(), m_Value(X)))) in SimplifyFSubInst()
845 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) in SimplifyFSubInst()
/external/llvm/include/llvm/IR/
DPatternMatch.h413 m_FSub(const LHS &L, const RHS &R) { in m_FSub() function