Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp88 AsmWriterOperand>> &OpsToPrint, raw_ostream &O, in PrintCases() argument
90 O << " case " << OpsToPrint.back().first << ":"; in PrintCases()
91 AsmWriterOperand TheOp = OpsToPrint.back().second; in PrintCases()
92 OpsToPrint.pop_back(); in PrintCases()
96 for (unsigned i = OpsToPrint.size(); i != 0; --i) in PrintCases()
97 if (OpsToPrint[i-1].second == TheOp) { in PrintCases()
98 O << "\n case " << OpsToPrint[i-1].first << ":"; in PrintCases()
99 OpsToPrint.erase(OpsToPrint.begin()+i-1); in PrintCases()
155 std::reverse(OpsToPrint.begin(), OpsToPrint.end()); in EmitInstructions()
156 while (!OpsToPrint.empty()) in EmitInstructions()
[all …]