Home | History | Annotate | Download | only in IR

Lines Matching refs:ShAmt

256     unsigned ShAmt = Amt->getZExtValue();
258 if ((ShAmt & 7) != 0)
260 ShAmt >>= 3;
263 if (ByteStart >= CSize-ShAmt)
267 if (ByteStart+ByteSize+ShAmt <= CSize)
268 return ExtractConstantBytes(CE->getOperand(0), ByteStart+ShAmt, ByteSize);
278 unsigned ShAmt = Amt->getZExtValue();
280 if ((ShAmt & 7) != 0)
282 ShAmt >>= 3;
285 if (ByteStart+ByteSize <= ShAmt)
289 if (ByteStart >= ShAmt)
290 return ExtractConstantBytes(CE->getOperand(0), ByteStart-ShAmt, ByteSize);