Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6299 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask); in CheckForMaskedLoad() local
6300 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()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10759 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local
10760 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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp13279 unsigned NotMaskLZ = countLeadingZeros(NotMask); in CheckForMaskedLoad() local
13280 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()