Home
last modified time | relevance | path

Searched refs:ShlAmount (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp1808 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument
1809 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()