Searched refs:LeadZ (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ValueTracking.cpp | 214 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in ComputeMaskedBits() local 219 LeadZ = std::min(LeadZ, BitWidth); in ComputeMaskedBits() 221 APInt::getHighBitsSet(BitWidth, LeadZ); in ComputeMaskedBits() 232 unsigned LeadZ = KnownZero2.countLeadingOnes(); in ComputeMaskedBits() local 240 LeadZ = std::min(BitWidth, in ComputeMaskedBits() 241 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1); in ComputeMaskedBits() 243 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask; in ComputeMaskedBits()
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 354 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in computeKnownBitsMul() local 359 LeadZ = std::min(LeadZ, BitWidth); in computeKnownBitsMul() 361 APInt::getHighBitsSet(BitWidth, LeadZ); in computeKnownBitsMul() 940 unsigned LeadZ = KnownZero2.countLeadingOnes(); in computeKnownBitsFromOperator() local 947 LeadZ = std::min(BitWidth, in computeKnownBitsFromOperator() 948 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1); in computeKnownBitsFromOperator() 950 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ); in computeKnownBitsFromOperator()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1681 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in ComputeMaskedBits() local 1686 LeadZ = std::min(LeadZ, BitWidth); in ComputeMaskedBits() 1688 APInt::getHighBitsSet(BitWidth, LeadZ); in ComputeMaskedBits() 1699 unsigned LeadZ = KnownZero2.countLeadingOnes(); in ComputeMaskedBits() local 1707 LeadZ = std::min(BitWidth, in ComputeMaskedBits() 1708 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1); in ComputeMaskedBits() 1710 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask; in ComputeMaskedBits()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2080 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + in computeKnownBits() local 2085 LeadZ = std::min(LeadZ, BitWidth); in computeKnownBits() 2087 APInt::getHighBitsSet(BitWidth, LeadZ); in computeKnownBits() 2095 unsigned LeadZ = KnownZero2.countLeadingOnes(); in computeKnownBits() local 2102 LeadZ = std::min(BitWidth, in computeKnownBits() 2103 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1); in computeKnownBits() 2105 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ); in computeKnownBits()
|