Lines Matching defs:BitList
230 ArrayRef<unsigned> BitList, Init *V,
243 if (BitList.empty())
252 if (!BitList.empty()) {
259 Init *BI = V->getCastTo(BitsRecTy::get(Records, BitList.size()));
266 for (unsigned i = 0, e = BitList.size(); i != e; ++i) {
267 unsigned Bit = BitList[i];
2890 /// ValueSuffix ::= '{' BitList '}'
3464 SmallVector<unsigned, 16> BitList;
3465 if (ParseOptionalBitList(BitList))
3467 std::reverse(BitList.begin(), BitList.end());
3477 if (!BitList.empty() && isa<BitsRecTy>(Type)) {
3480 Type = BitsRecTy::get(Records, BitList.size());
3489 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);