Searched refs:noSignedZeros (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/IR/ |
D | Operator.h | 191 bool noSignedZeros() const { return 0 != (Flags & NoSignedZeros); } in noSignedZeros() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Operator.h | 202 bool noSignedZeros() const { return 0 != (Flags & NoSignedZeros); } in noSignedZeros() function
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 803 (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()
|
D | ValueTracking.cpp | 3724 if (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 4348 (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()
|
D | ValueTracking.cpp | 4557 if (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern() 4689 (!FMF.noSignedZeros() && !isKnownNonZero(CmpLHS) && in matchSelectPattern()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 1682 if (I.getFastMathFlags().noSignedZeros() && match(Op0, m_Zero())) { in visitFSub()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 2625 Flags.setNoSignedZeros(FMF.noSignedZeros()); in visitBinary()
|