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.cpp1879 if ((LHS0 == RHS0 || LHS0 == RHS1) && match(LHS1, m_PosZeroFP())) in simplifyAndOrOfFCmps()
1892 if ((RHS0 == LHS0 || RHS0 == LHS1) && match(RHS1, m_PosZeroFP())) in simplifyAndOrOfFCmps()
5675 if (match(Op1, m_PosZeroFP()) && in simplifyFAddInst()
5732 if (match(Op1, m_PosZeroFP())) in simplifyFSubInst()
5955 if (match(Op0, m_PosZeroFP())) in simplifyFRemInst()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp8106 if (!match(Op0, m_PosZeroFP()) && in visitFCmpInst()
8110 if (!match(Op1, m_PosZeroFP()) && in visitFCmpInst()
8140 if (match(Op1, m_AnyZeroFP()) && !match(Op1, m_PosZeroFP())) in visitFCmpInst()
8191 if (match(Op1, m_PosZeroFP()) && in visitFCmpInst()
H A DInstCombineSelect.cpp2843 if (match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) { in foldSelectWithFCmpToFabs()
3545 if (match(Cmp1, m_PosZeroFP()) && in matchFMulByZeroIfResultEqZero()
H A DInstCombineAndOrXor.cpp1428 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
H A DInstCombineMulDivRem.cpp1738 (match(I.getOperand(1), m_PosZeroFP()) || in foldFDivConstantDivisor()
H A DInstCombineCalls.cpp2512 (match(II->getArgOperand(2), m_PosZeroFP()) && in visitCallInst()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h773 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function