Searched refs:NTZ (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp783 unsigned NTZ = DemandedMask.countTrailingZeros(); local
785 // Round NTZ down to the next byte. If we have 11 trailing zeros, then
789 NTZ &= ~7;
791 if (BitWidth-NLZ-NTZ == 8) {
792 unsigned ResultBit = NTZ;
793 unsigned InputBit = BitWidth-NTZ-8;
H A DInstCombineCompares.cpp1272 unsigned NTZ = AndCST->getValue().countTrailingZeros(); local
1273 if ((NTZ < AndCST->getBitWidth()) &&
1274 APInt::getOneBitSet(AndCST->getBitWidth(), NTZ).ugt(RHSV))

Completed in 126 milliseconds