Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp19755 unsigned NotMaskLZ = llvm::countl_zero(NotMask); in CheckForMaskedLoad() local
19756 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()
19759 if (NotMaskLZ == 64) return Result; // All zero mask. in CheckForMaskedLoad()
19762 if (llvm::countr_one(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
19766 if (V.getValueType() != MVT::i64 && NotMaskLZ) in CheckForMaskedLoad()
19767 NotMaskLZ -= 64-V.getValueSizeInBits(); in CheckForMaskedLoad()
19769 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()