Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16534 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local
16535 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()
16538 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()
16541 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
16545 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()
16546 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()
16548 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()