Home | History | Annotate | Download | only in TableGen

Lines Matching full:numbits

383     unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
386 if (NumBits > BitsLeft) {
387 DEBUG(errs() << "Not enough bits to densely encode " << NumBits
397 BitsLeft -= NumBits;
470 unsigned NumBits = Log2_32_Ceil(Commands.size());
471 assert(NumBits <= BitsLeft && "consistency error");
474 O << "\n // Fragment " << i << " encoded into " << NumBits
481 << ((1 << NumBits)-1) << ") {\n"
492 << ((1 << NumBits)-1) << ") {\n"
503 BitsLeft -= NumBits;