Searched refs:ShlAmount (Results 1 – 1 of 1) sorted by relevance
1808 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument1809 if (ShlAmount == 0) in getLeftShift()1817 if (ShlAmount > 0) { in getLeftShift()1821 CurDAG->getTargetConstant(BitWidth - ShlAmount, VT), in getLeftShift()1822 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, VT)); in getLeftShift()1825 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()1826 int ShrAmount = -ShlAmount; in getLeftShift()