/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 214 bool Instruction::hasNoSignedZeros() const { in hasNoSignedZeros() function in Instruction 216 return cast<FPMathOperator>(this)->hasNoSignedZeros(); in hasNoSignedZeros() 639 cast<FPMathOperator>(this)->hasNoSignedZeros(); in isAssociative()
|
D | AsmWriter.cpp | 1265 if (FPO->hasNoSignedZeros()) in WriteOptimizationInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 427 assert(I->hasAllowReassoc() && I->hasNoSignedZeros() && in simplify() 1435 assert(I.hasAllowReassoc() && I.hasNoSignedZeros() && in factorizeFAddFSub() 1574 if (I.hasAllowReassoc() && I.hasNoSignedZeros()) { in visitFAdd() 2167 if (I.hasNoSignedZeros() && in visitFNeg() 2189 if (I.hasNoSignedZeros() && match(Op0, m_PosZeroFP())) in visitFSub() 2207 if (I.hasNoSignedZeros() || CannotBeNegativeZero(Op0, SQ.TLI)) { in visitFSub() 2258 if (I.hasAllowReassoc() && I.hasNoSignedZeros()) { in visitFSub()
|
D | InstCombineSelect.cpp | 103 if (!BO->hasNoSignedZeros() && !CannotBeNegativeZero(Y, &TLI)) in foldSelectBinOpIdentity() 2495 FNeg->hasNoNaNs() && FNeg->hasNoSignedZeros() && in visitSelectInst() 2507 FNeg->hasNoNaNs() && FNeg->hasNoSignedZeros() && in visitSelectInst() 2634 if (isa<FPMathOperator>(SI) && SI.hasNoNaNs() && SI.hasNoSignedZeros()) { in visitSelectInst()
|
D | InstCombineMulDivRem.cpp | 496 if (I.hasNoNaNs() && I.hasNoSignedZeros() && Op0 == Op1 && in visitFMul()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.h | 327 bool hasNoSignedZeros() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Instruction.h | 416 bool hasNoSignedZeros() const;
|
D | Operator.h | 343 bool hasNoSignedZeros() const { in hasNoSignedZeros() function
|
D | PatternMatch.h | 819 if (FPMO->hasNoSignedZeros()) { in match()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | Float2Int.cpp | 322 !I->hasNoSignedZeros())) { in walkForwards()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.h | 155 return Flags.hasNoSignedZeros(); in mayIgnoreSignedZero()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGDumper.cpp | 535 if (getFlags().hasNoSignedZeros()) in print_details()
|
D | InstrEmitter.cpp | 856 if (Flags.hasNoSignedZeros()) in EmitMachineNode()
|
D | TargetLowering.cpp | 5530 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5546 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5569 if (!Options.NoSignedZerosFPMath && !Flags.hasNoSignedZeros()) in isNegatibleForFree() 5631 Flags.hasNoSignedZeros()) && in getNegatedExpression() 5680 Flags.hasNoSignedZeros()) && in getNegatedExpression()
|
D | DAGCombiner.cpp | 988 if (!Flags.hasAllowReassociation() || !Flags.hasNoSignedZeros()) in reassociateOps() 12151 if (N1C->isNegative() || Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros()) in visitFADD() 12210 (Flags.hasAllowReassociation() && Flags.hasNoSignedZeros())) && in visitFADD() 12329 Flags.hasNoSignedZeros()) { in visitFSUB() 12347 (Options.NoSignedZerosFPMath || Flags.hasNoSignedZeros())) { in visitFSUB() 12356 (Flags.hasAllowReassociation() && Flags.hasNoSignedZeros())) && in visitFSUB() 12426 (Flags.hasNoNaNs() && Flags.hasNoSignedZeros())) { in visitFMUL() 12477 if (Flags.hasNoNaNs() && Flags.hasNoSignedZeros() && in visitFMUL() 12946 if (!Flags.hasNoSignedZeros() || !Flags.hasNoInfs() || !Flags.hasNoNaNs() || in visitFPOW() 12977 if ((!Flags.hasNoSignedZeros() && ExponentIs025) || !Flags.hasNoInfs() || in visitFPOW() [all …]
|
D | SelectionDAG.cpp | 9183 if (!Flags.hasNoSignedZeros() || !Flags.hasAllowReassociation()) in matchBinOpReduction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 396 setNoSignedZeros(FPMO.hasNoSignedZeros()); 464 bool hasNoSignedZeros() const { return NoSignedZeros; }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 3008 if (FPO->hasNoSignedZeros()) in CannotBeNegativeZero() 3149 return CI->hasNoNaNs() && (CI->hasNoSignedZeros() || in cannotBeOrderedLessThanZeroImpl()
|
D | InstructionSimplify.cpp | 3958 Q.CxtI->hasNoSignedZeros(); in simplifySelectWithFCmp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SimplifyLibCalls.cpp | 1657 if (!Pow->hasNoSignedZeros()) { in replacePowWithSqrt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 1409 if (FPMO->hasNoSignedZeros()) in getOptimizationFlags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 42583 Arg->getFlags().hasNoSignedZeros() && Subtarget.hasAnyFMA()) { in combineFneg()
|