Home
last modified time | relevance | path

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

/freebsd/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()
259 Init *BI = V->getCastTo(BitsRecTy::get(Records, BitList.size())); in SetValue()
266 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
267 unsigned Bit = BitList[i]; in SetValue()
3464 SmallVector<unsigned, 16> BitList; in ParseBodyItem() local
3465 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
3467 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
3477 if (!BitList.empty() && isa<BitsRecTy>(Type)) { in ParseBodyItem()
[all …]
H A DTGParser.h232 ArrayRef<unsigned> BitList, Init *V,