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