Lines Matching refs:ShAmt
270 unsigned ShAmt = Amt->getZExtValue(); in ExtractConstantBytes() local
272 if ((ShAmt & 7) != 0) in ExtractConstantBytes()
274 ShAmt >>= 3; in ExtractConstantBytes()
277 if (ByteStart >= CSize-ShAmt) in ExtractConstantBytes()
281 if (ByteStart+ByteSize+ShAmt <= CSize) in ExtractConstantBytes()
282 return ExtractConstantBytes(CE->getOperand(0), ByteStart+ShAmt, ByteSize); in ExtractConstantBytes()
292 unsigned ShAmt = Amt->getZExtValue(); in ExtractConstantBytes() local
294 if ((ShAmt & 7) != 0) in ExtractConstantBytes()
296 ShAmt >>= 3; in ExtractConstantBytes()
299 if (ByteStart+ByteSize <= ShAmt) in ExtractConstantBytes()
303 if (ByteStart >= ShAmt) in ExtractConstantBytes()
304 return ExtractConstantBytes(CE->getOperand(0), ByteStart-ShAmt, ByteSize); in ExtractConstantBytes()