Home
last modified time | relevance | path

Searched refs:BitList (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp230 ArrayRef<unsigned> BitList, Init *V, in SetValue() argument
243 if (BitList.empty()) in SetValue()
252 if (!BitList.empty()) { in SetValue()
266 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
267 unsigned Bit = BitList[i]; in SetValue()
3458 SmallVector<unsigned, 16> BitList; in ParseBodyItem() local
3459 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
3461 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
3471 if (!BitList.empty() && isa<BitsRecTy>(Type)) { in ParseBodyItem()
3474 Type = BitsRecTy::get(Records, BitList.size()); in ParseBodyItem()
[all …]
H A DTGParser.h231 ArrayRef<unsigned> BitList, Init *V,