Lines Matching refs:OpsToPrint
28 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) { in PrintCases()
29 O << " case " << OpsToPrint.back().first << ": "; in PrintCases()
30 AsmWriterOperand TheOp = OpsToPrint.back().second; in PrintCases()
31 OpsToPrint.pop_back(); in PrintCases()
35 for (unsigned i = OpsToPrint.size(); i != 0; --i) in PrintCases()
36 if (OpsToPrint[i-1].second == TheOp) { in PrintCases()
37 O << "\n case " << OpsToPrint[i-1].first << ": "; in PrintCases()
38 OpsToPrint.erase(OpsToPrint.begin()+i-1); in PrintCases()
84 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint; in EmitInstructions() local
85 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" + in EmitInstructions()
91 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+ in EmitInstructions()
95 std::reverse(OpsToPrint.begin(), OpsToPrint.end()); in EmitInstructions()
96 while (!OpsToPrint.empty()) in EmitInstructions()
97 PrintCases(OpsToPrint, O); in EmitInstructions()