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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6756 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask); local
6757 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6760 if (NotMaskLZ == 64) return Result; // All zero mask.
6763 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6766 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6767 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6768 NotMaskLZ -= 64-V.getValueSizeInBits();
6770 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;

Completed in 46 milliseconds