Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1717 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) || in visitSelectInst()
1719 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(X))))) { in visitSelectInst()
DInstCombineMulDivRem.cpp491 if (match(Op0, m_OneUse(m_FSub(m_Constant(C1), m_Value(X))))) { in visitFMul()
DInstCombineAddSub.cpp1858 if (match(Op1, m_OneUse(m_FSub(m_Value(X), m_Value(Y))))) { in visitFSub()
DInstCombineCalls.cpp2455 if ((match(Arg0, m_OneUse(m_FSub(m_Value(A), m_Value(B)))) && in visitCallInst()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h657 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function
666 return m_FSub(m_NegZeroFP(), X); in m_FNeg()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPatternMatch.h310 m_FSub(const LHS &L, const RHS &R) { in m_FSub() function
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp810 if (match(Op1, m_FSub(m_AnyZero(), m_Specific(Op0)))) in SimplifyFAddInst()
812 else if (match(Op0, m_FSub(m_AnyZero(), m_Specific(Op1)))) in SimplifyFAddInst()
844 if (match(Op0, m_NegZero()) && match(Op1, m_FSub(m_NegZero(), m_Value(X)))) in SimplifyFSubInst()
849 match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) in SimplifyFSubInst()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp4358 if (FMF.noNaNs() && (match(Op0, m_FSub(m_AnyZeroFP(), m_Specific(Op1))) || in SimplifyFAddInst()
4359 match(Op1, m_FSub(m_AnyZeroFP(), m_Specific(Op0))))) in SimplifyFAddInst()
4387 match(Op1, m_FSub(m_NegZeroFP(), m_Value(X)))) in SimplifyFSubInst()
4392 match(Op1, m_FSub(m_AnyZeroFP(), m_Value(X)))) in SimplifyFSubInst()
/external/llvm/include/llvm/IR/
DPatternMatch.h452 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L, in m_FSub() function