Home
last modified time | relevance | path

Searched refs:noSignedZeros (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/IR/
DOperator.h191 bool noSignedZeros() const { return 0 != (Flags & NoSignedZeros); } in noSignedZeros() function
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp807 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0))) in SimplifyFAddInst()
846 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0))) in SimplifyFSubInst()
854 if (FMF.noSignedZeros() && match(Op1, m_FSub(m_AnyZero(), m_Value(X)))) in SimplifyFSubInst()
886 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero())) in SimplifyFMulInst()
1127 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) in SimplifyFDivInst()
1267 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) in SimplifyFRemInst()
DValueTracking.cpp3875 if (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp1702 if (I.getFastMathFlags().noSignedZeros() && match(Op0, m_Zero())) { in visitFSub()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2329 Flags.setNoSignedZeros(FMF.noSignedZeros()); in visitBinary()