Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/utils/TableGen/
DAsmWriterEmitter.cpp349 unsigned BitsLeft = 64-AsmStrBits; in EmitPrintInstruction() local
368 if (NumBits > BitsLeft) { in EmitPrintInstruction()
377 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft); in EmitPrintInstruction()
379 BitsLeft -= NumBits; in EmitPrintInstruction()
409 if (BitsLeft < 32) { in EmitPrintInstruction()
413 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8") in EmitPrintInstruction()
432 if (BitsLeft < 32) { in EmitPrintInstruction()
446 BitsLeft = 64-AsmStrBits; in EmitPrintInstruction()
453 assert(NumBits <= BitsLeft && "consistency error"); in EmitPrintInstruction()
462 << (64-BitsLeft) << ") & " in EmitPrintInstruction()
[all …]
/freebsd-9-stable/contrib/llvm/include/llvm/Bitcode/
DBitstreamReader.h381 unsigned BitsLeft = NumBits-BitsInCurWord; in Read() local
384 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft))) in Read()
389 if (BitsLeft != sizeof(word_t)*8) in Read()
390 CurWord >>= BitsLeft; in Read()
393 BitsInCurWord = sizeof(word_t)*8-BitsLeft; in Read()