Lines Matching refs:OpsToPrint
82 AsmWriterOperand>> &OpsToPrint, raw_ostream &O, in PrintCases() argument
84 O << " case " << OpsToPrint.back().first << ":"; in PrintCases()
85 AsmWriterOperand TheOp = OpsToPrint.back().second; in PrintCases()
86 OpsToPrint.pop_back(); in PrintCases()
90 for (unsigned i = OpsToPrint.size(); i != 0; --i) in PrintCases()
91 if (OpsToPrint[i-1].second == TheOp) { in PrintCases()
92 O << "\n case " << OpsToPrint[i-1].first << ":"; in PrintCases()
93 OpsToPrint.erase(OpsToPrint.begin()+i-1); in PrintCases()
139 std::vector<std::pair<std::string, AsmWriterOperand>> OpsToPrint; in EmitInstructions() local
140 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace.str() + "::" + in EmitInstructions()
145 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace.str()+"::" + in EmitInstructions()
149 std::reverse(OpsToPrint.begin(), OpsToPrint.end()); in EmitInstructions()
150 while (!OpsToPrint.empty()) in EmitInstructions()
151 PrintCases(OpsToPrint, O, PassSubtarget); in EmitInstructions()