Home
last modified time | relevance | path

Searched refs:hiBit (Results 1 – 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPInt.h241 void setBitsSlowCase(unsigned loBit, unsigned hiBit);
611 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
612 assert(loBit <= hiBit && "loBit greater than hiBit"); in getBitsSet()
614 Res.setBits(loBit, hiBit); in getBitsSet()
623 unsigned hiBit) { in getBitsSetWithWrap() argument
625 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap()
1453 void setBitsWithWrap(unsigned loBit, unsigned hiBit) { in setBitsWithWrap() argument
1454 assert(hiBit <= BitWidth && "hiBit out of range"); in setBitsWithWrap()
1456 if (loBit <= hiBit) { in setBitsWithWrap()
1457 setBits(loBit, hiBit); in setBitsWithWrap()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
HDCodeEmitterGen.cpp221 unsigned hiBit = loBit + N; in AddCodeToMergeInOperand() local
226 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in AddCodeToMergeInOperand()
231 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in AddCodeToMergeInOperand()
234 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in AddCodeToMergeInOperand()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDAPInt.cpp303 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument
305 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase()
311 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()