Lines Matching refs:NumBits
128 : TheDef(TheDef), NumBits(0U), HasDynamicSegment(false) { in VarLenInst()
131 NumBits += S.BitWidth; in VarLenInst()
170 const Init *OperandName = DI->getArg(0), *NumBits = DI->getArg(1); in buildRec() local
171 if (!isa<StringInit>(OperandName) || !isa<IntInit>(NumBits)) in buildRec()
174 auto NumBitsVal = cast<IntInit>(NumBits)->getValue(); in buildRec()
200 unsigned NumBits = 0U; in buildRec() local
203 NumBits = static_cast<unsigned>(LoBitVal - HiBitVal + 1); in buildRec()
205 NumBits = static_cast<unsigned>(HiBitVal - LoBitVal + 1); in buildRec()
214 Segments.push_back({NumBits, in buildRec()
218 Segments.push_back({NumBits, DI, CustomEncoder, CustomDecoder}); in buildRec()
462 unsigned NumBits = ES.BitWidth; in getInstructionCaseForEncoding() local
496 << utostr(NumBits) << ", " << utostr(LoBit) << ")" << ", " in getInstructionCaseForEncoding()
499 HighScratchAccess = std::max(HighScratchAccess, NumBits + LoBit); in getInstructionCaseForEncoding()
501 Offset += NumBits; in getInstructionCaseForEncoding()