Home
last modified time | relevance | path

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

/external/llvm/include/llvm/IR/
DOperator.h191 bool noSignedZeros() const { return 0 != (Flags & NoSignedZeros); } in noSignedZeros() function
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DOperator.h202 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/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp4348 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI))) in SimplifyFAddInst()
4381 (FMF.noSignedZeros() || CannotBeNegativeZero(Op0, Q.TLI))) in SimplifyFSubInst()
4391 if (FMF.noSignedZeros() && match(Op0, m_AnyZeroFP()) && in SimplifyFSubInst()
4416 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op1, m_AnyZeroFP())) in SimplifyFMulInst()
4425 FMF.allowReassoc() && FMF.noNaNs() && FMF.noSignedZeros()) in SimplifyFMulInst()
4462 if (FMF.noNaNs() && FMF.noSignedZeros() && match(Op0, m_AnyZeroFP())) in SimplifyFDivInst()
DValueTracking.cpp4557 if (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern()
4689 (!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()