Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6301 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask); in CheckForMaskedLoad() local
6302 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()
6306 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64) in CheckForMaskedLoad()
6313 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()
6323 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; in CheckForMaskedLoad()
6326 Result.second = NotMaskTZ/8; in CheckForMaskedLoad()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10761 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad() local
10762 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()
10766 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
10773 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()
10783 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; in CheckForMaskedLoad()
10786 Result.second = NotMaskTZ/8; in CheckForMaskedLoad()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp13281 unsigned NotMaskTZ = countTrailingZeros(NotMask); in CheckForMaskedLoad() local
13282 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte. in CheckForMaskedLoad()
13286 if (countTrailingOnes(NotMask >> NotMaskTZ) + NotMaskTZ + NotMaskLZ != 64) in CheckForMaskedLoad()
13293 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8; in CheckForMaskedLoad()
13303 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result; in CheckForMaskedLoad()
13324 Result.second = NotMaskTZ/8; in CheckForMaskedLoad()