Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp162 ArrayRef<unsigned> BitList, Init *V, in SetValue() argument
175 if (BitList.empty()) in SetValue()
184 if (!BitList.empty()) { in SetValue()
191 Init *BI = V->getCastTo(BitsRecTy::get(BitList.size())); in SetValue()
198 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
199 unsigned Bit = BitList[i]; in SetValue()
2885 SmallVector<unsigned, 16> BitList; in ParseBodyItem() local
2886 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
2888 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
2898 if (!BitList.empty() && isa<BitsRecTy>(Type)) { in ParseBodyItem()
[all …]
H A DTGParser.h199 ArrayRef<unsigned> BitList, Init *V,