Searched refs:m_PosZeroFP (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 1879 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 D | InstCombineCompares.cpp | 8106 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 D | InstCombineSelect.cpp | 2843 if (match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) { in foldSelectWithFCmpToFabs() 3545 if (match(Cmp1, m_PosZeroFP()) && in matchFMulByZeroIfResultEqZero()
|
H A D | InstCombineAndOrXor.cpp | 1428 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
|
H A D | InstCombineMulDivRem.cpp | 1738 (match(I.getOperand(1), m_PosZeroFP()) || in foldFDivConstantDivisor()
|
H A D | InstCombineCalls.cpp | 2512 (match(II->getArgOperand(2), m_PosZeroFP()) && in visitCallInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 773 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function
|