Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/ADT/
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 …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.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 …]
/external/llvm-project/llvm/utils/TableGen/
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()
/external/llvm/include/llvm/ADT/
DAPInt.h499 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
500 assert(hiBit <= numBits && "hiBit out of range"); in getBitsSet()
502 if (hiBit < loBit) in getBitsSet()
503 return getLowBitsSet(numBits, hiBit) | in getBitsSet()
505 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h503 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
504 assert(hiBit <= numBits && "hiBit out of range"); in getBitsSet()
506 if (hiBit < loBit) in getBitsSet()
507 return getLowBitsSet(numBits, hiBit) | in getBitsSet()
509 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
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()
/external/llvm-project/llvm/lib/Support/
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()
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/PowerPC/
DPPCGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/
DARMGenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenDisassemblerTables.inc25 // * Support getBitsSet(loBit, hiBit)