Searched refs:NotMaskLZ (Results 1 – 1 of 1) sorted by relevance
18130 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local18131 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()18134 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()18137 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()18141 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()18142 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()18144 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()