Lines Matching defs:OpsToPrint
89 PrintCases(std::vector<std::pair<std::string, AsmWriterOperand>> &OpsToPrint,
91 O << " case " << OpsToPrint.back().first << ":";
92 AsmWriterOperand TheOp = OpsToPrint.back().second;
93 OpsToPrint.pop_back();
97 for (unsigned i = OpsToPrint.size(); i != 0; --i)
98 if (OpsToPrint[i - 1].second == TheOp) {
99 O << "\n case " << OpsToPrint[i - 1].first << ":";
100 OpsToPrint.erase(OpsToPrint.begin() + i - 1);
146 std::vector<std::pair<std::string, AsmWriterOperand>> OpsToPrint;
147 OpsToPrint.push_back(std::pair(FirstInst.CGI->Namespace.str() + "::" +
152 OpsToPrint.push_back(std::pair(
156 std::reverse(OpsToPrint.begin(), OpsToPrint.end());
157 while (!OpsToPrint.empty())
158 PrintCases(OpsToPrint, O, PassSubtarget);