Home | History | Annotate | Download | only in Scalar

Lines Matching refs:ShAmt

2239   uint64_t ShAmt = 8 * Offset;
2241 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
2242 if (ShAmt) {
2243 V = IRB.CreateLShr(V, ShAmt, Name + ".shift");
2268 uint64_t ShAmt = 8 * Offset;
2270 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
2271 if (ShAmt) {
2272 V = IRB.CreateShl(V, ShAmt, Name + ".shift");
2276 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
2277 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);