Home | History | Annotate | Download | only in X86

Lines Matching defs:Opcode

556 static int Lookup(ArrayRef<TableEntry> Table, unsigned Opcode) {
557 const TableEntry *I = std::lower_bound(Table.begin(), Table.end(), Opcode);
558 if (I != Table.end() && I->from == Opcode)
746 static unsigned getConcreteOpcode(unsigned Opcode) {
748 int Opc = Lookup(OpcodeTable, Opcode);
799 int Opcode = Lookup(PopTable, I->getOpcode());
800 if (Opcode != -1) {
801 I->setDesc(TII->get(Opcode));
802 if (Opcode == X86::UCOM_FPPr)
1294 int Opcode = Lookup(InstTable, MI.getOpcode());
1295 assert(Opcode != -1 && "Unknown TwoArgFP pseudo instruction!");
1302 I = BuildMI(*MBB, I, dl, TII->get(Opcode)).addReg(getSTReg(NotTOS));