Searched refs:KnownZeroRHS (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 596 APInt KnownZeroRHS(BitWidth, 0), KnownOneRHS(BitWidth, 0); in transformZExtICmp() local 599 ComputeMaskedBits(RHS, TypeMask, KnownZeroRHS, KnownOneRHS); in transformZExtICmp() 601 if (KnownZeroLHS == KnownZeroRHS && KnownOneLHS == KnownOneRHS) { in transformZExtICmp()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 673 APInt KnownZeroRHS(BitWidth, 0), KnownOneRHS(BitWidth, 0); in transformZExtICmp() local 675 computeKnownBits(RHS, KnownZeroRHS, KnownOneRHS, 0, &CI); in transformZExtICmp() 677 if (KnownZeroLHS == KnownZeroRHS && KnownOneLHS == KnownOneRHS) { in transformZExtICmp()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 8404 APInt KnownZeroRHS, KnownOneRHS; in computeMaskedBitsForTargetNode() local 8406 KnownZeroRHS, KnownOneRHS, Depth+1); in computeMaskedBitsForTargetNode() 8407 KnownZero &= KnownZeroRHS; in computeMaskedBitsForTargetNode()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 11651 APInt KnownZeroRHS, KnownOneRHS; in computeKnownBitsForTargetNode() local 11652 DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1); in computeKnownBitsForTargetNode() 11653 KnownZero &= KnownZeroRHS; in computeKnownBitsForTargetNode()
|