HomeSort by: relevance | last modified time | path
    Searched refs:Bitsize (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp 3905 // Fold (rot x, c) -> (rot x, c % BitSize)
3909 unsigned Bitsize =
3913 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) {
3915 OutOfRange |= CI->getValue().uge(Bitsize);
3924 unsigned Bitsize =
3929 auto Bits = Builder.buildConstant(AmtTy, Bitsize);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 8109 unsigned Bitsize = VT.getScalarSizeInBits();
8115 // fold (rot x, c) -> x iff (c % BitSize) == 0
8116 if (isPowerOf2_32(Bitsize) && Bitsize > 1) {
8117 APInt ModuloMask(N1.getScalarValueSizeInBits(), Bitsize - 1);
8122 // fold (rot x, c) -> (rot x, c % BitSize)
8124 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) {
8125 OutOfRange |= C->getAPIntValue().uge(Bitsize);
8130 SDValue Bits = DAG.getConstant(Bitsize, dl, AmtVT);
8154 // fold (rot* (rot* x, c2), c1) -> (rot* x, c1 +- c2 % bitsize)
    [all...]

Completed in 70 milliseconds