/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1366 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in SimplifyLShrInst() local 1368 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros(); in SimplifyLShrInst() 2074 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in SimplifyAndInst() local 2075 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros(); in SimplifyAndInst() 2791 KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in simplifyICmpWithBinOp() local 2792 if (RHSKnown.isNonNegative() && YKnown.isNegative()) in simplifyICmpWithBinOp() 2794 if (RHSKnown.isNegative() || YKnown.isNonNegative()) in simplifyICmpWithBinOp() 2807 KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in simplifyICmpWithBinOp() local 2808 if (LHSKnown.isNonNegative() && YKnown.isNegative()) in simplifyICmpWithBinOp() 2810 if (LHSKnown.isNegative() || YKnown.isNonNegative()) in simplifyICmpWithBinOp()
|
D | ValueTracking.cpp | 2268 KnownBits YKnown = computeKnownBits(Y, Depth, Q); in isKnownNonZero() local 2272 if (XKnown.isNonNegative() && YKnown.isNonNegative()) in isKnownNonZero() 2278 if (XKnown.isNegative() && YKnown.isNegative()) { in isKnownNonZero() 2286 if (YKnown.One.intersects(Mask)) in isKnownNonZero() 2294 if (YKnown.isNonNegative() && in isKnownNonZero()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1361 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in SimplifyLShrInst() local 1363 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros(); in SimplifyLShrInst() 2134 const KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in SimplifyAndInst() local 2135 const unsigned EffWidthY = Width - YKnown.countMinLeadingZeros(); in SimplifyAndInst() 2786 KnownBits YKnown = computeKnownBits(Y, Q.DL, 0, Q.AC, Q.CxtI, Q.DT); in simplifyICmpWithBinOpOnLHS() local 2787 if (RHSKnown.isNonNegative() && YKnown.isNegative()) in simplifyICmpWithBinOpOnLHS() 2789 if (RHSKnown.isNegative() || YKnown.isNonNegative()) in simplifyICmpWithBinOpOnLHS()
|
D | ValueTracking.cpp | 2374 KnownBits YKnown = computeKnownBits(Y, DemandedElts, Depth, Q); in isKnownNonZero() local 2378 if (XKnown.isNonNegative() && YKnown.isNonNegative()) in isKnownNonZero() 2385 if (XKnown.isNegative() && YKnown.isNegative()) { in isKnownNonZero() 2393 if (YKnown.One.intersects(Mask)) in isKnownNonZero() 2401 if (YKnown.isNonNegative() && in isKnownNonZero()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1423 KnownBits YKnown = computeKnownBits(Y, 0, &Cmp); in foldICmpWithZero() local 1424 if (XKnown.countMaxPopulation() == 1 && YKnown.countMinPopulation() >= 2) in foldICmpWithZero()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1420 KnownBits YKnown = computeKnownBits(Y, 0, &Cmp); in foldICmpWithZero() local 1421 if (XKnown.countMaxPopulation() == 1 && YKnown.countMinPopulation() >= 2) in foldICmpWithZero()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 3850 KnownBits YKnown = DAG.computeKnownBits(N0.getOperand(1)); in SimplifySetCC() local 3851 if (XKnown.countMaxPopulation() == 1 && YKnown.countMinPopulation() >= 2) in SimplifySetCC()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 3545 KnownBits YKnown = DAG.computeKnownBits(N0.getOperand(1)); in SimplifySetCC() local 3546 if (XKnown.countMaxPopulation() == 1 && YKnown.countMinPopulation() >= 2) in SimplifySetCC()
|