Home | History | Annotate | Download | only in IR

Lines Matching refs:shiftAmt

1074         uint32_t shiftAmt = C2V.getZExtValue();
1075 if (shiftAmt < C1V.getBitWidth())
1076 return ConstantInt::get(CI1->getContext(), C1V.shl(shiftAmt));
1081 uint32_t shiftAmt = C2V.getZExtValue();
1082 if (shiftAmt < C1V.getBitWidth())
1083 return ConstantInt::get(CI1->getContext(), C1V.lshr(shiftAmt));
1088 uint32_t shiftAmt = C2V.getZExtValue();
1089 if (shiftAmt < C1V.getBitWidth())
1090 return ConstantInt::get(CI1->getContext(), C1V.ashr(shiftAmt));