Lines Matching refs:OpsToPrint
60 AsmWriterOperand> > &OpsToPrint, raw_ostream &O, in PrintCases()
62 O << " case " << OpsToPrint.back().first << ":"; in PrintCases()
63 AsmWriterOperand TheOp = OpsToPrint.back().second; in PrintCases()
64 OpsToPrint.pop_back(); in PrintCases()
68 for (unsigned i = OpsToPrint.size(); i != 0; --i) in PrintCases()
69 if (OpsToPrint[i-1].second == TheOp) { in PrintCases()
70 O << "\n case " << OpsToPrint[i-1].first << ":"; in PrintCases()
71 OpsToPrint.erase(OpsToPrint.begin()+i-1); in PrintCases()
118 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint; in EmitInstructions() local
119 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" + in EmitInstructions()
124 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+ in EmitInstructions()
128 std::reverse(OpsToPrint.begin(), OpsToPrint.end()); in EmitInstructions()
129 while (!OpsToPrint.empty()) in EmitInstructions()
130 PrintCases(OpsToPrint, O, PassSubtarget); in EmitInstructions()