Home
last modified time | relevance | path

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

/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;
155 std::vector<LetRecord> ParseLetList();
DTGParser.cpp1936 for (std::vector<LetRecord> &LetInfo : LetStack) in ApplyLetStack()
1937 for (LetRecord &LR : LetInfo) in ApplyLetStack()
2147 std::vector<LetRecord> TGParser::ParseLetList() { in ParseLetList()
2148 std::vector<LetRecord> Result; in ParseLetList()
2153 return std::vector<LetRecord>(); in ParseLetList()
2162 return std::vector<LetRecord>(); in ParseLetList()
2167 return std::vector<LetRecord>(); in ParseLetList()
2172 if (!Val) return std::vector<LetRecord>(); in ParseLetList()
2194 std::vector<LetRecord> LetInfo = ParseLetList(); in ParseTopLevelLet()