Searched refs:CurOperandList (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DWebAssemblyDisassemblerEmitter.cpp94 std::vector<std::string> OperandTable, CurOperandList; local
113 CurOperandList.clear();
116 CurOperandList.push_back(Op.OperandType);
121 if (CurOperandList.size() <= OperandTable.size()) {
122 for (size_t J = 0; J <= OperandTable.size() - CurOperandList.size();
125 for (; K < CurOperandList.size(); ++K) {
126 if (OperandTable[J + K] != CurOperandList[K]) break;
128 if (K == CurOperandList.size()) {
136 OperandTable.insert(OperandTable.end(), CurOperandList.begin(),
137 CurOperandList
[all...]

Completed in 150 milliseconds