Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Insts

273   std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
274 if (Insts.size() <= 2)
278 for (unsigned i = 0, e = Insts.size(); i != e; ++i)
279 Instructions[Insts[i]] = new CodeGenInstruction(Insts[i]);
284 const DenseMap<const Record*, CodeGenInstruction*> &Insts,
289 I = Insts.find(Rec);
290 if (!Rec || I == Insts.end())
305 const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
307 const CodeGenInstruction *Instr = GetInstByName(*p, Insts, Records);
315 I = Insts.begin(), E = Insts.end(); I != E; ++I) {
321 assert(InstrsByEnum.size() == Insts.size() && "Missing predefined instr");
345 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
346 for (std::vector<Record*>::iterator I = Insts.begin(), E = Insts.end();