Home
last modified time | relevance | path

Searched refs:m_PosZeroFP (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp2474 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(FalseVal))) && in visitSelectInst()
2482 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(TrueVal))) && in visitSelectInst()
DInstCombineCompares.cpp5973 !match(I.getOperand(1), m_PosZeroFP())) in foldFabsWithFcmpZero()
6079 if (!match(Op0, m_PosZeroFP()) && isKnownNeverNaN(Op0, &TLI)) { in visitFCmpInst()
6083 if (!match(Op1, m_PosZeroFP()) && isKnownNeverNaN(Op1, &TLI)) { in visitFCmpInst()
6111 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) { in visitFCmpInst()
DInstCombineAndOrXor.cpp1399 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
DInstCombineAddSub.cpp2189 if (I.hasNoSignedZeros() && match(Op0, m_PosZeroFP())) in visitFSub()
DInstCombineCalls.cpp2694 bool Arg0IsZero = match(Arg0, m_PosZeroFP()); in visitCallInst()
2706 match(Arg1, m_PosZeroFP()) && isa<Instruction>(Arg0) && in visitCallInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInstructionSimplify.cpp4591 if (match(Op1, m_PosZeroFP()) && in SimplifyFAddInst()
4634 if (match(Op1, m_PosZeroFP())) in SimplifyFSubInst()
4792 if (match(Op0, m_PosZeroFP())) in SimplifyFRemInst()
DValueTracking.cpp3012 if (match(Op, m_FAdd(m_Value(), m_PosZeroFP()))) in CannotBeNegativeZero()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPatternMatch.h547 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function