Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h242 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);
626 unsigned hiBit) {
628 Res.setBitsWithWrap(loBit, hiBit);
1468 void setBitsWithWrap(unsigned loBit, unsigned hiBit) {
1469 assert(hiBit <= BitWidth && "hiBit out of range");
1471 if (loBit < hiBit) {
1472 setBits(loBit, hiBit);
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeEmitterGen.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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.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()