Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1832 match(LHS1, m_PosZeroFP())) in simplifyAndOrOfFCmps()
1847 match(RHS1, m_PosZeroFP())) in simplifyAndOrOfFCmps()
5712 if (match(Op1, m_PosZeroFP()) && in simplifyFAddInst()
5769 if (match(Op1, m_PosZeroFP())) in simplifyFSubInst()
5994 if (match(Op0, m_PosZeroFP())) in simplifyFRemInst()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp8329 if (!match(I.getOperand(1), m_PosZeroFP())) in foldSqrtWithFcmpZero()
8573 if (!match(Op0, m_PosZeroFP()) && in visitFCmpInst()
8577 if (!match(Op1, m_PosZeroFP()) && in visitFCmpInst()
8607 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) in visitFCmpInst()
8658 if (match(Op1, m_PosZeroFP()) && in visitFCmpInst()
H A DInstCombineSelect.cpp2900 if (match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X))) && in foldSelectWithFCmpToFabs()
3750 if (match(Cmp1, m_PosZeroFP()) && in matchFMulByZeroIfResultEqZero()
H A DInstCombineAndOrXor.cpp1468 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) { in foldLogicOfFCmps()
H A DInstCombineMulDivRem.cpp1906 (match(I.getOperand(1), m_PosZeroFP()) || in foldFDivConstantDivisor()
H A DInstCombineCalls.cpp2797 (match(Src2, m_PosZeroFP()) && II->getFastMathFlags().noSignedZeros())) in visitCallInst()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h775 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function