Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h238 Res.setBits(loBit, hiBit); in getBitsSet()
249 unsigned hiBit) { in getBitsSetWithWrap() argument
251 Res.setBitsWithWrap(loBit, hiBit); in getBitsSetWithWrap()
1327 assert(hiBit <= BitWidth && "hiBit out of range"); in setBitsWithWrap()
1329 if (loBit < hiBit) { in setBitsWithWrap()
1330 setBits(loBit, hiBit); in setBitsWithWrap()
1333 setLowBits(hiBit); in setBitsWithWrap()
1339 void setBits(unsigned loBit, unsigned hiBit) { in setBits() argument
1340 assert(hiBit <= BitWidth && "hiBit out of range"); in setBits()
1343 if (loBit == hiBit) in setBits()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp221 unsigned hiBit = loBit + N; in addCodeToMergeInOperand() local
227 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in addCodeToMergeInOperand()
232 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in addCodeToMergeInOperand()
235 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in addCodeToMergeInOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp310 void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) { in setBitsSlowCase() argument
312 unsigned hiWord = whichWord(hiBit); in setBitsSlowCase()
318 unsigned hiShiftAmt = whichBit(hiBit); in setBitsSlowCase()