Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp4253 unsigned SelBits = Sel & 0xff; in computeKnownBitsForTargetNode() local
4254 if (SelBits < 4) { in computeKnownBitsForTargetNode()
4255 SelBits *= 8; in computeKnownBitsForTargetNode()
4256 Known.One |= ((RHSKnown.One.getZExtValue() >> SelBits) & 0xff) << I; in computeKnownBitsForTargetNode()
4257 Known.Zero |= ((RHSKnown.Zero.getZExtValue() >> SelBits) & 0xff) << I; in computeKnownBitsForTargetNode()
4258 } else if (SelBits < 7) { in computeKnownBitsForTargetNode()
4259 SelBits = (SelBits & 3) * 8; in computeKnownBitsForTargetNode()
4260 Known.One |= ((LHSKnown.One.getZExtValue() >> SelBits) & 0xff) << I; in computeKnownBitsForTargetNode()
4261 Known.Zero |= ((LHSKnown.Zero.getZExtValue() >> SelBits) & 0xff) << I; in computeKnownBitsForTargetNode()
4262 } else if (SelBits == 0x0c) { in computeKnownBitsForTargetNode()
[all …]