Lines Matching defs:Opcodes

239 /// This recursive scheme ends when the number of Opcodes assigned to the
242 /// Opcodes assigned.
363 const std::vector<unsigned> Opcodes;
382 AllInstructions(FC.AllInstructions), Opcodes(FC.Opcodes),
389 AllInstructions(Insts), Opcodes(IDs), Filters(), Parent(NULL),
401 AllInstructions(Insts), Opcodes(IDs), Filters(), Parent(&parent),
557 for (unsigned i = 0, e = Owner->Opcodes.size(); i != e; ++i) {
561 Owner->insnWithID(Insn, Owner->Opcodes[i]);
570 LastOpcFiltered = Owner->Opcodes[i];
576 VariableInstructions.push_back(Owner->Opcodes[i]);
912 for (unsigned i = 0; i < Opcodes.size(); ++i) {
913 if (Opcodes[i] == Opc) continue;
914 errs() << nameWithID(Opcodes[i]) << ' ';
919 for (unsigned i = 0; i < Opcodes.size(); i++) {
920 const std::string &Name = nameWithID(Opcodes[i]);
924 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
1100 unsigned numInstructions = Opcodes.size();
1113 for (unsigned i = 0; i < Opcodes.size(); ++i) {
1119 insnWithID(Insn, Opcodes[i]);
1164 insnWithID(insn, Opcodes[InsnIndex]);
1330 unsigned Num = Opcodes.size();
1363 if (Opcodes.size() == 1)
1367 return emitSingletonDecoder(o, Indentation, Opcodes[0]);
1382 Opcodes.size() == 2) {
1397 const std::string &name1 = nameWithID(Opcodes[0]);
1398 const std::string &name2 = nameWithID(Opcodes[1]);
1414 << Opcodes[0] << " /* " << name1 << " */ : "
1415 << Opcodes[1] << " /* " << name2 << " */ ;\n";
1426 << "return " << Opcodes[0]
1441 << Opcodes[1] << " /* " << name2 << " */ : "
1442 << Opcodes[0] << " /* " << name1 << " */ ;\n";
1453 << "return fieldFromInstruction(insn, 0, 4) == 15 ? " << Opcodes[0]
1454 << " /* " << name1 << " */ : " << Opcodes[1] << "/* " << name2
1465 for (int i = 0, N = Opcodes.size(); i < N; ++i) {
1466 o << nameWithID(Opcodes[i]);
1478 for (unsigned i = 0; i < Opcodes.size(); i++) {
1479 const std::string &Name = nameWithID(Opcodes[i]);
1483 getBitsField(*AllInstructions[Opcodes[i]]->TheDef, "Inst"));
1502 Opcodes(),
1544 std::vector<unsigned> Opcodes;
1701 Opcodes.push_back(uid);
1726 Opcodes.push_back(uid);
1751 FC = new ARMFilterChooser(NumberedInstructions, Opcodes);