Searched refs:ShlAmt (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp858 unsigned ShlAmt = ShlOp1.getZExtValue(); local
862 KnownZero = APInt::getBitsSet(KnownZero.getBitWidth(), 0, ShlAmt-1);
869 BitMask1 = isLshr ? (BitMask1.lshr(ShrAmt) << ShlAmt) :
870 (BitMask1.ashr(ShrAmt) << ShlAmt);
872 if (ShrAmt <= ShlAmt) {
873 BitMask2 <<= (ShlAmt - ShrAmt);
875 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):
876 BitMask2.ashr(ShrAmt - ShlAmt);
881 if (ShrAmt == ShlAmt)
888 if (ShrAmt < ShlAmt) {
[all...]
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp10594 SDValue ShlAmt = local
10597 SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);

Completed in 168 milliseconds