Home
last modified time | relevance | path

Searched refs:LetRecord (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/TableGen/
DTGParser.h33 struct LetRecord { struct
38 LetRecord(const std::string &N, const std::vector<unsigned> &B, Init *V, in LetRecord() argument
46 std::vector<std::vector<LetRecord> > LetStack;
104 std::vector<LetRecord> ParseLetList();
DTGParser.cpp1763 std::vector<LetRecord> TGParser::ParseLetList() { in ParseLetList()
1764 std::vector<LetRecord> Result; in ParseLetList()
1769 return std::vector<LetRecord>(); in ParseLetList()
1778 return std::vector<LetRecord>(); in ParseLetList()
1783 return std::vector<LetRecord>(); in ParseLetList()
1788 if (Val == 0) return std::vector<LetRecord>(); in ParseLetList()
1791 Result.push_back(LetRecord(Name, Bits, Val, NameLoc)); in ParseLetList()
1810 std::vector<LetRecord> LetInfo = ParseLetList(); in ParseTopLevelLet()
/external/llvm/lib/TableGen/
DTGParser.h34 struct LetRecord { struct
39 LetRecord(const std::string &N, const std::vector<unsigned> &B, Init *V, in LetRecord() argument
57 std::vector<std::vector<LetRecord> > LetStack;
158 std::vector<LetRecord> ParseLetList();
DTGParser.cpp1931 for (std::vector<LetRecord> &LetInfo : LetStack) in ApplyLetStack()
1932 for (LetRecord &LR : LetInfo) in ApplyLetStack()
2142 std::vector<LetRecord> TGParser::ParseLetList() { in ParseLetList()
2143 std::vector<LetRecord> Result; in ParseLetList()
2148 return std::vector<LetRecord>(); in ParseLetList()
2157 return std::vector<LetRecord>(); in ParseLetList()
2162 return std::vector<LetRecord>(); in ParseLetList()
2167 if (!Val) return std::vector<LetRecord>(); in ParseLetList()
2189 std::vector<LetRecord> LetInfo = ParseLetList(); in ParseTopLevelLet()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
DTGParser.h35 struct LetRecord { struct
40 LetRecord(StringInit *N, ArrayRef<unsigned> B, Init *V, SMLoc L) in LetRecord() argument
90 std::vector<SmallVector<LetRecord, 4>> LetStack;
166 void ParseLetList(SmallVectorImpl<LetRecord> &Result);
DTGParser.cpp2455 for (SmallVectorImpl<LetRecord> &LetInfo : LetStack) in ApplyLetStack()
2456 for (LetRecord &LR : LetInfo) in ApplyLetStack()
2680 void TGParser::ParseLetList(SmallVectorImpl<LetRecord> &Result) { in ParseLetList()
2733 SmallVector<LetRecord, 8> LetInfo; in ParseTopLevelLet()