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.cpp3106 static SDValue getLeftShift(SelectionDAG *CurDAG, SDValue Op, int ShlAmount) { in getLeftShift() argument
3107 if (ShlAmount == 0) in getLeftShift()
3116 if (ShlAmount > 0) { in getLeftShift()
3120 CurDAG->getTargetConstant(BitWidth - ShlAmount, dl, VT), in getLeftShift()
3121 CurDAG->getTargetConstant(BitWidth - 1 - ShlAmount, dl, VT)); in getLeftShift()
3124 assert(ShlAmount < 0 && "expected right shift"); in getLeftShift()
3125 int ShrAmount = -ShlAmount; in getLeftShift()