Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4317 unsigned Bitsize = in matchRotateOutOfRange() local
4321 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange()
4323 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange()
4332 unsigned Bitsize = in applyRotateOutOfRange() local
4336 auto Bits = Builder.buildConstant(AmtTy, Bitsize); in applyRotateOutOfRange()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9786 unsigned Bitsize = VT.getScalarSizeInBits(); in visitRotate() local
9793 if (isPowerOf2_32(Bitsize) && Bitsize > 1) { in visitRotate()
9794 APInt ModuloMask(N1.getScalarValueSizeInBits(), Bitsize - 1); in visitRotate()
9801 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate()
9802 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate()
9807 SDValue Bits = DAG.getConstant(Bitsize, dl, AmtVT); in visitRotate()
9841 SDValue BitsizeC = DAG.getConstant(Bitsize, dl, ShiftVT); in visitRotate()