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.cpp803 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI))) in SimplifyFAddInst()
839 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI))) in SimplifyFSubInst()
848 if (FMF.noSignedZeros() && match(Op0, m_AnyZero()) && in SimplifyFSubInst()
877 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZero())) in SimplifyFMulInst()
1112 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) in SimplifyFDivInst()
1249 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZero())) in SimplifyFRemInst()
DValueTracking.cpp3724 if (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp1682 if (I.getFastMathFlags().noSignedZeros() && match(Op0, m_Zero())) { in visitFSub()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2625 Flags.setNoSignedZeros(FMF.noSignedZeros()); in visitBinary()