Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1717 match(TrueVal, m_FSub(m_PosZeroFP(), m_Specific(X)))) || in visitSelectInst()
1719 match(FalseVal, m_FSub(m_PosZeroFP(), m_Specific(X))))) { in visitSelectInst()
DInstCombineAndOrXor.cpp1125 if (match(LHS1, m_PosZeroFP()) && match(RHS1, m_PosZeroFP())) in foldLogicOfFCmps()
DInstCombineAddSub.cpp1847 if (I.hasNoSignedZeros() && match(Op0, m_PosZeroFP())) in visitFSub()
DInstCombineCalls.cpp2444 bool Arg0IsZero = match(Arg0, m_PosZeroFP()); in visitCallInst()
2456 match(Arg1, m_PosZeroFP()) && isa<Instruction>(Arg0) && in visitCallInst()
DInstCombineCompares.cpp5164 if (!match(Op0, m_PosZeroFP()) && isKnownNeverNaN(Op0)) { in visitFCmpInst()
5168 if (!match(Op1, m_PosZeroFP()) && isKnownNeverNaN(Op1)) { in visitFCmpInst()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp4347 if (match(Op1, m_PosZeroFP()) && in SimplifyFAddInst()
4376 if (match(Op1, m_PosZeroFP())) in SimplifyFSubInst()
4507 if (match(Op0, m_PosZeroFP())) in SimplifyFRemInst()
DValueTracking.cpp2711 if (match(Op, m_FAdd(m_Value(), m_PosZeroFP()))) in CannotBeNegativeZero()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPatternMatch.h442 inline cstfp_pred_ty<is_pos_zero_fp> m_PosZeroFP() { in m_PosZeroFP() function