Searched refs:NotMaskLZ (Results 1 – 3 of 3) sorted by relevance
6299 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask); in CheckForMaskedLoad() local6300 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()6303 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()6306 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64) in CheckForMaskedLoad()6310 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()6311 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()6313 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()
10759 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local10760 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()10763 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()10766 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()10770 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()10771 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()10773 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()
13279 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local13280 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()13283 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()13286 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()13290 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()13291 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()13293 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()