Home
last modified time | relevance | path

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

/external/llvm/lib/TableGen/
DTGParser.h108 ArrayRef<unsigned> BitList, Init *V,
111 ArrayRef<unsigned> BitList, Init *V,
113 return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V,
DTGParser.cpp78 ArrayRef<unsigned> BitList, Init *V, in SetValue() argument
91 if (BitList.empty()) in SetValue()
100 if (!BitList.empty()) { in SetValue()
107 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size())); in SetValue()
117 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
118 unsigned Bit = BitList[i]; in SetValue()
1875 std::vector<unsigned> BitList; in ParseBodyItem() local
1876 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
1878 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
1897 return SetValue(CurRec, IdLoc, FieldName, BitList, Val); in ParseBodyItem()
/external/swiftshader/third_party/LLVM/lib/TableGen/
DTGParser.cpp83 const std::vector<unsigned> &BitList, Init *V) { in SetValue() argument
94 if (BitList.empty()) in SetValue()
103 if (!BitList.empty()) { in SetValue()
109 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size())); in SetValue()
111 V->convertInitializerTo(BitsRecTy::get(BitList.size())); in SetValue()
122 for (unsigned i = 0, e = BitList.size(); i != e; ++i) { in SetValue()
123 unsigned Bit = BitList[i]; in SetValue()
1570 std::vector<unsigned> BitList; in ParseBodyItem() local
1571 if (ParseOptionalBitList(BitList)) in ParseBodyItem()
1573 std::reverse(BitList.begin(), BitList.end()); in ParseBodyItem()
[all …]
DTGParser.h76 const std::vector<unsigned> &BitList, Init *V);