Searched refs:loBit (Results 1 – 3 of 3) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 242 void setBitsSlowCase(unsigned loBit, unsigned hiBit); 612 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { 613 assert(loBit <= hiBit && "loBit greater than hiBit"); 615 Res.setBits(loBit, hiBit); 625 static APInt getBitsSetWithWrap(unsigned numBits, unsigned loBit, 628 Res.setBitsWithWrap(loBit, hiBit); 643 static APInt getBitsSetFrom(unsigned numBits, unsigned loBit) { 645 Res.setBitsFrom(loBit); 1468 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { 1470 assert(loBit <= BitWidth && "loBit out of range"); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeEmitterGen.cpp | 220 unsigned loBit = beginVarBit - N + 1; in AddCodeToMergeInOperand() local 221 unsigned hiBit = loBit + N; in AddCodeToMergeInOperand() 226 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in AddCodeToMergeInOperand() 227 itostr(loBit) + ")"; in AddCodeToMergeInOperand() 231 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in AddCodeToMergeInOperand() 232 ", " + itostr(loBit) + ")"; in AddCodeToMergeInOperand() 234 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in AddCodeToMergeInOperand()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APInt.cpp | 303 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument 304 unsigned loWord = whichWord(loBit); in setBitsSlowCase() 308 uint64_t loMask = WORDTYPE_MAX << whichBit(loBit); in setBitsSlowCase() 363 unsigned loBit = whichBit(bitPosition); in insertBits() local 370 U.pVal[loWord] &= ~(mask << loBit); in insertBits() 371 U.pVal[loWord] |= (subBits.U.VAL << loBit); in insertBits() 376 if (loBit == 0) { in insertBits() 408 unsigned loBit = whichBit(bitPosition); in insertBits() local 412 U.pVal[loWord] &= ~(maskBits << loBit); in insertBits() 413 U.pVal[loWord] |= subBits << loBit; in insertBits() [all …]
|