Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Insts

264   std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
265 if (Insts.size() <= 2)
269 for (unsigned i = 0, e = Insts.size(); i != e; ++i)
270 Instructions[Insts[i]] = new CodeGenInstruction(Insts[i]);
275 const DenseMap<const Record*, CodeGenInstruction*> &Insts,
280 I = Insts.find(Rec);
281 if (Rec == 0 || I == Insts.end())
321 const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
323 const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records);
331 I = Insts.begin(), E = Insts.end(); I != E; ++I) {
337 assert(InstrsByEnum.size() == Insts.size() && "Missing predefined instr");