Lines Matching refs:BitWidth
60 unsigned BitWidth; member in __anonbde1da3e0111::CodeEmitterGen
362 o << " "; emitInstBits(o, APInt(BitWidth, 0)); o << ",\n"; in emitInstructionBaseValues()
377 APInt Value(BitWidth, 0); in emitInstructionBaseValues()
380 Value |= APInt(BitWidth, (uint64_t)B->getValue()) << (e - i - 1); in emitInstructionBaseValues()
402 BitWidth = 0; in run()
414 BitWidth = std::max(BitWidth, BI->getNumBits()); in run()
421 BitWidth = std::max(BitWidth, BI->getNumBits()); in run()
423 UseAPInt = BitWidth > 64; in run()
477 int NumWords = APInt::getNumWords(BitWidth); in run()
478 int NumBytes = (BitWidth + 7) / 8; in run()
480 << " if (Inst.getBitWidth() != " << BitWidth << ")\n" in run()
481 << " Inst = Inst.zext(" << BitWidth << ");\n" in run()
482 << " if (Scratch.getBitWidth() != " << BitWidth << ")\n" in run()
483 << " Scratch = Scratch.zext(" << BitWidth << ");\n" in run()