Searched defs:BitList (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/TableGen/
H A DTGParser.h108 ArrayRef<unsigned> BitList, Init *V,
111 ArrayRef<unsigned> BitList, Init *V,
113 return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V,
110 SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName, ArrayRef<unsigned> BitList, Init *V, bool AllowSelfAssignment = false) argument
H A DTGParser.cpp78 ArrayRef<unsigned> BitList, Init *V,
91 if (BitList.empty())
100 if (!BitList.empty()) {
107 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size()));
117 for (unsigned i = 0, e = BitList.size(); i != e; ++i) {
118 unsigned Bit = BitList[i];
1459 /// ValueSuffix ::= '{' BitList '}'
1460 /// ValueSuffix ::= '[' BitList ']'
1875 std::vector<unsigned> BitList; local
1876 if (ParseOptionalBitList(BitList))
77 SetValue(Record *CurRec, SMLoc Loc, Init *ValName, ArrayRef<unsigned> BitList, Init *V, bool AllowSelfAssignment) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DTGParser.cpp83 const std::vector<unsigned> &BitList, Init *V) {
94 if (BitList.empty())
103 if (!BitList.empty()) {
109 Init *BI = V->convertInitializerTo(BitsRecTy::get(BitList.size()));
111 V->convertInitializerTo(BitsRecTy::get(BitList.size()));
122 for (unsigned i = 0, e = BitList.size(); i != e; ++i) {
123 unsigned Bit = BitList[i];
1304 /// ValueSuffix ::= '{' BitList '}'
1305 /// ValueSuffix ::= '[' BitList ']'
1570 std::vector<unsigned> BitList; local
82 SetValue(Record *CurRec, SMLoc Loc, const std::string &ValName, const std::vector<unsigned> &BitList, Init *V) argument
[all...]

Completed in 73 milliseconds