Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp3909 unsigned Bitsize = in matchRotateOutOfRange() local
3913 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange()
3915 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange()
3924 unsigned Bitsize = in applyRotateOutOfRange() local
3929 auto Bits = Builder.buildConstant(AmtTy, Bitsize); in applyRotateOutOfRange()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8109 unsigned Bitsize = VT.getScalarSizeInBits(); in visitRotate() local
8116 if (isPowerOf2_32(Bitsize) && Bitsize > 1) { in visitRotate()
8117 APInt ModuloMask(N1.getScalarValueSizeInBits(), Bitsize - 1); in visitRotate()
8124 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate()
8125 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate()
8130 SDValue Bits = DAG.getConstant(Bitsize, dl, AmtVT); in visitRotate()
8164 SDValue BitsizeC = DAG.getConstant(Bitsize, dl, ShiftVT); in visitRotate()