Home | History | Annotate | Download | only in Scalar

Lines Matching refs:ShAmt

1707   uint64_t ShAmt = 8*Offset;
1709 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
1710 if (ShAmt) {
1711 V = IRB.CreateLShr(V, ShAmt, Name + ".shift");
1736 uint64_t ShAmt = 8*Offset;
1738 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
1739 if (ShAmt) {
1740 V = IRB.CreateShl(V, ShAmt, Name + ".shift");
1744 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
1745 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);