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/ |
D | InstCombineSelect.cpp | 2474 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(FalseVal))) && in visitSelectInst() 2482 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(TrueVal))) && in visitSelectInst()
|
D | InstCombineCompares.cpp | 5973 !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()
|
D | InstCombineAndOrXor.cpp | 1399 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
|
D | InstCombineAddSub.cpp | 2189 if (I.hasNoSignedZeros() && match(Op0, m_PosZeroFP())) in visitFSub()
|
D | InstCombineCalls.cpp | 2694 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/ |
D | InstructionSimplify.cpp | 4591 if (match(Op1, m_PosZeroFP()) && in SimplifyFAddInst() 4634 if (match(Op1, m_PosZeroFP())) in SimplifyFSubInst() 4792 if (match(Op0, m_PosZeroFP())) in SimplifyFRemInst()
|
D | ValueTracking.cpp | 3012 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/ |
D | PatternMatch.h | 547 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function
|