Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2668 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument
2669 if (ShlAmount == 0) in getLeftShift()
2678 if (ShlAmount > 0) { in getLeftShift()
2682 CurDAG->getTargetConstant(BitWidth - ShlAmount, dl, VT), in getLeftShift()
2683 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, dl, VT)); in getLeftShift()
2686 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()
2687 int ShrAmount = -ShlAmount; in getLeftShift()