Searched refs:hiBit (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 241 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument 243 Res.setBits(loBit, hiBit); in getBitsSet() 254 unsigned hiBit) { in getBitsSetWithWrap() argument 256 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap() 1332 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument 1333 assert(hiBit <= BitWidth && "hiBit out of range"); in setBitsWithWrap() 1335 if (loBit < hiBit) { in setBitsWithWrap() 1336 setBits(loBit, hiBit); in setBitsWithWrap() 1339 setLowBits(hiBit); in setBitsWithWrap() 1345 void setBits(unsigned loBit, unsigned hiBit) { in setBits() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | CodeEmitterGen.cpp | 250 unsigned hiBit = loBit + N; in addCodeToMergeInOperand() local 255 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in addCodeToMergeInOperand() 260 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in addCodeToMergeInOperand() 263 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in addCodeToMergeInOperand()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | APInt.cpp | 301 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument 303 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase() 309 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()
|