Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp3004 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument
3005 if (ShlAmount == 0) in getLeftShift()
3014 if (ShlAmount > 0) { in getLeftShift()
3018 CurDAG->getTargetConstant(BitWidth - ShlAmount, dl, VT), in getLeftShift()
3019 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, dl, VT)); in getLeftShift()
3022 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()
3023 int ShrAmount = -ShlAmount; in getLeftShift()