Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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(Records, BitList.size())); in SetValue()
198 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
199 unsigned Bit = BitList[i]; in SetValue()
3006 SmallVector<unsigned, 16> BitList; in ParseBodyItem() local
3007 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
3009 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
3019 if (!BitList.empty() && isa<BitsRecTy>(Type)) { in ParseBodyItem()
[all …]
H A DTGParser.h208 ArrayRef<unsigned> BitList, Init *V,