Searched refs:m_PosZeroFP (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCompares.cpp | 6862 if (!match(Op0, m_PosZeroFP()) && isKnownNeverNaN(Op0, &TLI)) in visitFCmpInst() 6865 if (!match(Op1, m_PosZeroFP()) && isKnownNeverNaN(Op1, &TLI)) in visitFCmpInst() 6894 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) in visitFCmpInst() 6899 if (match(Op1, m_PosZeroFP()) && in visitFCmpInst()
|
H A D | InstCombineMulDivRem.cpp | 551 if (I.hasNoNaNs() && match(Op1, m_PosZeroFP())) { in visitFMul()
|
H A D | InstCombineAndOrXor.cpp | 1300 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
|
H A D | InstCombineSelect.cpp | 2616 if (match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) { in foldSelectWithFCmpToFabs()
|
H A D | InstCombineCalls.cpp | 1978 (match(II->getArgOperand(2), m_PosZeroFP()) && in visitCallInst()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 5395 if (match(Op1, m_PosZeroFP()) && in simplifyFAddInst() 5452 if (match(Op1, m_PosZeroFP())) in simplifyFSubInst() 5669 if (match(Op0, m_PosZeroFP())) in simplifyFRemInst()
|
H A D | ValueTracking.cpp | 3532 if (match(Op, m_FAdd(m_Value(), m_PosZeroFP()))) in CannotBeNegativeZero()
|
/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 673 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function
|