Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp6098 !match(I.getOperand(1), m_PosZeroFP())) in foldFabsWithFcmpZero()
6203 if (!match(Op0, m_PosZeroFP()) && isKnownNeverNaN(Op0, &TLI)) in visitFCmpInst()
6206 if (!match(Op1, m_PosZeroFP()) && isKnownNeverNaN(Op1, &TLI)) in visitFCmpInst()
6232 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) in visitFCmpInst()
H A DInstCombineSelect.cpp2854 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(FalseVal))) && in visitSelectInst()
2862 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(TrueVal))) && in visitSelectInst()
H A DInstCombineAndOrXor.cpp1471 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
H A DInstCombineCalls.cpp1424 (match(II->getArgOperand(2), m_PosZeroFP()) && in visitCallInst()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4838 if (match(Op1, m_PosZeroFP()) && in SimplifyFAddInst()
4881 if (match(Op1, m_PosZeroFP())) in SimplifyFSubInst()
5039 if (match(Op0, m_PosZeroFP())) in SimplifyFRemInst()
H A DValueTracking.cpp3411 if (match(Op, m_FAdd(m_Value(), m_PosZeroFP()))) in CannotBeNegativeZero()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DPatternMatch.h705 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function